diff --git a/crates/qmd-syntax-helper/src/conversions/mod.rs b/crates/qmd-syntax-helper/src/conversions/mod.rs index 7181c9d..0d7d890 100644 --- a/crates/qmd-syntax-helper/src/conversions/mod.rs +++ b/crates/qmd-syntax-helper/src/conversions/mod.rs @@ -2,7 +2,6 @@ pub mod apostrophe_quotes; pub mod attribute_ordering; pub mod definition_lists; pub mod grid_tables; -pub mod q_2_5; pub mod q_2_11; pub mod q_2_12; pub mod q_2_13; @@ -18,3 +17,7 @@ pub mod q_2_23; pub mod q_2_24; pub mod q_2_25; pub mod q_2_26; +pub mod q_2_28; +pub mod q_2_33; +pub mod q_2_5; +pub mod q_2_7; diff --git a/crates/qmd-syntax-helper/src/conversions/q_2_28.rs b/crates/qmd-syntax-helper/src/conversions/q_2_28.rs new file mode 100644 index 0000000..2525fe4 --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_28.rs @@ -0,0 +1,263 @@ +// Q-2-28: Line Break Before Escaped Shortcode Close +// +// This conversion rule fixes Q-2-28 errors by removing line breaks +// immediately before the escaped shortcode closing delimiter >}}} +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-28 +// Title: "Line Break Before Escaped Shortcode Close" +// Message: "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`." +// +// Example: +// Input: {{{< include file.qmd +// >}}} +// Output: {{{< include file.qmd >}}} +// + +use anyhow::{Context, Result}; +use std::fs; +use std::path::Path; + +use crate::rule::{CheckResult, ConvertResult, Rule, SourceLocation}; +use crate::utils::file_io::read_file; + +pub struct Q228Converter {} + +#[derive(Debug, Clone)] +struct Q228Violation { + // We'll store the offset of the newline that needs to be removed + newline_start: usize, + // And the offset where >}}} starts (after whitespace) + close_delimiter_start: usize, + error_location: Option, +} + +impl Q228Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-28 line break violations + fn get_violations(&self, file_path: &Path) -> Result> { + let content = fs::read_to_string(file_path) + .with_context(|| format!("Failed to read file: {}", file_path.display()))?; + + // Parse with quarto-markdown-pandoc to get diagnostics + let mut sink = std::io::sink(); + let filename = file_path.to_string_lossy(); + + let result = quarto_markdown_pandoc::readers::qmd::read( + content.as_bytes(), + false, // not loose mode + &filename, + &mut sink, + false, // don't prune errors - we need them! + None, + ); + + // Get diagnostics from either Ok or Err variant + let diagnostics = match result { + Ok((_pandoc, _context, diags)) => diags, + Err(diags) => diags, + }; + + let mut violations = Vec::new(); + + for diagnostic in diagnostics { + // Check if this is a Q-2-28 error + if diagnostic.code.as_deref() != Some("Q-2-28") { + continue; + } + + // Extract location - this points to where the error occurs + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + // The error location can span multiple tokens. Use end_offset to ensure + // we're after any tokens that might be part of the error + let error_offset = location.as_ref().unwrap().end_offset(); + + // Now we need to find the newline before >}}} and the start of >}}} + // We'll scan backwards from error_offset to find the newline, + // then scan forward to find >}}} + + if let Some(violation) = self.find_violation_offsets(&content, error_offset) { + violations.push(violation); + } + } + + Ok(violations) + } + + /// Find the exact offsets to fix for a Q-2-28 violation + fn find_violation_offsets(&self, content: &str, error_offset: usize) -> Option { + // Scan backwards from error_offset to find a newline + // Include error_offset itself in case it points to the newline + let mut newline_pos = None; + for i in (0..=error_offset).rev() { + if i < content.len() && content.as_bytes()[i] == b'\n' { + newline_pos = Some(i); + break; + } + } + + let newline_start = newline_pos?; + + // Now scan forward from newline to find where >}}} starts (skip whitespace) + let mut close_delimiter_start = newline_start + 1; + while close_delimiter_start < content.len() { + let ch = content.as_bytes()[close_delimiter_start]; + if ch != b' ' && ch != b'\t' { + break; + } + close_delimiter_start += 1; + } + + // Verify that we're actually at >}}} + if close_delimiter_start + 4 <= content.len() { + let slice = &content[close_delimiter_start..close_delimiter_start + 4]; + if slice == ">}}}" { + return Some(Q228Violation { + newline_start, + close_delimiter_start, + error_location: Some(SourceLocation { + row: self.offset_to_row(content, newline_start), + column: self.offset_to_column(content, newline_start), + }), + }); + } + } + + None + } + + /// Apply fixes to the content by removing line breaks before >}}} + fn apply_fixes(&self, content: &str, mut violations: Vec) -> Result { + if violations.is_empty() { + return Ok(content.to_string()); + } + + // Sort violations in reverse order to avoid offset invalidation + violations.sort_by_key(|v| std::cmp::Reverse(v.newline_start)); + + let mut result = content.to_string(); + + for violation in violations { + // Remove everything from the newline to just before >}}} + // This removes the \n and any leading whitespace + let remove_start = violation.newline_start; + let remove_end = violation.close_delimiter_start; + + // Replace with a single space to keep >}}} separated from content + result.replace_range(remove_start..remove_end, " "); + } + + Ok(result) + } + + /// Convert byte offset to row number (0-indexed) + fn offset_to_row(&self, content: &str, offset: usize) -> usize { + content[..offset].matches('\n').count() + } + + /// Convert byte offset to column number (0-indexed) + fn offset_to_column(&self, content: &str, offset: usize) -> usize { + let line_start = content[..offset] + .rfind('\n') + .map(|pos| pos + 1) + .unwrap_or(0); + offset - line_start + } +} + +impl Rule for Q228Converter { + fn name(&self) -> &str { + "q-2-28" + } + + fn description(&self) -> &str { + "Fix Q-2-28: Remove line breaks before escaped shortcode closing delimiter >}}}" + } + + fn check(&self, file_path: &Path, _verbose: bool) -> Result> { + let violations = self.get_violations(file_path)?; + + let results: Vec = violations + .into_iter() + .map(|v| CheckResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + has_issue: true, + issue_count: 1, + message: Some(format!( + "Q-2-28 line break before escaped shortcode close at line {}", + v.error_location.as_ref().map(|l| l.row + 1).unwrap_or(0) + )), + location: v.error_location, + error_code: Some("Q-2-28".to_string()), + error_codes: None, + }) + .collect(); + + Ok(results) + } + + fn convert( + &self, + file_path: &Path, + in_place: bool, + check_mode: bool, + _verbose: bool, + ) -> Result { + let content = read_file(file_path)?; + let violations = self.get_violations(file_path)?; + + if violations.is_empty() { + return Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: 0, + message: Some("No Q-2-28 line break issues found".to_string()), + }); + } + + let fixed_content = self.apply_fixes(&content, violations.clone())?; + + if check_mode { + // Just report what would be done + return Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: violations.len(), + message: Some(format!( + "Would fix {} Q-2-28 line break violation(s)", + violations.len() + )), + }); + } + + if in_place { + // Write back to file + crate::utils::file_io::write_file(file_path, &fixed_content)?; + Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: violations.len(), + message: Some(format!( + "Fixed {} Q-2-28 line break violation(s)", + violations.len() + )), + }) + } else { + // Return the converted content in message + Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: violations.len(), + message: Some(fixed_content), + }) + } + } +} diff --git a/crates/qmd-syntax-helper/src/conversions/q_2_33.rs b/crates/qmd-syntax-helper/src/conversions/q_2_33.rs new file mode 100644 index 0000000..e83289b --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_33.rs @@ -0,0 +1,233 @@ +// Q-2-33: Spaces in Link Targets +// +// This conversion rule fixes Q-2-33 errors by replacing spaces with %20 +// in link and image targets. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-33 +// Title: "Spaces in Link Targets" +// Message: "Link targets cannot contain spaces. Replace spaces with %20." +// +// Example: +// Input: ![](image file.png) +// Output: ![](image%20file.png) +// + +use anyhow::{Context, Result}; +use std::fs; +use std::path::Path; + +use crate::rule::{CheckResult, ConvertResult, Rule, SourceLocation}; +use crate::utils::file_io::read_file; + +pub struct Q233Converter {} + +#[derive(Debug, Clone)] +struct Q233Violation { + start_offset: usize, // Start of the link target with space + end_offset: usize, // End of the link target + error_location: Option, // For reporting +} + +impl Q233Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-33 spaces in link target violations + fn get_violations(&self, file_path: &Path) -> Result> { + let content = fs::read_to_string(file_path) + .with_context(|| format!("Failed to read file: {}", file_path.display()))?; + + // Parse with quarto-markdown-pandoc to get diagnostics + let mut sink = std::io::sink(); + let filename = file_path.to_string_lossy(); + + let result = quarto_markdown_pandoc::readers::qmd::read( + content.as_bytes(), + false, // not loose mode + &filename, + &mut sink, + true, + None, + ); + + let diagnostics = match result { + Ok(_) => return Ok(Vec::new()), // No errors + Err(diagnostics) => diagnostics, + }; + + let mut violations = Vec::new(); + + for diagnostic in diagnostics { + // Check if this is a Q-2-33 error + if diagnostic.code.as_deref() != Some("Q-2-33") { + continue; + } + + // Extract location - this points to the space in the link target + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let start_offset = location.as_ref().unwrap().start_offset(); + let end_offset = location.as_ref().unwrap().end_offset(); + + violations.push(Q233Violation { + start_offset, + end_offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, start_offset), + column: self.offset_to_column(&content, start_offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by replacing spaces with %20 in link targets + fn apply_fixes(&self, content: &str, mut violations: Vec) -> Result { + if violations.is_empty() { + return Ok(content.to_string()); + } + + // Sort violations in reverse order to avoid offset invalidation + violations.sort_by_key(|v| std::cmp::Reverse(v.start_offset)); + + let mut result = content.to_string(); + + for violation in violations { + // Find the link target that contains the space + // We need to find the full link target (from '(' to ')' or from start to space) + // and replace all spaces in it with %20 + + // Find the opening '(' before the error + let target_start = result[..violation.start_offset] + .rfind('(') + .unwrap_or(violation.start_offset); + + // Find the closing ')' after the error + let target_end = result[violation.start_offset..] + .find(')') + .map(|pos| violation.start_offset + pos) + .unwrap_or(violation.end_offset); + + // Extract the link target + let link_target = &result[target_start + 1..target_end]; + + // Replace spaces with %20 + let fixed_target = link_target.replace(' ', "%20"); + + // Replace in the result string + result.replace_range(target_start + 1..target_end, &fixed_target); + } + + Ok(result) + } + + /// Convert byte offset to row number (0-indexed) + fn offset_to_row(&self, content: &str, offset: usize) -> usize { + content[..offset].matches('\n').count() + } + + /// Convert byte offset to column number (0-indexed) + fn offset_to_column(&self, content: &str, offset: usize) -> usize { + let line_start = content[..offset] + .rfind('\n') + .map(|pos| pos + 1) + .unwrap_or(0); + offset - line_start + } +} + +impl Rule for Q233Converter { + fn name(&self) -> &str { + "q-2-33" + } + + fn description(&self) -> &str { + "Fix Q-2-33: Replace spaces with %20 in link targets" + } + + fn check(&self, file_path: &Path, _verbose: bool) -> Result> { + let violations = self.get_violations(file_path)?; + + let results: Vec = violations + .into_iter() + .map(|v| CheckResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + has_issue: true, + issue_count: 1, + message: Some(format!( + "Q-2-33 space in link target at offset {}", + v.start_offset + )), + location: v.error_location, + error_code: Some("Q-2-33".to_string()), + error_codes: None, + }) + .collect(); + + Ok(results) + } + + fn convert( + &self, + file_path: &Path, + in_place: bool, + check_mode: bool, + _verbose: bool, + ) -> Result { + let content = read_file(file_path)?; + let violations = self.get_violations(file_path)?; + + if violations.is_empty() { + return Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: 0, + message: Some("No Q-2-33 space in link target issues found".to_string()), + }); + } + + let fixed_content = self.apply_fixes(&content, violations.clone())?; + + if check_mode { + // Just report what would be done + return Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: violations.len(), + message: Some(format!( + "Would fix {} Q-2-33 space in link target violation(s)", + violations.len() + )), + }); + } + + if in_place { + // Write back to file + crate::utils::file_io::write_file(file_path, &fixed_content)?; + Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: violations.len(), + message: Some(format!( + "Fixed {} Q-2-33 space in link target violation(s)", + violations.len() + )), + }) + } else { + // Return the converted content in message + Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: violations.len(), + message: Some(fixed_content), + }) + } + } +} diff --git a/crates/qmd-syntax-helper/src/conversions/q_2_7.rs b/crates/qmd-syntax-helper/src/conversions/q_2_7.rs new file mode 100644 index 0000000..2bc342b --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_7.rs @@ -0,0 +1,215 @@ +// Q-2-7: Unclosed Single Quote +// +// This conversion rule fixes Q-2-7 errors by escaping straight apostrophes +// that are misinterpreted as opening quotes. +// +// The parser misinterprets straight apostrophes when they appear before +// Markdown syntax (e.g., `d'`code``, `qu'**emphasis**`). +// +// Fix strategy: Escape the apostrophe with a backslash `'` → `\'` +// +// Error catalog entry: crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-7.json +// Error code: Q-2-7 +// Title: "Unclosed Single Quote" +// +// Example: +// Input: d'`Arrow` +// Output: d\'`Arrow` + +use anyhow::{Context, Result}; +use std::fs; +use std::path::Path; + +use crate::rule::{CheckResult, ConvertResult, Rule, SourceLocation}; +use crate::utils::file_io::read_file; + +pub struct Q27Converter {} + +#[derive(Debug, Clone)] +struct Q27Violation { + offset: usize, // Offset of the apostrophe to escape + error_location: Option, // For reporting +} + +impl Q27Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-7 unclosed single quote violations + fn get_violations(&self, file_path: &Path) -> Result> { + let content = fs::read_to_string(file_path) + .with_context(|| format!("Failed to read file: {}", file_path.display()))?; + + // Parse with quarto-markdown-pandoc to get diagnostics + let mut sink = std::io::sink(); + let filename = file_path.to_string_lossy(); + + let result = quarto_markdown_pandoc::readers::qmd::read( + content.as_bytes(), + false, // not loose mode + &filename, + &mut sink, + true, + None, + ); + + let diagnostics = match result { + Ok(_) => return Ok(Vec::new()), // No errors + Err(diagnostics) => diagnostics, + }; + + let mut violations = Vec::new(); + + for diagnostic in diagnostics { + // Check if this is a Q-2-7 error + if diagnostic.code.as_deref() != Some("Q-2-7") { + continue; + } + + // CRITICAL: For Q-2-7, we need the apostrophe location from details[0] + // NOT the main diagnostic location (which points to end of block) + if diagnostic.details.is_empty() { + continue; + } + + let detail_location = diagnostic.details[0].location.as_ref(); + if detail_location.is_none() { + continue; + } + + let offset = detail_location.unwrap().start_offset(); + + violations.push(Q27Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes by inserting backslashes before apostrophes + fn apply_fixes(&self, content: &str, mut violations: Vec) -> Result { + if violations.is_empty() { + return Ok(content.to_string()); + } + + // Sort violations in reverse order to avoid offset invalidation + violations.sort_by_key(|v| std::cmp::Reverse(v.offset)); + + let mut result = content.to_string(); + + for violation in violations { + // Insert backslash before the apostrophe + // The offset points to the apostrophe itself + result.insert(violation.offset, '\\'); + } + + Ok(result) + } + + /// Convert byte offset to row number (0-indexed) + fn offset_to_row(&self, content: &str, offset: usize) -> usize { + content[..offset].matches('\n').count() + } + + /// Convert byte offset to column number (0-indexed) + fn offset_to_column(&self, content: &str, offset: usize) -> usize { + let line_start = content[..offset] + .rfind('\n') + .map(|pos| pos + 1) + .unwrap_or(0); + offset - line_start + } +} + +impl Rule for Q27Converter { + fn name(&self) -> &str { + "q-2-7" + } + + fn description(&self) -> &str { + "Fix Q-2-7: Escape apostrophes misinterpreted as opening quotes" + } + + fn check(&self, file_path: &Path, _verbose: bool) -> Result> { + let violations = self.get_violations(file_path)?; + + let results: Vec = violations + .into_iter() + .map(|v| CheckResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + has_issue: true, + issue_count: 1, + message: Some(format!( + "Q-2-7 unclosed single quote at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-7".to_string()), + error_codes: None, + }) + .collect(); + + Ok(results) + } + + fn convert( + &self, + file_path: &Path, + in_place: bool, + check_mode: bool, + _verbose: bool, + ) -> Result { + let content = read_file(file_path)?; + let violations = self.get_violations(file_path)?; + + if violations.is_empty() { + return Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: 0, + message: Some("No Q-2-7 unclosed single quote issues found".to_string()), + }); + } + + let fixed_content = self.apply_fixes(&content, violations.clone())?; + + if check_mode { + return Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: violations.len(), + message: Some(format!( + "Would fix {} Q-2-7 unclosed single quote violation(s)", + violations.len() + )), + }); + } + + if in_place { + crate::utils::file_io::write_file(file_path, &fixed_content)?; + Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: violations.len(), + message: Some(format!( + "Fixed {} Q-2-7 unclosed single quote violation(s)", + violations.len() + )), + }) + } else { + Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: violations.len(), + message: Some(fixed_content), + }) + } + } +} diff --git a/crates/qmd-syntax-helper/src/diagnostics/mod.rs b/crates/qmd-syntax-helper/src/diagnostics/mod.rs index 06d57d6..69a8ac6 100644 --- a/crates/qmd-syntax-helper/src/diagnostics/mod.rs +++ b/crates/qmd-syntax-helper/src/diagnostics/mod.rs @@ -1,2 +1,3 @@ pub mod parse_check; +pub mod q_2_30; // pub mod syntax_check; // Unused - kept for reference only diff --git a/crates/qmd-syntax-helper/src/diagnostics/q_2_30.rs b/crates/qmd-syntax-helper/src/diagnostics/q_2_30.rs new file mode 100644 index 0000000..06dc0e0 --- /dev/null +++ b/crates/qmd-syntax-helper/src/diagnostics/q_2_30.rs @@ -0,0 +1,218 @@ +// Q-2-30: Multi-Paragraph Footnote Indentation +// +// Detects when a paragraph immediately follows a NoteDefinitionPara +// and starts with indentation, suggesting an attempted multi-paragraph +// footnote using Pandoc's indentation syntax. +// +// This is a LINTING diagnostic - the document parses successfully but +// likely has a semantic error (the indented paragraph is NOT part of the footnote). +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-30 +// Title: "Multi-Paragraph Footnote Indentation Not Supported" +// +// Example: +// [^1]: First paragraph +// +// Second paragraph (indented - user thinks it's part of footnote, but it's not) +// +// Correct qmd syntax: +// ::: ^1 +// +// First paragraph +// +// Second paragraph +// +// ::: + +use anyhow::{Context, Result}; +use std::fs; +use std::path::Path; + +use crate::rule::{CheckResult, ConvertResult, Rule, SourceLocation}; +use quarto_markdown_pandoc::pandoc::Block; + +pub struct Q230Checker {} + +#[derive(Debug, Clone)] +struct Q230Violation { + note_id: String, + row: usize, + column: usize, +} + +impl Q230Checker { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Parse document and detect multi-paragraph footnote pattern + fn get_violations(&self, file_path: &Path) -> Result> { + let content = fs::read_to_string(file_path) + .with_context(|| format!("Failed to read file: {}", file_path.display()))?; + + // Parse with quarto-markdown-pandoc to get AST + let mut sink = std::io::sink(); + let filename = file_path.to_string_lossy(); + + let parse_result = quarto_markdown_pandoc::readers::qmd::read( + content.as_bytes(), + false, // not loose mode + &filename, + &mut sink, + true, // prune errors + None, + ); + + // If parse fails, return empty violations (let parse rule handle it) + let (pandoc_doc, _ast_context, _diagnostics) = match parse_result { + Ok(result) => result, + Err(_) => return Ok(Vec::new()), + }; + + let mut violations = Vec::new(); + let blocks = &pandoc_doc.blocks; + + // Walk through consecutive block pairs + for i in 0..blocks.len().saturating_sub(1) { + let current = &blocks[i]; + let next = &blocks[i + 1]; + + // Check if current is NoteDefinitionPara + if let Block::NoteDefinitionPara(note_def_para) = current { + // Check if next is Paragraph + if let Block::Paragraph(para) = next { + // Check if Para's source starts with whitespace + if self.para_starts_with_indent(&content, para)? { + let offset = para.source_info.start_offset(); + violations.push(Q230Violation { + note_id: note_def_para.id.clone(), + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }); + } + } + } + } + + Ok(violations) + } + + /// Check if a Para block's source text starts with whitespace + /// + /// Note: The SourceInfo for Paragraph points to the content, not the full line. + /// We need to look back to the start of the line to check for indentation. + fn para_starts_with_indent( + &self, + content: &str, + para: &quarto_markdown_pandoc::pandoc::Paragraph, + ) -> Result { + let para_start = para.source_info.start_offset(); + + if para_start >= content.len() { + return Ok(false); + } + + // Find the start of the line containing the paragraph + let line_start = content[..para_start] + .rfind('\n') + .map(|pos| pos + 1) + .unwrap_or(0); + + // Get the text from line start to paragraph start + let leading_text = &content[line_start..para_start]; + + // Check if there's whitespace before the paragraph content on its line + Ok(leading_text.contains(' ') || leading_text.contains('\t')) + } + + /// Convert byte offset to row number (0-indexed) + fn offset_to_row(&self, content: &str, offset: usize) -> usize { + content[..offset].matches('\n').count() + } + + /// Convert byte offset to column number (0-indexed) + fn offset_to_column(&self, content: &str, offset: usize) -> usize { + let line_start = content[..offset] + .rfind('\n') + .map(|pos| pos + 1) + .unwrap_or(0); + offset - line_start + } +} + +impl Rule for Q230Checker { + fn name(&self) -> &str { + "q-2-30" + } + + fn description(&self) -> &str { + "Detect multi-paragraph footnotes using Pandoc indentation syntax" + } + + fn check(&self, file_path: &Path, _verbose: bool) -> Result> { + // If file doesn't parse, return empty (let parse rule handle it) + let violations = match self.get_violations(file_path) { + Ok(v) => v, + Err(_) => return Ok(vec![]), + }; + + let results: Vec = violations + .into_iter() + .map(|v| CheckResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + has_issue: true, + issue_count: 1, + message: Some(format!( + "Q-2-30: Indented paragraph after footnote [^{}] suggests multi-paragraph footnote", + v.note_id + )), + location: Some(SourceLocation { + row: v.row, + column: v.column, + }), + error_code: Some("Q-2-30".to_string()), + error_codes: None, + }) + .collect(); + + Ok(results) + } + + fn convert( + &self, + file_path: &Path, + _in_place: bool, + _check_mode: bool, + _verbose: bool, + ) -> Result { + let violations = match self.get_violations(file_path) { + Ok(v) => v, + Err(_) => { + return Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: 0, + message: Some("File does not parse - cannot check for Q-2-30".to_string()), + }); + } + }; + + // This is a linting diagnostic - no auto-fix available + // Requires manual conversion to div syntax + Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: 0, + message: Some(if violations.is_empty() { + "No Q-2-30 violations found".to_string() + } else { + format!( + "Found {} Q-2-30 violation(s). Manual conversion to div syntax required: ::: ^ref ... :::", + violations.len() + ) + }), + }) + } +} diff --git a/crates/qmd-syntax-helper/src/rule.rs b/crates/qmd-syntax-helper/src/rule.rs index cad3358..ddc56c7 100644 --- a/crates/qmd-syntax-helper/src/rule.rs +++ b/crates/qmd-syntax-helper/src/rule.rs @@ -79,6 +79,9 @@ impl RuleRegistry { registry.register(Arc::new( crate::diagnostics::parse_check::ParseChecker::new()?, )); + registry.register(Arc::new( + crate::diagnostics::q_2_30::Q230Checker::new()?, + )); // Register conversion rules registry.register(Arc::new( @@ -94,6 +97,7 @@ impl RuleRegistry { crate::conversions::definition_lists::DefinitionListConverter::new()?, )); registry.register(Arc::new(crate::conversions::q_2_5::Q25Converter::new()?)); + registry.register(Arc::new(crate::conversions::q_2_7::Q27Converter::new()?)); registry.register(Arc::new(crate::conversions::q_2_11::Q211Converter::new()?)); registry.register(Arc::new(crate::conversions::q_2_12::Q212Converter::new()?)); registry.register(Arc::new(crate::conversions::q_2_13::Q213Converter::new()?)); @@ -109,6 +113,8 @@ impl RuleRegistry { registry.register(Arc::new(crate::conversions::q_2_24::Q224Converter::new()?)); registry.register(Arc::new(crate::conversions::q_2_25::Q225Converter::new()?)); registry.register(Arc::new(crate::conversions::q_2_26::Q226Converter::new()?)); + registry.register(Arc::new(crate::conversions::q_2_28::Q228Converter::new()?)); + registry.register(Arc::new(crate::conversions::q_2_33::Q233Converter::new()?)); Ok(registry) } diff --git a/crates/qmd-syntax-helper/tests/q_2_21_test.rs b/crates/qmd-syntax-helper/tests/q_2_21_test.rs index 8f40300..de848ee 100644 --- a/crates/qmd-syntax-helper/tests/q_2_21_test.rs +++ b/crates/qmd-syntax-helper/tests/q_2_21_test.rs @@ -53,8 +53,5 @@ fn test_converts_single_violation() { assert_eq!(result.fixes_applied, 1); let converted = result.message.unwrap(); - assert_eq!( - converted, "[>>Unclosed comment]\n", - "Should add closing ]" - ); + assert_eq!(converted, "[>>Unclosed comment]\n", "Should add closing ]"); } diff --git a/crates/qmd-syntax-helper/tests/q_2_28_test.rs b/crates/qmd-syntax-helper/tests/q_2_28_test.rs new file mode 100644 index 0000000..f7752aa --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_28_test.rs @@ -0,0 +1,192 @@ +use qmd_syntax_helper::rule::RuleRegistry; +use qmd_syntax_helper::utils::resources::ResourceManager; +use std::fs; + +#[test] +fn test_no_violations_in_correct_file() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + // File with properly formatted escaped shortcode + fs::write( + &test_file, + r#"{{{< include file.qmd >}}} +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-28").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 0, "Should not detect any violations"); +} + +#[test] +fn test_detects_single_violation() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + // Escaped shortcode with line break before close + fs::write(&test_file, "{{{< hello\n>}}}\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-28").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-28 violation"); + assert!(results[0].has_issue); +} + +#[test] +fn test_converts_single_violation() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "{{{< hello\n>}}}\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-28").unwrap(); + + // Convert without in_place to get the result + let result = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result.fixes_applied, 1); + + let converted = result.message.unwrap(); + assert_eq!( + converted, "{{{< hello >}}}\n", + "Should remove line break and add space" + ); +} + +#[test] +fn test_in_place_conversion() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "{{{< hello\n>}}}\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-28").unwrap(); + + // Convert in place + let result = rule.convert(&test_file, true, false, false).unwrap(); + assert_eq!(result.fixes_applied, 1); + + // Verify file was modified + let content = fs::read_to_string(&test_file).unwrap(); + assert_eq!(content, "{{{< hello >}}}\n"); +} + +#[test] +fn test_check_mode() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "{{{< hello\n>}}}\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-28").unwrap(); + + // Convert in check mode + let result = rule.convert(&test_file, false, true, false).unwrap(); + assert_eq!(result.fixes_applied, 1); + + // Verify file was NOT modified + let content = fs::read_to_string(&test_file).unwrap(); + assert_eq!(content, original); +} + +#[test] +fn test_no_changes_when_all_correct() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + fs::write(&test_file, "{{{< include file.qmd >}}}\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-28").unwrap(); + + let result = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result.fixes_applied, 0); +} + +#[test] +fn test_with_parameter() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + fs::write(&test_file, "{{{< include file\n>}}}\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-28").unwrap(); + + let result = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result.fixes_applied, 1); + + let converted = result.message.unwrap(); + assert_eq!(converted, "{{{< include file >}}}\n"); +} + +#[test] +fn test_with_indented_close() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + // Line break with indentation before close + fs::write(&test_file, "{{{< hello\n >}}}\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-28").unwrap(); + + let result = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result.fixes_applied, 1); + + let converted = result.message.unwrap(); + // Should remove the newline and indentation, replace with single space + assert_eq!(converted, "{{{< hello >}}}\n"); +} + +#[test] +fn test_with_key_value() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + fs::write(&test_file, "{{{< hello key=value\n>}}}\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-28").unwrap(); + + let result = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result.fixes_applied, 1); + + let converted = result.message.unwrap(); + assert_eq!(converted, "{{{< hello key=value >}}}\n"); +} + +#[test] +fn test_multiple_violations() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + // Two shortcodes with line breaks + // Note: The parser reports errors one at a time, so we need multiple passes + fs::write(&test_file, "{{{< hello\n>}}}\n\n{{{< world\n>}}}\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-28").unwrap(); + + // First pass - fixes the first violation + let result1 = rule.convert(&test_file, true, false, false).unwrap(); + assert_eq!(result1.fixes_applied, 1); + + // Second pass - should fix the second violation + let result2 = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result2.fixes_applied, 1); + + let converted = result2.message.unwrap(); + assert_eq!(converted, "{{{< hello >}}}\n\n{{{< world >}}}\n"); +} diff --git a/crates/quarto-error-reporting/error_catalog.json b/crates/quarto-error-reporting/error_catalog.json index 8a2b610..d792aa6 100644 --- a/crates/quarto-error-reporting/error_catalog.json +++ b/crates/quarto-error-reporting/error_catalog.json @@ -76,6 +76,13 @@ "docs_url": "https://quarto.org/docs/errors/Q-1-19", "since_version": "99.9.9" }, + "Q-1-20": { + "subsystem": "yaml", + "title": "Failed to parse metadata value as markdown", + "message_template": "Invalid markdown will be interpreted as a string. Consider adding a '!str' tag to the entry.", + "docs_url": "https://quarto.org/docs/errors/Q-1-20", + "since_version": "99.9.9" + }, "Q-1-99": { "subsystem": "yaml", "title": "Generic Validation Error", @@ -265,6 +272,63 @@ "docs_url": "https://quarto.org/docs/errors/Q-2-26", "since_version": "99.9.9" }, + "Q-2-27": { + "subsystem": "markdown", + "title": "Line Break Before Shortcode Close", + "message_template": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "docs_url": "https://quarto.org/docs/errors/Q-2-27", + "since_version": "99.9.9" + }, + "Q-2-28": { + "subsystem": "markdown", + "title": "Line Break Before Escaped Shortcode Close", + "message_template": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "docs_url": "https://quarto.org/docs/errors/Q-2-28", + "since_version": "99.9.9" + }, + "Q-2-29": { + "subsystem": "markdown", + "title": "Indented Footnote Content Not Supported", + "message_template": "Quarto markdown does not support indented footnote content. Use the div syntax instead: `::: ^ref ... :::`", + "docs_url": "https://quarto.org/docs/errors/Q-2-29", + "since_version": "99.9.9" + }, + "Q-2-30": { + "subsystem": "markdown", + "title": "Multi-Paragraph Footnote Indentation Not Supported", + "message_template": "Indented paragraph following footnote definition suggests Pandoc multi-paragraph footnote syntax, which is not supported in quarto-markdown. Use the div syntax instead: `::: ^ref ... :::`", + "docs_url": "https://quarto.org/docs/errors/Q-2-30", + "since_version": "99.9.9" + }, + "Q-2-31": { + "subsystem": "markdown", + "title": "Inline Code Execution Not Allowed in URLs", + "message_template": "Inline code execution syntax (`{language} ...) cannot be used inside image or link destinations.", + "docs_url": "https://quarto.org/docs/errors/Q-2-31", + "since_version": "99.9.9" + }, + "Q-2-32": { + "subsystem": "markdown", + "title": "Triple Star Emphasis Not Allowed", + "message_template": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "docs_url": "https://quarto.org/docs/errors/Q-2-32", + "since_version": "99.9.9" + }, + "Q-2-33": { + "subsystem": "markdown", + "title": "Spaces in Link Targets", + "message_template": "Link targets cannot contain spaces. Replace spaces with %20.", + "docs_url": "https://quarto.org/docs/errors/Q-2-33", + "since_version": "99.9.9" + }, + "Q-2-34": { + "subsystem": "markdown", + "title": "Unquoted Shortcode Parameter Starting with Digit", + "message_template": "Shortcode parameter values starting with digits must be quoted.", + "docs_url": "https://quarto.org/docs/errors/Q-2-34", + "since_version": "99.9.9" + }, + "Q-3-1": { "subsystem": "writer", "title": "IO Error During Write", diff --git a/crates/quarto-error-reporting/src/diagnostic.rs b/crates/quarto-error-reporting/src/diagnostic.rs index 461fe58..78585d1 100644 --- a/crates/quarto-error-reporting/src/diagnostic.rs +++ b/crates/quarto-error-reporting/src/diagnostic.rs @@ -434,7 +434,7 @@ impl DiagnosticMessage { // All hints for hint in &self.hints { - write!(result, "? {}\n", hint.as_str()).unwrap(); + write!(result, "ℹ {}\n", hint.as_str()).unwrap(); } } else { // Have ariadne - only show details without locations and hints @@ -454,7 +454,7 @@ impl DiagnosticMessage { // All hints (ariadne doesn't show hints) for hint in &self.hints { - write!(result, "? {}\n", hint.as_str()).unwrap(); + write!(result, "ℹ {}\n", hint.as_str()).unwrap(); } } @@ -939,7 +939,7 @@ mod tests { assert!(text.contains("Values must be numeric")); assert!(text.contains("✖ Found text in column 3")); assert!(text.contains("ℹ Columns should contain only numbers")); - assert!(text.contains("? Convert to numbers first?")); + assert!(text.contains("ℹ Convert to numbers first?")); } #[test] diff --git a/crates/quarto-markdown-pandoc/error-message-macros/src/lib.rs b/crates/quarto-markdown-pandoc/error-message-macros/src/lib.rs index bdb69c0..a0fff5f 100644 --- a/crates/quarto-markdown-pandoc/error-message-macros/src/lib.rs +++ b/crates/quarto-markdown-pandoc/error-message-macros/src/lib.rs @@ -28,6 +28,8 @@ struct Note { label_end: Option, #[serde(rename = "trimLeadingSpace")] trim_leading_space: Option, + #[serde(rename = "trimTrailingSpace")] + trim_trailing_space: Option, } #[derive(Deserialize)] @@ -37,6 +39,8 @@ struct ErrorInfo { message: String, captures: Vec, notes: Vec, + #[serde(default)] + hints: Vec, } #[derive(Deserialize)] @@ -117,6 +121,10 @@ pub fn include_error_table(input: TokenStream) -> TokenStream { Some(trim) => quote! { Some(#trim) }, None => quote! { None }, }; + let trim_trailing_space = match ¬e.trim_trailing_space { + Some(trim) => quote! { Some(#trim) }, + None => quote! { None }, + }; quote! { crate::readers::qmd_error_message_table::ErrorNote { @@ -126,10 +134,15 @@ pub fn include_error_table(input: TokenStream) -> TokenStream { label_begin: #note_label_begin, label_end: #note_label_end, trim_leading_space: #trim_leading_space, + trim_trailing_space: #trim_trailing_space, } } }); + let hints = entry.error_info.hints.iter().map(|hint| { + quote! { #hint } + }); + quote! { crate::readers::qmd_error_message_table::ErrorTableEntry { state: #state, @@ -142,6 +155,7 @@ pub fn include_error_table(input: TokenStream) -> TokenStream { message: #message, captures: &[#(#captures),*], notes: &[#(#notes),*], + hints: &[#(#hints),*], }, name: #name, } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-1.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-1.json index b70c366..bda0797 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-1.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-1.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing ']' for the span or link.", "notes": [ { - "message": "This is the opening bracket for the span", + "message": "This is the opening bracket for the span.", "label": "span-start", "noteType": "simple" } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-11.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-11.json index 629d742..94f35c1 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-11.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-11.json @@ -4,12 +4,59 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } ], "cases": [ + { + "name": "simple-wrapped", + "description": "Simple case and variants in different contexts", + "content": "a\" b.", + "captures": [ + { + "label": "quote-start", + "row": 0, + "column": 1, + "size": 1 + } + ], + "prefixesAndSuffixes": [ + ["**", "**\n"], + ["*", "*\n"], + ["[", "](url)\n"], + ["^", "^\n"], + ["~", "~\n"], + ["~~", "~~\n"], + ["![", "](url)\n"], + ["\"", "\"\n"], + ["[++", "]\n"], + ["[--", "]\n"], + ["[>>", "]\n"], + ["[==", "]\n"], + ["foo^[", "]\n"], + ["_", "_\n"], + ["__", "__\n"], + ["'", "'\n"], + ["## ", "\n"] + ] + }, + { + "name": "stray-ending-quote", + "description": "Simple case", + "content": "foo\" a ", + "captures": [ + { + "label": "quote-start", + "row": 0, + "column": 3, + "size": 1 + } + ] + }, { "name": "simple", "description": "Simple case", @@ -22,22 +69,139 @@ "size": 1 } ], - "prefixes": ["", "[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "*", "**", "^["], - "suffixes": [ - "", - "a a", - "a _a_", "a __a__", - "a *a*", "a **a**", - "a $a$", "a $$a$$", - "a ~a~", "a ~~a~~", - "a `a`", - "a 'a'", - "a \"a\"", - "a ^a^", - "a [a]{}", - "a ![a]{}", - "a ^[a]", - "a " + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "^", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "_a_" + ], + [ + "", + "__a__" + ], + [ + "", + "*a*" + ], + [ + "", + "**a**" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "~a~" + ], + [ + "", + "~~a~~" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] ] } ] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-12.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-12.json index 90e088c..a952f34 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-12.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-12.json @@ -4,16 +4,31 @@ "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "notes": [ { - "message": "This is the opening '*' mark", + "message": "This is the opening '*' mark.", "label": "emphasis-start", - "noteType": "simple" + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } ], "cases": [ + { + "name": "stray-ending-star", + "description": "Simple case", + "content": "foo* a ", + "captures": [ + { + "label": "emphasis-start", + "row": 0, + "column": 3, + "size": 2 + } + ] + }, { "name": "simple", "description": "Simple case", - "content": "*Unclosed emphasis\n", + "content": "*", "captures": [ { "label": "emphasis-start", @@ -22,7 +37,132 @@ "size": 1 } ], - "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "^", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "_a_" + ], + [ + "", + "__a__" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "~a~" + ], + [ + "", + "~~a~~" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-13.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-13.json index cc81d4a..4c50aff 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-13.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-13.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "notes": [ { - "message": "This is the opening '**' mark", + "message": "This is the opening '**' mark.", "label": "strong-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "**Unclosed strong emphasis\n", + "content": "**", "captures": [ { "label": "strong-start", @@ -22,7 +22,132 @@ "size": 2 } ], - "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "^", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "_a_" + ], + [ + "", + "__a__" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "~a~" + ], + [ + "", + "~~a~~" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-15.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-15.json index a007be2..ba50957 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-15.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-15.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "notes": [ { - "message": "This is the opening '__' mark", + "message": "This is the opening '__' mark.", "label": "strong-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "__Unclosed strong emphasis\n", + "content": "__", "captures": [ { "label": "strong-start", @@ -22,7 +22,132 @@ "size": 2 } ], - "prefixes": ["[", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "^", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "*a*" + ], + [ + "", + "**a**" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "~a~" + ], + [ + "", + "~~a~~" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-16.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-16.json index c43baa7..424e3b2 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-16.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-16.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing '^' for the superscript.", "notes": [ { - "message": "This is the opening '^' mark", + "message": "This is the opening '^' mark.", "label": "super-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "^Unclosed superscript\n", + "content": "^", "captures": [ { "label": "super-start", @@ -22,7 +22,112 @@ "size": 1 } ], - "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "_a_" + ], + [ + "", + "__a__" + ], + [ + "", + "*a*" + ], + [ + "", + "**a**" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "~a~" + ], + [ + "", + "~~a~~" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "![a]{}" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-17.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-17.json index 4fdc4eb..18a321b 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-17.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-17.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing '~' for the subscript.", "notes": [ { - "message": "This is the opening '~' mark", + "message": "This is the opening '~' mark.", "label": "sub-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "~Unclosed subscript\n", + "content": "~", "captures": [ { "label": "sub-start", @@ -22,7 +22,132 @@ "size": 1 } ], - "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "'", "\"", "*", "**", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "^", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "_a_" + ], + [ + "", + "__a__" + ], + [ + "", + "*a*" + ], + [ + "", + "**a**" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-18.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-18.json index 6c34e0e..d8594cd 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-18.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-18.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "notes": [ { - "message": "This is the opening '~~' mark", + "message": "This is the opening '~~' mark.", "label": "strike-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "~~Unclosed strikeout\n", + "content": "~~", "captures": [ { "label": "strike-start", @@ -22,7 +22,132 @@ "size": 2 } ], - "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "'", "\"", "*", "**", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "^", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "_a_" + ], + [ + "", + "__a__" + ], + [ + "", + "*a*" + ], + [ + "", + "**a**" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-19.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-19.json index 0757d4b..5d68791 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-19.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-19.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "notes": [ { - "message": "This is the opening '[++' mark", + "message": "This is the opening '[++' mark.", "label": "insert-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "[++Unclosed editorial insert\n", + "content": "[++", "captures": [ { "label": "insert-start", @@ -22,7 +22,144 @@ "size": 3 } ], - "prefixes": ["[", "_", "__", "![", "[--", "[!!", "[>>", "~", "~~", "'", "\"", "*", "**", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "_a_" + ], + [ + "", + "__a__" + ], + [ + "", + "*a*" + ], + [ + "", + "**a**" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "~a~" + ], + [ + "", + "~~a~~" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-20.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-20.json index 2999760..bb1bce5 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-20.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-20.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "notes": [ { - "message": "This is the opening '[--' mark", + "message": "This is the opening '[--' mark.", "label": "delete-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "[--Unclosed editorial delete\n", + "content": "[--", "captures": [ { "label": "delete-start", @@ -22,7 +22,144 @@ "size": 3 } ], - "prefixes": ["[", "_", "__", "![", "[++", "[!!", "[>>", "~", "~~", "'", "\"", "*", "**", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "_a_" + ], + [ + "", + "__a__" + ], + [ + "", + "*a*" + ], + [ + "", + "**a**" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "~a~" + ], + [ + "", + "~~a~~" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-21.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-21.json index 6334f60..a7cbee6 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-21.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-21.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "notes": [ { - "message": "This is the opening '[>>' mark", + "message": "This is the opening '[>>' mark.", "label": "comment-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "[>>Unclosed editorial comment\n", + "content": "[>>", "captures": [ { "label": "comment-start", @@ -22,7 +22,156 @@ "size": 3 } ], - "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "~", "~~", "'", "\"", "*", "**", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "[!!", + "" + ], + [ + "[--", + "" + ], + [ + "[++", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "_a_" + ], + [ + "", + "__a__" + ], + [ + "", + "*a*" + ], + [ + "", + "**a**" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "~a~" + ], + [ + "", + "~~a~~" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-22.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-22.json index d7ff6fe..7aff4f7 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-22.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-22.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "notes": [ { - "message": "This is the opening '[!!' mark", + "message": "This is the opening '[!!' mark.", "label": "highlight-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "[!!Unclosed editorial highlight\n", + "content": "[!!", "captures": [ { "label": "highlight-start", @@ -22,7 +22,156 @@ "size": 3 } ], - "prefixes": ["[", "_", "__", "![", "[++", "[--", "[>>", "~", "~~", "'", "\"", "*", "**", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "[!!", + "" + ], + [ + "[--", + "" + ], + [ + "[++", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "_a_" + ], + [ + "", + "__a__" + ], + [ + "", + "*a*" + ], + [ + "", + "**a**" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "~a~" + ], + [ + "", + "~~a~~" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-23.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-23.json index 27b6193..a29b317 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-23.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-23.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing '$' for the inline math.", "notes": [ { - "message": "This is the opening '$' mark", + "message": "This is the opening '$' mark.", "label": "math-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "$Unclosed inline math\n", + "content": "$\n", "captures": [ { "label": "math-start", @@ -22,7 +22,84 @@ "size": 1 } ], - "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "[!!", + "" + ], + [ + "[--", + "" + ], + [ + "[++", + "" + ], + [ + "^", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-24.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-24.json index d1032c6..0b8214e 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-24.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-24.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing '`' for the code span.", "notes": [ { - "message": "This is the opening '`' mark", + "message": "This is the opening '`' mark.", "label": "code-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "`Unclosed code span\n", + "content": "`", "captures": [ { "label": "code-start", diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-25.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-25.json index fb4a02e..d6c8bdd 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-25.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-25.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing '](url)' for the image.", "notes": [ { - "message": "This is the opening '![' mark", + "message": "This is the opening '![' mark.", "label": "image-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "![Unclosed image\n", + "content": "![", "captures": [ { "label": "image-start", @@ -22,7 +22,160 @@ "size": 2 } ], - "prefixes": ["[", "_", "__", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "[!!", + "" + ], + [ + "[--", + "" + ], + [ + "[++", + "" + ], + [ + "^", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "_a_" + ], + [ + "", + "__a__" + ], + [ + "", + "*a*" + ], + [ + "", + "**a**" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "~a~" + ], + [ + "", + "~~a~~" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-26.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-26.json index 11b0426..9dee78f 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-26.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-26.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "notes": [ { - "message": "This is the opening '^[' mark", + "message": "This is the opening '^[' mark.", "label": "footnote-start", "noteType": "simple" } @@ -13,7 +13,7 @@ { "name": "simple", "description": "Simple case", - "content": "^[Unclosed inline footnote\n", + "content": "^[", "captures": [ { "label": "footnote-start", @@ -22,7 +22,156 @@ "size": 2 } ], - "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**"] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "_", + "" + ], + [ + "__", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "[!!", + "" + ], + [ + "[--", + "" + ], + [ + "[++", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "_a_" + ], + [ + "", + "__a__" + ], + [ + "", + "*a*" + ], + [ + "", + "**a**" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "~a~" + ], + [ + "", + "~~a~~" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-27.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-27.json new file mode 100644 index 0000000..8d3ccef --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-27.json @@ -0,0 +1,145 @@ +{ + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Line break before closing delimiter in various shortcode forms", + "content": "{{< hello", + "captures": [ + { + "label": "shortcode-open", + "row": 0, + "column": 0, + "size": 3 + } + ], + "prefixesAndSuffixes": [ + [ + "[", + "\n >}}" + ], + [ + "_", + "\n >}}" + ], + [ + "__", + "\n >}}" + ], + [ + "![", + "\n >}}" + ], + [ + "[++", + "\n >}}" + ], + [ + "[--", + "\n >}}" + ], + [ + "[!!", + "\n >}}" + ], + [ + "[>>", + "\n >}}" + ], + [ + "^", + "\n >}}" + ], + [ + "~", + "\n >}}" + ], + [ + "~~", + "\n >}}" + ], + [ + "'", + "\n >}}" + ], + [ + "*", + "\n >}}" + ], + [ + "**", + "\n >}}" + ], + [ + "^[", + "\n >}}" + ], + [ + "", + "\n >}}" + ], + [ + "", + " key\n>}}" + ], + [ + "", + " 'value'\n>}}" + ], + [ + "", + " \"value\"\n>}}" + ], + [ + "", + " 42\n>}}" + ], + [ + "", + " param1 param2 param3\n>}}" + ], + [ + "", + " key=value\n>}}" + ], + [ + "", + " key='value'\n>}}" + ], + [ + "", + " key=\"value\"\n>}}" + ], + [ + "", + " key=42\n>}}" + ], + [ + "", + " key1=val1 key2=val2\n>}}" + ], + [ + "", + " param1 key=value\n>}}" + ], + [ + "", + " \"title\" 123 key1=value key2='quoted' enabled=true\n>}}" + ], + [ + "", + " key=value \n>}}]" + ] + ] + } + ] +} diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-28.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-28.json new file mode 100644 index 0000000..3e36583 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-28.json @@ -0,0 +1,145 @@ +{ + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Line break before closing delimiter in various escaped shortcode forms", + "content": "{{{< hello", + "captures": [ + { + "label": "shortcode-open", + "row": 0, + "column": 0, + "size": 4 + } + ], + "prefixesAndSuffixes": [ + [ + "[", + "\n >}}}" + ], + [ + "_", + "\n >}}}" + ], + [ + "__", + "\n >}}}" + ], + [ + "![", + "\n >}}}" + ], + [ + "[++", + "\n >}}}" + ], + [ + "[--", + "\n >}}}" + ], + [ + "[!!", + "\n >}}}" + ], + [ + "[>>", + "\n >}}}" + ], + [ + "^", + "\n >}}}" + ], + [ + "~", + "\n >}}}" + ], + [ + "~~", + "\n >}}}" + ], + [ + "'", + "\n >}}}" + ], + [ + "*", + "\n >}}}" + ], + [ + "**", + "\n >}}}" + ], + [ + "^[", + "\n >}}}" + ], + [ + "", + "\n >}}}" + ], + [ + "", + " key\n>}}}" + ], + [ + "", + " 'value'\n>}}}" + ], + [ + "", + " \"value\"\n>}}}" + ], + [ + "", + " 42\n>}}}" + ], + [ + "", + " param1 param2 param3\n>}}}" + ], + [ + "", + " key=value\n>}}}" + ], + [ + "", + " key='value'\n>}}}" + ], + [ + "", + " key=\"value\"\n>}}}" + ], + [ + "", + " key=42\n>}}}" + ], + [ + "", + " key1=val1 key2=val2\n>}}}" + ], + [ + "", + " param1 key=value\n>}}}" + ], + [ + "", + " \"title\" 123 key1=value key2='quoted' enabled=true\n>}}}" + ], + [ + "", + " key=value \n>}}}]" + ] + ] + } + ] +} diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-29.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-29.json new file mode 100644 index 0000000..5bb62d5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-29.json @@ -0,0 +1,32 @@ +{ + "code": "Q-2-29", + "title": "Indented Footnote Content Not Supported", + "message": "Quarto markdown does not support indented footnote content. Use the div syntax instead: `::: ^ref ... :::`.", + "notes": [ + { + "message": "This footnote definition has indented content, which is not supported in quarto markdown.", + "label": "footnote-def", + "noteType": "simple" + }, + { + "message": "For multi-paragraph footnotes, use the div syntax:\n\n::: ^ref\n\nFirst paragraph.\n\nSecond paragraph.\n\n:::.", + "label": "suggestion", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Footnote with indented content", + "content": "Some text[^1].\n\n[^1]:\n Indented content", + "captures": [ + { + "label": "footnote-def", + "row": 2, + "column": 0, + "size": 5 + } + ] + } + ] +} diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-3.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-3.json index d009e6c..5349668 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-3.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-3.json @@ -22,6 +22,19 @@ "size": 9 } ] + }, + { + "name": "simple-2", + "description": "Another simple case", + "content": "![Test image](test.png){fig-alt=\"Description\" .lightbox}", + "captures": [ + { + "label": "key-value", + "row": 0, + "column": 24, + "size": 21 + } + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-31.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-31.json new file mode 100644 index 0000000..c516083 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-31.json @@ -0,0 +1,69 @@ +{ + "code": "Q-2-31", + "title": "Inline Code Execution Not Allowed in URLs", + "message": "Inline code execution syntax (`{language} ...) cannot be used inside image or link destinations.", + "notes": [ + { + "message": "This opening backtick begins an invalid code execution attempt.", + "label": "backtick-start", + "noteType": "simple" + } + ], + "hints": [ + "Could you instead write an entire image or link as the code result?" + ], + "cases": [ + { + "name": "image-simple", + "description": "Image with inline code execution in URL", + "content": "![](`{python} url_variable`)\n", + "captures": [ + { + "label": "backtick-start", + "row": 0, + "column": 4, + "size": 1 + } + ] + }, + { + "name": "link-simple", + "description": "Link with inline code execution in URL", + "content": "[text](`{python} url_variable`)\n", + "captures": [ + { + "label": "backtick-start", + "row": 0, + "column": 7, + "size": 1 + } + ] + }, + { + "name": "image-mixed", + "description": "Image with text before inline code", + "content": "![](prefix`{python} url_variable`)\n", + "captures": [ + { + "label": "backtick-start", + "row": 0, + "column": 10, + "size": 1 + } + ] + }, + { + "name": "link-mixed", + "description": "Link with text before inline code", + "content": "[text](prefix`{python} url_variable`)\n", + "captures": [ + { + "label": "backtick-start", + "row": 0, + "column": 13, + "size": 1 + } + ] + } + ] +} diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-32.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-32.json new file mode 100644 index 0000000..6506156 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-32.json @@ -0,0 +1,34 @@ +{ + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "notes": [], + "cases": [ + { + "name": "basic", + "description": "Paragraph with triple star", + "content": "***hello", + "captures": [], + "prefixesAndSuffixes": [ + ["", ""], + ["hello", ""], + ["_a_", ""], + ["$a$", ""], + ["$$a$$", ""], + ["~a~", ""], + ["~~a~~", ""], + ["`a`", ""], + ["'a'", ""], + ["\"a\"", ""], + ["^a^", ""], + ["[a]{}", ""], + ["![a]{}", ""], + ["^[a]", ""], + ["[++ a]", ""], + ["[-- a]", ""], + ["[>> a]", ""], + ["[!! a]", ""] + ] + } + ] +} diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-33.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-33.json new file mode 100644 index 0000000..0b579c4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-33.json @@ -0,0 +1,26 @@ +{ + "code": "Q-2-33", + "title": "Spaces in link targets", + "message": "Link targets cannot contain spaces. Replace spaces with %20.", + "notes": [], + "cases": [ + { + "name": "image-with-space", + "description": "Image link with space in filename", + "content": "![](image file.png)", + "captures": [] + }, + { + "name": "link-with-space", + "description": "Regular link with space in target", + "content": "[link](target file.html)", + "captures": [] + }, + { + "name": "image-with-multiple-spaces", + "description": "Image link with multiple spaces", + "content": "![](path/to/my image file.png)", + "captures": [] + } + ] +} diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-34.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-34.json new file mode 100644 index 0000000..dd608cd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-34.json @@ -0,0 +1,26 @@ +{ + "code": "Q-2-34", + "title": "Unquoted shortcode parameter starting with digit", + "message": "Shortcode parameter values starting with digits must be quoted.", + "notes": [], + "cases": [ + { + "name": "basic", + "description": "Shortcode parameter value starts with digit followed by letter", + "content": "{{< a k=1b >}}", + "captures": [] + }, + { + "name": "real-world-example", + "description": "Font awesome size parameter", + "content": "{{< fa envelope size=1x >}}", + "captures": [] + }, + { + "name": "multiple-params", + "description": "Multiple parameters with unquoted digit-starting value", + "content": "{{< icon name=\"star\" size=2x >}}", + "captures": [] + } + ] +} diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-5.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-5.json index 34933aa..8eac180 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-5.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-5.json @@ -4,7 +4,7 @@ "message": "I reached the end of the block before finding a closing '_' for the emphasis.", "notes": [ { - "message": "This is the opening '_' mark", + "message": "This is the opening '_' mark.", "label": "emphasis-start", "noteType": "simple" } @@ -39,7 +39,7 @@ { "name": "at-start", "description": "Unclosed emphasis at start of line", - "content": "_Unclosed emphasis\n", + "content": "_", "captures": [ { "label": "emphasis-start", @@ -48,7 +48,132 @@ "size": 1 } ], - "prefixes": ["[", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**", "^["] + "prefixesAndSuffixes": [ + [ + "", + "" + ], + [ + "[", + "" + ], + [ + "![", + "" + ], + [ + "[>>", + "" + ], + [ + "^", + "" + ], + [ + "~", + "" + ], + [ + "~~", + "" + ], + [ + "'", + "" + ], + [ + "\"", + "" + ], + [ + "*", + "" + ], + [ + "**", + "" + ], + [ + "^[", + "" + ], + [ + "##", + "" + ], + [ + "", + "*a*" + ], + [ + "", + "**a**" + ], + [ + "", + "$a$" + ], + [ + "", + "$$a$$" + ], + [ + "", + "~a~" + ], + [ + "", + "~~a~~" + ], + [ + "", + "`a`" + ], + [ + "", + "'a'" + ], + [ + "", + "\"a\"" + ], + [ + "", + "^a^" + ], + [ + "", + "[a]{}" + ], + [ + "", + "![a]{}" + ], + [ + "", + "^[a]" + ], + [ + "", + "[++ a]" + ], + [ + "", + "[-- a]" + ], + [ + "", + "[>> a]" + ], + [ + "", + "[!! a]" + ], + [ + "", + "a" + ] + ] } ] } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-7.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-7.json index 7794b62..affe041 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-7.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-7.json @@ -14,7 +14,7 @@ { "name": "simple", "description": "Simple case", - "content": "'Tis the season to make apostrophe mistakes.", + "content": "'", "captures": [ { "label": "quote-start", @@ -22,19 +22,43 @@ "column": 0, "size": 1 } - ] - }, - { - "name": "in-link", - "description": "Inside link", - "content": "[`a`'s](b)", - "captures": [ - { - "label": "quote-start", - "row": 0, - "column": 4, - "size": 1 - } + ], + "prefixesAndSuffixes": [ + ["", ""], + ["[", ""], + ["_", ""], + ["__", ""], + ["![", ""], + ["[>>", ""], + ["^", ""], + ["~", ""], + ["~~", ""], + ["\"", ""], + ["*", ""], + ["**", ""], + ["^[", ""], + ["##", ""], + + ["", "_a_"], + ["", "__a__"], + ["", "*a*"], + ["", "**a**"], + ["", "$a$"], + ["", "$$a$$"], + ["", "~a~"], + ["", "~~a~~"], + ["", "`a`"], + ["", "\"a\""], + ["", "^a^"], + ["", "[a]{}"], + ["", "![a]{}"], + ["", "^[a]"], + ["", "[++ a]"], + ["", "[-- a]"], + ["", "[>> a]"], + ["", "[!! a]"], + + ["", "a"] ] } ] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/_autogen-table.json b/crates/quarto-markdown-pandoc/resources/error-corpus/_autogen-table.json index 9f9e57a..c2b88e2 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/_autogen-table.json +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/_autogen-table.json @@ -2,7 +2,7 @@ { "column": 17, "row": 0, - "state": 1184, + "state": 1425, "sym": "_close_block", "errorInfo": { "code": "Q-2-1", @@ -11,7 +11,7 @@ "captures": [ { "column": 3, - "lrState": 175, + "lrState": 171, "row": 0, "size": 1, "sym": "[", @@ -20,18 +20,19 @@ ], "notes": [ { - "message": "This is the opening bracket for the span", + "message": "This is the opening bracket for the span.", "label": "span-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-1/simple" }, { "column": 2, "row": 0, - "state": 683, + "state": 700, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -40,7 +41,7 @@ "captures": [ { "column": 1, - "lrState": 683, + "lrState": 700, "row": 0, "size": 1, "sym": "single_quote", @@ -53,14 +54,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple" }, { "column": 4, "row": 0, - "state": 735, + "state": 742, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -69,7 +71,7 @@ "captures": [ { "column": 3, - "lrState": 735, + "lrState": 742, "row": 0, "size": 1, "sym": "single_quote", @@ -82,14 +84,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-1" }, { "column": 3, "row": 0, - "state": 736, + "state": 701, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -98,7 +101,7 @@ "captures": [ { "column": 2, - "lrState": 736, + "lrState": 701, "row": 0, "size": 1, "sym": "single_quote", @@ -111,14 +114,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-2" }, { "column": 3, "row": 0, - "state": 666, + "state": 670, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -127,7 +131,7 @@ "captures": [ { "column": 2, - "lrState": 666, + "lrState": 670, "row": 0, "size": 1, "sym": "single_quote", @@ -140,14 +144,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-3" }, { "column": 3, "row": 0, - "state": 678, + "state": 664, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -156,7 +161,7 @@ "captures": [ { "column": 2, - "lrState": 678, + "lrState": 664, "row": 0, "size": 1, "sym": "single_quote", @@ -169,14 +174,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-4" }, { "column": 3, "row": 0, - "state": 654, + "state": 738, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -185,7 +191,7 @@ "captures": [ { "column": 2, - "lrState": 654, + "lrState": 738, "row": 0, "size": 1, "sym": "single_quote", @@ -198,14 +204,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-5" }, { "column": 4, "row": 0, - "state": 719, + "state": 736, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -214,7 +221,7 @@ "captures": [ { "column": 3, - "lrState": 719, + "lrState": 736, "row": 0, "size": 1, "sym": "single_quote", @@ -227,14 +234,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-6" }, { "column": 4, "row": 0, - "state": 666, + "state": 670, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -243,7 +251,7 @@ "captures": [ { "column": 3, - "lrState": 666, + "lrState": 670, "row": 0, "size": 1, "sym": "single_quote", @@ -256,14 +264,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-7" }, { "column": 3, "row": 0, - "state": 728, + "state": 745, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -272,7 +281,7 @@ "captures": [ { "column": 2, - "lrState": 728, + "lrState": 745, "row": 0, "size": 1, "sym": "single_quote", @@ -285,7 +294,8 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-8" }, @@ -314,7 +324,8 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-9" }, @@ -343,7 +354,8 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-10" }, @@ -372,14 +384,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-11" }, { "column": 5, "row": 0, - "state": 666, + "state": 670, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -388,7 +401,7 @@ "captures": [ { "column": 4, - "lrState": 666, + "lrState": 670, "row": 0, "size": 1, "sym": "single_quote", @@ -401,14 +414,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-12" }, { "column": 7, "row": 0, - "state": 709, + "state": 716, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -417,7 +431,7 @@ "captures": [ { "column": 6, - "lrState": 709, + "lrState": 716, "row": 0, "size": 1, "sym": "single_quote", @@ -430,14 +444,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-13" }, { "column": 3, "row": 0, - "state": 652, + "state": 656, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -446,7 +461,7 @@ "captures": [ { "column": 2, - "lrState": 652, + "lrState": 656, "row": 0, "size": 1, "sym": "single_quote", @@ -459,14 +474,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-14" }, { "column": 4, "row": 0, - "state": 682, + "state": 658, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -475,7 +491,7 @@ "captures": [ { "column": 3, - "lrState": 682, + "lrState": 658, "row": 0, "size": 1, "sym": "single_quote", @@ -488,14 +504,15 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-15" }, { "column": 5, "row": 0, - "state": 683, + "state": 700, "sym": "_whitespace", "errorInfo": { "code": "Q-2-10", @@ -504,7 +521,7 @@ "captures": [ { "column": 4, - "lrState": 683, + "lrState": 700, "row": 0, "size": 1, "sym": "single_quote", @@ -517,23 +534,24 @@ "label": "quote-start", "noteType": "simple" } - ] + ], + "hints": [] }, "name": "Q-2-10/simple-16" }, { - "column": 1, + "column": 2, "row": 0, - "state": 691, - "sym": "_close_block", + "state": 654, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 1, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -542,27 +560,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple" + "name": "Q-2-11/simple-wrapped" }, { - "column": 1, + "column": 4, "row": 0, - "state": 691, - "sym": "_close_block", + "state": 743, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 3, + "lrState": 743, "row": 0, "size": 1, "sym": "double_quote", @@ -571,27 +592,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-1" + "name": "Q-2-11/simple-wrapped-1" }, { - "column": 4, + "column": 3, "row": 0, - "state": 1732, - "sym": "_close_block", + "state": 706, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 2, + "lrState": 706, "row": 0, "size": 1, "sym": "double_quote", @@ -600,27 +624,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-2" + "name": "Q-2-11/simple-wrapped-2" }, { - "column": 6, + "column": 3, "row": 0, - "state": 1904, - "sym": "_close_block", + "state": 671, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 2, + "lrState": 671, "row": 0, "size": 1, "sym": "double_quote", @@ -629,27 +656,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-3" + "name": "Q-2-11/simple-wrapped-3" }, { - "column": 8, + "column": 3, "row": 0, - "state": 1899, - "sym": "_close_block", + "state": 665, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 2, + "lrState": 665, "row": 0, "size": 1, "sym": "double_quote", @@ -658,27 +688,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-4" + "name": "Q-2-11/simple-wrapped-4" }, { - "column": 6, + "column": 3, "row": 0, - "state": 1904, - "sym": "_close_block", + "state": 739, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 2, + "lrState": 739, "row": 0, "size": 1, "sym": "double_quote", @@ -687,27 +720,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-5" + "name": "Q-2-11/simple-wrapped-5" }, { - "column": 8, + "column": 4, "row": 0, - "state": 1899, - "sym": "_close_block", + "state": 741, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 3, + "lrState": 741, "row": 0, "size": 1, "sym": "double_quote", @@ -716,27 +752,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-6" + "name": "Q-2-11/simple-wrapped-6" }, { - "column": 6, + "column": 4, "row": 0, - "state": 1922, - "sym": "_close_block", + "state": 671, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 3, + "lrState": 671, "row": 0, "size": 1, "sym": "double_quote", @@ -745,18 +784,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-7" + "name": "Q-2-11/simple-wrapped-7" }, { - "column": 8, + "column": 7, "row": 0, - "state": 1927, + "state": 654, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -764,8 +806,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 2, + "lrState": 1081, "row": 0, "size": 1, "sym": "double_quote", @@ -774,27 +816,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-8" + "name": "Q-2-11/simple-wrapped-8" }, { - "column": 6, + "column": 5, "row": 0, - "state": 1892, - "sym": "_close_block", + "state": 733, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 4, + "lrState": 733, "row": 0, "size": 1, "sym": "double_quote", @@ -803,27 +848,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-9" + "name": "Q-2-11/simple-wrapped-9" }, { - "column": 8, + "column": 5, "row": 0, - "state": 1891, - "sym": "_close_block", + "state": 733, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 4, + "lrState": 733, "row": 0, "size": 1, "sym": "double_quote", @@ -832,27 +880,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-10" + "name": "Q-2-11/simple-wrapped-10" }, { - "column": 6, + "column": 5, "row": 0, - "state": 1221, - "sym": "_close_block", + "state": 733, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 4, + "lrState": 733, "row": 0, "size": 1, "sym": "double_quote", @@ -861,27 +912,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-11" + "name": "Q-2-11/simple-wrapped-11" }, { - "column": 6, + "column": 5, "row": 0, - "state": 1886, - "sym": "_close_block", + "state": 671, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 4, + "lrState": 671, "row": 0, "size": 1, "sym": "double_quote", @@ -890,27 +944,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-12" + "name": "Q-2-11/simple-wrapped-12" }, { - "column": 6, + "column": 7, "row": 0, - "state": 691, - "sym": "_close_block", + "state": 717, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 6, + "lrState": 717, "row": 0, "size": 1, "sym": "double_quote", @@ -919,27 +976,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-13" + "name": "Q-2-11/simple-wrapped-13" }, { - "column": 6, + "column": 3, "row": 0, - "state": 1893, - "sym": "_close_block", + "state": 657, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 2, + "lrState": 657, "row": 0, "size": 1, "sym": "double_quote", @@ -948,27 +1008,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-14" + "name": "Q-2-11/simple-wrapped-14" }, { - "column": 8, + "column": 4, "row": 0, - "state": 2181, - "sym": "_close_block", + "state": 659, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 3, + "lrState": 659, "row": 0, "size": 1, "sym": "double_quote", @@ -977,27 +1040,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-15" + "name": "Q-2-11/simple-wrapped-15" }, { - "column": 9, + "column": 3, "row": 0, - "state": 2181, - "sym": "_close_block", + "state": 719, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 2, + "lrState": 719, "row": 0, "size": 1, "sym": "double_quote", @@ -1006,27 +1072,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-16" + "name": "Q-2-11/simple-wrapped-16" }, { - "column": 7, + "column": 5, "row": 0, - "state": 1898, - "sym": "_close_block", + "state": 654, + "sym": "_whitespace", "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 4, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1035,27 +1104,30 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-17" + "name": "Q-2-11/simple-wrapped-17" }, { - "column": 3, + "column": 4, "row": 0, - "state": 900, - "sym": "_close_block", - "errorInfo": { + "state": 654, + "sym": "_whitespace", + "errorInfo": { "code": "Q-2-11", "title": "Unclosed Double Quote", "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 0, - "lrState": 691, + "column": 3, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1064,18 +1136,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-18" + "name": "Q-2-11/stray-ending-quote" }, { - "column": 2, + "column": 1, "row": 0, - "state": 667, + "state": 654, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1083,8 +1158,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 667, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1093,18 +1168,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-19" + "name": "Q-2-11/simple" }, { - "column": 5, + "column": 1, "row": 0, - "state": 1732, + "state": 654, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1112,8 +1190,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 667, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1122,18 +1200,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-20" + "name": "Q-2-11/simple-1" }, { - "column": 7, + "column": 2, "row": 0, - "state": 1904, + "state": 671, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1142,7 +1223,7 @@ "captures": [ { "column": 1, - "lrState": 667, + "lrState": 671, "row": 0, "size": 1, "sym": "double_quote", @@ -1151,18 +1232,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-21" + "name": "Q-2-11/simple-2" }, { - "column": 9, + "column": 2, "row": 0, - "state": 1899, + "state": 657, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1171,7 +1255,7 @@ "captures": [ { "column": 1, - "lrState": 667, + "lrState": 657, "row": 0, "size": 1, "sym": "double_quote", @@ -1180,18 +1264,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-22" + "name": "Q-2-11/simple-3" }, { - "column": 7, + "column": 3, "row": 0, - "state": 1904, + "state": 659, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1199,8 +1286,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 667, + "column": 2, + "lrState": 659, "row": 0, "size": 1, "sym": "double_quote", @@ -1209,18 +1296,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-23" + "name": "Q-2-11/simple-4" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1899, + "state": 671, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1228,8 +1318,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 667, + "column": 2, + "lrState": 671, "row": 0, "size": 1, "sym": "double_quote", @@ -1238,18 +1328,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-24" + "name": "Q-2-11/simple-5" }, { - "column": 7, + "column": 4, "row": 0, - "state": 1922, + "state": 733, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1257,8 +1350,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 667, + "column": 3, + "lrState": 733, "row": 0, "size": 1, "sym": "double_quote", @@ -1267,18 +1360,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-25" + "name": "Q-2-11/simple-6" }, { - "column": 9, + "column": 2, "row": 0, - "state": 1927, + "state": 665, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1287,7 +1383,7 @@ "captures": [ { "column": 1, - "lrState": 667, + "lrState": 665, "row": 0, "size": 1, "sym": "double_quote", @@ -1296,18 +1392,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-26" + "name": "Q-2-11/simple-7" }, { - "column": 7, + "column": 2, "row": 0, - "state": 1892, + "state": 739, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1316,7 +1415,7 @@ "captures": [ { "column": 1, - "lrState": 667, + "lrState": 739, "row": 0, "size": 1, "sym": "double_quote", @@ -1325,18 +1424,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-27" + "name": "Q-2-11/simple-8" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1891, + "state": 741, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1344,8 +1446,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 667, + "column": 2, + "lrState": 741, "row": 0, "size": 1, "sym": "double_quote", @@ -1354,18 +1456,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-28" + "name": "Q-2-11/simple-9" }, { - "column": 7, + "column": 2, "row": 0, - "state": 1221, + "state": 719, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1374,7 +1479,7 @@ "captures": [ { "column": 1, - "lrState": 667, + "lrState": 719, "row": 0, "size": 1, "sym": "double_quote", @@ -1383,18 +1488,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-29" + "name": "Q-2-11/simple-10" }, { - "column": 7, + "column": 2, "row": 0, - "state": 1886, + "state": 706, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1403,7 +1511,7 @@ "captures": [ { "column": 1, - "lrState": 667, + "lrState": 706, "row": 0, "size": 1, "sym": "double_quote", @@ -1412,18 +1520,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-30" + "name": "Q-2-11/simple-11" }, { - "column": 7, + "column": 3, "row": 0, - "state": 667, + "state": 743, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1431,8 +1542,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 667, + "column": 2, + "lrState": 743, "row": 0, "size": 1, "sym": "double_quote", @@ -1441,18 +1552,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-31" + "name": "Q-2-11/simple-12" }, { - "column": 7, + "column": 3, "row": 0, - "state": 1893, + "state": 717, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1460,8 +1574,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 667, + "column": 2, + "lrState": 717, "row": 0, "size": 1, "sym": "double_quote", @@ -1470,18 +1584,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-32" + "name": "Q-2-11/simple-13" }, { - "column": 9, + "column": 3, "row": 0, - "state": 2181, + "state": 654, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1489,8 +1606,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 667, + "column": 2, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1499,18 +1616,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-33" + "name": "Q-2-11/simple-14" }, { - "column": 10, + "column": 4, "row": 0, - "state": 2181, + "state": 2159, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1518,8 +1638,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 667, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1528,18 +1648,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-34" + "name": "Q-2-11/simple-15" }, { - "column": 8, + "column": 6, "row": 0, - "state": 1898, + "state": 2158, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1547,8 +1670,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 667, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1557,18 +1680,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-35" + "name": "Q-2-11/simple-16" }, { "column": 4, "row": 0, - "state": 900, + "state": 2159, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1576,8 +1702,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 667, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1586,18 +1712,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-36" + "name": "Q-2-11/simple-17" }, { - "column": 2, + "column": 6, "row": 0, - "state": 653, + "state": 2158, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1605,8 +1734,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1615,18 +1744,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-37" + "name": "Q-2-11/simple-18" }, { - "column": 5, + "column": 4, "row": 0, - "state": 1732, + "state": 2163, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1634,8 +1766,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1644,18 +1776,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-38" + "name": "Q-2-11/simple-19" }, { - "column": 7, + "column": 6, "row": 0, - "state": 1904, + "state": 2164, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1663,8 +1798,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1673,18 +1808,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-39" + "name": "Q-2-11/simple-20" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1899, + "state": 2155, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1692,8 +1830,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1702,18 +1840,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-40" + "name": "Q-2-11/simple-21" }, { - "column": 7, + "column": 6, "row": 0, - "state": 1904, + "state": 2154, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1721,8 +1862,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1731,18 +1872,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-41" + "name": "Q-2-11/simple-22" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1899, + "state": 1257, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1750,8 +1894,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1760,18 +1904,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-42" + "name": "Q-2-11/simple-23" }, { - "column": 7, + "column": 4, "row": 0, - "state": 1922, + "state": 2150, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1779,8 +1926,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1789,18 +1936,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-43" + "name": "Q-2-11/simple-24" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1927, + "state": 2156, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1808,8 +1958,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1818,18 +1968,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-44" + "name": "Q-2-11/simple-25" }, { - "column": 7, + "column": 6, "row": 0, - "state": 1892, + "state": 2214, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1837,8 +1990,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1847,18 +2000,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-45" + "name": "Q-2-11/simple-26" }, { - "column": 9, + "column": 7, "row": 0, - "state": 1891, + "state": 2214, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1866,8 +2022,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1876,18 +2032,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-46" + "name": "Q-2-11/simple-27" }, { - "column": 7, + "column": 5, "row": 0, - "state": 1221, + "state": 2157, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1895,8 +2054,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1905,18 +2064,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-47" + "name": "Q-2-11/simple-28" }, { "column": 7, "row": 0, - "state": 1886, + "state": 1274, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1924,8 +2086,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1934,18 +2096,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-48" + "name": "Q-2-11/simple-29" }, { "column": 7, "row": 0, - "state": 653, + "state": 1275, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1953,8 +2118,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1963,18 +2128,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-49" + "name": "Q-2-11/simple-30" }, { "column": 7, "row": 0, - "state": 1893, + "state": 1276, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -1982,8 +2150,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -1992,18 +2160,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-50" + "name": "Q-2-11/simple-31" }, { - "column": 9, + "column": 7, "row": 0, - "state": 2181, + "state": 1273, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -2011,8 +2182,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -2021,18 +2192,21 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-51" + "name": "Q-2-11/simple-32" }, { - "column": 10, + "column": 2, "row": 0, - "state": 2181, + "state": 2139, "sym": "_close_block", "errorInfo": { "code": "Q-2-11", @@ -2040,8 +2214,8 @@ "message": "I reached the end of the block before finding a closing '\"' for the quote.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 654, "row": 0, "size": 1, "sym": "double_quote", @@ -2050,12285 +2224,12777 @@ ], "notes": [ { - "message": "This is the opening quote mark", + "message": "This is the opening quote mark.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true, + "trimTrailingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-52" + "name": "Q-2-11/simple-33" }, { - "column": 8, + "column": 7, "row": 0, - "state": 1898, + "state": 910, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 3, + "lrState": 761, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-53" + "name": "Q-2-12/stray-ending-star" }, { - "column": 4, - "row": 0, - "state": 900, - "sym": "_close_block", + "column": 0, + "row": 1, + "state": 3294, + "sym": "_block_close", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 1, - "lrState": 653, + "column": 0, + "lrState": 223, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "_list_marker_star_dont_interrupt", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-54" + "name": "Q-2-12/simple" }, { - "column": 3, - "row": 0, - "state": 687, - "sym": "_close_block", + "column": 0, + "row": 1, + "state": 3294, + "sym": "_block_close", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 0, + "lrState": 223, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "_list_marker_star_dont_interrupt", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-55" + "name": "Q-2-12/simple-1" }, { - "column": 6, + "column": 2, "row": 0, - "state": 1732, + "state": 870, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 1, + "lrState": 870, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-56" + "name": "Q-2-12/simple-2" }, { - "column": 8, + "column": 2, "row": 0, - "state": 1904, + "state": 862, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 1, + "lrState": 862, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-57" + "name": "Q-2-12/simple-3" }, { - "column": 10, + "column": 3, "row": 0, - "state": 1899, + "state": 846, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { "column": 2, - "lrState": 687, + "lrState": 846, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-58" + "name": "Q-2-12/simple-4" }, { - "column": 8, + "column": 3, "row": 0, - "state": 1904, + "state": 870, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { "column": 2, - "lrState": 687, + "lrState": 870, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-59" + "name": "Q-2-12/simple-5" }, { - "column": 10, + "column": 4, "row": 0, - "state": 1899, + "state": 782, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 3, + "lrState": 782, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-60" + "name": "Q-2-12/simple-6" }, { - "column": 8, + "column": 2, "row": 0, - "state": 1922, + "state": 822, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 1, + "lrState": 822, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-61" + "name": "Q-2-12/simple-7" }, { - "column": 10, + "column": 2, "row": 0, - "state": 1927, + "state": 814, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 1, + "lrState": 814, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-62" + "name": "Q-2-12/simple-8" }, { - "column": 8, + "column": 3, "row": 0, - "state": 1892, + "state": 806, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { "column": 2, - "lrState": 687, + "lrState": 806, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-63" + "name": "Q-2-12/simple-9" }, { - "column": 10, + "column": 2, "row": 0, - "state": 1891, + "state": 790, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 1, + "lrState": 790, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-64" + "name": "Q-2-12/simple-10" }, { - "column": 8, + "column": 2, "row": 0, - "state": 1221, + "state": 886, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 1, + "lrState": 886, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-65" + "name": "Q-2-12/simple-11" }, { - "column": 8, + "column": 3, "row": 0, - "state": 1886, + "state": 830, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { "column": 2, - "lrState": 687, + "lrState": 830, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-66" + "name": "Q-2-12/simple-12" }, { - "column": 8, + "column": 3, "row": 0, - "state": 687, + "state": 761, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { "column": 2, - "lrState": 687, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-67" + "name": "Q-2-12/simple-13" }, { - "column": 8, + "column": 4, "row": 0, - "state": 1893, + "state": 1860, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-68" + "name": "Q-2-12/simple-14" }, { - "column": 10, + "column": 6, "row": 0, - "state": 2181, + "state": 1859, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-69" + "name": "Q-2-12/simple-15" }, { - "column": 11, + "column": 4, "row": 0, - "state": 2181, + "state": 1868, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-70" + "name": "Q-2-12/simple-16" }, { - "column": 9, + "column": 6, "row": 0, - "state": 1898, + "state": 1869, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-71" + "name": "Q-2-12/simple-17" }, { - "column": 5, + "column": 4, "row": 0, - "state": 900, + "state": 1856, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 687, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-72" + "name": "Q-2-12/simple-18" }, { - "column": 3, + "column": 6, "row": 0, - "state": 667, + "state": 1855, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-73" + "name": "Q-2-12/simple-19" }, { - "column": 6, + "column": 4, "row": 0, - "state": 1732, + "state": 1357, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-74" + "name": "Q-2-12/simple-20" }, { - "column": 8, + "column": 4, "row": 0, - "state": 1904, + "state": 1851, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-75" + "name": "Q-2-12/simple-21" }, { - "column": 10, + "column": 4, "row": 0, - "state": 1899, + "state": 1852, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-76" + "name": "Q-2-12/simple-22" }, { - "column": 8, + "column": 4, "row": 0, - "state": 1904, + "state": 1857, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-77" + "name": "Q-2-12/simple-23" }, { - "column": 10, + "column": 6, "row": 0, - "state": 1899, + "state": 1914, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-78" + "name": "Q-2-12/simple-24" }, { - "column": 8, + "column": 7, "row": 0, - "state": 1922, + "state": 1914, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-79" + "name": "Q-2-12/simple-25" }, { - "column": 10, + "column": 5, "row": 0, - "state": 1927, + "state": 1858, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-80" + "name": "Q-2-12/simple-26" }, { - "column": 8, + "column": 7, "row": 0, - "state": 1892, + "state": 1386, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-81" + "name": "Q-2-12/simple-27" }, { - "column": 10, + "column": 7, "row": 0, - "state": 1891, + "state": 1387, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-82" + "name": "Q-2-12/simple-28" }, { - "column": 8, + "column": 7, "row": 0, - "state": 1221, + "state": 1388, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-83" + "name": "Q-2-12/simple-29" }, { - "column": 8, + "column": 7, "row": 0, - "state": 1886, + "state": 1385, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-84" + "name": "Q-2-12/simple-30" }, { - "column": 8, + "column": 2, "row": 0, - "state": 667, + "state": 1833, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 761, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", - "noteType": "simple" + "message": "This is the opening '*' mark.", + "label": "emphasis-start", + "noteType": "simple", + "trimTrailingSpace": true, + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-85" + "name": "Q-2-12/simple-31" }, { - "column": 8, + "column": 2, "row": 0, - "state": 1893, + "state": 758, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-86" + "name": "Q-2-13/simple" }, { - "column": 10, + "column": 2, "row": 0, - "state": 2181, + "state": 758, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-87" + "name": "Q-2-13/simple-1" }, { - "column": 11, + "column": 3, "row": 0, - "state": 2181, + "state": 868, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 1, + "lrState": 868, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-88" + "name": "Q-2-13/simple-2" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1898, + "state": 860, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 2, - "lrState": 667, + "column": 1, + "lrState": 860, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-89" + "name": "Q-2-13/simple-3" }, { - "column": 5, + "column": 4, "row": 0, - "state": 900, + "state": 844, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { "column": 2, - "lrState": 667, + "lrState": 844, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-90" + "name": "Q-2-13/simple-4" }, { "column": 4, "row": 0, - "state": 718, + "state": 868, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 868, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-91" + "name": "Q-2-13/simple-5" }, { - "column": 7, + "column": 5, "row": 0, - "state": 1732, + "state": 780, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { "column": 3, - "lrState": 718, + "lrState": 780, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-92" + "name": "Q-2-13/simple-6" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1904, + "state": 820, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 820, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-93" + "name": "Q-2-13/simple-7" }, { - "column": 11, + "column": 3, "row": 0, - "state": 1899, + "state": 812, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 812, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-94" + "name": "Q-2-13/simple-8" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1904, + "state": 804, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 804, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-95" + "name": "Q-2-13/simple-9" }, { - "column": 11, + "column": 3, "row": 0, - "state": 1899, + "state": 788, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, - "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "column": 1, + "lrState": 788, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-96" + "name": "Q-2-13/simple-10" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1922, + "state": 796, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 796, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-97" + "name": "Q-2-13/simple-11" }, { - "column": 11, + "column": 4, "row": 0, - "state": 1927, + "state": 828, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 828, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-98" + "name": "Q-2-13/simple-12" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1892, + "state": 758, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-99" + "name": "Q-2-13/simple-13" }, { - "column": 11, + "column": 5, "row": 0, - "state": 1891, + "state": 1711, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-100" + "name": "Q-2-13/simple-14" }, { - "column": 9, + "column": 7, "row": 0, - "state": 1221, + "state": 1710, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-101" + "name": "Q-2-13/simple-15" }, { - "column": 9, + "column": 5, "row": 0, - "state": 1886, + "state": 1718, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-102" + "name": "Q-2-13/simple-16" }, { - "column": 9, + "column": 7, "row": 0, - "state": 718, + "state": 1719, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-103" + "name": "Q-2-13/simple-17" }, { - "column": 9, + "column": 5, "row": 0, - "state": 1893, + "state": 1707, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-104" + "name": "Q-2-13/simple-18" }, { - "column": 11, + "column": 7, "row": 0, - "state": 2181, + "state": 1706, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-105" + "name": "Q-2-13/simple-19" }, { - "column": 12, + "column": 5, "row": 0, - "state": 2181, + "state": 1083, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-106" + "name": "Q-2-13/simple-20" }, { - "column": 10, + "column": 5, "row": 0, - "state": 1898, + "state": 1702, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-107" + "name": "Q-2-13/simple-21" }, { - "column": 6, + "column": 5, "row": 0, - "state": 900, + "state": 1703, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", - "captures": [ + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-108" + "name": "Q-2-13/simple-22" }, { - "column": 4, + "column": 5, "row": 0, - "state": 718, + "state": 1708, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-109" + "name": "Q-2-13/simple-23" }, { "column": 7, "row": 0, - "state": 1732, + "state": 1772, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-110" + "name": "Q-2-13/simple-24" }, { - "column": 9, + "column": 8, "row": 0, - "state": 1904, + "state": 1772, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-111" + "name": "Q-2-13/simple-25" }, { - "column": 11, + "column": 6, "row": 0, - "state": 1899, + "state": 1709, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-112" + "name": "Q-2-13/simple-26" }, { - "column": 9, + "column": 8, "row": 0, - "state": 1904, + "state": 1175, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-113" + "name": "Q-2-13/simple-27" }, { - "column": 11, + "column": 8, "row": 0, - "state": 1899, + "state": 1176, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-114" + "name": "Q-2-13/simple-28" }, { - "column": 9, + "column": 8, "row": 0, - "state": 1922, + "state": 1186, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-115" + "name": "Q-2-13/simple-29" }, { - "column": 11, + "column": 8, "row": 0, - "state": 1927, + "state": 1174, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-116" + "name": "Q-2-13/simple-30" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1892, + "state": 1686, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-13", + "title": "Unclosed Strong Star Emphasis", + "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 758, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '**' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-117" + "name": "Q-2-13/simple-31" }, { - "column": 11, + "column": 2, "row": 0, - "state": 1891, + "state": 759, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-118" + "name": "Q-2-15/simple" }, { - "column": 9, + "column": 2, "row": 0, - "state": 1221, + "state": 759, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-119" + "name": "Q-2-15/simple-1" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1886, + "state": 869, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", - "captures": [ - { - "column": 3, - "lrState": 718, + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "captures": [ + { + "column": 1, + "lrState": 869, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-120" + "name": "Q-2-15/simple-2" }, { - "column": 9, + "column": 4, "row": 0, - "state": 718, + "state": 869, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 869, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-121" + "name": "Q-2-15/simple-3" }, { - "column": 9, + "column": 5, "row": 0, - "state": 1893, + "state": 781, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { "column": 3, - "lrState": 718, + "lrState": 781, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-122" + "name": "Q-2-15/simple-4" }, { - "column": 11, + "column": 3, "row": 0, - "state": 2181, + "state": 821, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 821, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-123" + "name": "Q-2-15/simple-5" }, { - "column": 12, + "column": 3, "row": 0, - "state": 2181, + "state": 813, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 813, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-124" + "name": "Q-2-15/simple-6" }, { - "column": 10, + "column": 4, "row": 0, - "state": 1898, + "state": 805, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 805, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-125" + "name": "Q-2-15/simple-7" }, { - "column": 6, + "column": 3, "row": 0, - "state": 900, + "state": 789, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 789, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-126" + "name": "Q-2-15/simple-8" }, { - "column": 4, + "column": 3, "row": 0, - "state": 718, + "state": 797, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 797, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-127" + "name": "Q-2-15/simple-9" }, { - "column": 7, + "column": 3, "row": 0, - "state": 1732, + "state": 853, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 853, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-128" + "name": "Q-2-15/simple-10" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1904, + "state": 837, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 837, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-129" + "name": "Q-2-15/simple-11" }, { - "column": 11, + "column": 4, "row": 0, - "state": 1899, + "state": 829, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 829, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-130" + "name": "Q-2-15/simple-12" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1904, + "state": 759, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-131" + "name": "Q-2-15/simple-13" }, { - "column": 11, + "column": 5, "row": 0, - "state": 1899, + "state": 1788, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-132" + "name": "Q-2-15/simple-14" }, { - "column": 9, + "column": 7, "row": 0, - "state": 1922, + "state": 1787, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-133" + "name": "Q-2-15/simple-15" }, { - "column": 11, + "column": 5, "row": 0, - "state": 1927, + "state": 1792, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-134" + "name": "Q-2-15/simple-16" }, { - "column": 9, + "column": 7, "row": 0, - "state": 1892, + "state": 1793, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-135" + "name": "Q-2-15/simple-17" }, { - "column": 11, + "column": 5, "row": 0, - "state": 1891, + "state": 1784, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-136" + "name": "Q-2-15/simple-18" }, { - "column": 9, + "column": 7, "row": 0, - "state": 1221, + "state": 1783, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-137" + "name": "Q-2-15/simple-19" }, { - "column": 9, + "column": 5, "row": 0, - "state": 1886, + "state": 1207, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-138" + "name": "Q-2-15/simple-20" }, { - "column": 9, + "column": 5, "row": 0, - "state": 718, + "state": 1779, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-139" + "name": "Q-2-15/simple-21" }, { - "column": 9, + "column": 5, "row": 0, - "state": 1893, + "state": 1780, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-140" + "name": "Q-2-15/simple-22" }, { - "column": 11, + "column": 5, "row": 0, - "state": 2181, + "state": 1785, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-141" + "name": "Q-2-15/simple-23" }, { - "column": 12, + "column": 7, "row": 0, - "state": 2181, + "state": 1838, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-142" + "name": "Q-2-15/simple-24" }, { - "column": 10, + "column": 8, "row": 0, - "state": 1898, + "state": 1838, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-143" + "name": "Q-2-15/simple-25" }, { "column": 6, "row": 0, - "state": 900, + "state": 1786, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-144" + "name": "Q-2-15/simple-26" }, { - "column": 4, + "column": 8, "row": 0, - "state": 718, + "state": 1330, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-145" + "name": "Q-2-15/simple-27" }, { - "column": 7, + "column": 8, "row": 0, - "state": 1732, + "state": 1331, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-146" + "name": "Q-2-15/simple-28" }, { - "column": 9, + "column": 8, "row": 0, - "state": 1904, + "state": 1333, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-147" + "name": "Q-2-15/simple-29" }, { - "column": 11, + "column": 8, "row": 0, - "state": 1899, + "state": 1329, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-148" + "name": "Q-2-15/simple-30" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1904, + "state": 1764, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-15", + "title": "Unclosed Strong Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 759, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '__' mark.", + "label": "strong-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-149" + "name": "Q-2-15/simple-31" }, { - "column": 11, + "column": 1, "row": 0, - "state": 1899, + "state": 764, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-150" + "name": "Q-2-16/simple" }, { - "column": 9, + "column": 1, "row": 0, - "state": 1922, + "state": 764, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-151" + "name": "Q-2-16/simple-1" }, { - "column": 11, + "column": 2, "row": 0, - "state": 1927, + "state": 859, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 859, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-152" + "name": "Q-2-16/simple-2" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1892, + "state": 843, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 843, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-153" + "name": "Q-2-16/simple-3" }, { - "column": 11, + "column": 3, "row": 0, - "state": 1891, + "state": 867, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 867, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-154" + "name": "Q-2-16/simple-4" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1221, + "state": 779, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { "column": 3, - "lrState": 718, + "lrState": 779, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-155" + "name": "Q-2-16/simple-5" }, { - "column": 9, + "column": 2, "row": 0, - "state": 1886, + "state": 811, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 811, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-156" + "name": "Q-2-16/simple-6" }, { - "column": 9, + "column": 3, "row": 0, - "state": 718, + "state": 803, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 803, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-157" + "name": "Q-2-16/simple-7" }, { - "column": 9, + "column": 2, "row": 0, - "state": 1893, + "state": 787, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 787, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-158" + "name": "Q-2-16/simple-8" }, { - "column": 11, + "column": 2, "row": 0, - "state": 2181, + "state": 795, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 795, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-159" + "name": "Q-2-16/simple-9" }, { - "column": 12, + "column": 2, "row": 0, - "state": 2181, + "state": 851, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 1, + "lrState": 851, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-160" + "name": "Q-2-16/simple-10" }, { - "column": 10, + "column": 3, "row": 0, - "state": 1898, + "state": 835, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 835, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-161" + "name": "Q-2-16/simple-11" }, { - "column": 6, + "column": 3, "row": 0, - "state": 900, + "state": 827, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 3, - "lrState": 718, + "column": 2, + "lrState": 827, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-162" + "name": "Q-2-16/simple-12" }, { - "column": 2, + "column": 3, "row": 0, - "state": 679, + "state": 764, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 2, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-163" + "name": "Q-2-16/simple-13" }, { - "column": 5, + "column": 4, "row": 0, - "state": 1732, + "state": 1566, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-164" + "name": "Q-2-16/simple-14" }, { - "column": 7, + "column": 6, "row": 0, - "state": 1904, + "state": 1565, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-165" + "name": "Q-2-16/simple-15" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1899, + "state": 1566, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-166" + "name": "Q-2-16/simple-16" }, { - "column": 7, + "column": 6, "row": 0, - "state": 1904, + "state": 1565, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-167" + "name": "Q-2-16/simple-17" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1899, + "state": 1573, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-168" + "name": "Q-2-16/simple-18" }, { - "column": 7, + "column": 6, "row": 0, - "state": 1922, + "state": 1574, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-169" + "name": "Q-2-16/simple-19" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1927, + "state": 1562, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-170" + "name": "Q-2-16/simple-20" }, { - "column": 7, + "column": 6, "row": 0, - "state": 1892, + "state": 1561, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-171" + "name": "Q-2-16/simple-21" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1891, + "state": 1358, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-172" + "name": "Q-2-16/simple-22" }, { - "column": 7, + "column": 4, "row": 0, - "state": 1221, + "state": 1557, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-173" + "name": "Q-2-16/simple-23" }, { - "column": 7, + "column": 4, "row": 0, - "state": 1886, + "state": 1558, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-174" + "name": "Q-2-16/simple-24" }, { "column": 7, "row": 0, - "state": 679, + "state": 1625, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-175" + "name": "Q-2-16/simple-25" }, { - "column": 7, + "column": 2, "row": 0, - "state": 1893, + "state": 1536, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 764, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "superscript_delimiter", + "label": "super-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '^' mark.", + "label": "super-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-176" + "name": "Q-2-16/simple-26" }, { - "column": 9, + "column": 1, "row": 0, - "state": 2181, + "state": 763, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-177" + "name": "Q-2-17/simple" }, { - "column": 10, + "column": 1, "row": 0, - "state": 2181, + "state": 763, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 679, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-178" + "name": "Q-2-17/simple-1" }, { - "column": 8, + "column": 2, "row": 0, - "state": 1898, + "state": 866, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { "column": 1, - "lrState": 679, + "lrState": 866, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-179" + "name": "Q-2-17/simple-2" }, { - "column": 4, + "column": 2, "row": 0, - "state": 900, + "state": 858, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { "column": 1, - "lrState": 679, + "lrState": 858, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-180" + "name": "Q-2-17/simple-3" }, { - "column": 2, + "column": 3, "row": 0, - "state": 655, + "state": 842, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 2, + "lrState": 842, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-181" + "name": "Q-2-17/simple-4" }, { - "column": 5, + "column": 3, "row": 0, - "state": 1732, + "state": 866, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 2, + "lrState": 866, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-182" + "name": "Q-2-17/simple-5" }, { - "column": 7, + "column": 4, "row": 0, - "state": 1904, + "state": 778, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 3, + "lrState": 778, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-183" + "name": "Q-2-17/simple-6" }, { - "column": 9, + "column": 2, "row": 0, - "state": 1899, + "state": 818, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { "column": 1, - "lrState": 655, + "lrState": 818, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-184" + "name": "Q-2-17/simple-7" }, { - "column": 7, + "column": 2, "row": 0, - "state": 1904, + "state": 786, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { "column": 1, - "lrState": 655, + "lrState": 786, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-185" + "name": "Q-2-17/simple-8" }, { - "column": 9, + "column": 2, "row": 0, - "state": 1899, + "state": 794, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { "column": 1, - "lrState": 655, + "lrState": 794, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-186" + "name": "Q-2-17/simple-9" }, { - "column": 7, + "column": 2, "row": 0, - "state": 1922, + "state": 850, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { "column": 1, - "lrState": 655, + "lrState": 850, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-187" + "name": "Q-2-17/simple-10" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1927, + "state": 834, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 2, + "lrState": 834, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-188" + "name": "Q-2-17/simple-11" }, { - "column": 7, + "column": 3, "row": 0, - "state": 1892, + "state": 826, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 2, + "lrState": 826, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-189" + "name": "Q-2-17/simple-12" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1891, + "state": 763, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 2, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-190" + "name": "Q-2-17/simple-13" }, { - "column": 7, + "column": 4, "row": 0, - "state": 1221, + "state": 2295, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-191" + "name": "Q-2-17/simple-14" }, { - "column": 7, + "column": 6, "row": 0, - "state": 1886, + "state": 2294, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-192" + "name": "Q-2-17/simple-15" }, { - "column": 7, + "column": 4, "row": 0, - "state": 655, + "state": 2295, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-193" + "name": "Q-2-17/simple-16" }, { - "column": 7, + "column": 6, "row": 0, - "state": 1893, + "state": 2294, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-194" + "name": "Q-2-17/simple-17" }, { - "column": 9, + "column": 4, "row": 0, - "state": 2181, + "state": 1493, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-195" + "name": "Q-2-17/simple-18" }, { - "column": 10, + "column": 6, "row": 0, - "state": 2181, + "state": 1494, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-196" + "name": "Q-2-17/simple-19" }, { - "column": 8, + "column": 4, "row": 0, - "state": 1898, + "state": 1315, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-197" + "name": "Q-2-17/simple-20" }, { "column": 4, "row": 0, - "state": 900, + "state": 2286, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 1, - "lrState": 655, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-198" + "name": "Q-2-17/simple-21" }, { - "column": 3, + "column": 4, "row": 0, - "state": 722, + "state": 2287, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-199" + "name": "Q-2-17/simple-22" }, { - "column": 6, + "column": 4, "row": 0, - "state": 1732, + "state": 2292, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-200" + "name": "Q-2-17/simple-23" }, { - "column": 8, + "column": 6, "row": 0, - "state": 1904, + "state": 1543, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-201" + "name": "Q-2-17/simple-24" }, { - "column": 10, + "column": 7, "row": 0, - "state": 1899, + "state": 1543, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-202" + "name": "Q-2-17/simple-25" }, { - "column": 8, + "column": 5, "row": 0, - "state": 1904, + "state": 2293, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-203" + "name": "Q-2-17/simple-26" }, { - "column": 10, + "column": 7, "row": 0, - "state": 1899, + "state": 1337, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-204" + "name": "Q-2-17/simple-27" }, { - "column": 8, + "column": 7, "row": 0, - "state": 1922, + "state": 1338, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-205" + "name": "Q-2-17/simple-28" }, { - "column": 10, + "column": 7, "row": 0, - "state": 1927, + "state": 1339, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-206" + "name": "Q-2-17/simple-29" }, { - "column": 8, + "column": 7, "row": 0, - "state": 1892, + "state": 1332, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-207" + "name": "Q-2-17/simple-30" }, { - "column": 10, + "column": 2, "row": 0, - "state": 1891, + "state": 2274, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 0, + "lrState": 763, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "subscript_delimiter", + "label": "sub-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~' mark.", + "label": "sub-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-208" + "name": "Q-2-17/simple-31" }, { - "column": 8, + "column": 2, "row": 0, - "state": 1221, + "state": 768, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-209" + "name": "Q-2-18/simple" }, { - "column": 8, + "column": 2, "row": 0, - "state": 1886, + "state": 768, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-210" + "name": "Q-2-18/simple-1" }, { - "column": 8, + "column": 3, "row": 0, - "state": 722, + "state": 865, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 1, + "lrState": 865, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-211" + "name": "Q-2-18/simple-2" }, { - "column": 8, + "column": 3, "row": 0, - "state": 1893, + "state": 857, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 1, + "lrState": 857, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-212" + "name": "Q-2-18/simple-3" }, { - "column": 10, + "column": 4, "row": 0, - "state": 2181, + "state": 841, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { "column": 2, - "lrState": 722, + "lrState": 841, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-213" + "name": "Q-2-18/simple-4" }, { - "column": 11, + "column": 4, "row": 0, - "state": 2181, + "state": 865, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { "column": 2, - "lrState": 722, + "lrState": 865, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-214" + "name": "Q-2-18/simple-5" }, { - "column": 9, + "column": 5, "row": 0, - "state": 1898, + "state": 777, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 3, + "lrState": 777, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-215" + "name": "Q-2-18/simple-6" }, { - "column": 5, + "column": 3, "row": 0, - "state": 900, + "state": 817, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 2, - "lrState": 722, + "column": 1, + "lrState": 817, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-216" + "name": "Q-2-18/simple-7" }, { - "column": 2, + "column": 3, "row": 0, - "state": 677, + "state": 785, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { "column": 1, - "lrState": 677, + "lrState": 785, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-217" + "name": "Q-2-18/simple-8" }, { - "column": 5, + "column": 3, "row": 0, - "state": 1732, + "state": 793, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { "column": 1, - "lrState": 677, + "lrState": 793, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-218" + "name": "Q-2-18/simple-9" }, { - "column": 7, + "column": 3, "row": 0, - "state": 1904, + "state": 849, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { "column": 1, - "lrState": 677, + "lrState": 849, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-219" + "name": "Q-2-18/simple-10" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1899, + "state": 833, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 2, + "lrState": 833, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-220" + "name": "Q-2-18/simple-11" }, { - "column": 7, + "column": 4, "row": 0, - "state": 1904, + "state": 825, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 2, + "lrState": 825, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-221" + "name": "Q-2-18/simple-12" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1899, + "state": 768, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 2, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-222" + "name": "Q-2-18/simple-13" }, { - "column": 7, + "column": 5, "row": 0, - "state": 1922, + "state": 2229, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-223" + "name": "Q-2-18/simple-14" }, { - "column": 9, + "column": 7, "row": 0, - "state": 1927, + "state": 2228, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-224" + "name": "Q-2-18/simple-15" }, { - "column": 7, + "column": 5, "row": 0, - "state": 1892, + "state": 2229, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-225" + "name": "Q-2-18/simple-16" }, { - "column": 9, + "column": 7, "row": 0, - "state": 1891, + "state": 2228, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-226" + "name": "Q-2-18/simple-17" }, { - "column": 7, + "column": 5, "row": 0, - "state": 1221, + "state": 2233, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-227" + "name": "Q-2-18/simple-18" }, { "column": 7, "row": 0, - "state": 1886, + "state": 2234, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-228" + "name": "Q-2-18/simple-19" }, { - "column": 7, + "column": 5, "row": 0, - "state": 677, + "state": 1287, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-229" + "name": "Q-2-18/simple-20" }, { - "column": 7, + "column": 5, "row": 0, - "state": 1893, + "state": 2220, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-230" + "name": "Q-2-18/simple-21" }, { - "column": 9, + "column": 5, "row": 0, - "state": 2181, + "state": 2221, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-231" + "name": "Q-2-18/simple-22" }, { - "column": 10, + "column": 5, "row": 0, - "state": 2181, + "state": 2226, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-232" + "name": "Q-2-18/simple-23" }, { - "column": 8, + "column": 7, "row": 0, - "state": 1898, + "state": 2279, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-233" + "name": "Q-2-18/simple-24" }, { - "column": 4, + "column": 8, "row": 0, - "state": 900, + "state": 2279, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 677, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-234" + "name": "Q-2-18/simple-25" }, { - "column": 2, + "column": 6, "row": 0, - "state": 738, + "state": 2227, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 738, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-235" + "name": "Q-2-18/simple-26" }, { - "column": 5, + "column": 8, "row": 0, - "state": 1732, + "state": 1302, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 738, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-236" + "name": "Q-2-18/simple-27" }, { - "column": 7, + "column": 8, "row": 0, - "state": 1904, + "state": 1303, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 738, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-237" + "name": "Q-2-18/simple-28" }, { - "column": 9, + "column": 8, "row": 0, - "state": 1899, + "state": 1304, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 738, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-238" + "name": "Q-2-18/simple-29" }, { - "column": 7, + "column": 8, "row": 0, - "state": 1904, + "state": 1301, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 738, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-239" + "name": "Q-2-18/simple-30" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1899, + "state": 2207, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", "captures": [ { - "column": 1, - "lrState": 738, + "column": 0, + "lrState": 768, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '~~' mark.", + "label": "strike-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-240" + "name": "Q-2-18/simple-31" }, { - "column": 7, + "column": 3, "row": 0, - "state": 1922, + "state": 346, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 1, - "lrState": 738, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-241" + "name": "Q-2-19/simple" }, { - "column": 9, + "column": 3, "row": 0, - "state": 1927, + "state": 346, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 1, - "lrState": 738, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-242" + "name": "Q-2-19/simple-1" }, { - "column": 7, + "column": 4, "row": 0, - "state": 1892, + "state": 511, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { "column": 1, - "lrState": 738, + "lrState": 511, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-243" + "name": "Q-2-19/simple-2" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1891, + "state": 505, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { "column": 1, - "lrState": 738, + "lrState": 505, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-244" + "name": "Q-2-19/simple-3" }, { - "column": 7, + "column": 5, "row": 0, - "state": 1221, + "state": 493, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 1, - "lrState": 738, + "column": 2, + "lrState": 493, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-245" + "name": "Q-2-19/simple-4" }, { - "column": 7, + "column": 5, "row": 0, - "state": 1886, + "state": 511, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 1, - "lrState": 738, + "column": 2, + "lrState": 511, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-246" + "name": "Q-2-19/simple-5" }, { - "column": 7, + "column": 6, "row": 0, - "state": 738, + "state": 437, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 1, - "lrState": 738, + "column": 3, + "lrState": 437, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-247" + "name": "Q-2-19/simple-6" }, { - "column": 7, + "column": 4, "row": 0, - "state": 1893, + "state": 470, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { "column": 1, - "lrState": 738, + "lrState": 470, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-248" + "name": "Q-2-19/simple-7" }, { - "column": 9, + "column": 5, "row": 0, - "state": 2181, + "state": 464, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 1, - "lrState": 738, + "column": 2, + "lrState": 464, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-249" + "name": "Q-2-19/simple-8" }, { - "column": 10, + "column": 4, "row": 0, - "state": 2181, + "state": 453, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { "column": 1, - "lrState": 738, + "lrState": 453, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-250" + "name": "Q-2-19/simple-9" }, { - "column": 8, + "column": 4, "row": 0, - "state": 1898, + "state": 458, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { "column": 1, - "lrState": 738, + "lrState": 458, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-251" + "name": "Q-2-19/simple-10" }, { "column": 4, "row": 0, - "state": 900, + "state": 499, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { "column": 1, - "lrState": 738, + "lrState": 499, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-252" + "name": "Q-2-19/simple-11" }, { - "column": 3, + "column": 5, "row": 0, - "state": 737, + "state": 487, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { "column": 2, - "lrState": 737, + "lrState": 487, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-253" + "name": "Q-2-19/simple-12" }, { - "column": 6, + "column": 5, "row": 0, - "state": 1732, + "state": 481, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { "column": 2, - "lrState": 737, + "lrState": 481, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-254" + "name": "Q-2-19/simple-13" }, { - "column": 8, + "column": 5, "row": 0, - "state": 1904, + "state": 346, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { "column": 2, - "lrState": 737, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-255" + "name": "Q-2-19/simple-14" }, { - "column": 10, + "column": 6, "row": 0, - "state": 1899, + "state": 2029, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-256" + "name": "Q-2-19/simple-15" }, { "column": 8, "row": 0, - "state": 1904, + "state": 2028, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-257" + "name": "Q-2-19/simple-16" }, { - "column": 10, + "column": 6, "row": 0, - "state": 1899, + "state": 2029, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-258" + "name": "Q-2-19/simple-17" }, { "column": 8, "row": 0, - "state": 1922, + "state": 2028, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-259" + "name": "Q-2-19/simple-18" }, { - "column": 10, + "column": 6, "row": 0, - "state": 1927, + "state": 2033, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-260" + "name": "Q-2-19/simple-19" }, { "column": 8, "row": 0, - "state": 1892, + "state": 2034, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-261" + "name": "Q-2-19/simple-20" }, { - "column": 10, + "column": 6, "row": 0, - "state": 1891, + "state": 2025, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-262" + "name": "Q-2-19/simple-21" }, { "column": 8, "row": 0, - "state": 1221, + "state": 2024, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-263" + "name": "Q-2-19/simple-22" }, { - "column": 8, + "column": 6, "row": 0, - "state": 1886, + "state": 1128, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-264" + "name": "Q-2-19/simple-23" }, { - "column": 8, + "column": 6, "row": 0, - "state": 737, + "state": 2020, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-265" + "name": "Q-2-19/simple-24" }, { - "column": 8, + "column": 6, "row": 0, - "state": 1893, + "state": 2021, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-266" + "name": "Q-2-19/simple-25" }, { - "column": 10, + "column": 6, "row": 0, - "state": 2181, + "state": 2026, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-267" + "name": "Q-2-19/simple-26" }, { - "column": 11, + "column": 8, "row": 0, - "state": 2181, + "state": 2077, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-268" + "name": "Q-2-19/simple-27" }, { "column": 9, "row": 0, - "state": 1898, + "state": 2077, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-269" + "name": "Q-2-19/simple-28" }, { - "column": 5, + "column": 7, "row": 0, - "state": 900, + "state": 2027, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 737, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-270" + "name": "Q-2-19/simple-29" }, { - "column": 3, + "column": 9, "row": 0, - "state": 717, + "state": 1164, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-271" + "name": "Q-2-19/simple-30" }, { - "column": 6, + "column": 9, "row": 0, - "state": 1732, + "state": 1165, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-272" + "name": "Q-2-19/simple-31" }, { - "column": 8, + "column": 9, "row": 0, - "state": 1904, + "state": 1166, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-273" + "name": "Q-2-19/simple-32" }, { - "column": 10, + "column": 9, "row": 0, - "state": 1899, + "state": 1163, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-274" + "name": "Q-2-19/simple-33" }, { - "column": 8, + "column": 4, "row": 0, - "state": 1904, + "state": 1981, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 0, + "lrState": 346, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[++' mark.", + "label": "insert-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-275" + "name": "Q-2-19/simple-34" }, { - "column": 10, + "column": 18, "row": 0, - "state": 1899, + "state": 2481, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-2", + "title": "Mismatched Delimiter in Attribute Specifier", + "message": "I expected a '}', language specifier, an identifier, a class specifier, or a key-value pair.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 17, + "lrState": 2481, "row": 0, "size": 1, - "sym": "double_quote", - "label": "quote-start" + "sym": "{", + "label": "attribute-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "The attribute specifier starts here.", + "label": "attribute-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-276" + "name": "Q-2-2/simple" }, { - "column": 8, + "column": 3, "row": 0, - "state": 1922, + "state": 347, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-277" + "name": "Q-2-20/simple" }, { - "column": 10, + "column": 3, "row": 0, - "state": 1927, + "state": 347, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-278" + "name": "Q-2-20/simple-1" }, { - "column": 8, + "column": 4, "row": 0, - "state": 1892, + "state": 512, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 1, + "lrState": 512, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-279" + "name": "Q-2-20/simple-2" }, { - "column": 10, + "column": 4, "row": 0, - "state": 1891, + "state": 506, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 1, + "lrState": 506, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-280" + "name": "Q-2-20/simple-3" }, { - "column": 8, + "column": 5, "row": 0, - "state": 1221, + "state": 494, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { "column": 2, - "lrState": 717, + "lrState": 494, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-281" + "name": "Q-2-20/simple-4" }, { - "column": 8, + "column": 5, "row": 0, - "state": 1886, + "state": 512, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { "column": 2, - "lrState": 717, + "lrState": 512, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-282" + "name": "Q-2-20/simple-5" }, { - "column": 8, + "column": 6, "row": 0, - "state": 717, + "state": 438, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 3, + "lrState": 438, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-283" + "name": "Q-2-20/simple-6" }, { - "column": 8, + "column": 4, "row": 0, - "state": 1893, + "state": 471, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 1, + "lrState": 471, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-284" + "name": "Q-2-20/simple-7" }, { - "column": 10, + "column": 5, "row": 0, - "state": 2181, + "state": 465, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { "column": 2, - "lrState": 717, + "lrState": 465, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-285" + "name": "Q-2-20/simple-8" }, { - "column": 11, + "column": 4, "row": 0, - "state": 2181, + "state": 454, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 1, + "lrState": 454, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-286" + "name": "Q-2-20/simple-9" }, { - "column": 9, + "column": 4, "row": 0, - "state": 1898, + "state": 459, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 1, + "lrState": 459, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-287" + "name": "Q-2-20/simple-10" }, { - "column": 5, + "column": 4, "row": 0, - "state": 900, + "state": 500, "sym": "_close_block", "errorInfo": { - "code": "Q-2-11", - "title": "Unclosed Double Quote", - "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 717, + "column": 1, + "lrState": 500, "row": 0, - "size": 1, - "sym": "double_quote", - "label": "quote-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening quote mark", - "label": "quote-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-11/simple-288" + "name": "Q-2-20/simple-11" }, { - "column": 18, + "column": 5, "row": 0, - "state": 1478, + "state": 488, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 0, - "lrState": 758, + "column": 2, + "lrState": 488, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple" + "name": "Q-2-20/simple-12" }, { - "column": 19, + "column": 5, "row": 0, - "state": 1478, + "state": 482, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 1, - "lrState": 863, + "column": 2, + "lrState": 482, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-1" + "name": "Q-2-20/simple-13" }, { - "column": 19, + "column": 5, "row": 0, - "state": 1478, + "state": 347, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 1, - "lrState": 855, + "column": 2, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-2" + "name": "Q-2-20/simple-14" }, { - "column": 20, + "column": 6, "row": 0, - "state": 1478, + "state": 2029, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 839, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-3" + "name": "Q-2-20/simple-15" }, { - "column": 20, + "column": 8, "row": 0, - "state": 1478, + "state": 2028, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 863, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-4" + "name": "Q-2-20/simple-16" }, { - "column": 21, + "column": 6, "row": 0, - "state": 1478, + "state": 2029, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 3, - "lrState": 776, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-5" + "name": "Q-2-20/simple-17" }, { - "column": 21, + "column": 8, "row": 0, - "state": 1478, + "state": 2028, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 3, - "lrState": 776, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-6" + "name": "Q-2-20/simple-18" }, { - "column": 21, + "column": 6, "row": 0, - "state": 1478, + "state": 2033, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 3, - "lrState": 776, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-7" + "name": "Q-2-20/simple-19" }, { - "column": 21, + "column": 8, "row": 0, - "state": 1478, + "state": 2034, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 3, - "lrState": 776, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-8" + "name": "Q-2-20/simple-20" }, { - "column": 19, + "column": 6, "row": 0, - "state": 1478, + "state": 2025, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", - "captures": [ + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "captures": [ { - "column": 1, - "lrState": 815, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-9" + "name": "Q-2-20/simple-21" }, { - "column": 19, + "column": 8, "row": 0, - "state": 1478, + "state": 2024, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 1, - "lrState": 807, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-10" + "name": "Q-2-20/simple-22" }, { - "column": 20, + "column": 6, "row": 0, - "state": 1478, + "state": 1128, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 799, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-11" + "name": "Q-2-20/simple-23" }, { - "column": 19, + "column": 6, "row": 0, - "state": 1478, + "state": 2020, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 1, - "lrState": 783, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-12" + "name": "Q-2-20/simple-24" }, { - "column": 19, + "column": 6, "row": 0, - "state": 1478, + "state": 2021, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 1, - "lrState": 791, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-13" + "name": "Q-2-20/simple-25" }, { - "column": 20, + "column": 6, "row": 0, - "state": 1478, + "state": 2026, "sym": "_close_block", "errorInfo": { - "code": "Q-2-12", - "title": "Unclosed Star Emphasis", - "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 823, + "column": 0, + "lrState": 347, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '*' mark", - "label": "emphasis-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-12/simple-14" + "name": "Q-2-20/simple-26" }, { - "column": 26, + "column": 8, "row": 0, - "state": 2005, + "state": 2077, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { "column": 0, - "lrState": 756, + "lrState": 347, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple" + "name": "Q-2-20/simple-27" }, { - "column": 27, + "column": 9, "row": 0, - "state": 2005, + "state": 2077, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 1, - "lrState": 861, + "column": 0, + "lrState": 347, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-1" + "name": "Q-2-20/simple-28" }, { - "column": 27, + "column": 7, "row": 0, - "state": 2005, + "state": 2027, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 1, - "lrState": 853, + "column": 0, + "lrState": 347, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-2" + "name": "Q-2-20/simple-29" }, { - "column": 28, + "column": 9, "row": 0, - "state": 2005, + "state": 1164, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 837, + "column": 0, + "lrState": 347, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-3" + "name": "Q-2-20/simple-30" }, { - "column": 28, + "column": 9, "row": 0, - "state": 2005, + "state": 1165, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 2, - "lrState": 861, + "column": 0, + "lrState": 347, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-4" + "name": "Q-2-20/simple-31" }, { - "column": 29, + "column": 9, "row": 0, - "state": 2005, + "state": 1166, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 3, - "lrState": 774, + "column": 0, + "lrState": 347, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-5" + "name": "Q-2-20/simple-32" }, { - "column": 29, + "column": 9, "row": 0, - "state": 2005, + "state": 1163, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 3, - "lrState": 774, + "column": 0, + "lrState": 347, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-6" + "name": "Q-2-20/simple-33" }, { - "column": 29, + "column": 4, "row": 0, - "state": 2005, + "state": 1981, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", "captures": [ { - "column": 3, - "lrState": 774, + "column": 0, + "lrState": 347, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[--' mark.", + "label": "delete-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-7" + "name": "Q-2-20/simple-34" }, { - "column": 29, + "column": 3, "row": 0, - "state": 2005, + "state": 349, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 3, - "lrState": 774, + "column": 0, + "lrState": 349, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-8" + "name": "Q-2-21/simple" }, { - "column": 27, + "column": 3, "row": 0, - "state": 2005, + "state": 349, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 813, + "column": 0, + "lrState": 349, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-9" + "name": "Q-2-21/simple-1" }, { - "column": 27, + "column": 4, "row": 0, - "state": 2005, + "state": 513, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { "column": 1, - "lrState": 805, + "lrState": 513, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-10" + "name": "Q-2-21/simple-2" }, { - "column": 28, + "column": 4, "row": 0, - "state": 2005, + "state": 507, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 2, - "lrState": 797, + "column": 1, + "lrState": 507, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-11" + "name": "Q-2-21/simple-3" }, { - "column": 27, + "column": 5, "row": 0, - "state": 2005, + "state": 495, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 781, + "column": 2, + "lrState": 495, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-12" + "name": "Q-2-21/simple-4" }, { - "column": 27, + "column": 5, "row": 0, - "state": 2005, + "state": 513, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 789, + "column": 2, + "lrState": 513, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-13" + "name": "Q-2-21/simple-5" }, { - "column": 28, + "column": 6, "row": 0, - "state": 2005, + "state": 439, "sym": "_close_block", "errorInfo": { - "code": "Q-2-13", - "title": "Unclosed Strong Star Emphasis", - "message": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 2, - "lrState": 821, + "column": 3, + "lrState": 439, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '**' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-13/simple-14" + "name": "Q-2-21/simple-6" }, { - "column": 26, + "column": 6, "row": 0, - "state": 2139, + "state": 439, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 0, - "lrState": 757, + "column": 3, + "lrState": 439, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple" + "name": "Q-2-21/simple-7" }, { - "column": 27, + "column": 6, "row": 0, - "state": 2139, + "state": 439, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 862, + "column": 3, + "lrState": 439, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-1" + "name": "Q-2-21/simple-8" }, { - "column": 28, + "column": 6, "row": 0, - "state": 2139, + "state": 439, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", - "captures": [ - { - "column": 2, - "lrState": 862, + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "captures": [ + { + "column": 3, + "lrState": 439, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-2" + "name": "Q-2-21/simple-9" }, { - "column": 29, + "column": 4, "row": 0, - "state": 2139, + "state": 472, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 3, - "lrState": 775, + "column": 1, + "lrState": 472, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-3" + "name": "Q-2-21/simple-10" }, { - "column": 29, + "column": 5, "row": 0, - "state": 2139, + "state": 466, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 3, - "lrState": 775, + "column": 2, + "lrState": 466, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-4" + "name": "Q-2-21/simple-11" }, { - "column": 29, + "column": 4, "row": 0, - "state": 2139, + "state": 455, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 3, - "lrState": 775, + "column": 1, + "lrState": 455, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-5" + "name": "Q-2-21/simple-12" }, { - "column": 29, + "column": 4, "row": 0, - "state": 2139, + "state": 460, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 3, - "lrState": 775, + "column": 1, + "lrState": 460, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-6" + "name": "Q-2-21/simple-13" }, { - "column": 27, + "column": 4, "row": 0, - "state": 2139, + "state": 501, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { "column": 1, - "lrState": 814, + "lrState": 501, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-7" + "name": "Q-2-21/simple-14" }, { - "column": 27, + "column": 5, "row": 0, - "state": 2139, + "state": 489, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 806, + "column": 2, + "lrState": 489, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-8" + "name": "Q-2-21/simple-15" }, { - "column": 28, + "column": 5, "row": 0, - "state": 2139, + "state": 483, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { "column": 2, - "lrState": 798, + "lrState": 483, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-9" + "name": "Q-2-21/simple-16" }, { - "column": 27, + "column": 5, "row": 0, - "state": 2139, + "state": 349, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 782, + "column": 2, + "lrState": 349, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-10" + "name": "Q-2-21/simple-17" }, { - "column": 27, + "column": 6, "row": 0, - "state": 2139, + "state": 2029, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 790, + "column": 0, + "lrState": 349, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-11" + "name": "Q-2-21/simple-18" }, { - "column": 27, + "column": 8, "row": 0, - "state": 2139, + "state": 2028, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 846, + "column": 0, + "lrState": 349, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-12" + "name": "Q-2-21/simple-19" }, { - "column": 28, + "column": 6, "row": 0, - "state": 2139, + "state": 2029, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 2, - "lrState": 830, + "column": 0, + "lrState": 349, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-13" + "name": "Q-2-21/simple-20" }, { - "column": 28, + "column": 8, "row": 0, - "state": 2139, + "state": 2028, "sym": "_close_block", "errorInfo": { - "code": "Q-2-15", - "title": "Unclosed Strong Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 2, - "lrState": 822, + "column": 0, + "lrState": 349, "row": 0, - "size": 2, - "sym": "strong_emphasis_delimiter", - "label": "strong-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '__' mark", - "label": "strong-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-15/simple-14" + "name": "Q-2-21/simple-21" }, { - "column": 21, + "column": 6, "row": 0, - "state": 1784, + "state": 2033, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { "column": 0, - "lrState": 769, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple" + "name": "Q-2-21/simple-22" }, { - "column": 22, + "column": 8, "row": 0, - "state": 1784, + "state": 2034, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 860, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-1" + "name": "Q-2-21/simple-23" }, { - "column": 22, + "column": 6, "row": 0, - "state": 1784, + "state": 2025, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 852, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-2" + "name": "Q-2-21/simple-24" }, { - "column": 23, + "column": 8, "row": 0, - "state": 1784, + "state": 2024, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 2, - "lrState": 836, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-3" + "name": "Q-2-21/simple-25" }, { - "column": 23, + "column": 6, "row": 0, - "state": 1784, + "state": 1128, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 2, - "lrState": 860, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-4" + "name": "Q-2-21/simple-26" }, { - "column": 24, + "column": 6, "row": 0, - "state": 1784, + "state": 2020, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 3, - "lrState": 772, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-5" + "name": "Q-2-21/simple-27" }, { - "column": 24, + "column": 6, "row": 0, - "state": 1784, + "state": 2021, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 3, - "lrState": 772, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-6" + "name": "Q-2-21/simple-28" }, { - "column": 24, + "column": 6, "row": 0, - "state": 1784, + "state": 2026, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 3, - "lrState": 772, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-7" + "name": "Q-2-21/simple-29" }, { - "column": 24, + "column": 8, "row": 0, - "state": 1784, + "state": 2077, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 3, - "lrState": 772, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-8" + "name": "Q-2-21/simple-30" }, { - "column": 22, + "column": 9, "row": 0, - "state": 1784, + "state": 2077, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 812, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-9" + "name": "Q-2-21/simple-31" }, { - "column": 22, + "column": 7, "row": 0, - "state": 1784, + "state": 2027, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 804, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-10" + "name": "Q-2-21/simple-32" }, { - "column": 23, + "column": 9, "row": 0, - "state": 1784, + "state": 1164, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 2, - "lrState": 796, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-11" + "name": "Q-2-21/simple-33" }, { - "column": 22, + "column": 9, "row": 0, - "state": 1784, + "state": 1165, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 780, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-12" + "name": "Q-2-21/simple-34" }, { - "column": 22, + "column": 9, "row": 0, - "state": 1784, + "state": 1166, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 788, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-13" + "name": "Q-2-21/simple-35" }, { - "column": 22, + "column": 9, "row": 0, - "state": 1784, + "state": 1163, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 1, - "lrState": 844, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-14" + "name": "Q-2-21/simple-36" }, { - "column": 23, + "column": 4, "row": 0, - "state": 1784, + "state": 1981, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", "captures": [ { - "column": 2, - "lrState": 828, + "column": 0, + "lrState": 349, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[>>' mark.", + "label": "comment-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-15" + "name": "Q-2-21/simple-37" }, { - "column": 23, + "column": 3, "row": 0, - "state": 1784, + "state": 345, "sym": "_close_block", "errorInfo": { - "code": "Q-2-16", - "title": "Unclosed Superscript", - "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 2, - "lrState": 820, + "column": 0, + "lrState": 345, "row": 0, - "size": 1, - "sym": "superscript_delimiter", - "label": "super-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '^' mark", - "label": "super-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-16/simple-16" + "name": "Q-2-22/simple" }, { - "column": 19, + "column": 3, "row": 0, - "state": 1668, + "state": 345, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 0, - "lrState": 760, + "lrState": 345, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple" + "name": "Q-2-22/simple-1" }, { - "column": 20, + "column": 4, "row": 0, - "state": 1668, + "state": 510, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 1, - "lrState": 859, + "lrState": 510, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-1" + "name": "Q-2-22/simple-2" }, { - "column": 20, + "column": 4, "row": 0, - "state": 1668, + "state": 504, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 1, - "lrState": 851, + "lrState": 504, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-2" + "name": "Q-2-22/simple-3" }, { - "column": 21, + "column": 5, "row": 0, - "state": 1668, + "state": 492, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 2, - "lrState": 835, + "lrState": 492, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-3" + "name": "Q-2-22/simple-4" }, { - "column": 21, + "column": 5, "row": 0, - "state": 1668, + "state": 510, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 2, - "lrState": 859, + "lrState": 510, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-4" + "name": "Q-2-22/simple-5" }, { - "column": 22, + "column": 6, "row": 0, - "state": 1668, + "state": 436, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 3, - "lrState": 771, + "lrState": 436, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-5" + "name": "Q-2-22/simple-6" }, { - "column": 22, + "column": 6, "row": 0, - "state": 1668, + "state": 436, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 3, - "lrState": 771, + "lrState": 436, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-6" + "name": "Q-2-22/simple-7" }, { - "column": 22, + "column": 6, "row": 0, - "state": 1668, + "state": 436, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 3, - "lrState": 771, + "lrState": 436, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-7" + "name": "Q-2-22/simple-8" }, { - "column": 22, + "column": 6, "row": 0, - "state": 1668, + "state": 436, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 3, - "lrState": 771, + "lrState": 436, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-8" + "name": "Q-2-22/simple-9" }, { - "column": 20, + "column": 4, "row": 0, - "state": 1668, + "state": 469, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 1, - "lrState": 811, + "lrState": 469, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-9" + "name": "Q-2-22/simple-10" }, { - "column": 20, + "column": 5, "row": 0, - "state": 1668, + "state": 463, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 1, - "lrState": 779, + "column": 2, + "lrState": 463, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-10" + "name": "Q-2-22/simple-11" }, { - "column": 20, + "column": 4, "row": 0, - "state": 1668, + "state": 452, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 1, - "lrState": 787, + "lrState": 452, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-11" + "name": "Q-2-22/simple-12" }, { - "column": 20, + "column": 4, "row": 0, - "state": 1668, + "state": 457, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 1, - "lrState": 843, + "lrState": 457, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-12" + "name": "Q-2-22/simple-13" }, { - "column": 21, + "column": 4, "row": 0, - "state": 1668, + "state": 498, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 2, - "lrState": 827, + "column": 1, + "lrState": 498, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-13" + "name": "Q-2-22/simple-14" }, { - "column": 21, + "column": 5, "row": 0, - "state": 1668, + "state": 486, "sym": "_close_block", "errorInfo": { - "code": "Q-2-17", - "title": "Unclosed Subscript", - "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 2, - "lrState": 819, + "lrState": 486, "row": 0, - "size": 1, - "sym": "subscript_delimiter", - "label": "sub-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~' mark", - "label": "sub-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-17/simple-14" + "name": "Q-2-22/simple-15" }, { - "column": 20, + "column": 5, "row": 0, - "state": 2151, + "state": 480, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 0, - "lrState": 753, + "column": 2, + "lrState": 480, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple" + "name": "Q-2-22/simple-16" }, { - "column": 21, + "column": 5, "row": 0, - "state": 2151, + "state": 345, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 1, - "lrState": 858, + "column": 2, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-1" + "name": "Q-2-22/simple-17" }, { - "column": 21, + "column": 6, "row": 0, - "state": 2151, + "state": 2029, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 1, - "lrState": 850, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-2" + "name": "Q-2-22/simple-18" }, { - "column": 22, + "column": 8, "row": 0, - "state": 2151, + "state": 2028, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 2, - "lrState": 834, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-3" + "name": "Q-2-22/simple-19" }, { - "column": 22, + "column": 6, "row": 0, - "state": 2151, + "state": 2029, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 2, - "lrState": 858, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-4" + "name": "Q-2-22/simple-20" }, { - "column": 23, + "column": 8, "row": 0, - "state": 2151, + "state": 2028, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 3, - "lrState": 770, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-5" + "name": "Q-2-22/simple-21" }, { - "column": 23, + "column": 6, "row": 0, - "state": 2151, + "state": 2033, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 3, - "lrState": 770, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-6" + "name": "Q-2-22/simple-22" }, { - "column": 23, + "column": 8, "row": 0, - "state": 2151, + "state": 2034, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 3, - "lrState": 770, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-7" + "name": "Q-2-22/simple-23" }, { - "column": 23, + "column": 6, "row": 0, - "state": 2151, + "state": 2025, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 3, - "lrState": 770, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-8" + "name": "Q-2-22/simple-24" }, { - "column": 21, + "column": 8, "row": 0, - "state": 2151, + "state": 2024, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 1, - "lrState": 810, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-9" + "name": "Q-2-22/simple-25" }, { - "column": 21, + "column": 6, "row": 0, - "state": 2151, + "state": 1128, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 1, - "lrState": 778, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-10" + "name": "Q-2-22/simple-26" }, { - "column": 21, + "column": 6, "row": 0, - "state": 2151, + "state": 2020, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 1, - "lrState": 786, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-11" + "name": "Q-2-22/simple-27" }, { - "column": 21, + "column": 6, "row": 0, - "state": 2151, + "state": 2021, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 1, - "lrState": 842, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-12" + "name": "Q-2-22/simple-28" }, { - "column": 22, + "column": 6, "row": 0, - "state": 2151, + "state": 2026, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 2, - "lrState": 826, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" - } + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-13" + "name": "Q-2-22/simple-29" }, { - "column": 22, + "column": 8, "row": 0, - "state": 2151, + "state": 2077, "sym": "_close_block", "errorInfo": { - "code": "Q-2-18", - "title": "Unclosed Strikeout", - "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 2, - "lrState": 818, + "column": 0, + "lrState": 345, "row": 0, - "size": 2, - "sym": "strikeout_delimiter", - "label": "strike-start" + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '~~' mark", - "label": "strike-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-18/simple-14" + "name": "Q-2-22/simple-30" }, { - "column": 28, + "column": 9, "row": 0, - "state": 1943, + "state": 2077, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { "column": 0, - "lrState": 219, + "lrState": 345, "row": 0, "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple" + "name": "Q-2-22/simple-31" }, { - "column": 29, + "column": 7, "row": 0, - "state": 1943, + "state": 2027, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 1, - "lrState": 296, + "column": 0, + "lrState": 345, "row": 0, "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-1" + "name": "Q-2-22/simple-32" }, { - "column": 29, + "column": 9, "row": 0, - "state": 1943, + "state": 1164, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 1, - "lrState": 293, + "column": 0, + "lrState": 345, "row": 0, "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-2" + "name": "Q-2-22/simple-33" }, { - "column": 30, + "column": 9, "row": 0, - "state": 1943, + "state": 1165, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 2, - "lrState": 285, + "column": 0, + "lrState": 345, "row": 0, "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-3" + "name": "Q-2-22/simple-34" }, { - "column": 30, + "column": 9, "row": 0, - "state": 1943, + "state": 1166, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 2, - "lrState": 296, + "column": 0, + "lrState": 345, "row": 0, "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-4" + "name": "Q-2-22/simple-35" }, { - "column": 31, + "column": 9, "row": 0, - "state": 1943, + "state": 1163, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 3, - "lrState": 252, + "column": 0, + "lrState": 345, "row": 0, "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-5" + "name": "Q-2-22/simple-36" }, { - "column": 31, + "column": 4, "row": 0, - "state": 1943, + "state": 1981, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", "captures": [ { - "column": 3, - "lrState": 252, + "column": 0, + "lrState": 345, "row": 0, "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "sym": "highlight_delimiter", + "label": "highlight-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '[!!' mark.", + "label": "highlight-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-6" + "name": "Q-2-22/simple-37" }, { - "column": 31, + "column": 1, "row": 0, - "state": 1943, + "state": 4050, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 3, - "lrState": 252, + "column": 0, + "lrState": 4050, "row": 0, - "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-7" + "name": "Q-2-23/simple" }, { - "column": 29, + "column": 1, "row": 0, - "state": 1943, + "state": 4050, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 1, - "lrState": 269, + "column": 0, + "lrState": 4050, "row": 0, - "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-8" + "name": "Q-2-23/simple-1" }, { - "column": 30, + "column": 2, "row": 0, - "state": 1943, + "state": 3988, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 2, - "lrState": 265, + "column": 1, + "lrState": 3988, "row": 0, - "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-9" + "name": "Q-2-23/simple-2" }, { - "column": 29, + "column": 2, "row": 0, - "state": 1943, + "state": 3963, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { "column": 1, - "lrState": 257, + "lrState": 3963, "row": 0, - "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-10" + "name": "Q-2-23/simple-3" }, { - "column": 29, + "column": 3, "row": 0, - "state": 1943, + "state": 3913, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 1, - "lrState": 261, + "column": 2, + "lrState": 3913, "row": 0, - "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-11" + "name": "Q-2-23/simple-4" }, { - "column": 29, + "column": 3, "row": 0, - "state": 1943, + "state": 3988, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 1, - "lrState": 289, + "column": 2, + "lrState": 3988, "row": 0, - "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-12" + "name": "Q-2-23/simple-5" }, { - "column": 30, + "column": 4, "row": 0, - "state": 1943, + "state": 3683, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 2, - "lrState": 281, + "column": 3, + "lrState": 3683, "row": 0, - "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-13" + "name": "Q-2-23/simple-6" }, { - "column": 30, + "column": 4, "row": 0, - "state": 1943, + "state": 3683, "sym": "_close_block", "errorInfo": { - "code": "Q-2-19", - "title": "Unclosed Editorial Insert", - "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 2, - "lrState": 277, + "column": 3, + "lrState": 3683, "row": 0, - "size": 3, - "sym": "insert_delimiter", - "label": "insert-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[++' mark", - "label": "insert-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-19/simple-14" + "name": "Q-2-23/simple-7" }, { - "column": 18, + "column": 4, "row": 0, - "state": 2411, + "state": 3683, "sym": "_close_block", "errorInfo": { - "code": "Q-2-2", - "title": "Mismatched Delimiter in Attribute Specifier", - "message": "I expected a '}', language specifier, an identifier, a class specifier, or a key-value pair.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 17, - "lrState": 2411, + "column": 3, + "lrState": 3683, "row": 0, "size": 1, - "sym": "{", - "label": "attribute-start" + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "The attribute specifier starts here.", - "label": "attribute-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-2/simple" + "name": "Q-2-23/simple-8" }, { - "column": 28, + "column": 4, "row": 0, - "state": 1943, + "state": 3683, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 0, - "lrState": 220, + "column": 3, + "lrState": 3683, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple" + "name": "Q-2-23/simple-9" }, { - "column": 29, + "column": 2, "row": 0, - "state": 1943, + "state": 3838, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { "column": 1, - "lrState": 297, + "lrState": 3838, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-1" + "name": "Q-2-23/simple-10" }, { - "column": 29, + "column": 2, "row": 0, - "state": 1943, + "state": 3813, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { "column": 1, - "lrState": 214, + "lrState": 3813, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-2" + "name": "Q-2-23/simple-11" }, { - "column": 30, + "column": 3, "row": 0, - "state": 1943, + "state": 3788, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { "column": 2, - "lrState": 286, + "lrState": 3788, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-3" + "name": "Q-2-23/simple-12" }, { - "column": 30, + "column": 2, "row": 0, - "state": 1943, + "state": 3738, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 2, - "lrState": 297, + "column": 1, + "lrState": 3738, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-4" + "name": "Q-2-23/simple-13" }, { - "column": 31, + "column": 2, "row": 0, - "state": 1943, + "state": 3763, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 3, - "lrState": 253, + "column": 1, + "lrState": 3763, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-5" + "name": "Q-2-23/simple-14" }, { - "column": 31, + "column": 2, "row": 0, - "state": 1943, + "state": 3938, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 3, - "lrState": 253, + "column": 1, + "lrState": 3938, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-6" + "name": "Q-2-23/simple-15" }, { - "column": 31, + "column": 3, "row": 0, - "state": 1943, + "state": 3888, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 3, - "lrState": 253, + "column": 2, + "lrState": 3888, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-7" + "name": "Q-2-23/simple-16" }, { - "column": 29, + "column": 3, "row": 0, - "state": 1943, + "state": 3863, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 1, - "lrState": 270, + "column": 2, + "lrState": 3863, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-8" + "name": "Q-2-23/simple-17" }, { - "column": 30, + "column": 3, "row": 0, - "state": 1943, + "state": 4050, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { "column": 2, - "lrState": 266, + "lrState": 4050, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-9" + "name": "Q-2-23/simple-18" }, { - "column": 29, + "column": 1, "row": 0, - "state": 1943, + "state": 4050, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", "captures": [ { - "column": 1, - "lrState": 258, + "column": 0, + "lrState": 4050, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 1, + "sym": "$", + "label": "math-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '$' mark.", + "label": "math-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-10" + "name": "Q-2-23/simple-19" }, { - "column": 29, - "row": 0, - "state": 1943, + "column": 0, + "row": 1, + "state": 3147, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-24", + "title": "Unclosed Code Span", + "message": "I reached the end of the block before finding a closing '`' for the code span.", "captures": [ { - "column": 1, - "lrState": 262, + "column": 0, + "lrState": 3185, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 1, + "sym": "code_span_delimiter", + "label": "code-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '`' mark.", + "label": "code-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-11" + "name": "Q-2-24/simple" }, { - "column": 29, + "column": 2, "row": 0, - "state": 1943, + "state": 200, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 1, - "lrState": 290, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-12" + "name": "Q-2-25/simple" }, { - "column": 30, + "column": 2, "row": 0, - "state": 1943, + "state": 200, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 2, - "lrState": 282, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-13" + "name": "Q-2-25/simple-1" }, { - "column": 30, + "column": 3, "row": 0, - "state": 1943, + "state": 190, "sym": "_close_block", "errorInfo": { - "code": "Q-2-20", - "title": "Unclosed Editorial Delete", - "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 2, - "lrState": 278, + "column": 1, + "lrState": 190, "row": 0, - "size": 3, - "sym": "delete_delimiter", - "label": "delete-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[--' mark", - "label": "delete-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-20/simple-14" + "name": "Q-2-25/simple-2" }, { - "column": 29, + "column": 3, "row": 0, - "state": 1943, + "state": 188, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 0, - "lrState": 221, + "column": 1, + "lrState": 188, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple" + "name": "Q-2-25/simple-3" }, { - "column": 30, + "column": 4, "row": 0, - "state": 1943, + "state": 184, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 1, - "lrState": 298, + "column": 2, + "lrState": 184, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-1" + "name": "Q-2-25/simple-4" }, { - "column": 30, + "column": 4, "row": 0, - "state": 1943, + "state": 190, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 1, - "lrState": 294, + "column": 2, + "lrState": 190, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-2" + "name": "Q-2-25/simple-5" }, { - "column": 31, + "column": 5, "row": 0, - "state": 1943, + "state": 199, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 2, - "lrState": 287, + "column": 3, + "lrState": 199, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-3" + "name": "Q-2-25/simple-6" }, { - "column": 31, + "column": 5, "row": 0, - "state": 1943, + "state": 199, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 2, - "lrState": 298, + "column": 3, + "lrState": 199, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-4" + "name": "Q-2-25/simple-7" }, { - "column": 32, + "column": 5, "row": 0, - "state": 1943, + "state": 199, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { "column": 3, - "lrState": 254, + "lrState": 199, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-5" + "name": "Q-2-25/simple-8" }, { - "column": 32, + "column": 5, "row": 0, - "state": 1943, + "state": 199, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { "column": 3, - "lrState": 254, + "lrState": 199, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-6" + "name": "Q-2-25/simple-9" }, { - "column": 32, + "column": 3, "row": 0, - "state": 1943, + "state": 178, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 3, - "lrState": 254, + "column": 1, + "lrState": 178, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-7" + "name": "Q-2-25/simple-10" }, { - "column": 30, + "column": 3, "row": 0, - "state": 1943, + "state": 176, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { "column": 1, - "lrState": 271, + "lrState": 176, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-8" + "name": "Q-2-25/simple-11" }, { - "column": 31, + "column": 4, "row": 0, - "state": 1943, + "state": 174, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { "column": 2, - "lrState": 267, + "lrState": 174, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-9" + "name": "Q-2-25/simple-12" }, { - "column": 30, + "column": 3, "row": 0, - "state": 1943, + "state": 218, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { "column": 1, - "lrState": 259, + "lrState": 218, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-10" + "name": "Q-2-25/simple-13" }, { - "column": 30, + "column": 3, "row": 0, - "state": 1943, + "state": 172, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { "column": 1, - "lrState": 263, + "lrState": 172, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-11" + "name": "Q-2-25/simple-14" }, { - "column": 30, + "column": 3, "row": 0, - "state": 1943, + "state": 186, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { "column": 1, - "lrState": 291, + "lrState": 186, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-12" + "name": "Q-2-25/simple-15" }, { - "column": 31, + "column": 4, "row": 0, - "state": 1943, + "state": 182, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { "column": 2, - "lrState": 283, + "lrState": 182, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-13" + "name": "Q-2-25/simple-16" }, { - "column": 31, + "column": 4, "row": 0, - "state": 1943, + "state": 180, "sym": "_close_block", "errorInfo": { - "code": "Q-2-21", - "title": "Unclosed Editorial Comment", - "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { "column": 2, - "lrState": 279, + "lrState": 180, "row": 0, - "size": 3, - "sym": "edit_comment_delimiter", - "label": "comment-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[>>' mark", - "label": "comment-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-21/simple-14" + "name": "Q-2-25/simple-17" }, { - "column": 31, + "column": 4, "row": 0, - "state": 1943, + "state": 200, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 0, - "lrState": 218, + "column": 2, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple" + "name": "Q-2-25/simple-18" }, { - "column": 32, + "column": 5, "row": 0, - "state": 1943, + "state": 1462, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 1, - "lrState": 295, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-1" + "name": "Q-2-25/simple-19" }, { - "column": 32, + "column": 7, "row": 0, - "state": 1943, + "state": 1461, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 1, - "lrState": 292, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-2" + "name": "Q-2-25/simple-20" }, { - "column": 33, + "column": 5, "row": 0, - "state": 1943, + "state": 1462, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 2, - "lrState": 284, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-3" + "name": "Q-2-25/simple-21" }, { - "column": 33, + "column": 7, "row": 0, - "state": 1943, + "state": 1461, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 2, - "lrState": 295, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-4" + "name": "Q-2-25/simple-22" }, { - "column": 34, + "column": 5, "row": 0, - "state": 1943, + "state": 1472, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 3, - "lrState": 251, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-5" + "name": "Q-2-25/simple-23" }, { - "column": 34, + "column": 7, "row": 0, - "state": 1943, + "state": 1474, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 3, - "lrState": 251, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-6" + "name": "Q-2-25/simple-24" }, { - "column": 34, + "column": 5, "row": 0, - "state": 1943, + "state": 1458, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 3, - "lrState": 251, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-7" + "name": "Q-2-25/simple-25" }, { - "column": 32, + "column": 7, "row": 0, - "state": 1943, + "state": 1457, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 1, - "lrState": 268, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-8" + "name": "Q-2-25/simple-26" }, { - "column": 33, + "column": 5, "row": 0, - "state": 1943, + "state": 1039, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 2, - "lrState": 264, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-9" + "name": "Q-2-25/simple-27" }, { - "column": 32, + "column": 5, "row": 0, - "state": 1943, + "state": 1452, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 1, - "lrState": 256, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-10" + "name": "Q-2-25/simple-28" }, { - "column": 32, + "column": 5, "row": 0, - "state": 1943, + "state": 1453, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 1, - "lrState": 260, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-11" + "name": "Q-2-25/simple-29" }, { - "column": 32, + "column": 5, "row": 0, - "state": 1943, + "state": 1459, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 1, - "lrState": 288, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-12" + "name": "Q-2-25/simple-30" }, { - "column": 33, + "column": 7, "row": 0, - "state": 1943, + "state": 1150, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 2, - "lrState": 280, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-13" + "name": "Q-2-25/simple-31" }, { - "column": 33, + "column": 8, "row": 0, - "state": 1943, + "state": 1150, "sym": "_close_block", "errorInfo": { - "code": "Q-2-22", - "title": "Unclosed Editorial Highlight", - "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 2, - "lrState": 276, + "column": 0, + "lrState": 200, "row": 0, - "size": 3, - "sym": "highlight_delimiter", - "label": "highlight-start" - } - ], + "size": 2, + "sym": "![", + "label": "image-start" + } + ], "notes": [ { - "message": "This is the opening '[!!' mark", - "label": "highlight-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-22/simple-14" + "name": "Q-2-25/simple-32" }, { - "column": 21, + "column": 6, "row": 0, - "state": 3407, + "state": 1460, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { "column": 0, - "lrState": 3713, + "lrState": 200, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple" + "name": "Q-2-25/simple-33" }, { - "column": 22, + "column": 8, "row": 0, - "state": 3259, + "state": 1054, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 1, - "lrState": 3828, + "column": 0, + "lrState": 200, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-1" + "name": "Q-2-25/simple-34" }, { - "column": 22, + "column": 8, "row": 0, - "state": 3839, + "state": 1055, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 1, - "lrState": 3802, + "column": 0, + "lrState": 200, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-2" + "name": "Q-2-25/simple-35" }, { - "column": 23, + "column": 8, "row": 0, - "state": 3226, + "state": 1001, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 2, - "lrState": 3750, + "column": 0, + "lrState": 200, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-3" + "name": "Q-2-25/simple-36" }, { - "column": 23, + "column": 8, "row": 0, - "state": 3259, + "state": 1053, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 2, - "lrState": 3828, + "column": 0, + "lrState": 200, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-4" + "name": "Q-2-25/simple-37" }, { - "column": 24, + "column": 3, "row": 0, - "state": 3879, + "state": 1425, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", "captures": [ { - "column": 3, - "lrState": 3513, + "column": 0, + "lrState": 200, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "![", + "label": "image-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '![' mark.", + "label": "image-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-5" + "name": "Q-2-25/simple-38" }, { - "column": 24, + "column": 2, "row": 0, - "state": 3879, + "state": 560, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 3, - "lrState": 3513, + "column": 0, + "lrState": 560, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-6" + "name": "Q-2-26/simple" }, { - "column": 24, + "column": 2, "row": 0, - "state": 3879, + "state": 560, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 3, - "lrState": 3513, + "column": 0, + "lrState": 560, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-7" + "name": "Q-2-26/simple-1" }, { - "column": 24, + "column": 3, "row": 0, - "state": 3879, + "state": 575, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 3, - "lrState": 3513, + "column": 1, + "lrState": 575, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-8" + "name": "Q-2-26/simple-2" }, { - "column": 22, + "column": 3, "row": 0, - "state": 3470, + "state": 574, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { "column": 1, - "lrState": 3672, + "lrState": 574, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-9" + "name": "Q-2-26/simple-3" }, { - "column": 22, + "column": 4, "row": 0, - "state": 3334, + "state": 572, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 1, - "lrState": 3646, + "column": 2, + "lrState": 572, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-10" + "name": "Q-2-26/simple-4" }, { - "column": 23, + "column": 4, "row": 0, - "state": 3656, + "state": 575, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { "column": 2, - "lrState": 3620, + "lrState": 575, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-11" + "name": "Q-2-26/simple-5" }, { - "column": 22, + "column": 5, "row": 0, - "state": 3250, + "state": 563, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 1, - "lrState": 3568, + "column": 3, + "lrState": 563, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-12" + "name": "Q-2-26/simple-6" }, { - "column": 22, + "column": 5, "row": 0, - "state": 3702, + "state": 563, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 1, - "lrState": 3594, + "column": 3, + "lrState": 563, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-13" + "name": "Q-2-26/simple-7" }, { - "column": 22, + "column": 5, "row": 0, - "state": 3607, + "state": 563, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 1, - "lrState": 3776, + "column": 3, + "lrState": 563, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-14" + "name": "Q-2-26/simple-8" }, { - "column": 23, + "column": 5, "row": 0, - "state": 3791, + "state": 563, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 2, - "lrState": 3724, + "column": 3, + "lrState": 563, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-15" + "name": "Q-2-26/simple-9" }, { - "column": 23, + "column": 3, "row": 0, - "state": 3629, + "state": 569, "sym": "_close_block", "errorInfo": { - "code": "Q-2-23", - "title": "Unclosed Inline Math", - "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 2, - "lrState": 3698, + "column": 1, + "lrState": 569, "row": 0, - "size": 1, - "sym": "$", - "label": "math-start" + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '$' mark", - "label": "math-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-23/simple-16" + "name": "Q-2-26/simple-10" }, { - "column": 0, - "row": 1, - "state": 2944, + "column": 4, + "row": 0, + "state": 568, "sym": "_close_block", "errorInfo": { - "code": "Q-2-24", - "title": "Unclosed Code Span", - "message": "I reached the end of the block before finding a closing '`' for the code span.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 0, - "lrState": 2864, + "column": 2, + "lrState": 568, "row": 0, - "size": 1, - "sym": "code_span_delimiter", - "label": "code-start" + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '`' mark", - "label": "code-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-24/simple" + "name": "Q-2-26/simple-11" }, { - "column": 16, + "column": 3, "row": 0, - "state": 1184, + "state": 566, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 0, - "lrState": 135, + "column": 1, + "lrState": 566, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple" + "name": "Q-2-26/simple-12" }, { - "column": 17, + "column": 3, "row": 0, - "state": 1184, + "state": 567, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { "column": 1, - "lrState": 166, + "lrState": 567, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-1" + "name": "Q-2-26/simple-13" }, { - "column": 17, + "column": 3, "row": 0, - "state": 1184, + "state": 573, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { "column": 1, - "lrState": 164, + "lrState": 573, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-2" + "name": "Q-2-26/simple-14" }, { - "column": 18, + "column": 4, "row": 0, - "state": 1184, + "state": 547, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { "column": 2, - "lrState": 160, + "lrState": 547, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-3" + "name": "Q-2-26/simple-15" }, { - "column": 19, + "column": 4, "row": 0, - "state": 1184, + "state": 571, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 3, - "lrState": 140, + "column": 2, + "lrState": 571, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-4" + "name": "Q-2-26/simple-16" }, { - "column": 19, + "column": 4, "row": 0, - "state": 1184, + "state": 560, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 3, - "lrState": 140, + "column": 2, + "lrState": 560, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-5" + "name": "Q-2-26/simple-17" }, { - "column": 19, + "column": 5, "row": 0, - "state": 1184, + "state": 1641, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 3, - "lrState": 140, + "column": 0, + "lrState": 560, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-6" + "name": "Q-2-26/simple-18" }, { - "column": 19, + "column": 7, "row": 0, - "state": 1184, + "state": 1640, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 3, - "lrState": 140, + "column": 0, + "lrState": 560, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-7" + "name": "Q-2-26/simple-19" }, { - "column": 17, + "column": 5, "row": 0, - "state": 1184, + "state": 1641, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 1, - "lrState": 154, + "column": 0, + "lrState": 560, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-8" + "name": "Q-2-26/simple-20" }, { - "column": 17, + "column": 7, "row": 0, - "state": 1184, + "state": 1640, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 1, - "lrState": 152, + "column": 0, + "lrState": 560, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-9" + "name": "Q-2-26/simple-21" }, { - "column": 18, + "column": 5, "row": 0, - "state": 1184, + "state": 1645, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 2, - "lrState": 150, + "column": 0, + "lrState": 560, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-10" + "name": "Q-2-26/simple-22" }, { - "column": 17, + "column": 7, "row": 0, - "state": 1184, + "state": 1646, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 1, - "lrState": 146, + "column": 0, + "lrState": 560, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-11" + "name": "Q-2-26/simple-23" }, { - "column": 17, + "column": 5, "row": 0, - "state": 1184, + "state": 1637, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 1, - "lrState": 148, + "column": 0, + "lrState": 560, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-12" + "name": "Q-2-26/simple-24" }, { - "column": 17, + "column": 7, "row": 0, - "state": 1184, + "state": 1636, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 1, - "lrState": 162, + "column": 0, + "lrState": 560, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-13" + "name": "Q-2-26/simple-25" }, { - "column": 18, + "column": 5, "row": 0, - "state": 1184, + "state": 1123, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 2, - "lrState": 158, + "column": 0, + "lrState": 560, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-14" + "name": "Q-2-26/simple-26" }, { - "column": 18, + "column": 5, "row": 0, - "state": 1184, + "state": 1632, "sym": "_close_block", "errorInfo": { - "code": "Q-2-25", - "title": "Unclosed Image", - "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 2, - "lrState": 156, + "column": 0, + "lrState": 560, "row": 0, "size": 2, - "sym": "![", - "label": "image-start" + "sym": "inline_note_delimiter", + "label": "footnote-start" } ], "notes": [ { - "message": "This is the opening '![' mark", - "label": "image-start", + "message": "This is the opening '^[' mark.", + "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-25/simple-15" + "name": "Q-2-26/simple-27" }, { - "column": 26, + "column": 5, "row": 0, - "state": 1887, + "state": 1633, "sym": "_close_block", "errorInfo": { "code": "Q-2-26", @@ -14337,7 +15003,7 @@ "captures": [ { "column": 0, - "lrState": 350, + "lrState": 560, "row": 0, "size": 2, "sym": "inline_note_delimiter", @@ -14346,18 +15012,19 @@ ], "notes": [ { - "message": "This is the opening '^[' mark", + "message": "This is the opening '^[' mark.", "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple" + "name": "Q-2-26/simple-28" }, { - "column": 27, + "column": 5, "row": 0, - "state": 1887, + "state": 1638, "sym": "_close_block", "errorInfo": { "code": "Q-2-26", @@ -14365,8 +15032,8 @@ "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 1, - "lrState": 442, + "column": 0, + "lrState": 560, "row": 0, "size": 2, "sym": "inline_note_delimiter", @@ -14375,18 +15042,19 @@ ], "notes": [ { - "message": "This is the opening '^[' mark", + "message": "This is the opening '^[' mark.", "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-1" + "name": "Q-2-26/simple-29" }, { - "column": 27, + "column": 7, "row": 0, - "state": 1887, + "state": 1691, "sym": "_close_block", "errorInfo": { "code": "Q-2-26", @@ -14394,8 +15062,8 @@ "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 1, - "lrState": 441, + "column": 0, + "lrState": 560, "row": 0, "size": 2, "sym": "inline_note_delimiter", @@ -14404,18 +15072,19 @@ ], "notes": [ { - "message": "This is the opening '^[' mark", + "message": "This is the opening '^[' mark.", "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-2" + "name": "Q-2-26/simple-30" }, { - "column": 28, + "column": 8, "row": 0, - "state": 1887, + "state": 1691, "sym": "_close_block", "errorInfo": { "code": "Q-2-26", @@ -14423,8 +15092,8 @@ "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 2, - "lrState": 439, + "column": 0, + "lrState": 560, "row": 0, "size": 2, "sym": "inline_note_delimiter", @@ -14433,18 +15102,19 @@ ], "notes": [ { - "message": "This is the opening '^[' mark", + "message": "This is the opening '^[' mark.", "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-3" + "name": "Q-2-26/simple-31" }, { - "column": 28, + "column": 6, "row": 0, - "state": 1887, + "state": 1639, "sym": "_close_block", "errorInfo": { "code": "Q-2-26", @@ -14452,8 +15122,8 @@ "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 2, - "lrState": 442, + "column": 0, + "lrState": 560, "row": 0, "size": 2, "sym": "inline_note_delimiter", @@ -14462,18 +15132,19 @@ ], "notes": [ { - "message": "This is the opening '^[' mark", + "message": "This is the opening '^[' mark.", "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-4" + "name": "Q-2-26/simple-32" }, { - "column": 29, + "column": 8, "row": 0, - "state": 1887, + "state": 1471, "sym": "_close_block", "errorInfo": { "code": "Q-2-26", @@ -14481,8 +15152,8 @@ "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 3, - "lrState": 428, + "column": 0, + "lrState": 560, "row": 0, "size": 2, "sym": "inline_note_delimiter", @@ -14491,18 +15162,19 @@ ], "notes": [ { - "message": "This is the opening '^[' mark", + "message": "This is the opening '^[' mark.", "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-5" + "name": "Q-2-26/simple-33" }, { - "column": 29, + "column": 8, "row": 0, - "state": 1887, + "state": 1478, "sym": "_close_block", "errorInfo": { "code": "Q-2-26", @@ -14510,8 +15182,8 @@ "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 3, - "lrState": 428, + "column": 0, + "lrState": 560, "row": 0, "size": 2, "sym": "inline_note_delimiter", @@ -14520,18 +15192,19 @@ ], "notes": [ { - "message": "This is the opening '^[' mark", + "message": "This is the opening '^[' mark.", "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-6" + "name": "Q-2-26/simple-34" }, { - "column": 29, + "column": 8, "row": 0, - "state": 1887, + "state": 1069, "sym": "_close_block", "errorInfo": { "code": "Q-2-26", @@ -14539,8 +15212,8 @@ "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 3, - "lrState": 428, + "column": 0, + "lrState": 560, "row": 0, "size": 2, "sym": "inline_note_delimiter", @@ -14549,18 +15222,19 @@ ], "notes": [ { - "message": "This is the opening '^[' mark", + "message": "This is the opening '^[' mark.", "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-7" + "name": "Q-2-26/simple-35" }, { - "column": 29, + "column": 8, "row": 0, - "state": 1887, + "state": 1467, "sym": "_close_block", "errorInfo": { "code": "Q-2-26", @@ -14568,8 +15242,8 @@ "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 3, - "lrState": 428, + "column": 0, + "lrState": 560, "row": 0, "size": 2, "sym": "inline_note_delimiter", @@ -14578,18 +15252,19 @@ ], "notes": [ { - "message": "This is the opening '^[' mark", + "message": "This is the opening '^[' mark.", "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-8" + "name": "Q-2-26/simple-36" }, { - "column": 27, + "column": 3, "row": 0, - "state": 1887, + "state": 1617, "sym": "_close_block", "errorInfo": { "code": "Q-2-26", @@ -14597,8 +15272,8 @@ "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", "captures": [ { - "column": 1, - "lrState": 436, + "column": 0, + "lrState": 560, "row": 0, "size": 2, "sym": "inline_note_delimiter", @@ -14607,714 +15282,4429 @@ ], "notes": [ { - "message": "This is the opening '^[' mark", + "message": "This is the opening '^[' mark.", "label": "footnote-start", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-9" + "name": "Q-2-26/simple-37" }, { - "column": 27, + "column": 9, "row": 0, - "state": 1887, + "state": 2698, "sym": "_close_block", "errorInfo": { - "code": "Q-2-26", - "title": "Unclosed Inline Footnote", - "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple" + }, + { + "column": 10, + "row": 0, + "state": 2679, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { "column": 1, - "lrState": 435, + "lrState": 2997, "row": 0, - "size": 2, - "sym": "inline_note_delimiter", - "label": "footnote-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '^[' mark", - "label": "footnote-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-10" + "name": "Q-2-27/simple-1" }, { - "column": 28, + "column": 10, "row": 0, - "state": 1887, + "state": 2670, "sym": "_close_block", "errorInfo": { - "code": "Q-2-26", - "title": "Unclosed Inline Footnote", - "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 1, + "lrState": 2995, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-2" + }, + { + "column": 11, + "row": 0, + "state": 2653, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { "column": 2, - "lrState": 434, + "lrState": 2991, "row": 0, - "size": 2, - "sym": "inline_note_delimiter", - "label": "footnote-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '^[' mark", - "label": "footnote-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-11" + "name": "Q-2-27/simple-3" }, { - "column": 27, + "column": 11, "row": 0, - "state": 1887, + "state": 2679, "sym": "_close_block", "errorInfo": { - "code": "Q-2-26", - "title": "Unclosed Inline Footnote", - "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { - "column": 1, - "lrState": 432, + "column": 2, + "lrState": 2997, "row": 0, - "size": 2, - "sym": "inline_note_delimiter", - "label": "footnote-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '^[' mark", - "label": "footnote-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-12" + "name": "Q-2-27/simple-4" }, { - "column": 27, + "column": 12, "row": 0, - "state": 1887, + "state": 2644, "sym": "_close_block", "errorInfo": { - "code": "Q-2-26", - "title": "Unclosed Inline Footnote", - "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { - "column": 1, - "lrState": 433, + "column": 3, + "lrState": 2975, "row": 0, - "size": 2, - "sym": "inline_note_delimiter", - "label": "footnote-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '^[' mark", - "label": "footnote-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-13" + "name": "Q-2-27/simple-5" }, { - "column": 27, + "column": 12, "row": 0, - "state": 1887, + "state": 2644, "sym": "_close_block", "errorInfo": { - "code": "Q-2-26", - "title": "Unclosed Inline Footnote", - "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { - "column": 1, - "lrState": 440, + "column": 3, + "lrState": 2975, "row": 0, - "size": 2, - "sym": "inline_note_delimiter", - "label": "footnote-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '^[' mark", - "label": "footnote-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-14" + "name": "Q-2-27/simple-6" }, { - "column": 28, + "column": 12, "row": 0, - "state": 1887, + "state": 2644, "sym": "_close_block", "errorInfo": { - "code": "Q-2-26", - "title": "Unclosed Inline Footnote", - "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { - "column": 2, - "lrState": 438, + "column": 3, + "lrState": 2975, "row": 0, - "size": 2, - "sym": "inline_note_delimiter", - "label": "footnote-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '^[' mark", - "label": "footnote-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-26/simple-15" + "name": "Q-2-27/simple-7" }, { - "column": 20, + "column": 12, "row": 0, - "state": 2557, - "sym": "pandoc_str", + "state": 2644, + "sym": "_close_block", "errorInfo": { - "code": "Q-2-3", - "title": "Key-value Pair Before Class Specifier in Attribute", - "message": "This class specifier appears after the key-value pair.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { - "column": 10, - "lrState": 2557, + "column": 3, + "lrState": 2975, "row": 0, - "size": 9, - "sym": "key_value_specifier", - "label": "key-value" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This key-value pair cannot appear before the class specifier.", - "noteType": "simple", - "label": "key-value" + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-3/simple" + "name": "Q-2-27/simple-8" }, { - "column": 17, + "column": 10, "row": 0, - "state": 1565, + "state": 2616, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { - "column": 10, - "lrState": 759, + "column": 1, + "lrState": 2985, "row": 0, - "size": 2, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-5/simple" + "name": "Q-2-27/simple-9" }, { "column": 10, "row": 0, - "state": 1565, + "state": 2605, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { "column": 1, - "lrState": 864, + "lrState": 2983, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-5/in-link" + "name": "Q-2-27/simple-10" }, { - "column": 18, + "column": 11, "row": 0, - "state": 1565, + "state": 2625, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { - "column": 0, - "lrState": 759, + "column": 2, + "lrState": 2981, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start" + "name": "Q-2-27/simple-11" }, { - "column": 19, + "column": 10, "row": 0, - "state": 1565, + "state": 2682, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { "column": 1, - "lrState": 864, + "lrState": 2977, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-1" + "name": "Q-2-27/simple-12" }, { - "column": 20, + "column": 10, "row": 0, - "state": 1565, + "state": 2661, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { - "column": 2, - "lrState": 864, + "column": 1, + "lrState": 2872, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-2" + "name": "Q-2-27/simple-13" }, { - "column": 21, + "column": 11, "row": 0, - "state": 1565, + "state": 2641, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { - "column": 3, - "lrState": 748, + "column": 2, + "lrState": 2989, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-3" + "name": "Q-2-27/simple-14" }, { - "column": 21, + "column": 11, "row": 0, - "state": 1565, + "state": 2628, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", "captures": [ { - "column": 3, - "lrState": 748, + "column": 2, + "lrState": 2987, "row": 0, - "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", "noteType": "simple" } - ] + ], + "hints": [] + }, + "name": "Q-2-27/simple-15" + }, + { + "column": 9, + "row": 0, + "state": 2698, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-16" + }, + { + "column": 13, + "row": 0, + "state": 3258, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-17" + }, + { + "column": 17, + "row": 0, + "state": 3285, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-18" + }, + { + "column": 17, + "row": 0, + "state": 3361, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-19" + }, + { + "column": 12, + "row": 0, + "state": 3258, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-20" + }, + { + "column": 30, + "row": 0, + "state": 3258, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-21" + }, + { + "column": 19, + "row": 0, + "state": 3258, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-22" + }, + { + "column": 21, + "row": 0, + "state": 3285, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-23" + }, + { + "column": 21, + "row": 0, + "state": 3361, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-24" + }, + { + "column": 16, + "row": 0, + "state": 3258, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-25" + }, + { + "column": 29, + "row": 0, + "state": 3258, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-26" + }, + { + "column": 26, + "row": 0, + "state": 3258, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-27" + }, + { + "column": 59, + "row": 0, + "state": 3258, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-28" + }, + { + "column": 22, + "row": 0, + "state": 2962, + "sym": "_commonmark_single_quote_string_token2", + "errorInfo": { + "code": "Q-2-27", + "title": "Line Break Before Shortcode Close", + "message": "Line breaks are not allowed immediately before the shortcode closing delimiter `>}}`.", + "captures": [ + { + "column": 0, + "lrState": 2882, + "row": 0, + "size": 3, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{<` for the shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-27/simple-29" + }, + { + "column": 10, + "row": 0, + "state": 2666, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple" + }, + { + "column": 11, + "row": 0, + "state": 2678, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 1, + "lrState": 2996, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-1" + }, + { + "column": 11, + "row": 0, + "state": 2669, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 1, + "lrState": 2994, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-2" + }, + { + "column": 12, + "row": 0, + "state": 2652, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 2, + "lrState": 2990, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-3" + }, + { + "column": 12, + "row": 0, + "state": 2678, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 2, + "lrState": 2996, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-4" + }, + { + "column": 13, + "row": 0, + "state": 2639, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 3, + "lrState": 2974, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-5" + }, + { + "column": 13, + "row": 0, + "state": 2639, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 3, + "lrState": 2974, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-6" + }, + { + "column": 13, + "row": 0, + "state": 2639, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 3, + "lrState": 2974, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-7" + }, + { + "column": 13, + "row": 0, + "state": 2639, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 3, + "lrState": 2974, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-8" + }, + { + "column": 11, + "row": 0, + "state": 2615, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 1, + "lrState": 2984, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-9" + }, + { + "column": 11, + "row": 0, + "state": 2693, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 1, + "lrState": 2982, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-10" + }, + { + "column": 12, + "row": 0, + "state": 2621, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 2, + "lrState": 2980, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-11" + }, + { + "column": 11, + "row": 0, + "state": 2677, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 1, + "lrState": 2976, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-12" + }, + { + "column": 11, + "row": 0, + "state": 2712, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 1, + "lrState": 2992, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-13" + }, + { + "column": 12, + "row": 0, + "state": 2640, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 2, + "lrState": 2988, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-14" + }, + { + "column": 12, + "row": 0, + "state": 2627, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 2, + "lrState": 2986, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-15" + }, + { + "column": 10, + "row": 0, + "state": 2666, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-16" + }, + { + "column": 14, + "row": 0, + "state": 3258, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-17" + }, + { + "column": 18, + "row": 0, + "state": 3285, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-18" + }, + { + "column": 18, + "row": 0, + "state": 3361, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-19" + }, + { + "column": 13, + "row": 0, + "state": 3258, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-20" + }, + { + "column": 31, + "row": 0, + "state": 3258, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-21" + }, + { + "column": 15, + "row": 0, + "state": 2493, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-22" + }, + { + "column": 22, + "row": 0, + "state": 3285, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-23" + }, + { + "column": 22, + "row": 0, + "state": 3361, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-24" + }, + { + "column": 15, + "row": 0, + "state": 2493, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-25" + }, + { + "column": 26, + "row": 0, + "state": 2493, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-26" + }, + { + "column": 22, + "row": 0, + "state": 2493, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-27" + }, + { + "column": 56, + "row": 0, + "state": 2493, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-28" + }, + { + "column": 23, + "row": 0, + "state": 2904, + "sym": "_commonmark_single_quote_string_token2", + "errorInfo": { + "code": "Q-2-28", + "title": "Line Break Before Escaped Shortcode Close", + "message": "Line breaks are not allowed immediately before the escaped shortcode closing delimiter `>}}}`.", + "captures": [ + { + "column": 0, + "lrState": 2918, + "row": 0, + "size": 4, + "sym": "shortcode_delimiter", + "label": "shortcode-open" + } + ], + "notes": [ + { + "message": "This is the opening `{{{<` for the escaped shortcode.", + "label": "shortcode-open", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-28/simple-29" + }, + { + "column": 5, + "row": 2, + "state": 3660, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-29", + "title": "Indented Footnote Content Not Supported", + "message": "Quarto markdown does not support indented footnote content. Use the div syntax instead: `::: ^ref ... :::`.", + "captures": [ + { + "column": 0, + "lrState": 3660, + "row": 2, + "size": 5, + "sym": "ref_id_specifier", + "label": "footnote-def" + } + ], + "notes": [ + { + "message": "This footnote definition has indented content, which is not supported in quarto markdown.", + "label": "footnote-def", + "noteType": "simple" + }, + { + "message": "For multi-paragraph footnotes, use the div syntax:\n\n::: ^ref\n\nFirst paragraph.\n\nSecond paragraph.\n\n:::.", + "label": "suggestion", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-29/simple" + }, + { + "column": 20, + "row": 0, + "state": 2777, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-3", + "title": "Key-value Pair Before Class Specifier in Attribute", + "message": "This class specifier appears after the key-value pair.", + "captures": [ + { + "column": 10, + "lrState": 2777, + "row": 0, + "size": 9, + "sym": "key_value_specifier", + "label": "key-value" + } + ], + "notes": [ + { + "message": "This key-value pair cannot appear before the class specifier.", + "noteType": "simple", + "label": "key-value" + } + ], + "hints": [] + }, + "name": "Q-2-3/simple" + }, + { + "column": 46, + "row": 0, + "state": 3177, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-3", + "title": "Key-value Pair Before Class Specifier in Attribute", + "message": "This class specifier appears after the key-value pair.", + "captures": [ + { + "column": 24, + "lrState": 3177, + "row": 0, + "size": 21, + "sym": "key_value_specifier", + "label": "key-value" + } + ], + "notes": [ + { + "message": "This key-value pair cannot appear before the class specifier.", + "noteType": "simple", + "label": "key-value" + } + ], + "hints": [] + }, + "name": "Q-2-3/simple-2" + }, + { + "column": 5, + "row": 0, + "state": 2793, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-31", + "title": "Inline Code Execution Not Allowed in URLs", + "message": "Inline code execution syntax (`{language} ...) cannot be used inside image or link destinations.", + "captures": [ + { + "column": 4, + "lrState": 2793, + "row": 0, + "size": 1, + "sym": "target_token2", + "label": "backtick-start" + } + ], + "notes": [ + { + "message": "This opening backtick begins an invalid code execution attempt.", + "label": "backtick-start", + "noteType": "simple" + } + ], + "hints": [ + "Could you instead write an entire image or link as the code result?" + ] + }, + "name": "Q-2-31/image-simple" + }, + { + "column": 8, + "row": 0, + "state": 2793, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-31", + "title": "Inline Code Execution Not Allowed in URLs", + "message": "Inline code execution syntax (`{language} ...) cannot be used inside image or link destinations.", + "captures": [ + { + "column": 7, + "lrState": 2793, + "row": 0, + "size": 1, + "sym": "target_token2", + "label": "backtick-start" + } + ], + "notes": [ + { + "message": "This opening backtick begins an invalid code execution attempt.", + "label": "backtick-start", + "noteType": "simple" + } + ], + "hints": [ + "Could you instead write an entire image or link as the code result?" + ] + }, + "name": "Q-2-31/link-simple" + }, + { + "column": 11, + "row": 0, + "state": 2793, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-31", + "title": "Inline Code Execution Not Allowed in URLs", + "message": "Inline code execution syntax (`{language} ...) cannot be used inside image or link destinations.", + "captures": [ + { + "column": 10, + "lrState": 2793, + "row": 0, + "size": 1, + "sym": "target_token2", + "label": "backtick-start" + } + ], + "notes": [ + { + "message": "This opening backtick begins an invalid code execution attempt.", + "label": "backtick-start", + "noteType": "simple" + } + ], + "hints": [ + "Could you instead write an entire image or link as the code result?" + ] + }, + "name": "Q-2-31/image-mixed" + }, + { + "column": 14, + "row": 0, + "state": 2793, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-31", + "title": "Inline Code Execution Not Allowed in URLs", + "message": "Inline code execution syntax (`{language} ...) cannot be used inside image or link destinations.", + "captures": [ + { + "column": 13, + "lrState": 2793, + "row": 0, + "size": 1, + "sym": "target_token2", + "label": "backtick-start" + } + ], + "notes": [ + { + "message": "This opening backtick begins an invalid code execution attempt.", + "label": "backtick-start", + "noteType": "simple" + } + ], + "hints": [ + "Could you instead write an entire image or link as the code result?" + ] + }, + "name": "Q-2-31/link-mixed" + }, + { + "column": 0, + "row": 0, + "state": 1, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic" + }, + { + "column": 0, + "row": 0, + "state": 1, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-1" + }, + { + "column": 5, + "row": 0, + "state": 1202, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-2" + }, + { + "column": 3, + "row": 0, + "state": 1113, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-3" + }, + { + "column": 3, + "row": 0, + "state": 1155, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-4" + }, + { + "column": 5, + "row": 0, + "state": 1156, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-5" + }, + { + "column": 3, + "row": 0, + "state": 1093, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-6" + }, + { + "column": 5, + "row": 0, + "state": 1092, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-7" + }, + { + "column": 3, + "row": 0, + "state": 1032, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-8" + }, + { + "column": 3, + "row": 0, + "state": 1080, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-9" + }, + { + "column": 3, + "row": 0, + "state": 1081, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-10" + }, + { + "column": 3, + "row": 0, + "state": 1094, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-11" + }, + { + "column": 5, + "row": 0, + "state": 1177, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-12" + }, + { + "column": 6, + "row": 0, + "state": 1177, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-13" + }, + { + "column": 4, + "row": 0, + "state": 1097, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-14" + }, + { + "column": 6, + "row": 0, + "state": 1029, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-15" + }, + { + "column": 6, + "row": 0, + "state": 1030, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-16" + }, + { + "column": 6, + "row": 0, + "state": 1044, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-17" + }, + { + "column": 6, + "row": 0, + "state": 1028, + "sym": "_triple_star_error", + "errorInfo": { + "code": "Q-2-32", + "title": "Triple star emphasis disallowed", + "message": "Quarto Markdown doesn't support `***`. Consider using `*__` instead.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-32/basic-18" + }, + { + "column": 10, + "row": 0, + "state": 3289, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-33", + "title": "Spaces in link targets", + "message": "Link targets cannot contain spaces. Replace spaces with %20.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-33/image-with-space" + }, + { + "column": 14, + "row": 0, + "state": 3289, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-33", + "title": "Spaces in link targets", + "message": "Link targets cannot contain spaces. Replace spaces with %20.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-33/link-with-space" + }, + { + "column": 15, + "row": 0, + "state": 3289, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-33", + "title": "Spaces in link targets", + "message": "Link targets cannot contain spaces. Replace spaces with %20.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-33/image-with-multiple-spaces" + }, + { + "column": 9, + "row": 0, + "state": 3258, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-34", + "title": "Unquoted shortcode parameter starting with digit", + "message": "Shortcode parameter values starting with digits must be quoted.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-34/basic" + }, + { + "column": 22, + "row": 0, + "state": 3258, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-34", + "title": "Unquoted shortcode parameter starting with digit", + "message": "Shortcode parameter values starting with digits must be quoted.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-34/real-world-example" + }, + { + "column": 27, + "row": 0, + "state": 3258, + "sym": "pandoc_str_token1", + "errorInfo": { + "code": "Q-2-34", + "title": "Unquoted shortcode parameter starting with digit", + "message": "Shortcode parameter values starting with digits must be quoted.", + "captures": [], + "notes": [], + "hints": [] + }, + "name": "Q-2-34/multiple-params" + }, + { + "column": 17, + "row": 0, + "state": 1909, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 10, + "lrState": 762, + "row": 0, + "size": 2, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/simple" + }, + { + "column": 10, + "row": 0, + "state": 1909, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 1, + "lrState": 871, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/in-link" + }, + { + "column": 1, + "row": 0, + "state": 762, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start" + }, + { + "column": 1, + "row": 0, + "state": 762, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-1" + }, + { + "column": 2, + "row": 0, + "state": 871, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 1, + "lrState": 871, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-2" + }, + { + "column": 3, + "row": 0, + "state": 871, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 2, + "lrState": 871, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-3" + }, + { + "column": 4, + "row": 0, + "state": 783, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 3, + "lrState": 783, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-4" + }, + { + "column": 2, + "row": 0, + "state": 823, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 1, + "lrState": 823, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-5" + }, + { + "column": 2, + "row": 0, + "state": 815, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 1, + "lrState": 815, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-6" + }, + { + "column": 3, + "row": 0, + "state": 807, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 2, + "lrState": 807, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-7" + }, + { + "column": 2, + "row": 0, + "state": 791, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 1, + "lrState": 791, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-8" + }, + { + "column": 2, + "row": 0, + "state": 799, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 1, + "lrState": 799, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-9" + }, + { + "column": 2, + "row": 0, + "state": 855, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 1, + "lrState": 855, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-10" + }, + { + "column": 3, + "row": 0, + "state": 839, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 2, + "lrState": 839, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-11" + }, + { + "column": 3, + "row": 0, + "state": 831, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 2, + "lrState": 831, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-12" + }, + { + "column": 3, + "row": 0, + "state": 762, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 2, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-13" + }, + { + "column": 4, + "row": 0, + "state": 1933, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-14" + }, + { + "column": 6, + "row": 0, + "state": 1932, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-15" + }, + { + "column": 4, + "row": 0, + "state": 1937, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-16" + }, + { + "column": 6, + "row": 0, + "state": 1938, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-17" + }, + { + "column": 4, + "row": 0, + "state": 1929, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-18" + }, + { + "column": 6, + "row": 0, + "state": 1928, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-19" + }, + { + "column": 4, + "row": 0, + "state": 1400, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-20" + }, + { + "column": 4, + "row": 0, + "state": 1924, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-21" + }, + { + "column": 4, + "row": 0, + "state": 1925, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-22" + }, + { + "column": 4, + "row": 0, + "state": 1930, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-23" + }, + { + "column": 6, + "row": 0, + "state": 1979, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-24" + }, + { + "column": 7, + "row": 0, + "state": 1979, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-25" + }, + { + "column": 5, + "row": 0, + "state": 1931, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-26" + }, + { + "column": 7, + "row": 0, + "state": 1418, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-27" + }, + { + "column": 7, + "row": 0, + "state": 1420, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-28" + }, + { + "column": 7, + "row": 0, + "state": 1421, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-29" + }, + { + "column": 7, + "row": 0, + "state": 1417, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-30" + }, + { + "column": 2, + "row": 0, + "state": 1909, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "captures": [ + { + "column": 0, + "lrState": 762, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark.", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "hints": [] + }, + "name": "Q-2-5/at-start-31" + }, + { + "column": 1, + "row": 0, + "state": 700, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 0, + "lrState": 700, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple" + }, + { + "column": 1, + "row": 0, + "state": 700, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 0, + "lrState": 700, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-1" + }, + { + "column": 2, + "row": 0, + "state": 670, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 1, + "lrState": 670, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-2" + }, + { + "column": 2, + "row": 0, + "state": 656, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 1, + "lrState": 656, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-3" + }, + { + "column": 3, + "row": 0, + "state": 658, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 2, + "lrState": 658, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-4" + }, + { + "column": 3, + "row": 0, + "state": 670, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 2, + "lrState": 670, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-5" + }, + { + "column": 4, + "row": 0, + "state": 708, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 3, + "lrState": 708, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-6" + }, + { + "column": 2, + "row": 0, + "state": 664, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 1, + "lrState": 664, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-7" + }, + { + "column": 2, + "row": 0, + "state": 738, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-8" + }, + { + "column": 3, + "row": 0, + "state": 736, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 2, + "lrState": 736, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-9" + }, + { + "column": 2, + "row": 0, + "state": 745, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 1, + "lrState": 745, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-10" + }, + { + "column": 2, + "row": 0, + "state": 701, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 1, + "lrState": 701, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-11" + }, + { + "column": 3, + "row": 0, + "state": 742, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 2, + "lrState": 742, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-12" + }, + { + "column": 3, + "row": 0, + "state": 716, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 2, + "lrState": 716, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-13" + }, + { + "column": 3, + "row": 0, + "state": 700, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 2, + "lrState": 700, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-14" + }, + { + "column": 4, + "row": 0, + "state": 2093, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 0, + "lrState": 700, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-15" + }, + { + "column": 6, + "row": 0, + "state": 2092, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 0, + "lrState": 700, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-16" + }, + { + "column": 4, + "row": 0, + "state": 2093, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 0, + "lrState": 700, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-17" + }, + { + "column": 6, + "row": 0, + "state": 2092, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 0, + "lrState": 700, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-18" + }, + { + "column": 4, + "row": 0, + "state": 2097, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 0, + "lrState": 700, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-19" + }, + { + "column": 6, + "row": 0, + "state": 2098, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 0, + "lrState": 700, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] + }, + "name": "Q-2-7/simple-20" + }, + { + "column": 4, + "row": 0, + "state": 2089, + "sym": "_close_block", + "errorInfo": { + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "captures": [ + { + "column": 0, + "lrState": 700, + "row": 0, + "size": 1, + "sym": "single_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "hints": [] }, - "name": "Q-2-5/at-start-4" + "name": "Q-2-7/simple-21" }, { - "column": 21, + "column": 6, "row": 0, - "state": 1565, + "state": 2088, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", "captures": [ { - "column": 3, - "lrState": 748, + "column": 0, + "lrState": 700, "row": 0, "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "sym": "single_quote", + "label": "quote-start" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", - "noteType": "simple" + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-5" + "name": "Q-2-7/simple-22" }, { - "column": 21, + "column": 4, "row": 0, - "state": 1565, + "state": 1221, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", "captures": [ { - "column": 3, - "lrState": 748, + "column": 0, + "lrState": 700, "row": 0, "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "sym": "single_quote", + "label": "quote-start" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", - "noteType": "simple" + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-6" + "name": "Q-2-7/simple-23" }, { - "column": 19, + "column": 4, "row": 0, - "state": 1565, + "state": 2085, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", "captures": [ { - "column": 1, - "lrState": 816, + "column": 0, + "lrState": 700, "row": 0, "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "sym": "single_quote", + "label": "quote-start" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", - "noteType": "simple" + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-7" + "name": "Q-2-7/simple-24" }, { - "column": 19, + "column": 4, "row": 0, - "state": 1565, + "state": 2090, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", "captures": [ { - "column": 1, - "lrState": 808, + "column": 0, + "lrState": 700, "row": 0, "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "sym": "single_quote", + "label": "quote-start" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", - "noteType": "simple" + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-8" + "name": "Q-2-7/simple-25" }, { - "column": 20, + "column": 6, "row": 0, - "state": 1565, + "state": 2144, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", "captures": [ { - "column": 2, - "lrState": 800, + "column": 0, + "lrState": 700, "row": 0, "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "sym": "single_quote", + "label": "quote-start" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", - "noteType": "simple" + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-9" + "name": "Q-2-7/simple-26" }, { - "column": 19, + "column": 7, "row": 0, - "state": 1565, + "state": 2144, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", "captures": [ { - "column": 1, - "lrState": 784, + "column": 0, + "lrState": 700, "row": 0, "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "sym": "single_quote", + "label": "quote-start" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", - "noteType": "simple" + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-10" + "name": "Q-2-7/simple-27" }, { - "column": 19, + "column": 5, "row": 0, - "state": 1565, + "state": 2091, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", "captures": [ { - "column": 1, - "lrState": 792, + "column": 0, + "lrState": 700, "row": 0, "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "sym": "single_quote", + "label": "quote-start" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", - "noteType": "simple" + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-11" + "name": "Q-2-7/simple-28" }, { - "column": 19, + "column": 7, "row": 0, - "state": 1565, + "state": 1238, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", "captures": [ { - "column": 1, - "lrState": 848, + "column": 0, + "lrState": 700, "row": 0, "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "sym": "single_quote", + "label": "quote-start" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", - "noteType": "simple" + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-12" + "name": "Q-2-7/simple-29" }, { - "column": 20, + "column": 7, "row": 0, - "state": 1565, + "state": 1241, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", "captures": [ { - "column": 2, - "lrState": 832, + "column": 0, + "lrState": 700, "row": 0, "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "sym": "single_quote", + "label": "quote-start" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", - "noteType": "simple" + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-13" + "name": "Q-2-7/simple-30" }, { - "column": 20, + "column": 7, "row": 0, - "state": 1565, + "state": 1242, "sym": "_close_block", "errorInfo": { - "code": "Q-2-5", - "title": "Unclosed Underscore Emphasis", - "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", "captures": [ { - "column": 2, - "lrState": 824, + "column": 0, + "lrState": 700, "row": 0, "size": 1, - "sym": "emphasis_delimiter", - "label": "emphasis-start" + "sym": "single_quote", + "label": "quote-start" } ], "notes": [ { - "message": "This is the opening '_' mark", - "label": "emphasis-start", - "noteType": "simple" + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-5/at-start-14" + "name": "Q-2-7/simple-31" }, { - "column": 44, + "column": 7, "row": 0, - "state": 1787, + "state": 1237, "sym": "_close_block", "errorInfo": { "code": "Q-2-7", @@ -15323,7 +19713,7 @@ "captures": [ { "column": 0, - "lrState": 683, + "lrState": 700, "row": 0, "size": 1, "sym": "single_quote", @@ -15337,14 +19727,15 @@ "noteType": "simple", "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-7/simple" + "name": "Q-2-7/simple-32" }, { - "column": 6, + "column": 2, "row": 0, - "state": 1787, + "state": 2072, "sym": "_close_block", "errorInfo": { "code": "Q-2-7", @@ -15352,8 +19743,8 @@ "message": "I reached the end of the block before finding a closing \"'\" for the quote.", "captures": [ { - "column": 4, - "lrState": 666, + "column": 0, + "lrState": 700, "row": 0, "size": 1, "sym": "single_quote", @@ -15367,14 +19758,15 @@ "noteType": "simple", "trimLeadingSpace": true } - ] + ], + "hints": [] }, - "name": "Q-2-7/in-link" + "name": "Q-2-7/simple-33" }, { "column": 5, "row": 0, - "state": 3897, + "state": 3762, "sym": "_whitespace", "errorInfo": { "code": "Q-2-8", @@ -15383,7 +19775,7 @@ "captures": [ { "column": 5, - "lrState": 2597, + "lrState": 2738, "row": 0, "size": 5, "sym": "key_value_key", @@ -15397,7 +19789,8 @@ "noteType": "simple", "trimLeadingSpace": true } - ] + ], + "hints": [] }, "name": "Q-2-8/simple" } diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-10.qmd index c02a96c..61110e4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-10.qmd @@ -1 +1 @@ -"a ~~a~~ \ No newline at end of file +'" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-100.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-100.qmd deleted file mode 100644 index 76deb55..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-100.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-101.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-101.qmd deleted file mode 100644 index c246be1..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-101.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-102.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-102.qmd deleted file mode 100644 index af2ddc3..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-102.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-103.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-103.qmd deleted file mode 100644 index d1b5ae7..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-103.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-104.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-104.qmd deleted file mode 100644 index dcc5bb4..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-104.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-105.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-105.qmd deleted file mode 100644 index f19b0e2..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-105.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-106.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-106.qmd deleted file mode 100644 index 6625960..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-106.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-107.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-107.qmd deleted file mode 100644 index 05686d7..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-107.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-108.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-108.qmd deleted file mode 100644 index 15693b4..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-108.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-109.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-109.qmd deleted file mode 100644 index 58c331b..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-109.qmd +++ /dev/null @@ -1 +0,0 @@ -[--" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-11.qmd index c41b179..7142c70 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-11.qmd @@ -1 +1 @@ -"a `a` \ No newline at end of file +*" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-110.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-110.qmd deleted file mode 100644 index c90a07f..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-110.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-111.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-111.qmd deleted file mode 100644 index ebf9623..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-111.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-112.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-112.qmd deleted file mode 100644 index 0ee18f8..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-112.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-113.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-113.qmd deleted file mode 100644 index 53e5aa9..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-113.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-114.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-114.qmd deleted file mode 100644 index 9430c04..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-114.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-115.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-115.qmd deleted file mode 100644 index 2d47fac..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-115.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-116.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-116.qmd deleted file mode 100644 index 2c45b68..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-116.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-117.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-117.qmd deleted file mode 100644 index 0b60ab6..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-117.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-118.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-118.qmd deleted file mode 100644 index b5423ee..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-118.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-119.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-119.qmd deleted file mode 100644 index 25f64a9..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-119.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-12.qmd index 589106b..82a616d 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-12.qmd @@ -1 +1 @@ -"a 'a' \ No newline at end of file +**" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-120.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-120.qmd deleted file mode 100644 index 8a53f33..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-120.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-121.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-121.qmd deleted file mode 100644 index cbcc851..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-121.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-122.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-122.qmd deleted file mode 100644 index 0248af8..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-122.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-123.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-123.qmd deleted file mode 100644 index 5c0e877..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-123.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-124.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-124.qmd deleted file mode 100644 index 509a929..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-124.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-125.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-125.qmd deleted file mode 100644 index ac5af9f..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-125.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-126.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-126.qmd deleted file mode 100644 index 4728dad..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-126.qmd +++ /dev/null @@ -1 +0,0 @@ -[--"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-127.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-127.qmd deleted file mode 100644 index e4c7a87..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-127.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-128.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-128.qmd deleted file mode 100644 index f4c6fb3..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-128.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-129.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-129.qmd deleted file mode 100644 index d8c9286..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-129.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-13.qmd index b093119..fd41b19 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-13.qmd @@ -1 +1 @@ -"a "a" \ No newline at end of file +^[" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-130.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-130.qmd deleted file mode 100644 index a18a6a5..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-130.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-131.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-131.qmd deleted file mode 100644 index 3cd7129..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-131.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-132.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-132.qmd deleted file mode 100644 index 998ba4c..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-132.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-133.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-133.qmd deleted file mode 100644 index e97051b..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-133.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-134.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-134.qmd deleted file mode 100644 index 60f05d5..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-134.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-135.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-135.qmd deleted file mode 100644 index 55e3a15..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-135.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-136.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-136.qmd deleted file mode 100644 index 0b4fc38..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-136.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-137.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-137.qmd deleted file mode 100644 index 7c9bca7..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-137.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-138.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-138.qmd deleted file mode 100644 index b5499ff..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-138.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-139.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-139.qmd deleted file mode 100644 index 92a8c8a..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-139.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-14.qmd index 5e50454..a9d4aec 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-14.qmd @@ -1 +1 @@ -"a ^a^ \ No newline at end of file +##" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-140.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-140.qmd deleted file mode 100644 index 7acc3d5..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-140.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-141.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-141.qmd deleted file mode 100644 index 7a408ca..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-141.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-142.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-142.qmd deleted file mode 100644 index facceb6..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-142.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-143.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-143.qmd deleted file mode 100644 index 398e20b..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-143.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-144.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-144.qmd deleted file mode 100644 index e3e5f81..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-144.qmd +++ /dev/null @@ -1 +0,0 @@ -[!!"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-145.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-145.qmd deleted file mode 100644 index f0a56cf..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-145.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-146.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-146.qmd deleted file mode 100644 index f908d80..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-146.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-147.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-147.qmd deleted file mode 100644 index 434e85d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-147.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-148.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-148.qmd deleted file mode 100644 index 2862525..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-148.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-149.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-149.qmd deleted file mode 100644 index 7779ff5..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-149.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-15.qmd index 849dc23..4397d72 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-15.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-15.qmd @@ -1 +1 @@ -"a [a]{} \ No newline at end of file +"_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-150.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-150.qmd deleted file mode 100644 index b46614a..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-150.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-151.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-151.qmd deleted file mode 100644 index 8d2bb33..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-151.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-152.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-152.qmd deleted file mode 100644 index 237f2d9..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-152.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-153.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-153.qmd deleted file mode 100644 index bb2cd00..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-153.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-154.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-154.qmd deleted file mode 100644 index d23ed6e..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-154.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-155.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-155.qmd deleted file mode 100644 index afd9728..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-155.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-156.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-156.qmd deleted file mode 100644 index 0eddffb..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-156.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-157.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-157.qmd deleted file mode 100644 index fdef658..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-157.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-158.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-158.qmd deleted file mode 100644 index 15d9022..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-158.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-159.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-159.qmd deleted file mode 100644 index f565a01..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-159.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-16.qmd index 4e21557..2593ff4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-16.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-16.qmd @@ -1 +1 @@ -"a ![a]{} \ No newline at end of file +"__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-160.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-160.qmd deleted file mode 100644 index 59a6347..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-160.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-161.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-161.qmd deleted file mode 100644 index 0614987..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-161.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-162.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-162.qmd deleted file mode 100644 index abe68f1..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-162.qmd +++ /dev/null @@ -1 +0,0 @@ -[>>"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-163.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-163.qmd deleted file mode 100644 index 68a90da..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-163.qmd +++ /dev/null @@ -1 +0,0 @@ -^" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-164.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-164.qmd deleted file mode 100644 index f2f49ad..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-164.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-165.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-165.qmd deleted file mode 100644 index 2a48fee..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-165.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-166.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-166.qmd deleted file mode 100644 index a95fa9b..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-166.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-167.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-167.qmd deleted file mode 100644 index 3ef000f..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-167.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-168.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-168.qmd deleted file mode 100644 index f2f73ff..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-168.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-169.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-169.qmd deleted file mode 100644 index 9bd11f0..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-169.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-17.qmd index d4d3ead..18addf4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-17.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-17.qmd @@ -1 +1 @@ -"a ^[a] \ No newline at end of file +"*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-170.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-170.qmd deleted file mode 100644 index bef19ee..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-170.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-171.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-171.qmd deleted file mode 100644 index 3acc39b..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-171.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-172.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-172.qmd deleted file mode 100644 index b25511d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-172.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-173.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-173.qmd deleted file mode 100644 index 2475469..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-173.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-174.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-174.qmd deleted file mode 100644 index e5ca930..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-174.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-175.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-175.qmd deleted file mode 100644 index bd6d82c..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-175.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-176.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-176.qmd deleted file mode 100644 index 8a2f2b6..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-176.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-177.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-177.qmd deleted file mode 100644 index c152d9e..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-177.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-178.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-178.qmd deleted file mode 100644 index ff79fa1..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-178.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-179.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-179.qmd deleted file mode 100644 index 8e7752d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-179.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-18.qmd index 8896676..2947c11 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-18.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-18.qmd @@ -1 +1 @@ -"a \ No newline at end of file +"**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-180.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-180.qmd deleted file mode 100644 index 6c26265..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-180.qmd +++ /dev/null @@ -1 +0,0 @@ -^"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-181.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-181.qmd deleted file mode 100644 index 33b0a2e..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-181.qmd +++ /dev/null @@ -1 +0,0 @@ -~" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-182.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-182.qmd deleted file mode 100644 index c54b040..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-182.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-183.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-183.qmd deleted file mode 100644 index 63c6939..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-183.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-184.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-184.qmd deleted file mode 100644 index 65b195d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-184.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-185.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-185.qmd deleted file mode 100644 index 80ccaab..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-185.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-186.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-186.qmd deleted file mode 100644 index d7c01e7..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-186.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-187.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-187.qmd deleted file mode 100644 index 5f9b10b..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-187.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-188.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-188.qmd deleted file mode 100644 index 620d639..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-188.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-189.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-189.qmd deleted file mode 100644 index b4d762a..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-189.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-19.qmd index 4b3ced8..3c9135b 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-19.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-19.qmd @@ -1 +1 @@ -[" \ No newline at end of file +"$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-190.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-190.qmd deleted file mode 100644 index bdafd67..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-190.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-191.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-191.qmd deleted file mode 100644 index cb8a534..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-191.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-192.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-192.qmd deleted file mode 100644 index cb57690..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-192.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-193.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-193.qmd deleted file mode 100644 index 01f254c..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-193.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-194.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-194.qmd deleted file mode 100644 index b7116eb..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-194.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-195.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-195.qmd deleted file mode 100644 index fb26484..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-195.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-196.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-196.qmd deleted file mode 100644 index 3cb9ea4..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-196.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-197.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-197.qmd deleted file mode 100644 index 626410f..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-197.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-198.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-198.qmd deleted file mode 100644 index 9e3497d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-198.qmd +++ /dev/null @@ -1 +0,0 @@ -~"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-199.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-199.qmd deleted file mode 100644 index 8d7881d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-199.qmd +++ /dev/null @@ -1 +0,0 @@ -~~" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-2.qmd index 98e904a..4b3ced8 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-2.qmd @@ -1 +1 @@ -"a a \ No newline at end of file +[" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-20.qmd index f5f8af9..425b2d0 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-20.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-20.qmd @@ -1 +1 @@ -["a a \ No newline at end of file +"$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-200.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-200.qmd deleted file mode 100644 index 2f2fdde..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-200.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-201.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-201.qmd deleted file mode 100644 index c7399b5..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-201.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-202.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-202.qmd deleted file mode 100644 index 355ff15..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-202.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-203.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-203.qmd deleted file mode 100644 index a891d53..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-203.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-204.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-204.qmd deleted file mode 100644 index de7419f..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-204.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-205.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-205.qmd deleted file mode 100644 index c0a9376..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-205.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-206.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-206.qmd deleted file mode 100644 index f42e120..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-206.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-207.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-207.qmd deleted file mode 100644 index 831b746..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-207.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-208.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-208.qmd deleted file mode 100644 index 3682186..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-208.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-209.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-209.qmd deleted file mode 100644 index 35df24e..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-209.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-21.qmd index 6b454df..0351d0b 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-21.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-21.qmd @@ -1 +1 @@ -["a _a_ \ No newline at end of file +"~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-210.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-210.qmd deleted file mode 100644 index 0149082..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-210.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-211.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-211.qmd deleted file mode 100644 index fd689f5..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-211.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-212.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-212.qmd deleted file mode 100644 index a260c38..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-212.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-213.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-213.qmd deleted file mode 100644 index 17060f8..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-213.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-214.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-214.qmd deleted file mode 100644 index 81219e3..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-214.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-215.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-215.qmd deleted file mode 100644 index 775e088..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-215.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-216.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-216.qmd deleted file mode 100644 index 08aec4a..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-216.qmd +++ /dev/null @@ -1 +0,0 @@ -~~"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-217.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-217.qmd deleted file mode 100644 index 61110e4..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-217.qmd +++ /dev/null @@ -1 +0,0 @@ -'" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-218.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-218.qmd deleted file mode 100644 index 4dc5800..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-218.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-219.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-219.qmd deleted file mode 100644 index 6a089af..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-219.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-22.qmd index 6542d87..3ea36b1 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-22.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-22.qmd @@ -1 +1 @@ -["a __a__ \ No newline at end of file +"~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-220.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-220.qmd deleted file mode 100644 index 5646bcf..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-220.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-221.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-221.qmd deleted file mode 100644 index 8df766c..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-221.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-222.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-222.qmd deleted file mode 100644 index f30e824..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-222.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-223.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-223.qmd deleted file mode 100644 index 21ab117..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-223.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-224.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-224.qmd deleted file mode 100644 index 4f04f5c..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-224.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-225.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-225.qmd deleted file mode 100644 index bbeea9f..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-225.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-226.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-226.qmd deleted file mode 100644 index eb744f6..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-226.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-227.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-227.qmd deleted file mode 100644 index 66c756d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-227.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-228.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-228.qmd deleted file mode 100644 index 1302273..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-228.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-229.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-229.qmd deleted file mode 100644 index cfa206c..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-229.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-23.qmd index f390cb9..00439a0 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-23.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-23.qmd @@ -1 +1 @@ -["a *a* \ No newline at end of file +"`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-230.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-230.qmd deleted file mode 100644 index 11d11bf..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-230.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-231.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-231.qmd deleted file mode 100644 index ef0980d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-231.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-232.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-232.qmd deleted file mode 100644 index 36cb6ff..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-232.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-233.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-233.qmd deleted file mode 100644 index 0eda099..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-233.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-234.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-234.qmd deleted file mode 100644 index 76f1a2f..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-234.qmd +++ /dev/null @@ -1 +0,0 @@ -'"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-235.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-235.qmd deleted file mode 100644 index 7142c70..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-235.qmd +++ /dev/null @@ -1 +0,0 @@ -*" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-236.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-236.qmd deleted file mode 100644 index 88d7256..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-236.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-237.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-237.qmd deleted file mode 100644 index 1856574..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-237.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-238.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-238.qmd deleted file mode 100644 index 486e1e0..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-238.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-239.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-239.qmd deleted file mode 100644 index 90350b9..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-239.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-24.qmd index 44c8d1d..e701ff4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-24.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-24.qmd @@ -1 +1 @@ -["a **a** \ No newline at end of file +"'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-240.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-240.qmd deleted file mode 100644 index e186765..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-240.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-241.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-241.qmd deleted file mode 100644 index c350185..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-241.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-242.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-242.qmd deleted file mode 100644 index 1acc2f0..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-242.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-243.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-243.qmd deleted file mode 100644 index 0a5627d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-243.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-244.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-244.qmd deleted file mode 100644 index 78a7e09..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-244.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-245.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-245.qmd deleted file mode 100644 index 3fd6722..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-245.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-246.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-246.qmd deleted file mode 100644 index 613cdf3..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-246.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-247.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-247.qmd deleted file mode 100644 index 90ce7b0..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-247.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-248.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-248.qmd deleted file mode 100644 index 30da570..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-248.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-249.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-249.qmd deleted file mode 100644 index 2e9184e..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-249.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-25.qmd index 7e5f0ad..7746228 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-25.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-25.qmd @@ -1 +1 @@ -["a $a$ \ No newline at end of file +"^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-250.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-250.qmd deleted file mode 100644 index 165c403..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-250.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-251.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-251.qmd deleted file mode 100644 index 0c8b0dc..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-251.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-252.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-252.qmd deleted file mode 100644 index 1844a74..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-252.qmd +++ /dev/null @@ -1 +0,0 @@ -*"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-253.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-253.qmd deleted file mode 100644 index 82a616d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-253.qmd +++ /dev/null @@ -1 +0,0 @@ -**" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-254.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-254.qmd deleted file mode 100644 index 3a5807d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-254.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-255.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-255.qmd deleted file mode 100644 index b0ca3de..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-255.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-256.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-256.qmd deleted file mode 100644 index d4577a6..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-256.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-257.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-257.qmd deleted file mode 100644 index 0779b85..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-257.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-258.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-258.qmd deleted file mode 100644 index 2360ce6..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-258.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-259.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-259.qmd deleted file mode 100644 index d02d86d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-259.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-26.qmd index ab0a42d..08c8107 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-26.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-26.qmd @@ -1 +1 @@ -["a $$a$$ \ No newline at end of file +"[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-260.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-260.qmd deleted file mode 100644 index 0235801..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-260.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-261.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-261.qmd deleted file mode 100644 index b796119..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-261.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-262.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-262.qmd deleted file mode 100644 index 21f1d8d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-262.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-263.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-263.qmd deleted file mode 100644 index 9c09ac0..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-263.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-264.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-264.qmd deleted file mode 100644 index 43f861c..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-264.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-265.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-265.qmd deleted file mode 100644 index 6a7bafc..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-265.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-266.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-266.qmd deleted file mode 100644 index 17979ab..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-266.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-267.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-267.qmd deleted file mode 100644 index 6424b0a..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-267.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-268.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-268.qmd deleted file mode 100644 index fefd579..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-268.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-269.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-269.qmd deleted file mode 100644 index dca57ab..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-269.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-27.qmd index 6e9e48c..3e9fa53 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-27.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-27.qmd @@ -1 +1 @@ -["a ~a~ \ No newline at end of file +"![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-270.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-270.qmd deleted file mode 100644 index 536ba81..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-270.qmd +++ /dev/null @@ -1 +0,0 @@ -**"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-271.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-271.qmd deleted file mode 100644 index fd41b19..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-271.qmd +++ /dev/null @@ -1 +0,0 @@ -^[" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-272.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-272.qmd deleted file mode 100644 index 7dff520..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-272.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-273.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-273.qmd deleted file mode 100644 index 99c29ec..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-273.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-274.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-274.qmd deleted file mode 100644 index b80e1f7..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-274.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-275.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-275.qmd deleted file mode 100644 index 6773cd8..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-275.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-276.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-276.qmd deleted file mode 100644 index 2055a0f..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-276.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-277.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-277.qmd deleted file mode 100644 index cdac6ee..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-277.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-278.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-278.qmd deleted file mode 100644 index 8b72b8a..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-278.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-279.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-279.qmd deleted file mode 100644 index a7f1c5a..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-279.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-28.qmd index 3860053..b5024c8 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-28.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-28.qmd @@ -1 +1 @@ -["a ~~a~~ \ No newline at end of file +"^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-280.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-280.qmd deleted file mode 100644 index 3713316..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-280.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-281.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-281.qmd deleted file mode 100644 index cee1b77..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-281.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-282.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-282.qmd deleted file mode 100644 index bfe14f5..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-282.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-283.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-283.qmd deleted file mode 100644 index 1edc90b..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-283.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-284.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-284.qmd deleted file mode 100644 index 456f167..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-284.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-285.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-285.qmd deleted file mode 100644 index 634924d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-285.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-286.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-286.qmd deleted file mode 100644 index c46cd55..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-286.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-287.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-287.qmd deleted file mode 100644 index b2a14dd..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-287.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-288.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-288.qmd deleted file mode 100644 index 770a5f6..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-288.qmd +++ /dev/null @@ -1 +0,0 @@ -^["a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-29.qmd index 05d91c1..ac4f1fb 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-29.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-29.qmd @@ -1 +1 @@ -["a `a` \ No newline at end of file +"[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-3.qmd index 67e16cf..0539573 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-3.qmd @@ -1 +1 @@ -"a _a_ \ No newline at end of file +_" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-30.qmd index ab88d44..4e1a7fb 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-30.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-30.qmd @@ -1 +1 @@ -["a 'a' \ No newline at end of file +"[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-31.qmd index d8e5687..288a66d 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-31.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-31.qmd @@ -1 +1 @@ -["a "a" \ No newline at end of file +"[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-32.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-32.qmd index 8841be9..65ca0ce 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-32.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-32.qmd @@ -1 +1 @@ -["a ^a^ \ No newline at end of file +"[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-33.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-33.qmd index 1acce81..e9f4ebe 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-33.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-33.qmd @@ -1 +1 @@ -["a [a]{} \ No newline at end of file +"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-34.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-34.qmd deleted file mode 100644 index 40a443e..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-34.qmd +++ /dev/null @@ -1 +0,0 @@ -["a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-35.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-35.qmd deleted file mode 100644 index 29e8877..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-35.qmd +++ /dev/null @@ -1 +0,0 @@ -["a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-36.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-36.qmd deleted file mode 100644 index c7bd5cc..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-36.qmd +++ /dev/null @@ -1 +0,0 @@ -["a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-37.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-37.qmd deleted file mode 100644 index 0539573..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-37.qmd +++ /dev/null @@ -1 +0,0 @@ -_" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-38.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-38.qmd deleted file mode 100644 index c703513..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-38.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-39.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-39.qmd deleted file mode 100644 index 8907d2c..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-39.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-4.qmd index 8367b94..7919c60 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-4.qmd @@ -1 +1 @@ -"a __a__ \ No newline at end of file +__" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-40.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-40.qmd deleted file mode 100644 index e5968d4..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-40.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-41.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-41.qmd deleted file mode 100644 index 3cfcde7..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-41.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-42.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-42.qmd deleted file mode 100644 index 6d7c2fe..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-42.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-43.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-43.qmd deleted file mode 100644 index 6bcda53..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-43.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-44.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-44.qmd deleted file mode 100644 index c5d25cc..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-44.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-45.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-45.qmd deleted file mode 100644 index fc8b206..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-45.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-46.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-46.qmd deleted file mode 100644 index 59bb236..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-46.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-47.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-47.qmd deleted file mode 100644 index b7e5445..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-47.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-48.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-48.qmd deleted file mode 100644 index db3d5dd..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-48.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-49.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-49.qmd deleted file mode 100644 index f5e9986..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-49.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-5.qmd index 1708e6f..e3e671f 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-5.qmd @@ -1 +1 @@ -"a *a* \ No newline at end of file +![" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-50.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-50.qmd deleted file mode 100644 index 3952ea1..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-50.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-51.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-51.qmd deleted file mode 100644 index 88da628..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-51.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-52.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-52.qmd deleted file mode 100644 index efd26f4..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-52.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-53.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-53.qmd deleted file mode 100644 index 5edb0e2..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-53.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-54.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-54.qmd deleted file mode 100644 index dc93360..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-54.qmd +++ /dev/null @@ -1 +0,0 @@ -_"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-55.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-55.qmd deleted file mode 100644 index 7919c60..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-55.qmd +++ /dev/null @@ -1 +0,0 @@ -__" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-56.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-56.qmd deleted file mode 100644 index 14acce3..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-56.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-57.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-57.qmd deleted file mode 100644 index a64ad10..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-57.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-58.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-58.qmd deleted file mode 100644 index 4f40396..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-58.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-59.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-59.qmd deleted file mode 100644 index fbf942d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-59.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-6.qmd index d89726d..f0a56cf 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-6.qmd @@ -1 +1 @@ -"a **a** \ No newline at end of file +[>>" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-60.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-60.qmd deleted file mode 100644 index 93a6b03..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-60.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-61.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-61.qmd deleted file mode 100644 index 8ba4d90..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-61.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-62.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-62.qmd deleted file mode 100644 index 67204ec..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-62.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-63.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-63.qmd deleted file mode 100644 index fc2ad99..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-63.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-64.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-64.qmd deleted file mode 100644 index e8234df..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-64.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-65.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-65.qmd deleted file mode 100644 index 4ebedd5..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-65.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-66.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-66.qmd deleted file mode 100644 index 79f0fc5..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-66.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-67.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-67.qmd deleted file mode 100644 index 93ab4eb..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-67.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-68.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-68.qmd deleted file mode 100644 index 7e03b14..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-68.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-69.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-69.qmd deleted file mode 100644 index fd1d6b4..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-69.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-7.qmd index 31a6384..68a90da 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-7.qmd @@ -1 +1 @@ -"a $a$ \ No newline at end of file +^" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-70.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-70.qmd deleted file mode 100644 index 15dd4c3..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-70.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-71.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-71.qmd deleted file mode 100644 index 4c1c8ba..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-71.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-72.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-72.qmd deleted file mode 100644 index 2ec5f5f..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-72.qmd +++ /dev/null @@ -1 +0,0 @@ -__"a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-73.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-73.qmd deleted file mode 100644 index e3e671f..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-73.qmd +++ /dev/null @@ -1 +0,0 @@ -![" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-74.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-74.qmd deleted file mode 100644 index 0c6e675..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-74.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-75.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-75.qmd deleted file mode 100644 index e3c9a05..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-75.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-76.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-76.qmd deleted file mode 100644 index a01b25d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-76.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-77.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-77.qmd deleted file mode 100644 index 06d71a9..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-77.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-78.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-78.qmd deleted file mode 100644 index b9b6523..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-78.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-79.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-79.qmd deleted file mode 100644 index 5f450cd..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-79.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-8.qmd index 8577d2b..33b0a2e 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-8.qmd @@ -1 +1 @@ -"a $$a$$ \ No newline at end of file +~" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-80.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-80.qmd deleted file mode 100644 index e3743d7..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-80.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-81.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-81.qmd deleted file mode 100644 index 56325c4..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-81.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-82.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-82.qmd deleted file mode 100644 index dee1720..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-82.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a ~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-83.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-83.qmd deleted file mode 100644 index 4e7bd1b..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-83.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a `a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-84.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-84.qmd deleted file mode 100644 index 0c21606..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-84.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a 'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-85.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-85.qmd deleted file mode 100644 index fdb12dc..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-85.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a "a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-86.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-86.qmd deleted file mode 100644 index 6fe6ae3..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-86.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a ^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-87.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-87.qmd deleted file mode 100644 index f29465d..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-87.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a [a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-88.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-88.qmd deleted file mode 100644 index 6f5b8a9..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-88.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a ![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-89.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-89.qmd deleted file mode 100644 index fe4215b..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-89.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a ^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-9.qmd index b1c8d21..8d7881d 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-9.qmd @@ -1 +1 @@ -"a ~a~ \ No newline at end of file +~~" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-90.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-90.qmd deleted file mode 100644 index 7e68ef0..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-90.qmd +++ /dev/null @@ -1 +0,0 @@ -!["a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-91.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-91.qmd deleted file mode 100644 index 1b5380a..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-91.qmd +++ /dev/null @@ -1 +0,0 @@ -[++" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-92.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-92.qmd deleted file mode 100644 index 9aca4d1..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-92.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-93.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-93.qmd deleted file mode 100644 index f74c7a1..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-93.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a _a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-94.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-94.qmd deleted file mode 100644 index d6d19e6..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-94.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a __a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-95.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-95.qmd deleted file mode 100644 index 03fb32c..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-95.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a *a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-96.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-96.qmd deleted file mode 100644 index 2079944..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-96.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a **a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-97.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-97.qmd deleted file mode 100644 index ec7089f..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-97.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a $a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-98.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-98.qmd deleted file mode 100644 index ebee4b9..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-98.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a $$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-99.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-99.qmd deleted file mode 100644 index 8671d8f..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-99.qmd +++ /dev/null @@ -1 +0,0 @@ -[++"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-1.qmd new file mode 100644 index 0000000..3610c99 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-1.qmd @@ -0,0 +1 @@ +**a" b.** diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-10.qmd new file mode 100644 index 0000000..0ee5f92 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-10.qmd @@ -0,0 +1 @@ +[--a" b.] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-11.qmd new file mode 100644 index 0000000..79b0aae --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-11.qmd @@ -0,0 +1 @@ +[>>a" b.] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-12.qmd new file mode 100644 index 0000000..55e1f5b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-12.qmd @@ -0,0 +1 @@ +[==a" b.] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-13.qmd new file mode 100644 index 0000000..9032557 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-13.qmd @@ -0,0 +1 @@ +foo^[a" b.] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-14.qmd new file mode 100644 index 0000000..4c51ee8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-14.qmd @@ -0,0 +1 @@ +_a" b._ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-15.qmd new file mode 100644 index 0000000..fc86e14 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-15.qmd @@ -0,0 +1 @@ +__a" b.__ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-16.qmd new file mode 100644 index 0000000..243eab5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-16.qmd @@ -0,0 +1 @@ +'a" b.' diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-17.qmd new file mode 100644 index 0000000..d68b441 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-17.qmd @@ -0,0 +1 @@ +## a" b. diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-2.qmd new file mode 100644 index 0000000..014a0a2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-2.qmd @@ -0,0 +1 @@ +*a" b.* diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-3.qmd new file mode 100644 index 0000000..3facae6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-3.qmd @@ -0,0 +1 @@ +[a" b.](url) diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-4.qmd new file mode 100644 index 0000000..80f5432 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-4.qmd @@ -0,0 +1 @@ +^a" b.^ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-5.qmd new file mode 100644 index 0000000..d4c19f4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-5.qmd @@ -0,0 +1 @@ +~a" b.~ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-6.qmd new file mode 100644 index 0000000..cab4a3b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-6.qmd @@ -0,0 +1 @@ +~~a" b.~~ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-7.qmd new file mode 100644 index 0000000..cbd3bdc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-7.qmd @@ -0,0 +1 @@ +![a" b.](url) diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-8.qmd new file mode 100644 index 0000000..effd89e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-8.qmd @@ -0,0 +1 @@ +"a" b." diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-9.qmd new file mode 100644 index 0000000..88c9aec --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped-9.qmd @@ -0,0 +1 @@ +[++a" b.] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped.qmd new file mode 100644 index 0000000..5d4ab1e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-wrapped.qmd @@ -0,0 +1 @@ +a" b. \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-stray-ending-quote.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-stray-ending-quote.qmd new file mode 100644 index 0000000..9f96097 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-stray-ending-quote.qmd @@ -0,0 +1 @@ +foo" a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-1.qmd index 03b8e07..f59ec20 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-1.qmd @@ -1 +1 @@ -[*Unclosed emphasis +* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-10.qmd index 9722290..f757289 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-10.qmd @@ -1 +1 @@ -~*Unclosed emphasis +'* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-11.qmd index 417afea..1ec4712 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-11.qmd @@ -1 +1 @@ -~~*Unclosed emphasis +"* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-12.qmd index 75fc9da..3a8baa4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-12.qmd @@ -1 +1 @@ -'*Unclosed emphasis +^[* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-13.qmd index bbc6b78..517cf4a 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-13.qmd @@ -1 +1 @@ -"*Unclosed emphasis +##* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-14.qmd index 87bb149..a8fabe5 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-14.qmd @@ -1 +1 @@ -^[*Unclosed emphasis +*_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-15.qmd new file mode 100644 index 0000000..66140ee --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-15.qmd @@ -0,0 +1 @@ +*__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-16.qmd new file mode 100644 index 0000000..00dfd9f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-16.qmd @@ -0,0 +1 @@ +*$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-17.qmd new file mode 100644 index 0000000..98b2449 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-17.qmd @@ -0,0 +1 @@ +*$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-18.qmd new file mode 100644 index 0000000..dec792e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-18.qmd @@ -0,0 +1 @@ +*~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-19.qmd new file mode 100644 index 0000000..69edad3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-19.qmd @@ -0,0 +1 @@ +*~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-2.qmd index ef6769c..76bdd2f 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-2.qmd @@ -1 +1 @@ -_*Unclosed emphasis +[* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-20.qmd new file mode 100644 index 0000000..8b3ef15 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-20.qmd @@ -0,0 +1 @@ +*`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-21.qmd new file mode 100644 index 0000000..c434251 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-21.qmd @@ -0,0 +1 @@ +*'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-22.qmd new file mode 100644 index 0000000..4c05205 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-22.qmd @@ -0,0 +1 @@ +*"a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-23.qmd new file mode 100644 index 0000000..aec317f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-23.qmd @@ -0,0 +1 @@ +*^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-24.qmd new file mode 100644 index 0000000..fcd3497 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-24.qmd @@ -0,0 +1 @@ +*[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-25.qmd new file mode 100644 index 0000000..97b3469 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-25.qmd @@ -0,0 +1 @@ +*![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-26.qmd new file mode 100644 index 0000000..350d8b8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-26.qmd @@ -0,0 +1 @@ +*^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-27.qmd new file mode 100644 index 0000000..f421b88 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-27.qmd @@ -0,0 +1 @@ +*[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-28.qmd new file mode 100644 index 0000000..9a05e9b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-28.qmd @@ -0,0 +1 @@ +*[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-29.qmd new file mode 100644 index 0000000..162a758 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-29.qmd @@ -0,0 +1 @@ +*[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-3.qmd index 43a8e32..c434074 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-3.qmd @@ -1 +1 @@ -__*Unclosed emphasis +_* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-30.qmd new file mode 100644 index 0000000..c917737 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-30.qmd @@ -0,0 +1 @@ +*[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-31.qmd new file mode 100644 index 0000000..d60ccec --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-31.qmd @@ -0,0 +1 @@ +*a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-4.qmd index ed30fef..b121290 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-4.qmd @@ -1 +1 @@ -![*Unclosed emphasis +__* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-5.qmd index 286c998..466a439 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-5.qmd @@ -1 +1 @@ -[++*Unclosed emphasis +![* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-6.qmd index 97e1328..cd779e0 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-6.qmd @@ -1 +1 @@ -[--*Unclosed emphasis +[>>* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-7.qmd index ce06f74..4c2ffb6 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-7.qmd @@ -1 +1 @@ -[!!*Unclosed emphasis +^* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-8.qmd index 676d1ca..aececac 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-8.qmd @@ -1 +1 @@ -[>>*Unclosed emphasis +~* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-9.qmd index a2dc1f0..6076ee6 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-9.qmd @@ -1 +1 @@ -^*Unclosed emphasis +~~* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple.qmd index a176c2f..f59ec20 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple.qmd @@ -1 +1 @@ -*Unclosed emphasis +* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-stray-ending-star.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-stray-ending-star.qmd new file mode 100644 index 0000000..977f319 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-stray-ending-star.qmd @@ -0,0 +1 @@ +foo* a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-1.qmd index 5799f3f..fa29cdf 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-1.qmd @@ -1 +1 @@ -[**Unclosed strong emphasis +** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-10.qmd index da556eb..3373bd3 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-10.qmd @@ -1 +1 @@ -~**Unclosed strong emphasis +'** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-11.qmd index 002b03c..2944175 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-11.qmd @@ -1 +1 @@ -~~**Unclosed strong emphasis +"** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-12.qmd index 7335df5..de5c9a6 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-12.qmd @@ -1 +1 @@ -'**Unclosed strong emphasis +^[** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-13.qmd index 58ac615..b9c9593 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-13.qmd @@ -1 +1 @@ -"**Unclosed strong emphasis +##** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-14.qmd index dec51c5..18963ba 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-14.qmd @@ -1 +1 @@ -^[**Unclosed strong emphasis +**_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-15.qmd new file mode 100644 index 0000000..1bf83df --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-15.qmd @@ -0,0 +1 @@ +**__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-16.qmd new file mode 100644 index 0000000..b9d6795 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-16.qmd @@ -0,0 +1 @@ +**$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-17.qmd new file mode 100644 index 0000000..2689024 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-17.qmd @@ -0,0 +1 @@ +**$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-18.qmd new file mode 100644 index 0000000..cfeacda --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-18.qmd @@ -0,0 +1 @@ +**~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-19.qmd new file mode 100644 index 0000000..ef171d8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-19.qmd @@ -0,0 +1 @@ +**~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-2.qmd index 198141f..09c71b4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-2.qmd @@ -1 +1 @@ -_**Unclosed strong emphasis +[** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-20.qmd new file mode 100644 index 0000000..4ab3a22 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-20.qmd @@ -0,0 +1 @@ +**`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-21.qmd new file mode 100644 index 0000000..2e25cc1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-21.qmd @@ -0,0 +1 @@ +**'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-22.qmd new file mode 100644 index 0000000..71c583b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-22.qmd @@ -0,0 +1 @@ +**"a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-23.qmd new file mode 100644 index 0000000..f0b2aa6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-23.qmd @@ -0,0 +1 @@ +**^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-24.qmd new file mode 100644 index 0000000..7fb4234 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-24.qmd @@ -0,0 +1 @@ +**[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-25.qmd new file mode 100644 index 0000000..2e82d00 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-25.qmd @@ -0,0 +1 @@ +**![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-26.qmd new file mode 100644 index 0000000..725610a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-26.qmd @@ -0,0 +1 @@ +**^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-27.qmd new file mode 100644 index 0000000..a592229 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-27.qmd @@ -0,0 +1 @@ +**[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-28.qmd new file mode 100644 index 0000000..0f9f908 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-28.qmd @@ -0,0 +1 @@ +**[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-29.qmd new file mode 100644 index 0000000..588a926 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-29.qmd @@ -0,0 +1 @@ +**[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-3.qmd index 5e23958..dc4d5ef 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-3.qmd @@ -1 +1 @@ -__**Unclosed strong emphasis +_** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-30.qmd new file mode 100644 index 0000000..1a5fd12 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-30.qmd @@ -0,0 +1 @@ +**[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-31.qmd new file mode 100644 index 0000000..bd8650c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-31.qmd @@ -0,0 +1 @@ +**a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-4.qmd index 03a2474..29bc722 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-4.qmd @@ -1 +1 @@ -![**Unclosed strong emphasis +__** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-5.qmd index 3f9dfbe..0d0a6d5 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-5.qmd @@ -1 +1 @@ -[++**Unclosed strong emphasis +![** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-6.qmd index 7c5ae61..37a718b 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-6.qmd @@ -1 +1 @@ -[--**Unclosed strong emphasis +[>>** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-7.qmd index f5970a3..32230b5 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-7.qmd @@ -1 +1 @@ -[!!**Unclosed strong emphasis +^** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-8.qmd index 9ee3387..d8f5b2a 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-8.qmd @@ -1 +1 @@ -[>>**Unclosed strong emphasis +~** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-9.qmd index 57abbbb..49026f7 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-9.qmd @@ -1 +1 @@ -^**Unclosed strong emphasis +~~** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple.qmd index 9027986..fa29cdf 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple.qmd @@ -1 +1 @@ -**Unclosed strong emphasis +** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-1.qmd index ac7d09c..9b4441c 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-1.qmd @@ -1 +1 @@ -[__Unclosed strong emphasis +__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-10.qmd index 2f69cac..0a80c62 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-10.qmd @@ -1 +1 @@ -'__Unclosed strong emphasis +*__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-11.qmd index 51c36ec..b4d7725 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-11.qmd @@ -1 +1 @@ -"__Unclosed strong emphasis +**__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-12.qmd index 5642e38..096e5bf 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-12.qmd @@ -1 +1 @@ -*__Unclosed strong emphasis +^[__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-13.qmd index 56f1006..60c0408 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-13.qmd @@ -1 +1 @@ -**__Unclosed strong emphasis +##__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-14.qmd index 6eb76a3..9da6925 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-14.qmd @@ -1 +1 @@ -^[__Unclosed strong emphasis +__*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-15.qmd new file mode 100644 index 0000000..773fd38 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-15.qmd @@ -0,0 +1 @@ +__**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-16.qmd new file mode 100644 index 0000000..9f588d2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-16.qmd @@ -0,0 +1 @@ +__$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-17.qmd new file mode 100644 index 0000000..76e29f3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-17.qmd @@ -0,0 +1 @@ +__$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-18.qmd new file mode 100644 index 0000000..5596337 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-18.qmd @@ -0,0 +1 @@ +__~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-19.qmd new file mode 100644 index 0000000..111a8d6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-19.qmd @@ -0,0 +1 @@ +__~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-2.qmd index a792206..ae383f6 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-2.qmd @@ -1 +1 @@ -![__Unclosed strong emphasis +[__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-20.qmd new file mode 100644 index 0000000..3550741 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-20.qmd @@ -0,0 +1 @@ +__`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-21.qmd new file mode 100644 index 0000000..b394fa2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-21.qmd @@ -0,0 +1 @@ +__'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-22.qmd new file mode 100644 index 0000000..73f3c5d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-22.qmd @@ -0,0 +1 @@ +__"a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-23.qmd new file mode 100644 index 0000000..03f1459 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-23.qmd @@ -0,0 +1 @@ +__^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-24.qmd new file mode 100644 index 0000000..6788852 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-24.qmd @@ -0,0 +1 @@ +__[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-25.qmd new file mode 100644 index 0000000..7cc1f6a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-25.qmd @@ -0,0 +1 @@ +__![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-26.qmd new file mode 100644 index 0000000..c9330a5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-26.qmd @@ -0,0 +1 @@ +__^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-27.qmd new file mode 100644 index 0000000..91bec30 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-27.qmd @@ -0,0 +1 @@ +__[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-28.qmd new file mode 100644 index 0000000..4e15eac --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-28.qmd @@ -0,0 +1 @@ +__[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-29.qmd new file mode 100644 index 0000000..a01147a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-29.qmd @@ -0,0 +1 @@ +__[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-3.qmd index 11d60dd..990b251 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-3.qmd @@ -1 +1 @@ -[++__Unclosed strong emphasis +![__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-30.qmd new file mode 100644 index 0000000..65ad4bd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-30.qmd @@ -0,0 +1 @@ +__[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-31.qmd new file mode 100644 index 0000000..31955ba --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-31.qmd @@ -0,0 +1 @@ +__a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-4.qmd index 8fe90fb..8704da5 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-4.qmd @@ -1 +1 @@ -[--__Unclosed strong emphasis +[>>__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-5.qmd index 6262f79..513763c 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-5.qmd @@ -1 +1 @@ -[!!__Unclosed strong emphasis +^__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-6.qmd index 6d76386..2ec2fbe 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-6.qmd @@ -1 +1 @@ -[>>__Unclosed strong emphasis +~__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-7.qmd index 0b15ad1..bfb9083 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-7.qmd @@ -1 +1 @@ -^__Unclosed strong emphasis +~~__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-8.qmd index 24ac024..723cca8 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-8.qmd @@ -1 +1 @@ -~__Unclosed strong emphasis +'__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-9.qmd index 6dab899..7783021 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-9.qmd @@ -1 +1 @@ -~~__Unclosed strong emphasis +"__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple.qmd index feceb03..9b4441c 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple.qmd @@ -1 +1 @@ -__Unclosed strong emphasis +__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-1.qmd index 0742a1d..e0aa8a9 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-1.qmd @@ -1 +1 @@ -[^Unclosed superscript +^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-10.qmd index d3dd9bc..2b13e0e 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-10.qmd @@ -1 +1 @@ -~^Unclosed superscript +*^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-11.qmd index c7b28db..edc4cc7 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-11.qmd @@ -1 +1 @@ -~~^Unclosed superscript +**^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-12.qmd index 082a0e3..db84291 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-12.qmd @@ -1 +1 @@ -'^Unclosed superscript +^[^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-13.qmd index 23050c4..a58fda2 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-13.qmd @@ -1 +1 @@ -"^Unclosed superscript +##^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-14.qmd index 868b7f2..ae43704 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-14.qmd @@ -1 +1 @@ -*^Unclosed superscript +^_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-15.qmd index 62d194b..81ad3dc 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-15.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-15.qmd @@ -1 +1 @@ -**^Unclosed superscript +^__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-16.qmd index f2b2a7b..04c8157 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-16.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-16.qmd @@ -1 +1 @@ -^[^Unclosed superscript +^*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-17.qmd new file mode 100644 index 0000000..1f19c18 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-17.qmd @@ -0,0 +1 @@ +^**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-18.qmd new file mode 100644 index 0000000..e7d1712 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-18.qmd @@ -0,0 +1 @@ +^$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-19.qmd new file mode 100644 index 0000000..c0eb0fc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-19.qmd @@ -0,0 +1 @@ +^$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-2.qmd index e159db2..3df13b4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-2.qmd @@ -1 +1 @@ -_^Unclosed superscript +_^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-20.qmd new file mode 100644 index 0000000..c732454 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-20.qmd @@ -0,0 +1 @@ +^~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-21.qmd new file mode 100644 index 0000000..0119f88 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-21.qmd @@ -0,0 +1 @@ +^~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-22.qmd new file mode 100644 index 0000000..364643b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-22.qmd @@ -0,0 +1 @@ +^`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-23.qmd new file mode 100644 index 0000000..cd9109a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-23.qmd @@ -0,0 +1 @@ +^'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-24.qmd new file mode 100644 index 0000000..50effe2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-24.qmd @@ -0,0 +1 @@ +^"a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-25.qmd new file mode 100644 index 0000000..1f2a529 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-25.qmd @@ -0,0 +1 @@ +^![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-26.qmd new file mode 100644 index 0000000..8f9b0f6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-26.qmd @@ -0,0 +1 @@ +^a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-3.qmd index 939d3e4..c14f215 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-3.qmd @@ -1 +1 @@ -__^Unclosed superscript +__^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-4.qmd index 691ccc8..1fea7eb 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-4.qmd @@ -1 +1 @@ -![^Unclosed superscript +![^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-5.qmd index 95cca30..324ed0b 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-5.qmd @@ -1 +1 @@ -[++^Unclosed superscript +[>>^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-6.qmd index b18f062..4c282e8 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-6.qmd @@ -1 +1 @@ -[--^Unclosed superscript +~^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-7.qmd index e8c308b..2ee58a8 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-7.qmd @@ -1 +1 @@ -[!!^Unclosed superscript +~~^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-8.qmd index 5a361f3..66da228 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-8.qmd @@ -1 +1 @@ -[>>^Unclosed superscript +'^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-9.qmd index ad3201e..9b0d3b8 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-9.qmd @@ -1 +1 @@ -^^Unclosed superscript +"^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple.qmd index a22e62e..e0aa8a9 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple.qmd @@ -1 +1 @@ -^Unclosed superscript +^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-1.qmd index 9c4e723..4977bc6 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-1.qmd @@ -1 +1 @@ -[~Unclosed subscript +~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-10.qmd index bf42406..e4e5f6c 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-10.qmd @@ -1 +1 @@ -'~Unclosed subscript +*~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-11.qmd index ee9050b..9fadb73 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-11.qmd @@ -1 +1 @@ -"~Unclosed subscript +**~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-12.qmd index 0065926..24a4d38 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-12.qmd @@ -1 +1 @@ -*~Unclosed subscript +^[~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-13.qmd index 500f4e1..cc0bad6 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-13.qmd @@ -1 +1 @@ -**~Unclosed subscript +##~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-14.qmd index 413f208..ffe1e19 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-14.qmd @@ -1 +1 @@ -^[~Unclosed subscript +~_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-15.qmd new file mode 100644 index 0000000..eddcd8a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-15.qmd @@ -0,0 +1 @@ +~__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-16.qmd new file mode 100644 index 0000000..79b11a9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-16.qmd @@ -0,0 +1 @@ +~*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-17.qmd new file mode 100644 index 0000000..31e60a6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-17.qmd @@ -0,0 +1 @@ +~**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-18.qmd new file mode 100644 index 0000000..5d5b8f5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-18.qmd @@ -0,0 +1 @@ +~$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-19.qmd new file mode 100644 index 0000000..a9a648a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-19.qmd @@ -0,0 +1 @@ +~$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-2.qmd index a83eb20..cb81942 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-2.qmd @@ -1 +1 @@ -_~Unclosed subscript +[~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-20.qmd new file mode 100644 index 0000000..47febce --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-20.qmd @@ -0,0 +1 @@ +~`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-21.qmd new file mode 100644 index 0000000..a6926f9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-21.qmd @@ -0,0 +1 @@ +~'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-22.qmd new file mode 100644 index 0000000..37d4cf7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-22.qmd @@ -0,0 +1 @@ +~"a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-23.qmd new file mode 100644 index 0000000..e1544e0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-23.qmd @@ -0,0 +1 @@ +~^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-24.qmd new file mode 100644 index 0000000..da11cf1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-24.qmd @@ -0,0 +1 @@ +~[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-25.qmd new file mode 100644 index 0000000..95e987c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-25.qmd @@ -0,0 +1 @@ +~![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-26.qmd new file mode 100644 index 0000000..4e0d7ec --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-26.qmd @@ -0,0 +1 @@ +~^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-27.qmd new file mode 100644 index 0000000..bba8f32 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-27.qmd @@ -0,0 +1 @@ +~[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-28.qmd new file mode 100644 index 0000000..2cb61b5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-28.qmd @@ -0,0 +1 @@ +~[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-29.qmd new file mode 100644 index 0000000..3177e30 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-29.qmd @@ -0,0 +1 @@ +~[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-3.qmd index af5d364..552b444 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-3.qmd @@ -1 +1 @@ -__~Unclosed subscript +_~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-30.qmd new file mode 100644 index 0000000..fbf626b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-30.qmd @@ -0,0 +1 @@ +~[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-31.qmd new file mode 100644 index 0000000..ac65d03 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-31.qmd @@ -0,0 +1 @@ +~a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-4.qmd index 64354ad..9f9ddf8 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-4.qmd @@ -1 +1 @@ -![~Unclosed subscript +__~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-5.qmd index 388d303..1c56081 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-5.qmd @@ -1 +1 @@ -[++~Unclosed subscript +![~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-6.qmd index 472d23d..af7ed86 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-6.qmd @@ -1 +1 @@ -[--~Unclosed subscript +[>>~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-7.qmd index 45b1c05..3ec1ead 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-7.qmd @@ -1 +1 @@ -[!!~Unclosed subscript +^~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-8.qmd index 99df2b3..307a51d 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-8.qmd @@ -1 +1 @@ -[>>~Unclosed subscript +'~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-9.qmd index e4e40cb..d8010ed 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-9.qmd @@ -1 +1 @@ -^~Unclosed subscript +"~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple.qmd index 401b670..4977bc6 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple.qmd @@ -1 +1 @@ -~Unclosed subscript +~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-1.qmd index 49c96cb..68db24f 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-1.qmd @@ -1 +1 @@ -[~~Unclosed strikeout +~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-10.qmd index 6c3374b..a54bffb 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-10.qmd @@ -1 +1 @@ -'~~Unclosed strikeout +*~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-11.qmd index 3eb8d27..4382c8e 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-11.qmd @@ -1 +1 @@ -"~~Unclosed strikeout +**~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-12.qmd index 57fd0d7..2269870 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-12.qmd @@ -1 +1 @@ -*~~Unclosed strikeout +^[~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-13.qmd index 9766633..5130115 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-13.qmd @@ -1 +1 @@ -**~~Unclosed strikeout +##~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-14.qmd index fb1509e..4ab3e6c 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-14.qmd @@ -1 +1 @@ -^[~~Unclosed strikeout +~~_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-15.qmd new file mode 100644 index 0000000..97581bd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-15.qmd @@ -0,0 +1 @@ +~~__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-16.qmd new file mode 100644 index 0000000..b21c3ec --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-16.qmd @@ -0,0 +1 @@ +~~*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-17.qmd new file mode 100644 index 0000000..97a0ffb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-17.qmd @@ -0,0 +1 @@ +~~**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-18.qmd new file mode 100644 index 0000000..0e07b6e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-18.qmd @@ -0,0 +1 @@ +~~$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-19.qmd new file mode 100644 index 0000000..eea3c5d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-19.qmd @@ -0,0 +1 @@ +~~$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-2.qmd index b59f912..6348051 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-2.qmd @@ -1 +1 @@ -_~~Unclosed strikeout +[~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-20.qmd new file mode 100644 index 0000000..eb804ee --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-20.qmd @@ -0,0 +1 @@ +~~`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-21.qmd new file mode 100644 index 0000000..9b5844e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-21.qmd @@ -0,0 +1 @@ +~~'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-22.qmd new file mode 100644 index 0000000..dac83d0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-22.qmd @@ -0,0 +1 @@ +~~"a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-23.qmd new file mode 100644 index 0000000..1c59515 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-23.qmd @@ -0,0 +1 @@ +~~^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-24.qmd new file mode 100644 index 0000000..20f19b3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-24.qmd @@ -0,0 +1 @@ +~~[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-25.qmd new file mode 100644 index 0000000..10d8a11 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-25.qmd @@ -0,0 +1 @@ +~~![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-26.qmd new file mode 100644 index 0000000..18859a0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-26.qmd @@ -0,0 +1 @@ +~~^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-27.qmd new file mode 100644 index 0000000..9b24806 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-27.qmd @@ -0,0 +1 @@ +~~[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-28.qmd new file mode 100644 index 0000000..73ced4a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-28.qmd @@ -0,0 +1 @@ +~~[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-29.qmd new file mode 100644 index 0000000..62f1f57 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-29.qmd @@ -0,0 +1 @@ +~~[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-3.qmd index d0648ab..cfef1c4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-3.qmd @@ -1 +1 @@ -__~~Unclosed strikeout +_~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-30.qmd new file mode 100644 index 0000000..32d55e9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-30.qmd @@ -0,0 +1 @@ +~~[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-31.qmd new file mode 100644 index 0000000..0151be9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-31.qmd @@ -0,0 +1 @@ +~~a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-4.qmd index 031b6ec..de81388 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-4.qmd @@ -1 +1 @@ -![~~Unclosed strikeout +__~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-5.qmd index 5ef3a99..2cbc690 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-5.qmd @@ -1 +1 @@ -[++~~Unclosed strikeout +![~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-6.qmd index 7363b36..62d7346 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-6.qmd @@ -1 +1 @@ -[--~~Unclosed strikeout +[>>~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-7.qmd index ee3d706..bdcf1cb 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-7.qmd @@ -1 +1 @@ -[!!~~Unclosed strikeout +^~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-8.qmd index 5da62f0..070a89e 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-8.qmd @@ -1 +1 @@ -[>>~~Unclosed strikeout +'~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-9.qmd index 537e4f8..1064b1d 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-9.qmd @@ -1 +1 @@ -^~~Unclosed strikeout +"~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple.qmd index b058e2c..68db24f 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple.qmd @@ -1 +1 @@ -~~Unclosed strikeout +~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-1.qmd index 046adc0..f9d9546 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-1.qmd @@ -1 +1 @@ -[[++Unclosed editorial insert +[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-10.qmd index 6d1dd56..feb1b40 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-10.qmd @@ -1 +1 @@ -'[++Unclosed editorial insert +"[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-11.qmd index dfbdb47..e4bbc38 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-11.qmd @@ -1 +1 @@ -"[++Unclosed editorial insert +*[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-12.qmd index c4b0dda..47f49a8 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-12.qmd @@ -1 +1 @@ -*[++Unclosed editorial insert +**[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-13.qmd index e53c611..5249f55 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-13.qmd @@ -1 +1 @@ -**[++Unclosed editorial insert +^[[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-14.qmd index 527b08b..f871a60 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-14.qmd @@ -1 +1 @@ -^[[++Unclosed editorial insert +##[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-15.qmd new file mode 100644 index 0000000..d3d776b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-15.qmd @@ -0,0 +1 @@ +[++_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-16.qmd new file mode 100644 index 0000000..21cbfe8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-16.qmd @@ -0,0 +1 @@ +[++__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-17.qmd new file mode 100644 index 0000000..8e2e1e3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-17.qmd @@ -0,0 +1 @@ +[++*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-18.qmd new file mode 100644 index 0000000..3342f7c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-18.qmd @@ -0,0 +1 @@ +[++**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-19.qmd new file mode 100644 index 0000000..2aabe02 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-19.qmd @@ -0,0 +1 @@ +[++$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-2.qmd index 69c9902..27becc4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-2.qmd @@ -1 +1 @@ -_[++Unclosed editorial insert +[[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-20.qmd new file mode 100644 index 0000000..4783a3f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-20.qmd @@ -0,0 +1 @@ +[++$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-21.qmd new file mode 100644 index 0000000..6dadfe0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-21.qmd @@ -0,0 +1 @@ +[++~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-22.qmd new file mode 100644 index 0000000..5274a12 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-22.qmd @@ -0,0 +1 @@ +[++~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-23.qmd new file mode 100644 index 0000000..bd32d67 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-23.qmd @@ -0,0 +1 @@ +[++`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-24.qmd new file mode 100644 index 0000000..34df00d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-24.qmd @@ -0,0 +1 @@ +[++'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-25.qmd new file mode 100644 index 0000000..a53e21b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-25.qmd @@ -0,0 +1 @@ +[++"a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-26.qmd new file mode 100644 index 0000000..929b305 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-26.qmd @@ -0,0 +1 @@ +[++^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-27.qmd new file mode 100644 index 0000000..9649064 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-27.qmd @@ -0,0 +1 @@ +[++[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-28.qmd new file mode 100644 index 0000000..65547af --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-28.qmd @@ -0,0 +1 @@ +[++![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-29.qmd new file mode 100644 index 0000000..a1f767f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-29.qmd @@ -0,0 +1 @@ +[++^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-3.qmd index dc76c76..7a3fc38 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-3.qmd @@ -1 +1 @@ -__[++Unclosed editorial insert +_[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-30.qmd new file mode 100644 index 0000000..e77fec5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-30.qmd @@ -0,0 +1 @@ +[++[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-31.qmd new file mode 100644 index 0000000..1bcc534 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-31.qmd @@ -0,0 +1 @@ +[++[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-32.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-32.qmd new file mode 100644 index 0000000..558ff6e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-32.qmd @@ -0,0 +1 @@ +[++[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-33.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-33.qmd new file mode 100644 index 0000000..066c950 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-33.qmd @@ -0,0 +1 @@ +[++[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-34.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-34.qmd new file mode 100644 index 0000000..15c16e3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-34.qmd @@ -0,0 +1 @@ +[++a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-4.qmd index dd44b35..f309887 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-4.qmd @@ -1 +1 @@ -![[++Unclosed editorial insert +__[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-5.qmd index d684bec..e834c6e 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-5.qmd @@ -1 +1 @@ -[--[++Unclosed editorial insert +![[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-6.qmd index e799db3..e1bf9ba 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-6.qmd @@ -1 +1 @@ -[!![++Unclosed editorial insert +[>>[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-7.qmd index ef6c25a..5730d1b 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-7.qmd @@ -1 +1 @@ -[>>[++Unclosed editorial insert +~[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-8.qmd index 3d058ec..ce4ceb7 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-8.qmd @@ -1 +1 @@ -~[++Unclosed editorial insert +~~[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-9.qmd index a645bac..c8dd6b2 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-9.qmd @@ -1 +1 @@ -~~[++Unclosed editorial insert +'[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple.qmd index 8aaf616..f9d9546 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple.qmd @@ -1 +1 @@ -[++Unclosed editorial insert +[++ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-1.qmd index 66e1888..fe57d40 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-1.qmd @@ -1 +1 @@ -[[--Unclosed editorial delete +[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-10.qmd index 564e0ac..83d1d83 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-10.qmd @@ -1 +1 @@ -'[--Unclosed editorial delete +"[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-11.qmd index 656a650..4269fdb 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-11.qmd @@ -1 +1 @@ -"[--Unclosed editorial delete +*[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-12.qmd index aa45db7..be29fc4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-12.qmd @@ -1 +1 @@ -*[--Unclosed editorial delete +**[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-13.qmd index b2070e9..025599e 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-13.qmd @@ -1 +1 @@ -**[--Unclosed editorial delete +^[[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-14.qmd index b029335..ce5cfb0 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-14.qmd @@ -1 +1 @@ -^[[--Unclosed editorial delete +##[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-15.qmd new file mode 100644 index 0000000..16f56c1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-15.qmd @@ -0,0 +1 @@ +[--_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-16.qmd new file mode 100644 index 0000000..4115de2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-16.qmd @@ -0,0 +1 @@ +[--__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-17.qmd new file mode 100644 index 0000000..ae781fb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-17.qmd @@ -0,0 +1 @@ +[--*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-18.qmd new file mode 100644 index 0000000..47ea425 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-18.qmd @@ -0,0 +1 @@ +[--**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-19.qmd new file mode 100644 index 0000000..2559a7d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-19.qmd @@ -0,0 +1 @@ +[--$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-2.qmd index 31de742..b62faa5 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-2.qmd @@ -1 +1 @@ -_[--Unclosed editorial delete +[[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-20.qmd new file mode 100644 index 0000000..a122760 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-20.qmd @@ -0,0 +1 @@ +[--$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-21.qmd new file mode 100644 index 0000000..008350d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-21.qmd @@ -0,0 +1 @@ +[--~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-22.qmd new file mode 100644 index 0000000..81dbd31 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-22.qmd @@ -0,0 +1 @@ +[--~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-23.qmd new file mode 100644 index 0000000..2ab5820 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-23.qmd @@ -0,0 +1 @@ +[--`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-24.qmd new file mode 100644 index 0000000..fea7ee9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-24.qmd @@ -0,0 +1 @@ +[--'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-25.qmd new file mode 100644 index 0000000..a5b4c5a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-25.qmd @@ -0,0 +1 @@ +[--"a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-26.qmd new file mode 100644 index 0000000..91840a2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-26.qmd @@ -0,0 +1 @@ +[--^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-27.qmd new file mode 100644 index 0000000..a9854b6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-27.qmd @@ -0,0 +1 @@ +[--[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-28.qmd new file mode 100644 index 0000000..4b25413 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-28.qmd @@ -0,0 +1 @@ +[--![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-29.qmd new file mode 100644 index 0000000..7ecdaee --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-29.qmd @@ -0,0 +1 @@ +[--^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-3.qmd index 0e0fbaf..9025595 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-3.qmd @@ -1 +1 @@ -__[--Unclosed editorial delete +_[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-30.qmd new file mode 100644 index 0000000..cb2d8d3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-30.qmd @@ -0,0 +1 @@ +[--[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-31.qmd new file mode 100644 index 0000000..37bd706 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-31.qmd @@ -0,0 +1 @@ +[--[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-32.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-32.qmd new file mode 100644 index 0000000..ba4256c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-32.qmd @@ -0,0 +1 @@ +[--[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-33.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-33.qmd new file mode 100644 index 0000000..cc708c4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-33.qmd @@ -0,0 +1 @@ +[--[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-34.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-34.qmd new file mode 100644 index 0000000..9451b2f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-34.qmd @@ -0,0 +1 @@ +[--a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-4.qmd index 9c205c7..602f3a9 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-4.qmd @@ -1 +1 @@ -![[--Unclosed editorial delete +__[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-5.qmd index 1ac237b..ec8c79e 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-5.qmd @@ -1 +1 @@ -[++[--Unclosed editorial delete +![[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-6.qmd index a46c609..a92f492 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-6.qmd @@ -1 +1 @@ -[!![--Unclosed editorial delete +[>>[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-7.qmd index af5d524..4184501 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-7.qmd @@ -1 +1 @@ -[>>[--Unclosed editorial delete +~[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-8.qmd index e9b1718..fb76497 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-8.qmd @@ -1 +1 @@ -~[--Unclosed editorial delete +~~[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-9.qmd index b3e0337..db44a48 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-9.qmd @@ -1 +1 @@ -~~[--Unclosed editorial delete +'[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple.qmd index 9cc81d4..fe57d40 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple.qmd @@ -1 +1 @@ -[--Unclosed editorial delete +[-- \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-1.qmd index 731b21c..653d55a 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-1.qmd @@ -1 +1 @@ -[[>>Unclosed editorial comment +[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-10.qmd index c59d66b..fe3d576 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-10.qmd @@ -1 +1 @@ -'[>>Unclosed editorial comment +~[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-11.qmd index 3913c74..e21c6d8 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-11.qmd @@ -1 +1 @@ -"[>>Unclosed editorial comment +~~[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-12.qmd index 34b8ea8..0134b8a 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-12.qmd @@ -1 +1 @@ -*[>>Unclosed editorial comment +'[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-13.qmd index 4825354..f9d5790 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-13.qmd @@ -1 +1 @@ -**[>>Unclosed editorial comment +"[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-14.qmd index 2de25e9..6a4b550 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-14.qmd @@ -1 +1 @@ -^[[>>Unclosed editorial comment +*[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-15.qmd new file mode 100644 index 0000000..37521b4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-15.qmd @@ -0,0 +1 @@ +**[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-16.qmd new file mode 100644 index 0000000..3dfe7af --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-16.qmd @@ -0,0 +1 @@ +^[[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-17.qmd new file mode 100644 index 0000000..9df861d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-17.qmd @@ -0,0 +1 @@ +##[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-18.qmd new file mode 100644 index 0000000..0f381af --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-18.qmd @@ -0,0 +1 @@ +[>>_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-19.qmd new file mode 100644 index 0000000..283f387 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-19.qmd @@ -0,0 +1 @@ +[>>__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-2.qmd index 2a92386..e220840 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-2.qmd @@ -1 +1 @@ -_[>>Unclosed editorial comment +[[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-20.qmd new file mode 100644 index 0000000..676430b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-20.qmd @@ -0,0 +1 @@ +[>>*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-21.qmd new file mode 100644 index 0000000..e340909 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-21.qmd @@ -0,0 +1 @@ +[>>**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-22.qmd new file mode 100644 index 0000000..0ce7818 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-22.qmd @@ -0,0 +1 @@ +[>>$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-23.qmd new file mode 100644 index 0000000..ac293d4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-23.qmd @@ -0,0 +1 @@ +[>>$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-24.qmd new file mode 100644 index 0000000..bd6649c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-24.qmd @@ -0,0 +1 @@ +[>>~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-25.qmd new file mode 100644 index 0000000..07b4057 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-25.qmd @@ -0,0 +1 @@ +[>>~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-26.qmd new file mode 100644 index 0000000..96201f7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-26.qmd @@ -0,0 +1 @@ +[>>`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-27.qmd new file mode 100644 index 0000000..66340f6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-27.qmd @@ -0,0 +1 @@ +[>>'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-28.qmd new file mode 100644 index 0000000..999cf9a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-28.qmd @@ -0,0 +1 @@ +[>>"a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-29.qmd new file mode 100644 index 0000000..a81b7d4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-29.qmd @@ -0,0 +1 @@ +[>>^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-3.qmd index afe830a..88a5c17 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-3.qmd @@ -1 +1 @@ -__[>>Unclosed editorial comment +_[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-30.qmd new file mode 100644 index 0000000..d0f9cc3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-30.qmd @@ -0,0 +1 @@ +[>>[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-31.qmd new file mode 100644 index 0000000..a9c10be --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-31.qmd @@ -0,0 +1 @@ +[>>![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-32.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-32.qmd new file mode 100644 index 0000000..f759b7d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-32.qmd @@ -0,0 +1 @@ +[>>^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-33.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-33.qmd new file mode 100644 index 0000000..3cc37ed --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-33.qmd @@ -0,0 +1 @@ +[>>[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-34.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-34.qmd new file mode 100644 index 0000000..1cd1ac2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-34.qmd @@ -0,0 +1 @@ +[>>[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-35.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-35.qmd new file mode 100644 index 0000000..7e05aeb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-35.qmd @@ -0,0 +1 @@ +[>>[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-36.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-36.qmd new file mode 100644 index 0000000..e06d651 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-36.qmd @@ -0,0 +1 @@ +[>>[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-37.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-37.qmd new file mode 100644 index 0000000..cb9bcdd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-37.qmd @@ -0,0 +1 @@ +[>>a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-4.qmd index 38df7ab..bd02ee8 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-4.qmd @@ -1 +1 @@ -![[>>Unclosed editorial comment +__[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-5.qmd index 07ba7d1..d84c839 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-5.qmd @@ -1 +1 @@ -[++[>>Unclosed editorial comment +![[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-6.qmd index 3a0081e..1501938 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-6.qmd @@ -1 +1 @@ -[--[>>Unclosed editorial comment +[>>[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-7.qmd index bd222de..23467c4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-7.qmd @@ -1 +1 @@ -[!![>>Unclosed editorial comment +[!![>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-8.qmd index 207bb89..b797aab 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-8.qmd @@ -1 +1 @@ -~[>>Unclosed editorial comment +[--[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-9.qmd index b4e9389..1d50722 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-9.qmd @@ -1 +1 @@ -~~[>>Unclosed editorial comment +[++[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple.qmd index ac6f077..653d55a 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple.qmd @@ -1 +1 @@ -[>>Unclosed editorial comment +[>> \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-1.qmd index 8d503ac..b725a46 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-1.qmd @@ -1 +1 @@ -[[!!Unclosed editorial highlight +[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-10.qmd index 4a1a75d..b0e49c7 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-10.qmd @@ -1 +1 @@ -'[!!Unclosed editorial highlight +~[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-11.qmd index b9ad2ef..9ae0b11 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-11.qmd @@ -1 +1 @@ -"[!!Unclosed editorial highlight +~~[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-12.qmd index d2a519a..3aa34af 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-12.qmd @@ -1 +1 @@ -*[!!Unclosed editorial highlight +'[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-13.qmd index 923ca4b..b9371f6 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-13.qmd @@ -1 +1 @@ -**[!!Unclosed editorial highlight +"[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-14.qmd index 4a18625..cebba70 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-14.qmd @@ -1 +1 @@ -^[[!!Unclosed editorial highlight +*[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-15.qmd new file mode 100644 index 0000000..3f4a6d5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-15.qmd @@ -0,0 +1 @@ +**[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-16.qmd new file mode 100644 index 0000000..9aa1458 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-16.qmd @@ -0,0 +1 @@ +^[[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-17.qmd new file mode 100644 index 0000000..4b5cbf3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-17.qmd @@ -0,0 +1 @@ +##[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-18.qmd new file mode 100644 index 0000000..2703910 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-18.qmd @@ -0,0 +1 @@ +[!!_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-19.qmd new file mode 100644 index 0000000..1b35641 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-19.qmd @@ -0,0 +1 @@ +[!!__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-2.qmd index a361f70..47b0634 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-2.qmd @@ -1 +1 @@ -_[!!Unclosed editorial highlight +[[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-20.qmd new file mode 100644 index 0000000..288dc27 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-20.qmd @@ -0,0 +1 @@ +[!!*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-21.qmd new file mode 100644 index 0000000..a2dbdaf --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-21.qmd @@ -0,0 +1 @@ +[!!**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-22.qmd new file mode 100644 index 0000000..3ea750e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-22.qmd @@ -0,0 +1 @@ +[!!$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-23.qmd new file mode 100644 index 0000000..d36c361 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-23.qmd @@ -0,0 +1 @@ +[!!$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-24.qmd new file mode 100644 index 0000000..3595e6e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-24.qmd @@ -0,0 +1 @@ +[!!~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-25.qmd new file mode 100644 index 0000000..aba57e4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-25.qmd @@ -0,0 +1 @@ +[!!~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-26.qmd new file mode 100644 index 0000000..8a659c1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-26.qmd @@ -0,0 +1 @@ +[!!`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-27.qmd new file mode 100644 index 0000000..18ba3fb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-27.qmd @@ -0,0 +1 @@ +[!!'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-28.qmd new file mode 100644 index 0000000..0f97f75 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-28.qmd @@ -0,0 +1 @@ +[!!"a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-29.qmd new file mode 100644 index 0000000..7ccbc71 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-29.qmd @@ -0,0 +1 @@ +[!!^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-3.qmd index 62b93f1..b6fd945 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-3.qmd @@ -1 +1 @@ -__[!!Unclosed editorial highlight +_[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-30.qmd new file mode 100644 index 0000000..49dcae6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-30.qmd @@ -0,0 +1 @@ +[!![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-31.qmd new file mode 100644 index 0000000..874f066 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-31.qmd @@ -0,0 +1 @@ +[!!![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-32.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-32.qmd new file mode 100644 index 0000000..2b111f6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-32.qmd @@ -0,0 +1 @@ +[!!^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-33.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-33.qmd new file mode 100644 index 0000000..163fe68 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-33.qmd @@ -0,0 +1 @@ +[!![++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-34.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-34.qmd new file mode 100644 index 0000000..159de2c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-34.qmd @@ -0,0 +1 @@ +[!![-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-35.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-35.qmd new file mode 100644 index 0000000..b236e64 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-35.qmd @@ -0,0 +1 @@ +[!![>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-36.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-36.qmd new file mode 100644 index 0000000..6a98865 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-36.qmd @@ -0,0 +1 @@ +[!![!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-37.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-37.qmd new file mode 100644 index 0000000..08434ad --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-37.qmd @@ -0,0 +1 @@ +[!!a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-4.qmd index 16b25a7..bcf88f6 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-4.qmd @@ -1 +1 @@ -![[!!Unclosed editorial highlight +__[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-5.qmd index a97c8c7..863016c 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-5.qmd @@ -1 +1 @@ -[++[!!Unclosed editorial highlight +![[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-6.qmd index ea0dd33..74107b3 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-6.qmd @@ -1 +1 @@ -[--[!!Unclosed editorial highlight +[>>[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-7.qmd index 1c38b31..c2051f7 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-7.qmd @@ -1 +1 @@ -[>>[!!Unclosed editorial highlight +[!![!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-8.qmd index e20a2a0..f5f0eab 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-8.qmd @@ -1 +1 @@ -~[!!Unclosed editorial highlight +[--[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-9.qmd index fd854af..be1490f 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-9.qmd @@ -1 +1 @@ -~~[!!Unclosed editorial highlight +[++[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple.qmd index 3eb9929..b725a46 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple.qmd @@ -1 +1 @@ -[!!Unclosed editorial highlight +[!! \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-1.qmd index 9595ef2..857f13a 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-1.qmd @@ -1 +1 @@ -[$Unclosed inline math +$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-10.qmd index 587e5a2..10f3293 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-10.qmd @@ -1 +1 @@ -~$Unclosed inline math +^$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-11.qmd index a7a4628..2e58f07 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-11.qmd @@ -1 +1 @@ -~~$Unclosed inline math +~$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-12.qmd index b0d13bd..33aa623 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-12.qmd @@ -1 +1 @@ -'$Unclosed inline math +~~$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-13.qmd index 8b7f171..4761ab0 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-13.qmd @@ -1 +1 @@ -"$Unclosed inline math +'$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-14.qmd index 74f467f..f79fa20 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-14.qmd @@ -1 +1 @@ -*$Unclosed inline math +"$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-15.qmd index 073aa48..f17e6e1 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-15.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-15.qmd @@ -1 +1 @@ -**$Unclosed inline math +*$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-16.qmd index 55b375e..6129ea4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-16.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-16.qmd @@ -1 +1 @@ -^[$Unclosed inline math +**$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-17.qmd new file mode 100644 index 0000000..a99f28b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-17.qmd @@ -0,0 +1 @@ +^[$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-18.qmd new file mode 100644 index 0000000..7f79126 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-18.qmd @@ -0,0 +1 @@ +##$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-19.qmd new file mode 100644 index 0000000..0040efd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-19.qmd @@ -0,0 +1,2 @@ +$ +a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-2.qmd index 0f6dce9..5f96238 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-2.qmd @@ -1 +1 @@ -_$Unclosed inline math +[$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-3.qmd index ea02a4e..730dacd 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-3.qmd @@ -1 +1 @@ -__$Unclosed inline math +_$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-4.qmd index 64485ce..6e047c4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-4.qmd @@ -1 +1 @@ -![$Unclosed inline math +__$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-5.qmd index 15aed87..2a2c76c 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-5.qmd @@ -1 +1 @@ -[++$Unclosed inline math +![$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-6.qmd index c914ec4..714d7c4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-6.qmd @@ -1 +1 @@ -[--$Unclosed inline math +[>>$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-7.qmd index 64c898e..a3e1545 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-7.qmd @@ -1 +1 @@ -[!!$Unclosed inline math +[!!$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-8.qmd index 985cb51..db7620f 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-8.qmd @@ -1 +1 @@ -[>>$Unclosed inline math +[--$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-9.qmd index 3b82c74..0a80170 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-9.qmd @@ -1 +1 @@ -^$Unclosed inline math +[++$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple.qmd index 32520dc..857f13a 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple.qmd @@ -1 +1 @@ -$Unclosed inline math +$ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-24-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-24-simple.qmd index 34973ac..64845fb 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-24-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-24-simple.qmd @@ -1 +1 @@ -`Unclosed code span +` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-1.qmd index 6dda060..b81fef8 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-1.qmd @@ -1 +1 @@ -[![Unclosed image +![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-10.qmd index aa92020..662351a 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-10.qmd @@ -1 +1 @@ -~~![Unclosed image +^![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-11.qmd index decf045..d5d41b2 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-11.qmd @@ -1 +1 @@ -'![Unclosed image +~![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-12.qmd index 0757116..b190393 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-12.qmd @@ -1 +1 @@ -"![Unclosed image +~~![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-13.qmd index 819a521..5116f3a 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-13.qmd @@ -1 +1 @@ -*![Unclosed image +'![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-14.qmd index 81acbff..3c1869d 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-14.qmd @@ -1 +1 @@ -**![Unclosed image +"![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-15.qmd index 1efacb6..c95ab7d 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-15.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-15.qmd @@ -1 +1 @@ -^[![Unclosed image +*![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-16.qmd new file mode 100644 index 0000000..c17e435 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-16.qmd @@ -0,0 +1 @@ +**![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-17.qmd new file mode 100644 index 0000000..a9808b7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-17.qmd @@ -0,0 +1 @@ +^[![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-18.qmd new file mode 100644 index 0000000..c8b6f7e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-18.qmd @@ -0,0 +1 @@ +##![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-19.qmd new file mode 100644 index 0000000..60d0fed --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-19.qmd @@ -0,0 +1 @@ +![_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-2.qmd index fa113e5..3066f15 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-2.qmd @@ -1 +1 @@ -_![Unclosed image +[![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-20.qmd new file mode 100644 index 0000000..5e6864b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-20.qmd @@ -0,0 +1 @@ +![__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-21.qmd new file mode 100644 index 0000000..d83b448 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-21.qmd @@ -0,0 +1 @@ +![*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-22.qmd new file mode 100644 index 0000000..c4470e9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-22.qmd @@ -0,0 +1 @@ +![**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-23.qmd new file mode 100644 index 0000000..7aff4cb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-23.qmd @@ -0,0 +1 @@ +![$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-24.qmd new file mode 100644 index 0000000..d2365e0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-24.qmd @@ -0,0 +1 @@ +![$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-25.qmd new file mode 100644 index 0000000..398ad12 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-25.qmd @@ -0,0 +1 @@ +![~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-26.qmd new file mode 100644 index 0000000..99a78cb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-26.qmd @@ -0,0 +1 @@ +![~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-27.qmd new file mode 100644 index 0000000..d5576f7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-27.qmd @@ -0,0 +1 @@ +![`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-28.qmd new file mode 100644 index 0000000..088f344 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-28.qmd @@ -0,0 +1 @@ +!['a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-29.qmd new file mode 100644 index 0000000..4e208ad --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-29.qmd @@ -0,0 +1 @@ +!["a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-3.qmd index cb557b4..085f355 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-3.qmd @@ -1 +1 @@ -__![Unclosed image +_![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-30.qmd new file mode 100644 index 0000000..f0f30eb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-30.qmd @@ -0,0 +1 @@ +![^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-31.qmd new file mode 100644 index 0000000..0b89944 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-31.qmd @@ -0,0 +1 @@ +![[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-32.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-32.qmd new file mode 100644 index 0000000..d41fb73 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-32.qmd @@ -0,0 +1 @@ +![![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-33.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-33.qmd new file mode 100644 index 0000000..0755a4a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-33.qmd @@ -0,0 +1 @@ +![^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-34.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-34.qmd new file mode 100644 index 0000000..1c36b33 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-34.qmd @@ -0,0 +1 @@ +![[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-35.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-35.qmd new file mode 100644 index 0000000..1df8431 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-35.qmd @@ -0,0 +1 @@ +![[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-36.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-36.qmd new file mode 100644 index 0000000..d24a76f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-36.qmd @@ -0,0 +1 @@ +![[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-37.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-37.qmd new file mode 100644 index 0000000..363b0e6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-37.qmd @@ -0,0 +1 @@ +![[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-38.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-38.qmd new file mode 100644 index 0000000..dc7e9cf --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-38.qmd @@ -0,0 +1 @@ +![a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-4.qmd index 2716c08..622b377 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-4.qmd @@ -1 +1 @@ -[++![Unclosed image +__![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-5.qmd index 1ca3f0c..4c2c333 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-5.qmd @@ -1 +1 @@ -[--![Unclosed image +![![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-6.qmd index 234aac8..4b30a68 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-6.qmd @@ -1 +1 @@ -[!!![Unclosed image +[>>![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-7.qmd index ac0a73d..174d24d 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-7.qmd @@ -1 +1 @@ -[>>![Unclosed image +[!!![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-8.qmd index aca7ec3..594eb01 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-8.qmd @@ -1 +1 @@ -^![Unclosed image +[--![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-9.qmd index 9b80506..6e11115 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-9.qmd @@ -1 +1 @@ -~![Unclosed image +[++![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple.qmd index 3fbdacd..b81fef8 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple.qmd @@ -1 +1 @@ -![Unclosed image +![ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-1.qmd index 082a056..0fd13cf 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-1.qmd @@ -1 +1 @@ -[^[Unclosed inline footnote +^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-10.qmd index dffebf6..8bd3295 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-10.qmd @@ -1 +1 @@ -~^[Unclosed inline footnote +~^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-11.qmd index 2ff6097..d9833b5 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-11.qmd @@ -1 +1 @@ -~~^[Unclosed inline footnote +~~^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-12.qmd index c4d99c2..26fddaa 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-12.qmd @@ -1 +1 @@ -'^[Unclosed inline footnote +'^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-13.qmd index d43bcdc..8dea04b 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-13.qmd @@ -1 +1 @@ -"^[Unclosed inline footnote +"^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-14.qmd index d8ec965..6c8f5aa 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-14.qmd @@ -1 +1 @@ -*^[Unclosed inline footnote +*^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-15.qmd index 7899363..e2a5fdd 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-15.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-15.qmd @@ -1 +1 @@ -**^[Unclosed inline footnote +**^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-16.qmd new file mode 100644 index 0000000..61d7787 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-16.qmd @@ -0,0 +1 @@ +^[^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-17.qmd new file mode 100644 index 0000000..a91b315 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-17.qmd @@ -0,0 +1 @@ +##^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-18.qmd new file mode 100644 index 0000000..397b080 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-18.qmd @@ -0,0 +1 @@ +^[_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-19.qmd new file mode 100644 index 0000000..668b7e4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-19.qmd @@ -0,0 +1 @@ +^[__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-2.qmd index 1996f81..bb9e808 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-2.qmd @@ -1 +1 @@ -_^[Unclosed inline footnote +[^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-20.qmd new file mode 100644 index 0000000..66d8746 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-20.qmd @@ -0,0 +1 @@ +^[*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-21.qmd new file mode 100644 index 0000000..5e327ad --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-21.qmd @@ -0,0 +1 @@ +^[**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-22.qmd new file mode 100644 index 0000000..68db051 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-22.qmd @@ -0,0 +1 @@ +^[$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-23.qmd new file mode 100644 index 0000000..d851b3f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-23.qmd @@ -0,0 +1 @@ +^[$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-24.qmd new file mode 100644 index 0000000..226e1fe --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-24.qmd @@ -0,0 +1 @@ +^[~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-25.qmd new file mode 100644 index 0000000..ba89288 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-25.qmd @@ -0,0 +1 @@ +^[~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-26.qmd new file mode 100644 index 0000000..09192b2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-26.qmd @@ -0,0 +1 @@ +^[`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-27.qmd new file mode 100644 index 0000000..ee64c0e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-27.qmd @@ -0,0 +1 @@ +^['a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-28.qmd new file mode 100644 index 0000000..da47cb8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-28.qmd @@ -0,0 +1 @@ +^["a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-29.qmd new file mode 100644 index 0000000..ab17cae --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-29.qmd @@ -0,0 +1 @@ +^[^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-3.qmd index 81c0c33..4331331 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-3.qmd @@ -1 +1 @@ -__^[Unclosed inline footnote +_^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-30.qmd new file mode 100644 index 0000000..5b20576 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-30.qmd @@ -0,0 +1 @@ +^[[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-31.qmd new file mode 100644 index 0000000..eee83f9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-31.qmd @@ -0,0 +1 @@ +^[![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-32.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-32.qmd new file mode 100644 index 0000000..087a57b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-32.qmd @@ -0,0 +1 @@ +^[^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-33.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-33.qmd new file mode 100644 index 0000000..fb4ee46 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-33.qmd @@ -0,0 +1 @@ +^[[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-34.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-34.qmd new file mode 100644 index 0000000..c5f8b99 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-34.qmd @@ -0,0 +1 @@ +^[[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-35.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-35.qmd new file mode 100644 index 0000000..6a2b2b9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-35.qmd @@ -0,0 +1 @@ +^[[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-36.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-36.qmd new file mode 100644 index 0000000..8fd095a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-36.qmd @@ -0,0 +1 @@ +^[[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-37.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-37.qmd new file mode 100644 index 0000000..038e8e8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-37.qmd @@ -0,0 +1 @@ +^[a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-4.qmd index 90f10cb..eeba0c7 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-4.qmd @@ -1 +1 @@ -![^[Unclosed inline footnote +__^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-5.qmd index 7dd3c33..32ee5b4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-5.qmd @@ -1 +1 @@ -[++^[Unclosed inline footnote +![^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-6.qmd index 6797f4e..f652974 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-6.qmd @@ -1 +1 @@ -[--^[Unclosed inline footnote +[>>^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-7.qmd index b71f502..6e329a6 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-7.qmd @@ -1 +1 @@ -[!!^[Unclosed inline footnote +[!!^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-8.qmd index d660d17..bb2e1b4 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-8.qmd @@ -1 +1 @@ -[>>^[Unclosed inline footnote +[--^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-9.qmd index c4f55de..15ab0f2 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-9.qmd @@ -1 +1 @@ -^^[Unclosed inline footnote +[++^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple.qmd index 024fd3d..0fd13cf 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple.qmd @@ -1 +1 @@ -^[Unclosed inline footnote +^[ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-1.qmd new file mode 100644 index 0000000..aa21172 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-1.qmd @@ -0,0 +1,2 @@ +[{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-10.qmd new file mode 100644 index 0000000..16a8784 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-10.qmd @@ -0,0 +1,2 @@ +~{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-11.qmd new file mode 100644 index 0000000..1d427bc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-11.qmd @@ -0,0 +1,2 @@ +~~{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-12.qmd new file mode 100644 index 0000000..31b375c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-12.qmd @@ -0,0 +1,2 @@ +'{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-13.qmd new file mode 100644 index 0000000..39a0b94 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-13.qmd @@ -0,0 +1,2 @@ +*{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-14.qmd new file mode 100644 index 0000000..1daf6b4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-14.qmd @@ -0,0 +1,2 @@ +**{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-15.qmd new file mode 100644 index 0000000..169ee30 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-15.qmd @@ -0,0 +1,2 @@ +^[{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-16.qmd new file mode 100644 index 0000000..5465415 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-16.qmd @@ -0,0 +1,2 @@ +{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-17.qmd new file mode 100644 index 0000000..4729bfc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-17.qmd @@ -0,0 +1,2 @@ +{{< hello key +>}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-18.qmd new file mode 100644 index 0000000..4def2f6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-18.qmd @@ -0,0 +1,2 @@ +{{< hello 'value' +>}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-19.qmd new file mode 100644 index 0000000..a69b775 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-19.qmd @@ -0,0 +1,2 @@ +{{< hello "value" +>}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-2.qmd new file mode 100644 index 0000000..faa0d43 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-2.qmd @@ -0,0 +1,2 @@ +_{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-20.qmd new file mode 100644 index 0000000..d942449 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-20.qmd @@ -0,0 +1,2 @@ +{{< hello 42 +>}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-21.qmd new file mode 100644 index 0000000..32693d8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-21.qmd @@ -0,0 +1,2 @@ +{{< hello param1 param2 param3 +>}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-22.qmd new file mode 100644 index 0000000..1e848da --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-22.qmd @@ -0,0 +1,2 @@ +{{< hello key=value +>}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-23.qmd new file mode 100644 index 0000000..a36a968 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-23.qmd @@ -0,0 +1,2 @@ +{{< hello key='value' +>}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-24.qmd new file mode 100644 index 0000000..c847442 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-24.qmd @@ -0,0 +1,2 @@ +{{< hello key="value" +>}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-25.qmd new file mode 100644 index 0000000..65c25dc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-25.qmd @@ -0,0 +1,2 @@ +{{< hello key=42 +>}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-26.qmd new file mode 100644 index 0000000..a1256dc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-26.qmd @@ -0,0 +1,2 @@ +{{< hello key1=val1 key2=val2 +>}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-27.qmd new file mode 100644 index 0000000..d2a575b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-27.qmd @@ -0,0 +1,2 @@ +{{< hello param1 key=value +>}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-28.qmd new file mode 100644 index 0000000..08cacae --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-28.qmd @@ -0,0 +1,2 @@ +{{< hello "title" 123 key1=value key2='quoted' enabled=true +>}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-29.qmd new file mode 100644 index 0000000..2bece06 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-29.qmd @@ -0,0 +1,2 @@ +{{< hello key=value +>}}] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-3.qmd new file mode 100644 index 0000000..80b583f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-3.qmd @@ -0,0 +1,2 @@ +__{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-4.qmd new file mode 100644 index 0000000..e6a2c03 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-4.qmd @@ -0,0 +1,2 @@ +![{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-5.qmd new file mode 100644 index 0000000..8ef9e9e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-5.qmd @@ -0,0 +1,2 @@ +[++{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-6.qmd new file mode 100644 index 0000000..2335a4b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-6.qmd @@ -0,0 +1,2 @@ +[--{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-7.qmd new file mode 100644 index 0000000..af894bb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-7.qmd @@ -0,0 +1,2 @@ +[!!{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-8.qmd new file mode 100644 index 0000000..938bf2b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-8.qmd @@ -0,0 +1,2 @@ +[>>{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-9.qmd new file mode 100644 index 0000000..feabf8f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple-9.qmd @@ -0,0 +1,2 @@ +^{{< hello + >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple.qmd new file mode 100644 index 0000000..1eec1d8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-27-simple.qmd @@ -0,0 +1 @@ +{{< hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-1.qmd new file mode 100644 index 0000000..ec808f7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-1.qmd @@ -0,0 +1,2 @@ +[{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-10.qmd new file mode 100644 index 0000000..9b0b36c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-10.qmd @@ -0,0 +1,2 @@ +~{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-11.qmd new file mode 100644 index 0000000..a7f5559 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-11.qmd @@ -0,0 +1,2 @@ +~~{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-12.qmd new file mode 100644 index 0000000..81f6836 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-12.qmd @@ -0,0 +1,2 @@ +'{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-13.qmd new file mode 100644 index 0000000..64e50e0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-13.qmd @@ -0,0 +1,2 @@ +*{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-14.qmd new file mode 100644 index 0000000..71dc7d6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-14.qmd @@ -0,0 +1,2 @@ +**{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-15.qmd new file mode 100644 index 0000000..802b43f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-15.qmd @@ -0,0 +1,2 @@ +^[{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-16.qmd new file mode 100644 index 0000000..d334661 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-16.qmd @@ -0,0 +1,2 @@ +{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-17.qmd new file mode 100644 index 0000000..26448c7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-17.qmd @@ -0,0 +1,2 @@ +{{{< hello key +>}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-18.qmd new file mode 100644 index 0000000..eaf4ce5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-18.qmd @@ -0,0 +1,2 @@ +{{{< hello 'value' +>}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-19.qmd new file mode 100644 index 0000000..1f8ecdd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-19.qmd @@ -0,0 +1,2 @@ +{{{< hello "value" +>}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-2.qmd new file mode 100644 index 0000000..358e2fb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-2.qmd @@ -0,0 +1,2 @@ +_{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-20.qmd new file mode 100644 index 0000000..f91f3b3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-20.qmd @@ -0,0 +1,2 @@ +{{{< hello 42 +>}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-21.qmd new file mode 100644 index 0000000..8a693e0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-21.qmd @@ -0,0 +1,2 @@ +{{{< hello param1 param2 param3 +>}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-22.qmd new file mode 100644 index 0000000..0650b4b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-22.qmd @@ -0,0 +1,2 @@ +{{{< hello key=value +>}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-23.qmd new file mode 100644 index 0000000..ee83cbe --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-23.qmd @@ -0,0 +1,2 @@ +{{{< hello key='value' +>}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-24.qmd new file mode 100644 index 0000000..78639ea --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-24.qmd @@ -0,0 +1,2 @@ +{{{< hello key="value" +>}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-25.qmd new file mode 100644 index 0000000..7fcaebb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-25.qmd @@ -0,0 +1,2 @@ +{{{< hello key=42 +>}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-26.qmd new file mode 100644 index 0000000..72f69c2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-26.qmd @@ -0,0 +1,2 @@ +{{{< hello key1=val1 key2=val2 +>}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-27.qmd new file mode 100644 index 0000000..fef17c2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-27.qmd @@ -0,0 +1,2 @@ +{{{< hello param1 key=value +>}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-28.qmd new file mode 100644 index 0000000..8aa4bb4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-28.qmd @@ -0,0 +1,2 @@ +{{{< hello "title" 123 key1=value key2='quoted' enabled=true +>}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-29.qmd new file mode 100644 index 0000000..0aea461 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-29.qmd @@ -0,0 +1,2 @@ +{{{< hello key=value +>}}}] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-3.qmd new file mode 100644 index 0000000..87f7156 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-3.qmd @@ -0,0 +1,2 @@ +__{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-4.qmd new file mode 100644 index 0000000..c61bee4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-4.qmd @@ -0,0 +1,2 @@ +![{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-5.qmd new file mode 100644 index 0000000..96df549 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-5.qmd @@ -0,0 +1,2 @@ +[++{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-6.qmd new file mode 100644 index 0000000..0abab0f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-6.qmd @@ -0,0 +1,2 @@ +[--{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-7.qmd new file mode 100644 index 0000000..e681a62 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-7.qmd @@ -0,0 +1,2 @@ +[!!{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-8.qmd new file mode 100644 index 0000000..5a99cd3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-8.qmd @@ -0,0 +1,2 @@ +[>>{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-9.qmd new file mode 100644 index 0000000..90a74cc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple-9.qmd @@ -0,0 +1,2 @@ +^{{{< hello + >}}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple.qmd new file mode 100644 index 0000000..400fe2d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-28-simple.qmd @@ -0,0 +1 @@ +{{{< hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-29-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-29-simple.qmd new file mode 100644 index 0000000..86fea2d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-29-simple.qmd @@ -0,0 +1,4 @@ +Some text[^1]. + +[^1]: + Indented content \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-3-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-3-simple-2.qmd new file mode 100644 index 0000000..12e2c3e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-3-simple-2.qmd @@ -0,0 +1 @@ +![Test image](test.png){fig-alt="Description" .lightbox} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-31-image-mixed.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-31-image-mixed.qmd new file mode 100644 index 0000000..14aefbc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-31-image-mixed.qmd @@ -0,0 +1 @@ +![](prefix`{python} url_variable`) diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-31-image-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-31-image-simple.qmd new file mode 100644 index 0000000..db02279 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-31-image-simple.qmd @@ -0,0 +1 @@ +![](`{python} url_variable`) diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-31-link-mixed.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-31-link-mixed.qmd new file mode 100644 index 0000000..de72c55 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-31-link-mixed.qmd @@ -0,0 +1 @@ +[text](prefix`{python} url_variable`) diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-31-link-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-31-link-simple.qmd new file mode 100644 index 0000000..bbfa00f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-31-link-simple.qmd @@ -0,0 +1 @@ +[text](`{python} url_variable`) diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-1.qmd new file mode 100644 index 0000000..8f3ed1b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-1.qmd @@ -0,0 +1 @@ +***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-10.qmd new file mode 100644 index 0000000..d46d07f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-10.qmd @@ -0,0 +1 @@ +"a"***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-11.qmd new file mode 100644 index 0000000..8729f38 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-11.qmd @@ -0,0 +1 @@ +^a^***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-12.qmd new file mode 100644 index 0000000..1765a61 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-12.qmd @@ -0,0 +1 @@ +[a]{}***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-13.qmd new file mode 100644 index 0000000..e35c49b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-13.qmd @@ -0,0 +1 @@ +![a]{}***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-14.qmd new file mode 100644 index 0000000..645564d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-14.qmd @@ -0,0 +1 @@ +^[a]***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-15.qmd new file mode 100644 index 0000000..c2b52c6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-15.qmd @@ -0,0 +1 @@ +[++ a]***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-16.qmd new file mode 100644 index 0000000..4cb136b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-16.qmd @@ -0,0 +1 @@ +[-- a]***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-17.qmd new file mode 100644 index 0000000..28449bd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-17.qmd @@ -0,0 +1 @@ +[>> a]***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-18.qmd new file mode 100644 index 0000000..07d656f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-18.qmd @@ -0,0 +1 @@ +[!! a]***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-2.qmd new file mode 100644 index 0000000..c26e949 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-2.qmd @@ -0,0 +1 @@ +hello***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-3.qmd new file mode 100644 index 0000000..ad62d2c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-3.qmd @@ -0,0 +1 @@ +_a_***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-4.qmd new file mode 100644 index 0000000..d4433a5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-4.qmd @@ -0,0 +1 @@ +$a$***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-5.qmd new file mode 100644 index 0000000..332d92a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-5.qmd @@ -0,0 +1 @@ +$$a$$***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-6.qmd new file mode 100644 index 0000000..9129663 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-6.qmd @@ -0,0 +1 @@ +~a~***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-7.qmd new file mode 100644 index 0000000..926e522 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-7.qmd @@ -0,0 +1 @@ +~~a~~***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-8.qmd new file mode 100644 index 0000000..8aea296 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-8.qmd @@ -0,0 +1 @@ +`a`***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-9.qmd new file mode 100644 index 0000000..0e30e92 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic-9.qmd @@ -0,0 +1 @@ +'a'***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic.qmd new file mode 100644 index 0000000..8f3ed1b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-32-basic.qmd @@ -0,0 +1 @@ +***hello \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-33-image-with-multiple-spaces.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-33-image-with-multiple-spaces.qmd new file mode 100644 index 0000000..7121f80 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-33-image-with-multiple-spaces.qmd @@ -0,0 +1 @@ +![](path/to/my image file.png) \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-33-image-with-space.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-33-image-with-space.qmd new file mode 100644 index 0000000..0f2c428 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-33-image-with-space.qmd @@ -0,0 +1 @@ +![](image file.png) \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-33-link-with-space.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-33-link-with-space.qmd new file mode 100644 index 0000000..afd901a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-33-link-with-space.qmd @@ -0,0 +1 @@ +[link](target file.html) \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-34-basic.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-34-basic.qmd new file mode 100644 index 0000000..7cf09e0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-34-basic.qmd @@ -0,0 +1 @@ +{{< a k=1b >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-34-multiple-params.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-34-multiple-params.qmd new file mode 100644 index 0000000..fd24ca7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-34-multiple-params.qmd @@ -0,0 +1 @@ +{{< icon name="star" size=2x >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-34-real-world-example.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-34-real-world-example.qmd new file mode 100644 index 0000000..e56aa79 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-34-real-world-example.qmd @@ -0,0 +1 @@ +{{< fa envelope size=1x >}} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-1.qmd index b6cd1c2..c9cdc63 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-1.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-1.qmd @@ -1 +1 @@ -[_Unclosed emphasis +_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-10.qmd index 68de05b..bd7c88d 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-10.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-10.qmd @@ -1 +1 @@ -'_Unclosed emphasis +*_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-11.qmd index 55bfafe..f479554 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-11.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-11.qmd @@ -1 +1 @@ -"_Unclosed emphasis +**_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-12.qmd index 109dcc8..6873a20 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-12.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-12.qmd @@ -1 +1 @@ -*_Unclosed emphasis +^[_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-13.qmd index 4f568c0..89055ac 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-13.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-13.qmd @@ -1 +1 @@ -**_Unclosed emphasis +##_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-14.qmd index e48a49c..3a0d592 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-14.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-14.qmd @@ -1 +1 @@ -^[_Unclosed emphasis +_*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-15.qmd new file mode 100644 index 0000000..2dab748 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-15.qmd @@ -0,0 +1 @@ +_**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-16.qmd new file mode 100644 index 0000000..fba3936 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-16.qmd @@ -0,0 +1 @@ +_$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-17.qmd new file mode 100644 index 0000000..5a17a65 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-17.qmd @@ -0,0 +1 @@ +_$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-18.qmd new file mode 100644 index 0000000..c28d551 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-18.qmd @@ -0,0 +1 @@ +_~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-19.qmd new file mode 100644 index 0000000..678e8a1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-19.qmd @@ -0,0 +1 @@ +_~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-2.qmd index 8605fb4..8397722 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-2.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-2.qmd @@ -1 +1 @@ -![_Unclosed emphasis +[_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-20.qmd new file mode 100644 index 0000000..d9c0a75 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-20.qmd @@ -0,0 +1 @@ +_`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-21.qmd new file mode 100644 index 0000000..5a71b52 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-21.qmd @@ -0,0 +1 @@ +_'a' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-22.qmd new file mode 100644 index 0000000..34964f2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-22.qmd @@ -0,0 +1 @@ +_"a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-23.qmd new file mode 100644 index 0000000..7bffe6a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-23.qmd @@ -0,0 +1 @@ +_^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-24.qmd new file mode 100644 index 0000000..9ee1170 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-24.qmd @@ -0,0 +1 @@ +_[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-25.qmd new file mode 100644 index 0000000..5b8cdc0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-25.qmd @@ -0,0 +1 @@ +_![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-26.qmd new file mode 100644 index 0000000..9001ba2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-26.qmd @@ -0,0 +1 @@ +_^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-27.qmd new file mode 100644 index 0000000..c4f2c1c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-27.qmd @@ -0,0 +1 @@ +_[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-28.qmd new file mode 100644 index 0000000..83ed86b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-28.qmd @@ -0,0 +1 @@ +_[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-29.qmd new file mode 100644 index 0000000..5c96a25 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-29.qmd @@ -0,0 +1 @@ +_[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-3.qmd index 4480ff2..d759c9b 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-3.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-3.qmd @@ -1 +1 @@ -[++_Unclosed emphasis +![_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-30.qmd new file mode 100644 index 0000000..6dfb55c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-30.qmd @@ -0,0 +1 @@ +_[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-31.qmd new file mode 100644 index 0000000..e063287 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-31.qmd @@ -0,0 +1 @@ +_a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-4.qmd index 360ef63..abe9687 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-4.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-4.qmd @@ -1 +1 @@ -[--_Unclosed emphasis +[>>_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-5.qmd index 2e4b319..a4192a9 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-5.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-5.qmd @@ -1 +1 @@ -[!!_Unclosed emphasis +^_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-6.qmd index 6897e9d..a3fbd2c 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-6.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-6.qmd @@ -1 +1 @@ -[>>_Unclosed emphasis +~_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-7.qmd index 8846d12..6ce2ee2 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-7.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-7.qmd @@ -1 +1 @@ -^_Unclosed emphasis +~~_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-8.qmd index 2c55315..a68aa4a 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-8.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-8.qmd @@ -1 +1 @@ -~_Unclosed emphasis +'_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-9.qmd index ef28353..a24f1e0 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-9.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-9.qmd @@ -1 +1 @@ -~~_Unclosed emphasis +"_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start.qmd index b141dea..c9cdc63 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start.qmd @@ -1 +1 @@ -_Unclosed emphasis +_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-in-link.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-in-link.qmd deleted file mode 100644 index a1f4f9a..0000000 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-in-link.qmd +++ /dev/null @@ -1 +0,0 @@ -[`a`'s](b) \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-1.qmd new file mode 100644 index 0000000..ad2823b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-1.qmd @@ -0,0 +1 @@ +' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-10.qmd new file mode 100644 index 0000000..b1b61a3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-10.qmd @@ -0,0 +1 @@ +"' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-11.qmd new file mode 100644 index 0000000..6621911 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-11.qmd @@ -0,0 +1 @@ +*' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-12.qmd new file mode 100644 index 0000000..9dacdca --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-12.qmd @@ -0,0 +1 @@ +**' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-13.qmd new file mode 100644 index 0000000..32d4860 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-13.qmd @@ -0,0 +1 @@ +^[' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-14.qmd new file mode 100644 index 0000000..6b9bf2c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-14.qmd @@ -0,0 +1 @@ +##' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-15.qmd new file mode 100644 index 0000000..20fa4f7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-15.qmd @@ -0,0 +1 @@ +'_a_ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-16.qmd new file mode 100644 index 0000000..2f9f204 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-16.qmd @@ -0,0 +1 @@ +'__a__ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-17.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-17.qmd new file mode 100644 index 0000000..b5e12b9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-17.qmd @@ -0,0 +1 @@ +'*a* \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-18.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-18.qmd new file mode 100644 index 0000000..db6140b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-18.qmd @@ -0,0 +1 @@ +'**a** \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-19.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-19.qmd new file mode 100644 index 0000000..d588a6b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-19.qmd @@ -0,0 +1 @@ +'$a$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-2.qmd new file mode 100644 index 0000000..8bebe3a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-2.qmd @@ -0,0 +1 @@ +[' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-20.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-20.qmd new file mode 100644 index 0000000..307e559 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-20.qmd @@ -0,0 +1 @@ +'$$a$$ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-21.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-21.qmd new file mode 100644 index 0000000..347a5ca --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-21.qmd @@ -0,0 +1 @@ +'~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-22.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-22.qmd new file mode 100644 index 0000000..47a8fb8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-22.qmd @@ -0,0 +1 @@ +'~~a~~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-23.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-23.qmd new file mode 100644 index 0000000..80ce3a8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-23.qmd @@ -0,0 +1 @@ +'`a` \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-24.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-24.qmd new file mode 100644 index 0000000..fb5c363 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-24.qmd @@ -0,0 +1 @@ +'"a" \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-25.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-25.qmd new file mode 100644 index 0000000..7692e4b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-25.qmd @@ -0,0 +1 @@ +'^a^ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-26.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-26.qmd new file mode 100644 index 0000000..2398dfe --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-26.qmd @@ -0,0 +1 @@ +'[a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-27.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-27.qmd new file mode 100644 index 0000000..7ab92c8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-27.qmd @@ -0,0 +1 @@ +'![a]{} \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-28.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-28.qmd new file mode 100644 index 0000000..a045962 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-28.qmd @@ -0,0 +1 @@ +'^[a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-29.qmd new file mode 100644 index 0000000..01985d6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-29.qmd @@ -0,0 +1 @@ +'[++ a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-3.qmd new file mode 100644 index 0000000..e4bba15 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-3.qmd @@ -0,0 +1 @@ +_' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-30.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-30.qmd new file mode 100644 index 0000000..1b234b3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-30.qmd @@ -0,0 +1 @@ +'[-- a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-31.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-31.qmd new file mode 100644 index 0000000..d2d75de --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-31.qmd @@ -0,0 +1 @@ +'[>> a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-32.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-32.qmd new file mode 100644 index 0000000..1568a0a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-32.qmd @@ -0,0 +1 @@ +'[!! a] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-33.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-33.qmd new file mode 100644 index 0000000..94c89f4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-33.qmd @@ -0,0 +1 @@ +'a \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-4.qmd new file mode 100644 index 0000000..1ccc58b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-4.qmd @@ -0,0 +1 @@ +__' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-5.qmd new file mode 100644 index 0000000..717978d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-5.qmd @@ -0,0 +1 @@ +![' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-6.qmd new file mode 100644 index 0000000..134493a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-6.qmd @@ -0,0 +1 @@ +[>>' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-7.qmd new file mode 100644 index 0000000..fda33b8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-7.qmd @@ -0,0 +1 @@ +^' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-8.qmd new file mode 100644 index 0000000..e408e91 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-8.qmd @@ -0,0 +1 @@ +~' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-9.qmd new file mode 100644 index 0000000..5e4fc46 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple-9.qmd @@ -0,0 +1 @@ +~~' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple.qmd index 011fc9f..ad2823b 100644 --- a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple.qmd +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple.qmd @@ -1 +1 @@ -'Tis the season to make apostrophe mistakes. \ No newline at end of file +' \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/scripts/analyze_error_coverage.ts b/crates/quarto-markdown-pandoc/scripts/analyze_error_coverage.ts new file mode 100755 index 0000000..8a547c4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/scripts/analyze_error_coverage.ts @@ -0,0 +1,129 @@ +#!/usr/bin/env -S deno run --allow-read + +/** + * Analyzes the error corpus table to report coverage statistics per error code. + * Shows how many distinct parser states are covered by each error code. + */ + +interface ErrorTableEntry { + state: number; + sym: string; + errorInfo: { + code?: string; + title: string; + message: string; + }; +} + +async function analyzeErrorCoverage(detailCode?: string) { + const tablePath = "resources/error-corpus/_autogen-table.json"; + + try { + const tableContent = await Deno.readTextFile(tablePath); + const entries: ErrorTableEntry[] = JSON.parse(tableContent); + + // Group by error code + const codeStats = new Map>(); + const codeSyms = new Map>(); + const codeTitles = new Map(); + + for (const entry of entries) { + const code = entry.errorInfo.code || "NO_CODE"; + + if (!codeStats.has(code)) { + codeStats.set(code, new Set()); + codeSyms.set(code, new Set()); + codeTitles.set(code, entry.errorInfo.title); + } + + codeStats.get(code)!.add(entry.state); + codeSyms.get(code)!.add(entry.sym); + } + + // Sort codes and display + const codes = Array.from(codeStats.keys()).sort(); + + // If detail code requested, show only that + if (detailCode) { + if (!codeStats.has(detailCode)) { + console.error(`Error code ${detailCode} not found in table`); + Deno.exit(1); + } + + const states = codeStats.get(detailCode)!; + const syms = codeSyms.get(detailCode)!; + const title = codeTitles.get(detailCode)!; + const codeEntries = entries.filter(e => (e.errorInfo.code || "NO_CODE") === detailCode); + + console.log(`Error Code Details: ${detailCode}`); + console.log("=".repeat(80)); + console.log(`Title: ${title}`); + console.log(`States covered: ${states.size}`); + console.log(`Symbols used: ${Array.from(syms).join(", ")}`); + console.log(`Total state×symbol pairs: ${codeEntries.length}`); + console.log(); + console.log("Parser States:"); + const sortedStates = Array.from(states).sort((a, b) => a - b); + for (const state of sortedStates) { + const stateEntries = codeEntries.filter(e => e.state === state); + // Group by symbol and count + const symCounts = new Map(); + for (const entry of stateEntries) { + symCounts.set(entry.sym, (symCounts.get(entry.sym) || 0) + 1); + } + const symStr = Array.from(symCounts.entries()) + .map(([sym, count]) => count > 1 ? `${sym} (×${count})` : sym) + .join(", "); + console.log(` State ${state.toString().padStart(5)}: ${symStr}`); + } + return; + } + + console.log("Error Corpus Coverage Analysis"); + console.log("=".repeat(80)); + console.log(); + + let totalStates = 0; + let totalSymbols = 0; + + for (const code of codes) { + const states = codeStats.get(code)!; + const syms = codeSyms.get(code)!; + const title = codeTitles.get(code)!; + + totalStates += states.size; + totalSymbols += syms.size; + + console.log(`${code.padEnd(10)} ${title}`); + console.log(`${"".padEnd(10)} States: ${states.size.toString().padStart(4)} Symbols: ${syms.size.toString().padStart(3)} State×Symbol pairs: ${entries.filter(e => (e.errorInfo.code || "NO_CODE") === code).length.toString().padStart(4)}`); + console.log(); + } + + console.log("=".repeat(80)); + console.log(`Total: ${codes.length} error codes`); + console.log(`Total unique states covered: ${totalStates}`); + console.log(`Total unique symbols used: ${totalSymbols}`); + console.log(`Total state×symbol pairs: ${entries.length}`); + + // Find codes with most coverage + console.log(); + console.log("Top 5 codes by state coverage:"); + const sortedByStates = codes + .map(code => ({ code, states: codeStats.get(code)!.size, title: codeTitles.get(code)! })) + .sort((a, b) => b.states - a.states) + .slice(0, 5); + + for (const { code, states, title } of sortedByStates) { + console.log(` ${states.toString().padStart(4)} states ${code.padEnd(10)} ${title}`); + } + + } catch (error) { + console.error("Error reading or parsing table:", error.message); + Deno.exit(1); + } +} + +if (import.meta.main) { + const detailCode = Deno.args[0]; + analyzeErrorCoverage(detailCode); +} diff --git a/crates/quarto-markdown-pandoc/scripts/build_error_table.ts b/crates/quarto-markdown-pandoc/scripts/build_error_table.ts index cb55552..85178d4 100755 --- a/crates/quarto-markdown-pandoc/scripts/build_error_table.ts +++ b/crates/quarto-markdown-pandoc/scripts/build_error_table.ts @@ -127,7 +127,7 @@ try { continue; } - const { code, title, message, notes, cases } = errorSpec; + const { code, title, message, notes, hints, cases } = errorSpec; // Process each case for (const testCase of cases) { @@ -152,8 +152,15 @@ try { args: ["--_internal-report-error-state", "-i", caseFile], }); const output = await parseResult.output(); + const outputStdout = new TextDecoder().decode(output.stdout); - const parseResultJson = JSON.parse(outputStdout); + let parseResultJson; + try { + parseResultJson = JSON.parse(outputStdout); + } catch (e) { + console.log(`Case file: ${caseFile} didn't produce errors`); + throw e; + } const { errorStates, tokens } = parseResultJson; if (errorStates.length < 1) { @@ -207,6 +214,7 @@ try { message, captures: augmentedCaptures, notes, + hints: hints || [], }, name: `${code}/${variantName}`, }); diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/001.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/001.snap index 06c62be..12f1fc8 100644 --- a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/001.snap +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/001.snap @@ -8,7 +8,7 @@ expression: json_string "details": [ { "content": { - "content": "This is the opening bracket for the span", + "content": "This is the opening bracket for the span.", "type": "markdown" }, "kind": "info", diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/005.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/005.snap index 02e8faf..518a394 100644 --- a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/005.snap +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/005.snap @@ -8,7 +8,7 @@ expression: json_string "details": [ { "content": { - "content": "This is the opening '_' mark", + "content": "This is the opening '_' mark.", "type": "markdown" }, "kind": "info", diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/007.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/007.snap index eb7c8be..842562a 100644 --- a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/007.snap +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/007.snap @@ -8,7 +8,7 @@ expression: json_string "details": [ { "content": { - "content": "This is the opening '_' mark", + "content": "This is the opening '_' mark.", "type": "markdown" }, "kind": "info", diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/009.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/009.snap index dfb1d39..529ce32 100644 --- a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/009.snap +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/009.snap @@ -5,22 +5,6 @@ expression: json_string [ { "code": "Q-2-7", - "details": [ - { - "content": { - "content": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", - "type": "markdown" - }, - "kind": "info", - "location": { - "Original": { - "end_offset": 5, - "file_id": 0, - "start_offset": 4 - } - } - } - ], "kind": "error", "location": { "Original": { diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/001.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/001.snap index ec12755..b974a53 100644 --- a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/001.snap +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/001.snap @@ -7,7 +7,7 @@ expression: error_output │ 1 │ an [unclosed span  │ ┬ ┬ -  │ ╰──────────────── This is the opening bracket for the span +  │ ╰──────────────── This is the opening bracket for the span.  │ │  │ ╰── I reached the end of the block before finding a closing ']' for the span or link. ───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/005.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/005.snap index c71c9b1..e596644 100644 --- a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/005.snap +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/005.snap @@ -7,7 +7,7 @@ expression: error_output │ 1 │ Unfin[38;5;249mished _emph.  │ ─┬ ┬ -  │ ╰──────── This is the opening '_' mark +  │ ╰──────── This is the opening '_' mark.  │ │  │ ╰── I reached the end of the block before finding a closing '_' for the emphasis. ───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/007.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/007.snap index 8b9449a..1206ffd 100644 --- a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/007.snap +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/007.snap @@ -7,7 +7,7 @@ expression: error_output │ 1 │ [_document](a)  │ ┬ ┬ -  │ ╰─────────── This is the opening '_' mark +  │ ╰─────────── This is the opening '_' mark.  │ │  │ ╰── I reached the end of the block before finding a closing '_' for the emphasis. ───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/009.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/009.snap index ad02df1..ede5d0e 100644 --- a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/009.snap +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/009.snap @@ -5,9 +5,7 @@ expression: error_output Error: [Q-2-7] Unclosed Single Quote ╭─[resources/error-corpus/009.qmd:1:7] │ - 1 │ [`a`'s](b) -  │ ┬ ┬ -  │ ╰──── This is the opening quote. If you need an apostrophe, escape it with a backslash. -  │ │ + 1 │ [`a`'s](b) +  │ ┬  │ ╰── I reached the end of the block before finding a closing "'" for the quote. ───╯ diff --git a/crates/quarto-markdown-pandoc/src/pandoc/location.rs b/crates/quarto-markdown-pandoc/src/pandoc/location.rs index 5b080e8..68d7a0e 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/location.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/location.rs @@ -152,11 +152,7 @@ pub fn node_source_info_with_context( // If we're in a recursive parse (parent_source_info is set), wrap the SourceInfo // as a Substring of the parent. This chains the location back to the original file. if let Some(parent) = &context.parent_source_info { - quarto_source_map::SourceInfo::substring( - parent.clone(), - node.start_byte(), - node.end_byte(), - ) + quarto_source_map::SourceInfo::substring(parent.clone(), node.start_byte(), node.end_byte()) } else { quarto_source_map::SourceInfo::from_range(context.current_file_id(), node_location(node)) } @@ -174,7 +170,9 @@ pub fn range_to_source_info_with_context( range: &quarto_source_map::Range, ctx: &ASTContext, ) -> quarto_source_map::SourceInfo { - let file_id = ctx.primary_file_id().unwrap_or(quarto_source_map::FileId(0)); + let file_id = ctx + .primary_file_id() + .unwrap_or(quarto_source_map::FileId(0)); quarto_source_map::SourceInfo::from_range(file_id, range.clone()) } diff --git a/crates/quarto-markdown-pandoc/src/pandoc/meta.rs b/crates/quarto-markdown-pandoc/src/pandoc/meta.rs index a428079..5cd5cda 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/meta.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/meta.rs @@ -310,7 +310,7 @@ fn parse_yaml_string_as_markdown( } else { // Untagged: WARN on parse failure let diagnostic = DiagnosticMessageBuilder::warning("Failed to parse metadata value as markdown") - .with_code("Q-1-101") + .with_code("Q-1-20") .with_location(source_info.clone()) .problem(format!("Could not parse '{}' as markdown", value)) .add_hint("Add the `!str` tag to treat this as a plain string, or fix the markdown syntax") @@ -818,8 +818,14 @@ pub fn parse_metadata_strings(meta: MetaValue, outer_metadata: &mut Meta) -> Met match meta { MetaValue::MetaString(s) => { let mut output_stream = VerboseOutput::Sink(io::sink()); - let result = - readers::qmd::read(s.as_bytes(), false, "", &mut output_stream, true, None); + let result = readers::qmd::read( + s.as_bytes(), + false, + "", + &mut output_stream, + true, + None, + ); match result { Ok((mut pandoc, _context, _warnings)) => { // TODO: Handle warnings from recursive parse diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs index 2a102cd..0b640d2 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs @@ -710,18 +710,16 @@ fn native_visitor( let extract_quoted_text = || { if let Some(child) = node.child(0) { let text = child.utf8_text(input_bytes).unwrap().to_string(); - let range = - crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &node_source_info_with_context(&child, context), - context, - ); + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( + &node_source_info_with_context(&child, context), + context, + ); PandocNativeIntermediate::IntermediateBaseText(text, range) } else { - let range = - crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &node_source_info_with_context(node, context), - context, - ); + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( + &node_source_info_with_context(node, context), + context, + ); PandocNativeIntermediate::IntermediateBaseText(String::new(), range) } }; diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/backslash_escape.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/backslash_escape.rs index 5244be9..e3e7381 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/backslash_escape.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/backslash_escape.rs @@ -21,9 +21,7 @@ pub fn process_backslash_escape( } let content = &text[1..]; // remove the leading backslash let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &source_info, - context, - ); + let range = + crate::pandoc::location::source_info_to_qsm_range_or_fallback(&source_info, context); PandocNativeIntermediate::IntermediateBaseText(content.to_string(), range) } diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/citation.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/citation.rs index e90ed41..842e107 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/citation.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/citation.rs @@ -29,9 +29,9 @@ where citation_type = CitationMode::SuppressAuthor; if let PandocNativeIntermediate::IntermediateBaseText(id, range) = child { citation_id = id; - citation_id_source = Some(crate::pandoc::location::range_to_source_info_with_context( - &range, context, - )); + citation_id_source = Some( + crate::pandoc::location::range_to_source_info_with_context(&range, context), + ); } else { panic!( "Expected BaseText in citation_id_suppress_author, got {:?}", @@ -42,9 +42,9 @@ where citation_type = CitationMode::AuthorInText; if let PandocNativeIntermediate::IntermediateBaseText(id, range) = child { citation_id = id; - citation_id_source = Some(crate::pandoc::location::range_to_source_info_with_context( - &range, context, - )); + citation_id_source = Some( + crate::pandoc::location::range_to_source_info_with_context(&range, context), + ); } else { panic!( "Expected BaseText in citation_id_author_in_text, got {:?}", diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/code_fence_content.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/code_fence_content.rs index 2530651..3544dec 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/code_fence_content.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/code_fence_content.rs @@ -45,9 +45,7 @@ pub fn process_code_fence_content( content.push_str(std::str::from_utf8(slice_after_continuation).unwrap()); } let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &source_info, - context, - ); + let range = + crate::pandoc::location::source_info_to_qsm_range_or_fallback(&source_info, context); PandocNativeIntermediate::IntermediateBaseText(content, range) } diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/fenced_code_block.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/fenced_code_block.rs index e8574b7..de51ee4 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/fenced_code_block.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/fenced_code_block.rs @@ -48,9 +48,7 @@ pub fn process_fenced_code_block( // Track source location for the language specifier let lang_source = - crate::pandoc::location::range_to_source_info_with_context( - &range, context, - ); + crate::pandoc::location::range_to_source_info_with_context(&range, context); attr_source.classes.push(Some(lang_source)); } _ => { @@ -78,9 +76,8 @@ pub fn process_fenced_code_block( attr.1.push(lang); // set the language // Track source location for the language specifier - let lang_source = crate::pandoc::location::range_to_source_info_with_context( - &range, context, - ); + let lang_source = + crate::pandoc::location::range_to_source_info_with_context(&range, context); attr_source.classes.push(Some(lang_source)); } else if node == "info_string" { let PandocNativeIntermediate::IntermediateAttr(inner_attr, inner_as_) = child else { diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/image.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/image.rs index 1ce9b48..31de693 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/image.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/image.rs @@ -52,16 +52,12 @@ where if node == "link_destination" { target.0 = text; // URL target_source.url = Some( - crate::pandoc::location::range_to_source_info_with_context( - &range, context, - ), + crate::pandoc::location::range_to_source_info_with_context(&range, context), ); } else if node == "link_title" { target.1 = text; // Title target_source.title = Some( - crate::pandoc::location::range_to_source_info_with_context( - &range, context, - ), + crate::pandoc::location::range_to_source_info_with_context(&range, context), ); } else if node == "language_attribute" { // TODO show position of this error diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/inline_link.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/inline_link.rs index 5d100bd..2b2b1f4 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/inline_link.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/inline_link.rs @@ -48,16 +48,12 @@ where if node == "link_destination" { target.0 = text; // URL target_source.url = Some( - crate::pandoc::location::range_to_source_info_with_context( - &range, context, - ), + crate::pandoc::location::range_to_source_info_with_context(&range, context), ); } else if node == "link_title" { target.1 = text; // Title target_source.title = Some( - crate::pandoc::location::range_to_source_info_with_context( - &range, context, - ), + crate::pandoc::location::range_to_source_info_with_context(&range, context), ); } else if node == "language_attribute" { // TODO show position of this error diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/link_title.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/link_title.rs index 22a7c85..43fabdc 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/link_title.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/link_title.rs @@ -16,9 +16,7 @@ pub fn process_link_title( let title = node.utf8_text(input_bytes).unwrap().to_string(); let title = title[1..title.len() - 1].to_string(); let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &source_info, - context, - ); + let range = + crate::pandoc::location::source_info_to_qsm_range_or_fallback(&source_info, context); PandocNativeIntermediate::IntermediateBaseText(title, range) } diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/list_marker.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/list_marker.rs index 81aa947..7dd0aea 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/list_marker.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/list_marker.rs @@ -27,10 +27,8 @@ pub fn process_list_marker( // For example lists, we use 1 as the starting number // The actual numbering will be handled in postprocessing let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &source_info, - context, - ); + let range = + crate::pandoc::location::source_info_to_qsm_range_or_fallback(&source_info, context); return PandocNativeIntermediate::IntermediateOrderedListMarker(1, range); } @@ -42,9 +40,7 @@ pub fn process_list_marker( .parse() .unwrap_or_else(|_| panic!("Invalid list marker number: {}", marker_text)); let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &source_info, - context, - ); + let range = + crate::pandoc::location::source_info_to_qsm_range_or_fallback(&source_info, context); PandocNativeIntermediate::IntermediateOrderedListMarker(marker_number, range) } diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/raw_attribute.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/raw_attribute.rs index 3b50c84..b49ab3d 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/raw_attribute.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/raw_attribute.rs @@ -14,10 +14,8 @@ pub fn process_raw_attribute( context: &ASTContext, ) -> PandocNativeIntermediate { let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &source_info, - context, - ); + let range = + crate::pandoc::location::source_info_to_qsm_range_or_fallback(&source_info, context); for (_, child) in children { match child { PandocNativeIntermediate::IntermediateBaseText(raw, _) => { diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/raw_specifier.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/raw_specifier.rs index a9550da..64540a0 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/raw_specifier.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/raw_specifier.rs @@ -16,10 +16,8 @@ pub fn process_raw_specifier( // like code_content but skipping first character let raw = node.utf8_text(input_bytes).unwrap().to_string(); let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &source_info, - context, - ); + let range = + crate::pandoc::location::source_info_to_qsm_range_or_fallback(&source_info, context); if raw.chars().nth(0) == Some('<') { PandocNativeIntermediate::IntermediateBaseText( "pandoc-reader:".to_string() + &raw[1..], diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/shortcode.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/shortcode.rs index 0de97a3..e7e6a5d 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/shortcode.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/shortcode.rs @@ -23,10 +23,8 @@ pub fn process_shortcode_string_arg( ) -> PandocNativeIntermediate { let id = node.utf8_text(input_bytes).unwrap().to_string(); let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &source_info, - context, - ); + let range = + crate::pandoc::location::source_info_to_qsm_range_or_fallback(&source_info, context); PandocNativeIntermediate::IntermediateShortcodeArg(ShortcodeArg::String(id), range) } @@ -43,10 +41,8 @@ pub fn process_shortcode_string( ) }; let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &source_info, - context, - ); + let range = + crate::pandoc::location::source_info_to_qsm_range_or_fallback(&source_info, context); PandocNativeIntermediate::IntermediateShortcodeArg(ShortcodeArg::String(id), range) } @@ -109,10 +105,8 @@ pub fn process_shortcode_keyword_param( } } let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &source_info, - context, - ); + let range = + crate::pandoc::location::source_info_to_qsm_range_or_fallback(&source_info, context); PandocNativeIntermediate::IntermediateShortcodeArg(ShortcodeArg::KeyValue(result), range) } @@ -197,10 +191,8 @@ pub fn process_shortcode_boolean( _ => panic!("Unexpected shortcode_boolean value: {}", value), }; let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &source_info, - context, - ); + let range = + crate::pandoc::location::source_info_to_qsm_range_or_fallback(&source_info, context); PandocNativeIntermediate::IntermediateShortcodeArg(value, range) } @@ -211,10 +203,8 @@ pub fn process_shortcode_number( ) -> PandocNativeIntermediate { let value = node.utf8_text(input_bytes).unwrap(); let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( - &source_info, - context, - ); + let range = + crate::pandoc::location::source_info_to_qsm_range_or_fallback(&source_info, context); let Ok(num) = value.parse::() else { panic!("Invalid shortcode_number: {}", value) }; diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/span_link_helpers.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/span_link_helpers.rs index c253212..3a4764e 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/span_link_helpers.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/span_link_helpers.rs @@ -108,21 +108,17 @@ pub fn process_pandoc_span( // Populate target_source with the ranges target_source = TargetSourceInfo { url: if !url.is_empty() { - Some( - crate::pandoc::location::range_to_source_info_with_context( - &url_range, context, - ), - ) + Some(crate::pandoc::location::range_to_source_info_with_context( + &url_range, context, + )) } else { None }, title: if !title.is_empty() { - Some( - crate::pandoc::location::range_to_source_info_with_context( - &title_range, - context, - ), - ) + Some(crate::pandoc::location::range_to_source_info_with_context( + &title_range, + context, + )) } else { None }, @@ -267,21 +263,17 @@ pub fn process_pandoc_image( // Populate target_source with the ranges target_source = TargetSourceInfo { url: if !url.is_empty() { - Some( - crate::pandoc::location::range_to_source_info_with_context( - &url_range, context, - ), - ) + Some(crate::pandoc::location::range_to_source_info_with_context( + &url_range, context, + )) } else { None }, title: if !title.is_empty() { - Some( - crate::pandoc::location::range_to_source_info_with_context( - &title_range, - context, - ), - ) + Some(crate::pandoc::location::range_to_source_info_with_context( + &title_range, + context, + )) } else { None }, diff --git a/crates/quarto-markdown-pandoc/src/readers/qmd_error_message_table.rs b/crates/quarto-markdown-pandoc/src/readers/qmd_error_message_table.rs index e3b489c..44d8739 100644 --- a/crates/quarto-markdown-pandoc/src/readers/qmd_error_message_table.rs +++ b/crates/quarto-markdown-pandoc/src/readers/qmd_error_message_table.rs @@ -24,6 +24,7 @@ pub struct ErrorNote { pub label_begin: Option<&'static str>, pub label_end: Option<&'static str>, pub trim_leading_space: Option, + pub trim_trailing_space: Option, } #[derive(Debug)] @@ -33,6 +34,7 @@ pub struct ErrorInfo { pub message: &'static str, pub captures: &'static [ErrorCapture], pub notes: &'static [ErrorNote], + pub hints: &'static [&'static str], } #[derive(Debug)] diff --git a/crates/quarto-markdown-pandoc/src/readers/qmd_error_messages.rs b/crates/quarto-markdown-pandoc/src/readers/qmd_error_messages.rs index 08b691b..b8c98d0 100644 --- a/crates/quarto-markdown-pandoc/src/readers/qmd_error_messages.rs +++ b/crates/quarto-markdown-pandoc/src/readers/qmd_error_messages.rs @@ -179,7 +179,7 @@ fn error_diagnostic_from_parse_state( // Calculate token_span_end by advancing token.size characters (not bytes!) // This is critical for handling multi-byte UTF-8 characters correctly - let token_span_end = { + let mut token_span_end = { let size = token.size.max(1); let substring = &input_str[token_byte_offset..]; let mut char_count = 0; @@ -211,7 +211,7 @@ fn error_diagnostic_from_parse_state( column: token.column, }, ); - let token_location_end = + let mut token_location_end = quarto_source_map::utils::offset_to_location( &input_str, token_span_end, @@ -246,6 +246,35 @@ fn error_diagnostic_from_parse_state( } } } + if note.trim_trailing_space.unwrap_or_default() { + // Move token_span_end backward while trimming trailing spaces + loop { + if token_span_end == 0 + || token_span_end <= token_byte_offset + { + break; + } + // Get the character just before token_span_end + let slice_before_end = + input_str.get(..token_span_end).unwrap_or(""); + let last_character = + slice_before_end.chars().last().unwrap_or('\0'); + if last_character != ' ' { + break; + } + let this_offset = last_character.len_utf8(); + token_location_end = Location { + offset: token_location_end + .offset + .saturating_sub(this_offset), + row: token_location_end.row, + column: token_location_end + .column + .saturating_sub(this_offset), + }; + token_span_end = token_span_end.saturating_sub(this_offset); + } + } let token_source_info = quarto_source_map::SourceInfo::from_range( quarto_source_map::FileId(0), @@ -265,6 +294,11 @@ fn error_diagnostic_from_parse_state( } } + // Add hints + for hint in entry.error_info.hints { + builder = builder.add_hint(*hint); + } + builder.build() }) .max_by(|diag1, diag2| diagnostic_score(diag1).cmp(&diagnostic_score(diag2))) diff --git a/crates/quarto-markdown-pandoc/tests/test.rs b/crates/quarto-markdown-pandoc/tests/test.rs index 4c078a7..8f34b43 100644 --- a/crates/quarto-markdown-pandoc/tests/test.rs +++ b/crates/quarto-markdown-pandoc/tests/test.rs @@ -145,7 +145,10 @@ fn matches_pandoc_markdown_reader(input: &str) -> bool { input.as_bytes(), false, "", - &mut std::io::sink(), true, None) + &mut std::io::sink(), + true, + None, + ) .unwrap(); writers::native::write(&doc, &context, &mut buf1).unwrap(); let native_output = String::from_utf8(buf1).expect("Invalid UTF-8 in output"); @@ -329,7 +332,10 @@ where input.as_bytes(), false, &path.to_string_lossy(), - &mut output_stream, true, None) + &mut output_stream, + true, + None, + ) .unwrap(); writer(&pandoc, &context, &mut buffer).unwrap(); @@ -631,7 +637,10 @@ fn test_markdown_writer_smoke() { markdown.as_bytes(), false, path.to_str().unwrap(), - &mut std::io::sink(), true, None); + &mut std::io::sink(), + true, + None, + ); match doc_result { Ok((doc, _context, _warnings)) => { @@ -678,7 +687,10 @@ fn test_qmd_roundtrip_consistency() { original_qmd.as_bytes(), false, path.to_str().unwrap(), - &mut std::io::sink(), true, None) + &mut std::io::sink(), + true, + None, + ) .expect("Failed to parse original QMD"); let mut json_buf = Vec::new(); @@ -699,7 +711,10 @@ fn test_qmd_roundtrip_consistency() { regenerated_qmd.as_bytes(), false, "", - &mut std::io::sink(), true, None) + &mut std::io::sink(), + true, + None, + ) .expect("Failed to parse regenerated QMD"); // Compare JSON representations (without location fields) @@ -759,7 +774,10 @@ fn test_ansi_writer_smoke() { markdown.as_bytes(), false, path.to_str().unwrap(), - &mut std::io::sink(), true, None); + &mut std::io::sink(), + true, + None, + ); match doc_result { Ok((doc, _context, _warnings)) => { @@ -805,7 +823,10 @@ fn test_empty_blockquote_roundtrip() { original_qmd.as_bytes(), false, test_file, - &mut std::io::sink(), true, None) + &mut std::io::sink(), + true, + None, + ) .expect("Failed to parse original QMD"); let mut json_buf = Vec::new(); diff --git a/crates/quarto-markdown-pandoc/tests/test_error_corpus.rs b/crates/quarto-markdown-pandoc/tests/test_error_corpus.rs index 7608c5a..9bfe2dc 100644 --- a/crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +++ b/crates/quarto-markdown-pandoc/tests/test_error_corpus.rs @@ -281,7 +281,7 @@ fn test_error_corpus_text_snapshots() { &path.to_string_lossy(), &mut std::io::sink(), true, // prune errors - None, + None, ); match result { @@ -358,7 +358,7 @@ fn test_error_corpus_json_snapshots() { &path.to_string_lossy(), &mut std::io::sink(), true, // prune errors - None, + None, ); match result { diff --git a/crates/quarto-markdown-pandoc/tests/test_json_errors.rs b/crates/quarto-markdown-pandoc/tests/test_json_errors.rs index 58ca411..73dfc73 100644 --- a/crates/quarto-markdown-pandoc/tests/test_json_errors.rs +++ b/crates/quarto-markdown-pandoc/tests/test_json_errors.rs @@ -12,7 +12,10 @@ fn test_json_error_format() { input.as_bytes(), false, "test.md", - &mut std::io::sink(), true, None); + &mut std::io::sink(), + true, + None, + ); assert!(result.is_err()); let diagnostics = result.unwrap_err(); @@ -36,7 +39,10 @@ fn test_regular_error_format() { input.as_bytes(), false, "test.md", - &mut std::io::sink(), true, None); + &mut std::io::sink(), + true, + None, + ); assert!(result.is_err()); let diagnostics = result.unwrap_err(); @@ -58,7 +64,10 @@ fn test_newline_warning() { input.as_bytes(), false, "test.md", - &mut std::io::sink(), true, None); + &mut std::io::sink(), + true, + None, + ); // Should succeed (the newline is added automatically) assert!(result.is_ok()); @@ -69,7 +78,7 @@ fn test_newline_warning() { #[test] fn test_json_errors_flag_with_warning() { - // Create a temporary file with invalid markdown in metadata to trigger Q-1-101 warning + // Create a temporary file with invalid markdown in metadata to trigger Q-1-20 warning let temp_file = "/tmp/test_json_errors_warning.qmd"; let input = r#"--- title: "Test Document" @@ -112,7 +121,7 @@ description: "[incomplete link" // Verify the JSON structure assert_eq!(json_value["kind"], "warning", "Expected warning kind"); - assert_eq!(json_value["code"], "Q-1-101", "Expected Q-1-101 code"); + assert_eq!(json_value["code"], "Q-1-20", "Expected Q-1-20 code"); assert!(json_value["title"].is_string(), "Expected title field"); assert!(json_value["problem"].is_object(), "Expected problem field"); diff --git a/crates/quarto-markdown-pandoc/tests/test_json_roundtrip.rs b/crates/quarto-markdown-pandoc/tests/test_json_roundtrip.rs index ea9c3e9..994620e 100644 --- a/crates/quarto-markdown-pandoc/tests/test_json_roundtrip.rs +++ b/crates/quarto-markdown-pandoc/tests/test_json_roundtrip.rs @@ -371,7 +371,9 @@ Hello world false, &test_file.to_string_lossy(), &mut std::io::sink(), - true, None, ); + true, + None, + ); let (pandoc1, context1, diagnostics) = result.expect("Failed to parse QMD"); assert!(diagnostics.is_empty(), "Expected no parse errors"); @@ -537,7 +539,9 @@ fn test_qmd_roundtrip_escaped_punctuation() { false, "", &mut std::io::sink(), - true, None, ) + true, + None, + ) .unwrap_or_else(|_| panic!("Failed to parse input for test case: {}", description)); assert!( diff --git a/crates/quarto-markdown-pandoc/tests/test_metadata_source_tracking.rs b/crates/quarto-markdown-pandoc/tests/test_metadata_source_tracking.rs index 67a3031..acac88b 100644 --- a/crates/quarto-markdown-pandoc/tests/test_metadata_source_tracking.rs +++ b/crates/quarto-markdown-pandoc/tests/test_metadata_source_tracking.rs @@ -64,7 +64,9 @@ fn test_metadata_source_tracking_002_qmd() { false, test_file, &mut output_stream, - true, None, ) + true, + None, + ) .expect("Failed to parse QMD"); // Verify document-level metadata: title: metadata1 @@ -162,7 +164,9 @@ description: This is a description false, "test.qmd", &mut std::io::sink(), - true, None, ) + true, + None, + ) .expect("Failed to parse"); // Extract metadata @@ -263,7 +267,9 @@ Some content here. false, "test.qmd", &mut std::io::sink(), - true, None, ) + true, + None, + ) .expect("Failed to parse"); // Extract metadata @@ -345,7 +351,9 @@ fn test_yaml_tagged_value_source_tracking() { false, test_file, &mut output_stream, - true, None, ) + true, + None, + ) .expect("Failed to parse QMD"); // Get metadata diff --git a/crates/quarto-markdown-pandoc/tests/test_nested_yaml_serialization.rs b/crates/quarto-markdown-pandoc/tests/test_nested_yaml_serialization.rs index 7b6210c..972426b 100644 --- a/crates/quarto-markdown-pandoc/tests/test_nested_yaml_serialization.rs +++ b/crates/quarto-markdown-pandoc/tests/test_nested_yaml_serialization.rs @@ -43,7 +43,9 @@ fn test_yaml_serialization_size_scaling() { false, "test.qmd", &mut output_stream, - true, None, ) + true, + None, + ) .expect("Failed to parse QMD"); // Serialize to JSON @@ -94,9 +96,15 @@ fn test_yaml_serialization_with_siblings() { // Parse and serialize let mut output_stream = quarto_markdown_pandoc::utils::output::VerboseOutput::Sink(std::io::sink()); - let (pandoc, context, _warnings) = - readers::qmd::read(yaml.as_bytes(), false, "test.qmd", &mut output_stream, true, None) - .expect("Failed to parse QMD"); + let (pandoc, context, _warnings) = readers::qmd::read( + yaml.as_bytes(), + false, + "test.qmd", + &mut output_stream, + true, + None, + ) + .expect("Failed to parse QMD"); let mut json_output = Vec::new(); writers::json::write(&pandoc, &context, &mut json_output).expect("Failed to write JSON"); @@ -130,9 +138,15 @@ Some content. let mut output_stream = quarto_markdown_pandoc::utils::output::VerboseOutput::Sink(std::io::sink()); - let (pandoc, context, _warnings) = - readers::qmd::read(yaml.as_bytes(), false, "test.qmd", &mut output_stream, true, None) - .expect("Failed to parse QMD"); + let (pandoc, context, _warnings) = readers::qmd::read( + yaml.as_bytes(), + false, + "test.qmd", + &mut output_stream, + true, + None, + ) + .expect("Failed to parse QMD"); let mut json_output = Vec::new(); writers::json::write(&pandoc, &context, &mut json_output).expect("Failed to write JSON"); @@ -212,7 +226,9 @@ fn test_binary_tree_serialization() { false, "test.qmd", &mut output_stream, - true, None, ) + true, + None, + ) .expect("Failed to parse QMD"); // Serialize to JSON diff --git a/crates/quarto-markdown-pandoc/tests/test_ordered_list_formatting.rs b/crates/quarto-markdown-pandoc/tests/test_ordered_list_formatting.rs index eb579d6..dcf7a09 100644 --- a/crates/quarto-markdown-pandoc/tests/test_ordered_list_formatting.rs +++ b/crates/quarto-markdown-pandoc/tests/test_ordered_list_formatting.rs @@ -26,7 +26,9 @@ fn test_ordered_list_10plus_formatting() { false, "", &mut std::io::sink(), - true, None, ) + true, + None, + ) .unwrap(); // Write it back out @@ -85,7 +87,9 @@ fn test_ordered_list_continuation_indentation() { false, "", &mut std::io::sink(), - true, None, ) + true, + None, + ) .unwrap(); // Write it back out diff --git a/crates/quarto-markdown-pandoc/tests/test_warnings.rs b/crates/quarto-markdown-pandoc/tests/test_warnings.rs index 750be72..8848a49 100644 --- a/crates/quarto-markdown-pandoc/tests/test_warnings.rs +++ b/crates/quarto-markdown-pandoc/tests/test_warnings.rs @@ -17,7 +17,9 @@ Some content false, "test.md", &mut std::io::sink(), - true, None, ); + true, + None, + ); // Parsing should succeed (warnings are not errors) assert!( @@ -49,7 +51,9 @@ fn test_caption_with_table_no_warning() { false, "test.md", &mut std::io::sink(), - true, None, ); + true, + None, + ); // Parsing should succeed and no warnings should be emitted assert!( @@ -80,7 +84,9 @@ fn test_html_element_produces_warning_not_error() { false, "test.md", &mut std::io::sink(), - true, None, ); + true, + None, + ); // Parsing should succeed (warnings are not errors) assert!( @@ -156,7 +162,9 @@ fn test_multiple_html_elements() { false, "test.md", &mut std::io::sink(), - true, None, ); + true, + None, + ); assert!(result.is_ok(), "Document should parse successfully"); @@ -212,7 +220,9 @@ fn test_block_level_html_elements() { false, "test.md", &mut std::io::sink(), - true, None, ); + true, + None, + ); assert!(result.is_ok(), "Document should parse successfully"); @@ -269,7 +279,9 @@ fn test_html_elements_source_locations() { false, "test.md", &mut std::io::sink(), - true, None, ); + true, + None, + ); assert!(result.is_ok(), "Document should parse successfully"); @@ -315,13 +327,17 @@ fn test_comparison_with_explicit_raw_inline_syntax() { false, "test.md", &mut std::io::sink(), - true, None, ); + true, + None, + ); let result_explicit = readers::qmd::read( explicit.as_bytes(), false, "test.md", &mut std::io::sink(), - true, None, ); + true, + None, + ); assert!(result_implicit.is_ok() && result_explicit.is_ok()); diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js index c6d6a43..b02a406 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js @@ -53,23 +53,29 @@ const regexBracket = (str) => `(?:${str})`; const regexOr = (...groups) => regexBracket(groups.join("|")); const startStrRegex = regexOr( - "[\\u{00A0}" + PANDOC_ALPHA_NUM + PANDOC_SMART_QUOTES + "-]", - "[" + PANDOC_VALID_SYMBOLS + "]"); + "[\\u{00A0}" + PANDOC_ALPHA_NUM + PANDOC_SMART_QUOTES + "-]"); const afterUnderscoreRegex = "[" + PANDOC_ALPHA_NUM + "]"; // Thanks, Claude const EMOJI_REGEX = "(\\p{Extended_Pictographic}(\\p{Emoji_Modifier}|\uFE0F)?(\u200D\\p{Extended_Pictographic}(\\p{Emoji_Modifier}|\uFE0F)?)*)"; +// Keycap emojis: 0-9, # with variation selector and combining enclosing keycap +// Unicode TR51: https://www.unicode.org/reports/tr51/ +// Note: * keycap emoji (*️⃣) conflicts with emphasis delimiter, use raw reader block instead +const KEYCAP_EMOJI_REGEX = "([0-9#]\\uFE0F?\\u20E3)"; + const PANDOC_REGEX_STR = regexOr( "\\\\.", + KEYCAP_EMOJI_REGEX, EMOJI_REGEX, "[" + PANDOC_PUNCTUATION + "]", + "[" + PANDOC_VALID_SYMBOLS + "]", + "[>.,;!?]", startStrRegex + regexOr( "[!,.;?\\u{00A0}" + PANDOC_ALPHA_NUM + PANDOC_SMART_QUOTES + "-]", // "\\\\.", - "[" + PANDOC_VALID_SYMBOLS + "]", "['\\u{2018}\\u{2019}][\\p{L}\\p{N}]", regexBracket("[_]" + afterUnderscoreRegex) ) + "*"); @@ -198,6 +204,7 @@ module.exports = grammar({ pandoc_horizontal_rule: $ => seq($._thematic_break, choice($._newline, $._eof)), pandoc_paragraph: $ => seq( + optional($._inline_whitespace), $._inlines, choice($._newline, $._eof) ), @@ -333,7 +340,7 @@ module.exports = grammar({ target: $ => seq( /[ \t]*[\]][(]/, optional($._inline_whitespace), - alias(repeat1(choice(/[^ {\t)]|(\\.)+/, $.shortcode)), $.url), + alias(repeat(choice(/[^ {\t)]|(\\.)+/, $.shortcode)), $.url), optional(seq($._inline_whitespace, alias($._commonmark_double_quote_string, $.title))), ')' ), @@ -510,33 +517,31 @@ module.exports = grammar({ alias($._autolink, $.autolink), - $._prose_punctuation, $.html_element, alias($._pandoc_line_break, $.pandoc_line_break), alias($._pandoc_attr_specifier, $.attribute_specifier), ), + _shortcode_sep: $ => choice($._whitespace, $._soft_line_break, seq($._soft_line_break, $._whitespace), seq($._whitespace, $._soft_line_break)), + // shortcodes shortcode_escaped: $ => seq( alias($._shortcode_open_escaped, $.shortcode_delimiter), // "{{{<", - $._whitespace, + $._shortcode_sep, $.shortcode_name, - repeat(seq($._whitespace, $._shortcode_value)), - - repeat(seq($._whitespace, alias($._commonmark_key_value_specifier, $.key_value_specifier))), - $._whitespace, + repeat(seq($._shortcode_sep, $._shortcode_value)), + repeat(seq($._shortcode_sep, alias($._commonmark_key_value_specifier, $.key_value_specifier))), + $._shortcode_sep, alias($._shortcode_close_escaped, $.shortcode_delimiter), //">}}}", ), shortcode: $ => seq( alias($._shortcode_open, $.shortcode_delimiter), // "{{<", - $._whitespace, + $._shortcode_sep, $.shortcode_name, - repeat(seq($._whitespace, $._shortcode_value)), - - repeat(seq($._whitespace, alias($._shortcode_key_value_specifier, $.key_value_specifier))), - $._whitespace, - + repeat(seq($._shortcode_sep, $._shortcode_value)), + repeat(seq($._shortcode_sep, alias($._shortcode_key_value_specifier, $.key_value_specifier))), + $._shortcode_sep, alias($._shortcode_close, $.shortcode_delimiter), //">}}", ), @@ -642,7 +647,6 @@ module.exports = grammar({ // Things that are parsed directly as a pandoc str pandoc_str: $ => choice(new RegExp(PANDOC_REGEX_STR, 'u'), '|'), - _prose_punctuation: $ => alias(/[.,;!?]+/, $.pandoc_str), // CONTAINER BLOCKS @@ -818,8 +822,9 @@ module.exports = grammar({ // pandoc_line_break: $ => seq(/\\/, choice($._newline, $._eof)), - _inline_whitespace: $ => choice($._whitespace, $._soft_line_break), + _inline_whitespace: $ => prec(-1, choice($._whitespace, $._soft_line_break)), _whitespace: $ => /[ \t]+/, + _linebreak: $ => /[\r\n]+/, }, externals: $ => [ @@ -964,6 +969,8 @@ module.exports = grammar({ $._pipe_table_delimiter, // so we can distinguish between pipe table | and pandoc_str | $._pandoc_line_break, // we need to do this in the external lexer to avoid eating the actual newline. + + $._triple_star_error, // we do this simply to issue a good error message. ], precedences: $ => [], extras: $ => [], diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json index 554023c..7001d4e 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json @@ -717,6 +717,18 @@ "pandoc_paragraph": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_inline_whitespace" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_inlines" @@ -1465,7 +1477,7 @@ { "type": "ALIAS", "content": { - "type": "REPEAT1", + "type": "REPEAT", "content": { "type": "CHOICE", "members": [ @@ -2718,10 +2730,6 @@ "named": true, "value": "autolink" }, - { - "type": "SYMBOL", - "name": "_prose_punctuation" - }, { "type": "SYMBOL", "name": "html_element" @@ -2746,6 +2754,45 @@ } ] }, + "_shortcode_sep": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "SYMBOL", + "name": "_whitespace" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SYMBOL", + "name": "_soft_line_break" + } + ] + } + ] + }, "shortcode_escaped": { "type": "SEQ", "members": [ @@ -2760,7 +2807,7 @@ }, { "type": "SYMBOL", - "name": "_whitespace" + "name": "_shortcode_sep" }, { "type": "SYMBOL", @@ -2773,7 +2820,7 @@ "members": [ { "type": "SYMBOL", - "name": "_whitespace" + "name": "_shortcode_sep" }, { "type": "SYMBOL", @@ -2789,7 +2836,7 @@ "members": [ { "type": "SYMBOL", - "name": "_whitespace" + "name": "_shortcode_sep" }, { "type": "ALIAS", @@ -2805,7 +2852,7 @@ }, { "type": "SYMBOL", - "name": "_whitespace" + "name": "_shortcode_sep" }, { "type": "ALIAS", @@ -2832,7 +2879,7 @@ }, { "type": "SYMBOL", - "name": "_whitespace" + "name": "_shortcode_sep" }, { "type": "SYMBOL", @@ -2845,7 +2892,7 @@ "members": [ { "type": "SYMBOL", - "name": "_whitespace" + "name": "_shortcode_sep" }, { "type": "SYMBOL", @@ -2861,7 +2908,7 @@ "members": [ { "type": "SYMBOL", - "name": "_whitespace" + "name": "_shortcode_sep" }, { "type": "ALIAS", @@ -2877,7 +2924,7 @@ }, { "type": "SYMBOL", - "name": "_whitespace" + "name": "_shortcode_sep" }, { "type": "ALIAS", @@ -3411,7 +3458,7 @@ "members": [ { "type": "PATTERN", - "value": "(?:\\\\.|(\\p{Extended_Pictographic}(\\p{Emoji_Modifier}|️)?(‍\\p{Extended_Pictographic}(\\p{Emoji_Modifier}|️)?)*)|[\\p{Pd}#%&()/:+\\u{2026}]|(?:[\\u{00A0}0-9A-Za-z\\p{L}\\p{N}\\u{2018}\\u{2019}\\u{201A}\\u{201B}\\u{201C}\\u{201D}\\u{201E}\\u{201F}\\u{2039}\\u{203A}\\u{00AB}\\u{00BB}-]|[+=¬±×÷϶؆-؈⁄⁒⁺-⁼₊-₌℘⅀-⅄⅋←-↔↚-↛↠↣↦↮⇎-⇏⇒⇔⇴-⋿⌠-⌡⍼⎛-⎳⏜-⏡▷◁◸-◿♯⟀-⟄⟇-⟥⟰-⟿⤀-⦂⦙-⧗⧜-⧻⧾-⫿⬰-⭄⭇-⭌﬩﹢﹤-﹦+<->|~¬←-↓𝛁𝛛𝛻𝜕𝜵𝝏𝝯𝞉𝞩𝟃𞻰-𞻱¨¯´¸˂-˅˒-˟˥-˫˭˯-˿͵΄-΅࢈᾽᾿-῁῍-῏῝-῟῭-`´-῾゛-゜꜀-꜖꜠-꜡꞉-꞊꭛꭪-꭫﮲-﯂^` ̄🏻-🏿\\p{So}¢£¤¥֏؋߾߿৲৳৻૱௹฿៛₠₡₢₣₤₥₦₧₨₩₪₫€₭₮₯₱₲₳₴₵₶₷₸₹₺₻₼₽₾₿⃀꠸﷼﹩$¢£¥₩𑿝𑿞𑿟𑿠𞋿𞲰])(?:[!,.;?\\u{00A0}0-9A-Za-z\\p{L}\\p{N}\\u{2018}\\u{2019}\\u{201A}\\u{201B}\\u{201C}\\u{201D}\\u{201E}\\u{201F}\\u{2039}\\u{203A}\\u{00AB}\\u{00BB}-]|[+=¬±×÷϶؆-؈⁄⁒⁺-⁼₊-₌℘⅀-⅄⅋←-↔↚-↛↠↣↦↮⇎-⇏⇒⇔⇴-⋿⌠-⌡⍼⎛-⎳⏜-⏡▷◁◸-◿♯⟀-⟄⟇-⟥⟰-⟿⤀-⦂⦙-⧗⧜-⧻⧾-⫿⬰-⭄⭇-⭌﬩﹢﹤-﹦+<->|~¬←-↓𝛁𝛛𝛻𝜕𝜵𝝏𝝯𝞉𝞩𝟃𞻰-𞻱¨¯´¸˂-˅˒-˟˥-˫˭˯-˿͵΄-΅࢈᾽᾿-῁῍-῏῝-῟῭-`´-῾゛-゜꜀-꜖꜠-꜡꞉-꞊꭛꭪-꭫﮲-﯂^` ̄🏻-🏿\\p{So}¢£¤¥֏؋߾߿৲৳৻૱௹฿៛₠₡₢₣₤₥₦₧₨₩₪₫€₭₮₯₱₲₳₴₵₶₷₸₹₺₻₼₽₾₿⃀꠸﷼﹩$¢£¥₩𑿝𑿞𑿟𑿠𞋿𞲰]|['\\u{2018}\\u{2019}][\\p{L}\\p{N}]|(?:[_][0-9A-Za-z\\p{L}\\p{N}]))*)", + "value": "(?:\\\\.|([0-9#]\\uFE0F?\\u20E3)|(\\p{Extended_Pictographic}(\\p{Emoji_Modifier}|️)?(‍\\p{Extended_Pictographic}(\\p{Emoji_Modifier}|️)?)*)|[\\p{Pd}#%&()/:+\\u{2026}]|[+=¬±×÷϶؆-؈⁄⁒⁺-⁼₊-₌℘⅀-⅄⅋←-↔↚-↛↠↣↦↮⇎-⇏⇒⇔⇴-⋿⌠-⌡⍼⎛-⎳⏜-⏡▷◁◸-◿♯⟀-⟄⟇-⟥⟰-⟿⤀-⦂⦙-⧗⧜-⧻⧾-⫿⬰-⭄⭇-⭌﬩﹢﹤-﹦+<->|~¬←-↓𝛁𝛛𝛻𝜕𝜵𝝏𝝯𝞉𝞩𝟃𞻰-𞻱¨¯´¸˂-˅˒-˟˥-˫˭˯-˿͵΄-΅࢈᾽᾿-῁῍-῏῝-῟῭-`´-῾゛-゜꜀-꜖꜠-꜡꞉-꞊꭛꭪-꭫﮲-﯂^` ̄🏻-🏿\\p{So}¢£¤¥֏؋߾߿৲৳৻૱௹฿៛₠₡₢₣₤₥₦₧₨₩₪₫€₭₮₯₱₲₳₴₵₶₷₸₹₺₻₼₽₾₿⃀꠸﷼﹩$¢£¥₩𑿝𑿞𑿟𑿠𞋿𞲰]|[>.,;!?]|(?:[\\u{00A0}0-9A-Za-z\\p{L}\\p{N}\\u{2018}\\u{2019}\\u{201A}\\u{201B}\\u{201C}\\u{201D}\\u{201E}\\u{201F}\\u{2039}\\u{203A}\\u{00AB}\\u{00BB}-])(?:[!,.;?\\u{00A0}0-9A-Za-z\\p{L}\\p{N}\\u{2018}\\u{2019}\\u{201A}\\u{201B}\\u{201C}\\u{201D}\\u{201E}\\u{201F}\\u{2039}\\u{203A}\\u{00AB}\\u{00BB}-]|['\\u{2018}\\u{2019}][\\p{L}\\p{N}]|(?:[_][0-9A-Za-z\\p{L}\\p{N}]))*)", "flags": "u" }, { @@ -3420,15 +3467,6 @@ } ] }, - "_prose_punctuation": { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[.,;!?]+" - }, - "named": true, - "value": "pandoc_str" - }, "pandoc_block_quote": { "type": "SEQ", "members": [ @@ -4340,21 +4378,29 @@ ] }, "_inline_whitespace": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_whitespace" - }, - { - "type": "SYMBOL", - "name": "_soft_line_break" - } - ] + "type": "PREC", + "value": -1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SYMBOL", + "name": "_soft_line_break" + } + ] + } }, "_whitespace": { "type": "PATTERN", "value": "[ \\t]+" + }, + "_linebreak": { + "type": "PATTERN", + "value": "[\\r\\n]+" } }, "extras": [], @@ -4692,6 +4738,10 @@ { "type": "SYMBOL", "name": "_pandoc_line_break" + }, + { + "type": "SYMBOL", + "name": "_triple_star_error" } ], "inline": [], diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json b/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json index 6cd1843..f10e5fa 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json @@ -2550,6 +2550,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "block_continuation", + "named": true + }, { "type": "key_value_specifier", "named": true @@ -2589,6 +2593,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "block_continuation", + "named": true + }, { "type": "key_value_specifier", "named": true @@ -2646,7 +2654,7 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "block_continuation", diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c index df477a0..77a1fad 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c @@ -15,16 +15,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 4004 -#define LARGE_STATE_COUNT 612 +#define STATE_COUNT 4161 +#define LARGE_STATE_COUNT 547 #define SYMBOL_COUNT 258 #define ALIAS_COUNT 9 #define TOKEN_COUNT 130 -#define EXTERNAL_TOKEN_COUNT 83 +#define EXTERNAL_TOKEN_COUNT 84 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 36 +#define PRODUCTION_ID_COUNT 38 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -71,92 +71,92 @@ enum ts_symbol_identifiers { aux_sym_inline_note_token1 = 41, aux_sym_pandoc_str_token1 = 42, anon_sym_PIPE = 43, - aux_sym__prose_punctuation_token1 = 44, - sym__code_line = 45, - sym__whitespace = 46, - sym__line_ending = 47, - sym__soft_line_ending = 48, - sym__block_close = 49, - sym_block_continuation = 50, - sym__block_quote_start = 51, - sym_atx_h1_marker = 52, - sym_atx_h2_marker = 53, - sym_atx_h3_marker = 54, - sym_atx_h4_marker = 55, - sym_atx_h5_marker = 56, - sym_atx_h6_marker = 57, - sym__thematic_break = 58, - sym__list_marker_minus = 59, - sym__list_marker_plus = 60, - sym__list_marker_star = 61, - sym__list_marker_parenthesis = 62, - sym__list_marker_dot = 63, - sym__list_marker_minus_dont_interrupt = 64, - sym__list_marker_plus_dont_interrupt = 65, - sym__list_marker_star_dont_interrupt = 66, - sym__list_marker_parenthesis_dont_interrupt = 67, - sym__list_marker_dot_dont_interrupt = 68, - sym__list_marker_example = 69, - sym__list_marker_example_dont_interrupt = 70, - sym__fenced_code_block_start_backtick = 71, - sym__blank_line_start = 72, - sym__fenced_code_block_end_backtick = 73, - sym__close_block = 74, - sym__error = 75, - sym__trigger_error = 76, - sym__eof = 77, - sym_minus_metadata = 78, - sym__pipe_table_start = 79, - sym__pipe_table_line_ending = 80, - sym__fenced_div_start = 81, - sym__fenced_div_end = 82, - sym_ref_id_specifier = 83, - sym_fenced_div_note_id = 84, - sym__code_span_start = 85, - sym__code_span_close = 86, - sym__latex_span_start = 87, - sym__latex_span_close = 88, - sym__html_comment = 89, - sym_raw_specifier = 90, - sym__autolink = 91, - sym__language_specifier_token = 92, - sym__key_specifier_token = 93, - sym__value_specifier_token = 94, - sym__highlight_span_start = 95, - sym__insert_span_start = 96, - sym__delete_span_start = 97, - sym__edit_comment_span_start = 98, - sym__single_quote_span_open = 99, - sym__single_quote_span_close = 100, - sym__double_quote_span_open = 101, - sym__double_quote_span_close = 102, - sym__shortcode_open_escaped = 103, - sym__shortcode_close_escaped = 104, - sym__shortcode_open = 105, - sym__shortcode_close = 106, - sym__cite_author_in_text_with_open_bracket = 107, - sym__cite_suppress_author_with_open_bracket = 108, - sym__cite_author_in_text = 109, - sym__cite_suppress_author = 110, - sym__strikeout_open = 111, - sym__strikeout_close = 112, - sym__subscript_open = 113, - sym__subscript_close = 114, - sym__superscript_open = 115, - sym__superscript_close = 116, - sym__inline_note_start_token = 117, - sym__strong_emphasis_open_star = 118, - sym__strong_emphasis_close_star = 119, - sym__strong_emphasis_open_underscore = 120, - sym__strong_emphasis_close_underscore = 121, - sym__emphasis_open_star = 122, - sym__emphasis_close_star = 123, - sym__emphasis_open_underscore = 124, - sym__emphasis_close_underscore = 125, - sym_inline_note_reference = 126, - sym_html_element = 127, - sym__pipe_table_delimiter = 128, - sym__pandoc_line_break = 129, + sym__code_line = 44, + sym__whitespace = 45, + sym__line_ending = 46, + sym__soft_line_ending = 47, + sym__block_close = 48, + sym_block_continuation = 49, + sym__block_quote_start = 50, + sym_atx_h1_marker = 51, + sym_atx_h2_marker = 52, + sym_atx_h3_marker = 53, + sym_atx_h4_marker = 54, + sym_atx_h5_marker = 55, + sym_atx_h6_marker = 56, + sym__thematic_break = 57, + sym__list_marker_minus = 58, + sym__list_marker_plus = 59, + sym__list_marker_star = 60, + sym__list_marker_parenthesis = 61, + sym__list_marker_dot = 62, + sym__list_marker_minus_dont_interrupt = 63, + sym__list_marker_plus_dont_interrupt = 64, + sym__list_marker_star_dont_interrupt = 65, + sym__list_marker_parenthesis_dont_interrupt = 66, + sym__list_marker_dot_dont_interrupt = 67, + sym__list_marker_example = 68, + sym__list_marker_example_dont_interrupt = 69, + sym__fenced_code_block_start_backtick = 70, + sym__blank_line_start = 71, + sym__fenced_code_block_end_backtick = 72, + sym__close_block = 73, + sym__error = 74, + sym__trigger_error = 75, + sym__eof = 76, + sym_minus_metadata = 77, + sym__pipe_table_start = 78, + sym__pipe_table_line_ending = 79, + sym__fenced_div_start = 80, + sym__fenced_div_end = 81, + sym_ref_id_specifier = 82, + sym_fenced_div_note_id = 83, + sym__code_span_start = 84, + sym__code_span_close = 85, + sym__latex_span_start = 86, + sym__latex_span_close = 87, + sym__html_comment = 88, + sym_raw_specifier = 89, + sym__autolink = 90, + sym__language_specifier_token = 91, + sym__key_specifier_token = 92, + sym__value_specifier_token = 93, + sym__highlight_span_start = 94, + sym__insert_span_start = 95, + sym__delete_span_start = 96, + sym__edit_comment_span_start = 97, + sym__single_quote_span_open = 98, + sym__single_quote_span_close = 99, + sym__double_quote_span_open = 100, + sym__double_quote_span_close = 101, + sym__shortcode_open_escaped = 102, + sym__shortcode_close_escaped = 103, + sym__shortcode_open = 104, + sym__shortcode_close = 105, + sym__cite_author_in_text_with_open_bracket = 106, + sym__cite_suppress_author_with_open_bracket = 107, + sym__cite_author_in_text = 108, + sym__cite_suppress_author = 109, + sym__strikeout_open = 110, + sym__strikeout_close = 111, + sym__subscript_open = 112, + sym__subscript_close = 113, + sym__superscript_open = 114, + sym__superscript_close = 115, + sym__inline_note_start_token = 116, + sym__strong_emphasis_open_star = 117, + sym__strong_emphasis_close_star = 118, + sym__strong_emphasis_open_underscore = 119, + sym__strong_emphasis_close_underscore = 120, + sym__emphasis_open_star = 121, + sym__emphasis_close_star = 122, + sym__emphasis_open_underscore = 123, + sym__emphasis_close_underscore = 124, + sym_inline_note_reference = 125, + sym_html_element = 126, + sym__pipe_table_delimiter = 127, + sym__pandoc_line_break = 128, + sym__triple_star_error = 129, sym_document = 130, sym__block = 131, sym__block_not_section = 132, @@ -210,21 +210,21 @@ enum ts_symbol_identifiers { sym__line = 180, sym__line_with_maybe_spaces = 181, sym__inline_element = 182, - sym_shortcode_escaped = 183, - sym_shortcode = 184, - sym__shortcode_value = 185, - sym__shortcode_key_value_specifier = 186, - sym_shortcode_naked_string = 187, - sym_shortcode_string = 188, - sym_citation = 189, - sym_inline_note = 190, - sym_pandoc_superscript = 191, - sym_pandoc_subscript = 192, - sym_pandoc_strikeout = 193, - sym_pandoc_emph = 194, - sym_pandoc_strong = 195, - sym_pandoc_str = 196, - sym__prose_punctuation = 197, + sym__shortcode_sep = 183, + sym_shortcode_escaped = 184, + sym_shortcode = 185, + sym__shortcode_value = 186, + sym__shortcode_key_value_specifier = 187, + sym_shortcode_naked_string = 188, + sym_shortcode_string = 189, + sym_citation = 190, + sym_inline_note = 191, + sym_pandoc_superscript = 192, + sym_pandoc_subscript = 193, + sym_pandoc_strikeout = 194, + sym_pandoc_emph = 195, + sym_pandoc_strong = 196, + sym_pandoc_str = 197, sym_pandoc_block_quote = 198, sym_pandoc_list = 199, sym__list_plus = 200, @@ -341,7 +341,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_inline_note_token1] = "inline_note_delimiter", [aux_sym_pandoc_str_token1] = "pandoc_str_token1", [anon_sym_PIPE] = "|", - [aux_sym__prose_punctuation_token1] = "pandoc_str", [sym__code_line] = "_code_line", [sym__whitespace] = "_whitespace", [sym__line_ending] = "_line_ending", @@ -427,6 +426,7 @@ static const char * const ts_symbol_names[] = { [sym_html_element] = "html_element", [sym__pipe_table_delimiter] = "_pipe_table_delimiter", [sym__pandoc_line_break] = "pandoc_line_break", + [sym__triple_star_error] = "_triple_star_error", [sym_document] = "document", [sym__block] = "_block", [sym__block_not_section] = "_block_not_section", @@ -480,6 +480,7 @@ static const char * const ts_symbol_names[] = { [sym__line] = "_line", [sym__line_with_maybe_spaces] = "_line_with_maybe_spaces", [sym__inline_element] = "_inline_element", + [sym__shortcode_sep] = "_shortcode_sep", [sym_shortcode_escaped] = "shortcode_escaped", [sym_shortcode] = "shortcode", [sym__shortcode_value] = "_shortcode_value", @@ -494,7 +495,6 @@ static const char * const ts_symbol_names[] = { [sym_pandoc_emph] = "pandoc_emph", [sym_pandoc_strong] = "pandoc_strong", [sym_pandoc_str] = "pandoc_str", - [sym__prose_punctuation] = "_prose_punctuation", [sym_pandoc_block_quote] = "pandoc_block_quote", [sym_pandoc_list] = "pandoc_list", [sym__list_plus] = "_list_plus", @@ -611,7 +611,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_inline_note_token1] = sym__inline_note_start_token, [aux_sym_pandoc_str_token1] = aux_sym_pandoc_str_token1, [anon_sym_PIPE] = anon_sym_PIPE, - [aux_sym__prose_punctuation_token1] = sym_pandoc_str, [sym__code_line] = sym__code_line, [sym__whitespace] = sym__whitespace, [sym__line_ending] = sym__line_ending, @@ -697,6 +696,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_html_element] = sym_html_element, [sym__pipe_table_delimiter] = sym__pipe_table_delimiter, [sym__pandoc_line_break] = sym__pandoc_line_break, + [sym__triple_star_error] = sym__triple_star_error, [sym_document] = sym_document, [sym__block] = sym__block, [sym__block_not_section] = sym__block_not_section, @@ -750,6 +750,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__line] = sym__line, [sym__line_with_maybe_spaces] = sym__line_with_maybe_spaces, [sym__inline_element] = sym__inline_element, + [sym__shortcode_sep] = sym__shortcode_sep, [sym_shortcode_escaped] = sym_shortcode_escaped, [sym_shortcode] = sym_shortcode, [sym__shortcode_value] = sym__shortcode_value, @@ -764,7 +765,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_pandoc_emph] = sym_pandoc_emph, [sym_pandoc_strong] = sym_pandoc_strong, [sym_pandoc_str] = sym_pandoc_str, - [sym__prose_punctuation] = sym__prose_punctuation, [sym_pandoc_block_quote] = sym_pandoc_block_quote, [sym_pandoc_list] = sym_pandoc_list, [sym__list_plus] = sym__list_plus, @@ -1013,10 +1013,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym__prose_punctuation_token1] = { - .visible = true, - .named = true, - }, [sym__code_line] = { .visible = false, .named = true, @@ -1357,6 +1353,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__triple_star_error] = { + .visible = false, + .named = true, + }, [sym_document] = { .visible = true, .named = true, @@ -1569,6 +1569,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__shortcode_sep] = { + .visible = false, + .named = true, + }, [sym_shortcode_escaped] = { .visible = true, .named = true, @@ -1625,10 +1629,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__prose_punctuation] = { - .visible = false, - .named = true, - }, [sym_pandoc_block_quote] = { .visible = true, .named = true, @@ -2004,23 +2004,29 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_shortcode_naked_string, }, [30] = { - [2] = alias_sym_url, + [2] = alias_sym_title, }, [31] = { - [3] = sym__value_specifier_token, + [2] = alias_sym_url, }, [32] = { + [3] = sym__value_specifier_token, + }, + [33] = { [0] = alias_sym_pipe_table_align_left, [2] = alias_sym_pipe_table_align_right, }, - [33] = { + [34] = { + [3] = alias_sym_title, + }, + [35] = { [1] = alias_sym_url, [3] = alias_sym_title, }, - [34] = { + [36] = { [4] = sym__value_specifier_token, }, - [35] = { + [37] = { [2] = alias_sym_url, [4] = alias_sym_title, }, @@ -2088,117 +2094,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 5, [6] = 6, [7] = 7, - [8] = 2, - [9] = 3, + [8] = 3, + [9] = 2, [10] = 4, [11] = 5, [12] = 7, - [13] = 6, + [13] = 3, [14] = 2, - [15] = 3, - [16] = 4, - [17] = 5, - [18] = 6, - [19] = 7, + [15] = 4, + [16] = 5, + [17] = 6, + [18] = 7, + [19] = 6, [20] = 20, [21] = 21, [22] = 22, [23] = 23, [24] = 24, - [25] = 21, + [25] = 20, [26] = 26, - [27] = 20, - [28] = 22, - [29] = 23, - [30] = 24, - [31] = 21, + [27] = 26, + [28] = 21, + [29] = 22, + [30] = 23, + [31] = 24, [32] = 26, - [33] = 20, + [33] = 21, [34] = 22, [35] = 23, [36] = 24, - [37] = 26, + [37] = 20, [38] = 38, [39] = 39, [40] = 40, - [41] = 40, + [41] = 41, [42] = 42, [43] = 43, [44] = 44, - [45] = 45, + [45] = 39, [46] = 46, [47] = 38, [48] = 40, - [49] = 42, - [50] = 43, - [51] = 44, - [52] = 45, - [53] = 46, + [49] = 41, + [50] = 42, + [51] = 43, + [52] = 44, + [53] = 39, [54] = 38, - [55] = 42, - [56] = 43, - [57] = 44, - [58] = 45, - [59] = 46, + [55] = 40, + [56] = 41, + [57] = 42, + [58] = 43, + [59] = 44, [60] = 60, [61] = 61, [62] = 62, [63] = 63, - [64] = 64, - [65] = 60, - [66] = 61, - [67] = 39, - [68] = 60, - [69] = 69, - [70] = 61, + [64] = 63, + [65] = 65, + [66] = 60, + [67] = 63, + [68] = 65, + [69] = 60, + [70] = 65, [71] = 71, - [72] = 71, - [73] = 71, + [72] = 46, + [73] = 73, [74] = 74, [75] = 75, [76] = 76, - [77] = 75, - [78] = 74, + [77] = 76, + [78] = 76, [79] = 75, - [80] = 76, + [80] = 75, [81] = 74, - [82] = 76, + [82] = 74, [83] = 83, [84] = 84, [85] = 85, - [86] = 83, - [87] = 85, + [86] = 85, + [87] = 83, [88] = 83, [89] = 84, - [90] = 85, - [91] = 84, + [90] = 84, + [91] = 85, [92] = 92, [93] = 93, [94] = 94, - [95] = 92, - [96] = 94, + [95] = 94, + [96] = 93, [97] = 93, [98] = 92, [99] = 94, - [100] = 93, + [100] = 92, [101] = 101, [102] = 102, [103] = 103, [104] = 102, [105] = 101, - [106] = 102, - [107] = 101, - [108] = 103, - [109] = 103, + [106] = 103, + [107] = 103, + [108] = 101, + [109] = 102, [110] = 110, [111] = 111, [112] = 112, - [113] = 112, + [113] = 111, [114] = 110, [115] = 112, - [116] = 111, - [117] = 111, - [118] = 110, + [116] = 112, + [117] = 110, + [118] = 111, [119] = 119, [120] = 120, [121] = 121, @@ -2209,795 +2215,795 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [126] = 119, [127] = 121, [128] = 128, - [129] = 129, - [130] = 128, - [131] = 129, + [129] = 128, + [130] = 130, + [131] = 130, [132] = 128, - [133] = 129, + [133] = 130, [134] = 134, [135] = 135, [136] = 136, [137] = 137, [138] = 138, [139] = 139, - [140] = 135, + [140] = 140, [141] = 141, [142] = 142, [143] = 143, [144] = 144, - [145] = 139, - [146] = 135, - [147] = 139, - [148] = 135, - [149] = 139, - [150] = 135, - [151] = 139, - [152] = 135, - [153] = 139, - [154] = 135, - [155] = 135, + [145] = 145, + [146] = 144, + [147] = 140, + [148] = 141, + [149] = 144, + [150] = 142, + [151] = 143, + [152] = 152, + [153] = 138, + [154] = 145, + [155] = 139, [156] = 135, - [157] = 139, - [158] = 135, - [159] = 139, - [160] = 135, - [161] = 139, - [162] = 135, - [163] = 139, - [164] = 135, - [165] = 139, - [166] = 135, - [167] = 139, - [168] = 135, - [169] = 139, - [170] = 135, + [157] = 136, + [158] = 137, + [159] = 135, + [160] = 136, + [161] = 137, + [162] = 138, + [163] = 134, + [164] = 140, + [165] = 141, + [166] = 142, + [167] = 143, + [168] = 134, + [169] = 145, + [170] = 139, [171] = 171, [172] = 172, - [173] = 173, - [174] = 174, - [175] = 139, - [176] = 176, - [177] = 139, - [178] = 139, - [179] = 137, - [180] = 176, - [181] = 143, - [182] = 144, - [183] = 183, - [184] = 184, - [185] = 185, - [186] = 171, - [187] = 187, - [188] = 144, + [173] = 171, + [174] = 172, + [175] = 171, + [176] = 172, + [177] = 171, + [178] = 172, + [179] = 171, + [180] = 172, + [181] = 171, + [182] = 172, + [183] = 171, + [184] = 172, + [185] = 171, + [186] = 172, + [187] = 171, + [188] = 172, [189] = 171, [190] = 172, - [191] = 173, - [192] = 174, - [193] = 142, - [194] = 194, - [195] = 174, + [191] = 171, + [192] = 172, + [193] = 171, + [194] = 172, + [195] = 171, [196] = 196, [197] = 197, - [198] = 198, - [199] = 136, - [200] = 176, - [201] = 172, - [202] = 173, - [203] = 137, - [204] = 136, + [198] = 171, + [199] = 172, + [200] = 172, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 204, [205] = 205, - [206] = 138, - [207] = 141, - [208] = 138, - [209] = 141, - [210] = 142, - [211] = 143, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, [212] = 212, [213] = 213, - [214] = 214, - [215] = 215, - [216] = 216, - [217] = 215, - [218] = 218, + [214] = 171, + [215] = 171, + [216] = 172, + [217] = 217, + [218] = 172, [219] = 219, - [220] = 214, + [220] = 220, [221] = 221, [222] = 222, - [223] = 216, - [224] = 222, + [223] = 223, + [224] = 224, [225] = 225, [226] = 226, - [227] = 227, + [227] = 197, [228] = 228, [229] = 229, - [230] = 225, + [230] = 230, [231] = 231, [232] = 232, - [233] = 233, - [234] = 234, - [235] = 235, - [236] = 236, - [237] = 237, - [238] = 238, - [239] = 239, + [233] = 201, + [234] = 202, + [235] = 213, + [236] = 219, + [237] = 196, + [238] = 203, + [239] = 204, [240] = 240, [241] = 241, [242] = 242, - [243] = 243, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 218, - [248] = 219, - [249] = 214, - [250] = 221, - [251] = 218, - [252] = 219, - [253] = 214, - [254] = 221, - [255] = 226, - [256] = 218, - [257] = 219, - [258] = 214, - [259] = 221, - [260] = 218, - [261] = 219, - [262] = 214, - [263] = 221, - [264] = 218, - [265] = 219, - [266] = 214, - [267] = 221, - [268] = 218, - [269] = 219, - [270] = 214, - [271] = 221, - [272] = 218, - [273] = 219, - [274] = 214, - [275] = 221, - [276] = 218, - [277] = 219, - [278] = 214, - [279] = 221, - [280] = 218, - [281] = 219, - [282] = 214, - [283] = 221, - [284] = 218, - [285] = 219, - [286] = 214, - [287] = 221, - [288] = 218, - [289] = 219, - [290] = 214, - [291] = 221, - [292] = 218, - [293] = 219, - [294] = 221, - [295] = 218, - [296] = 219, - [297] = 214, - [298] = 221, - [299] = 218, - [300] = 219, - [301] = 214, - [302] = 221, - [303] = 216, - [304] = 218, - [305] = 219, - [306] = 214, - [307] = 221, - [308] = 222, - [309] = 225, - [310] = 226, - [311] = 227, - [312] = 228, - [313] = 227, - [314] = 228, - [315] = 215, - [316] = 234, - [317] = 231, + [243] = 205, + [244] = 206, + [245] = 207, + [246] = 208, + [247] = 209, + [248] = 210, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 197, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 217, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 211, + [276] = 276, + [277] = 201, + [278] = 202, + [279] = 213, + [280] = 280, + [281] = 196, + [282] = 203, + [283] = 204, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, [318] = 318, [319] = 319, [320] = 320, [321] = 321, - [322] = 322, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 330, - [331] = 331, + [322] = 205, + [323] = 206, + [324] = 207, + [325] = 208, + [326] = 209, + [327] = 210, + [328] = 212, + [329] = 211, + [330] = 212, + [331] = 217, [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, - [337] = 337, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, + [333] = 219, + [334] = 301, + [335] = 321, + [336] = 269, + [337] = 270, + [338] = 271, + [339] = 272, + [340] = 273, + [341] = 262, + [342] = 266, + [343] = 276, [344] = 344, [345] = 345, [346] = 346, [347] = 347, - [348] = 348, + [348] = 274, [349] = 349, - [350] = 350, - [351] = 351, - [352] = 239, - [353] = 240, - [354] = 241, - [355] = 242, - [356] = 243, - [357] = 357, - [358] = 183, - [359] = 184, - [360] = 360, - [361] = 244, - [362] = 198, - [363] = 246, - [364] = 185, - [365] = 194, - [366] = 187, - [367] = 229, - [368] = 368, + [350] = 220, + [351] = 266, + [352] = 276, + [353] = 353, + [354] = 250, + [355] = 254, + [356] = 253, + [357] = 255, + [358] = 261, + [359] = 284, + [360] = 285, + [361] = 263, + [362] = 286, + [363] = 264, + [364] = 268, + [365] = 264, + [366] = 256, + [367] = 287, + [368] = 288, [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 231, - [379] = 379, - [380] = 380, - [381] = 212, - [382] = 382, - [383] = 383, - [384] = 384, - [385] = 232, - [386] = 233, - [387] = 387, - [388] = 388, - [389] = 236, - [390] = 237, - [391] = 391, - [392] = 232, - [393] = 393, - [394] = 205, - [395] = 395, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 401, - [402] = 402, - [403] = 238, - [404] = 213, - [405] = 245, - [406] = 196, - [407] = 197, - [408] = 233, - [409] = 234, - [410] = 235, - [411] = 245, - [412] = 236, - [413] = 237, - [414] = 238, - [415] = 415, - [416] = 246, - [417] = 239, - [418] = 418, + [370] = 289, + [371] = 269, + [372] = 284, + [373] = 285, + [374] = 290, + [375] = 270, + [376] = 291, + [377] = 286, + [378] = 271, + [379] = 292, + [380] = 272, + [381] = 293, + [382] = 273, + [383] = 294, + [384] = 295, + [385] = 287, + [386] = 296, + [387] = 257, + [388] = 274, + [389] = 297, + [390] = 298, + [391] = 299, + [392] = 300, + [393] = 301, + [394] = 302, + [395] = 303, + [396] = 304, + [397] = 305, + [398] = 306, + [399] = 307, + [400] = 308, + [401] = 309, + [402] = 310, + [403] = 311, + [404] = 312, + [405] = 313, + [406] = 314, + [407] = 315, + [408] = 316, + [409] = 317, + [410] = 318, + [411] = 319, + [412] = 369, + [413] = 413, + [414] = 258, + [415] = 353, + [416] = 259, + [417] = 417, + [418] = 288, [419] = 419, - [420] = 420, - [421] = 240, - [422] = 422, - [423] = 241, - [424] = 350, + [420] = 345, + [421] = 346, + [422] = 347, + [423] = 349, + [424] = 289, [425] = 425, - [426] = 242, - [427] = 427, - [428] = 350, - [429] = 243, - [430] = 430, - [431] = 229, - [432] = 350, - [433] = 350, - [434] = 350, - [435] = 350, - [436] = 350, - [437] = 350, - [438] = 350, - [439] = 350, - [440] = 350, - [441] = 350, - [442] = 350, - [443] = 350, - [444] = 350, - [445] = 244, - [446] = 235, - [447] = 322, - [448] = 360, - [449] = 374, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 453, - [454] = 415, - [455] = 377, - [456] = 351, - [457] = 418, - [458] = 419, - [459] = 372, - [460] = 373, - [461] = 374, - [462] = 462, - [463] = 463, - [464] = 464, - [465] = 420, - [466] = 369, - [467] = 422, - [468] = 347, - [469] = 425, - [470] = 370, - [471] = 427, - [472] = 393, - [473] = 430, - [474] = 371, - [475] = 452, - [476] = 395, - [477] = 453, - [478] = 388, - [479] = 419, - [480] = 318, - [481] = 319, - [482] = 463, - [483] = 464, - [484] = 320, - [485] = 420, - [486] = 321, - [487] = 375, - [488] = 382, - [489] = 323, - [490] = 422, - [491] = 462, - [492] = 324, - [493] = 379, - [494] = 415, - [495] = 425, - [496] = 391, - [497] = 325, - [498] = 326, - [499] = 463, - [500] = 464, - [501] = 427, - [502] = 375, - [503] = 430, - [504] = 380, - [505] = 327, - [506] = 328, - [507] = 463, - [508] = 464, - [509] = 388, - [510] = 393, - [511] = 318, - [512] = 319, - [513] = 329, - [514] = 330, - [515] = 463, - [516] = 464, - [517] = 320, - [518] = 396, - [519] = 418, - [520] = 321, - [521] = 331, - [522] = 322, - [523] = 463, - [524] = 464, - [525] = 323, - [526] = 324, - [527] = 325, - [528] = 332, - [529] = 333, - [530] = 463, - [531] = 464, - [532] = 326, - [533] = 327, - [534] = 328, - [535] = 329, - [536] = 334, - [537] = 335, - [538] = 463, - [539] = 464, - [540] = 330, - [541] = 331, - [542] = 332, - [543] = 333, - [544] = 334, - [545] = 336, - [546] = 463, - [547] = 464, - [548] = 335, - [549] = 336, - [550] = 337, - [551] = 338, - [552] = 337, - [553] = 338, - [554] = 463, - [555] = 464, - [556] = 339, - [557] = 340, - [558] = 341, - [559] = 342, - [560] = 339, - [561] = 340, - [562] = 463, - [563] = 464, - [564] = 343, - [565] = 395, - [566] = 396, - [567] = 397, - [568] = 341, - [569] = 342, - [570] = 463, - [571] = 464, - [572] = 398, - [573] = 399, - [574] = 400, - [575] = 383, - [576] = 343, - [577] = 382, - [578] = 463, - [579] = 464, - [580] = 397, - [581] = 398, - [582] = 399, - [583] = 400, - [584] = 380, - [585] = 463, - [586] = 464, - [587] = 402, - [588] = 383, - [589] = 463, - [590] = 464, - [591] = 450, - [592] = 402, - [593] = 391, - [594] = 384, - [595] = 351, - [596] = 357, - [597] = 360, - [598] = 345, - [599] = 463, - [600] = 464, - [601] = 377, - [602] = 379, - [603] = 384, - [604] = 345, - [605] = 347, - [606] = 369, - [607] = 370, - [608] = 371, - [609] = 372, - [610] = 451, - [611] = 373, - [612] = 401, - [613] = 452, - [614] = 450, - [615] = 451, - [616] = 452, - [617] = 450, - [618] = 451, - [619] = 452, - [620] = 450, - [621] = 451, - [622] = 452, - [623] = 452, - [624] = 451, - [625] = 451, - [626] = 450, - [627] = 450, - [628] = 452, - [629] = 376, - [630] = 450, - [631] = 451, - [632] = 452, - [633] = 451, - [634] = 450, - [635] = 451, - [636] = 452, - [637] = 450, - [638] = 451, - [639] = 452, - [640] = 450, - [641] = 451, - [642] = 452, - [643] = 450, - [644] = 451, - [645] = 452, - [646] = 450, - [647] = 647, - [648] = 648, - [649] = 647, - [650] = 648, - [651] = 647, - [652] = 652, + [426] = 290, + [427] = 220, + [428] = 428, + [429] = 291, + [430] = 263, + [431] = 292, + [432] = 293, + [433] = 294, + [434] = 295, + [435] = 296, + [436] = 345, + [437] = 346, + [438] = 347, + [439] = 349, + [440] = 297, + [441] = 260, + [442] = 298, + [443] = 299, + [444] = 428, + [445] = 417, + [446] = 300, + [447] = 302, + [448] = 303, + [449] = 304, + [450] = 320, + [451] = 306, + [452] = 345, + [453] = 346, + [454] = 347, + [455] = 349, + [456] = 307, + [457] = 345, + [458] = 346, + [459] = 347, + [460] = 349, + [461] = 308, + [462] = 309, + [463] = 345, + [464] = 346, + [465] = 347, + [466] = 349, + [467] = 310, + [468] = 311, + [469] = 345, + [470] = 346, + [471] = 347, + [472] = 349, + [473] = 312, + [474] = 345, + [475] = 346, + [476] = 347, + [477] = 349, + [478] = 313, + [479] = 314, + [480] = 345, + [481] = 346, + [482] = 347, + [483] = 349, + [484] = 315, + [485] = 316, + [486] = 345, + [487] = 346, + [488] = 347, + [489] = 349, + [490] = 317, + [491] = 318, + [492] = 345, + [493] = 346, + [494] = 347, + [495] = 349, + [496] = 319, + [497] = 413, + [498] = 345, + [499] = 346, + [500] = 347, + [501] = 349, + [502] = 268, + [503] = 369, + [504] = 345, + [505] = 346, + [506] = 347, + [507] = 349, + [508] = 413, + [509] = 353, + [510] = 345, + [511] = 346, + [512] = 347, + [513] = 349, + [514] = 417, + [515] = 419, + [516] = 345, + [517] = 346, + [518] = 347, + [519] = 349, + [520] = 425, + [521] = 250, + [522] = 345, + [523] = 346, + [524] = 347, + [525] = 349, + [526] = 251, + [527] = 428, + [528] = 253, + [529] = 261, + [530] = 419, + [531] = 262, + [532] = 425, + [533] = 320, + [534] = 321, + [535] = 265, + [536] = 254, + [537] = 255, + [538] = 256, + [539] = 257, + [540] = 258, + [541] = 259, + [542] = 260, + [543] = 265, + [544] = 344, + [545] = 344, + [546] = 305, + [547] = 547, + [548] = 547, + [549] = 240, + [550] = 241, + [551] = 280, + [552] = 242, + [553] = 228, + [554] = 229, + [555] = 230, + [556] = 231, + [557] = 232, + [558] = 249, + [559] = 547, + [560] = 547, + [561] = 547, + [562] = 562, + [563] = 547, + [564] = 332, + [565] = 565, + [566] = 547, + [567] = 547, + [568] = 547, + [569] = 547, + [570] = 547, + [571] = 547, + [572] = 547, + [573] = 547, + [574] = 547, + [575] = 547, + [576] = 576, + [577] = 576, + [578] = 578, + [579] = 579, + [580] = 576, + [581] = 581, + [582] = 579, + [583] = 583, + [584] = 581, + [585] = 579, + [586] = 576, + [587] = 579, + [588] = 576, + [589] = 579, + [590] = 576, + [591] = 591, + [592] = 579, + [593] = 579, + [594] = 576, + [595] = 579, + [596] = 579, + [597] = 576, + [598] = 598, + [599] = 579, + [600] = 576, + [601] = 579, + [602] = 583, + [603] = 579, + [604] = 576, + [605] = 579, + [606] = 576, + [607] = 591, + [608] = 576, + [609] = 579, + [610] = 576, + [611] = 579, + [612] = 576, + [613] = 578, + [614] = 576, + [615] = 598, + [616] = 579, + [617] = 576, + [618] = 598, + [619] = 581, + [620] = 578, + [621] = 581, + [622] = 598, + [623] = 562, + [624] = 578, + [625] = 581, + [626] = 598, + [627] = 578, + [628] = 581, + [629] = 581, + [630] = 598, + [631] = 578, + [632] = 581, + [633] = 598, + [634] = 581, + [635] = 581, + [636] = 578, + [637] = 581, + [638] = 598, + [639] = 578, + [640] = 581, + [641] = 565, + [642] = 598, + [643] = 598, + [644] = 598, + [645] = 598, + [646] = 578, + [647] = 578, + [648] = 581, + [649] = 598, + [650] = 578, + [651] = 578, + [652] = 578, [653] = 653, - [654] = 652, - [655] = 653, + [654] = 654, + [655] = 655, [656] = 656, - [657] = 657, - [658] = 648, - [659] = 647, - [660] = 656, - [661] = 652, - [662] = 656, - [663] = 657, - [664] = 648, - [665] = 647, - [666] = 652, + [657] = 654, + [658] = 656, + [659] = 654, + [660] = 660, + [661] = 653, + [662] = 655, + [663] = 663, + [664] = 656, + [665] = 654, + [666] = 660, [667] = 653, - [668] = 653, - [669] = 657, + [668] = 655, + [669] = 663, [670] = 656, - [671] = 657, - [672] = 648, - [673] = 647, - [674] = 648, - [675] = 647, - [676] = 652, - [677] = 653, - [678] = 652, + [671] = 654, + [672] = 663, + [673] = 663, + [674] = 660, + [675] = 653, + [676] = 655, + [677] = 663, + [678] = 660, [679] = 653, - [680] = 652, - [681] = 653, - [682] = 652, - [683] = 652, + [680] = 663, + [681] = 655, + [682] = 660, + [683] = 663, [684] = 656, - [685] = 657, - [686] = 648, - [687] = 653, - [688] = 648, - [689] = 656, - [690] = 647, - [691] = 653, - [692] = 401, - [693] = 657, - [694] = 652, + [685] = 654, + [686] = 653, + [687] = 655, + [688] = 660, + [689] = 653, + [690] = 655, + [691] = 663, + [692] = 663, + [693] = 655, + [694] = 660, [695] = 653, - [696] = 648, - [697] = 656, + [696] = 653, + [697] = 655, [698] = 656, - [699] = 656, - [700] = 648, - [701] = 647, - [702] = 647, - [703] = 656, - [704] = 657, - [705] = 648, - [706] = 647, - [707] = 657, - [708] = 652, - [709] = 652, - [710] = 648, - [711] = 711, - [712] = 656, - [713] = 657, - [714] = 648, - [715] = 647, - [716] = 647, - [717] = 653, - [718] = 653, - [719] = 652, - [720] = 656, - [721] = 657, - [722] = 653, - [723] = 648, - [724] = 647, - [725] = 711, - [726] = 656, - [727] = 657, - [728] = 652, - [729] = 653, - [730] = 657, - [731] = 711, - [732] = 656, - [733] = 656, - [734] = 657, - [735] = 652, - [736] = 652, - [737] = 653, - [738] = 653, - [739] = 648, - [740] = 647, - [741] = 656, - [742] = 657, - [743] = 648, - [744] = 647, - [745] = 657, - [746] = 376, - [747] = 657, - [748] = 748, - [749] = 748, - [750] = 750, - [751] = 750, - [752] = 750, + [699] = 654, + [700] = 656, + [701] = 656, + [702] = 660, + [703] = 653, + [704] = 655, + [705] = 653, + [706] = 654, + [707] = 562, + [708] = 656, + [709] = 660, + [710] = 660, + [711] = 653, + [712] = 655, + [713] = 663, + [714] = 653, + [715] = 660, + [716] = 656, + [717] = 654, + [718] = 656, + [719] = 654, + [720] = 655, + [721] = 653, + [722] = 655, + [723] = 660, + [724] = 653, + [725] = 655, + [726] = 663, + [727] = 660, + [728] = 653, + [729] = 655, + [730] = 663, + [731] = 656, + [732] = 654, + [733] = 654, + [734] = 663, + [735] = 663, + [736] = 656, + [737] = 663, + [738] = 656, + [739] = 654, + [740] = 565, + [741] = 654, + [742] = 656, + [743] = 654, + [744] = 660, + [745] = 656, + [746] = 660, + [747] = 660, + [748] = 654, + [749] = 655, + [750] = 663, + [751] = 751, + [752] = 752, [753] = 753, [754] = 754, - [755] = 750, - [756] = 756, - [757] = 757, + [755] = 753, + [756] = 754, + [757] = 754, [758] = 758, - [759] = 748, + [759] = 759, [760] = 760, - [761] = 753, - [762] = 760, + [761] = 761, + [762] = 752, [763] = 763, - [764] = 756, - [765] = 757, - [766] = 758, - [767] = 748, - [768] = 754, - [769] = 763, - [770] = 753, - [771] = 760, - [772] = 763, - [773] = 773, - [774] = 756, - [775] = 757, - [776] = 758, - [777] = 754, - [778] = 753, - [779] = 760, - [780] = 763, - [781] = 756, - [782] = 757, - [783] = 758, - [784] = 748, - [785] = 754, - [786] = 753, - [787] = 760, - [788] = 763, - [789] = 756, - [790] = 757, - [791] = 758, - [792] = 748, - [793] = 754, - [794] = 753, - [795] = 754, - [796] = 763, - [797] = 756, - [798] = 757, - [799] = 758, - [800] = 748, - [801] = 754, - [802] = 753, - [803] = 760, - [804] = 763, - [805] = 756, - [806] = 757, - [807] = 758, - [808] = 748, - [809] = 754, - [810] = 753, - [811] = 760, - [812] = 763, - [813] = 756, - [814] = 757, - [815] = 758, - [816] = 748, - [817] = 754, - [818] = 753, - [819] = 760, - [820] = 763, - [821] = 756, - [822] = 757, - [823] = 758, - [824] = 748, - [825] = 754, - [826] = 753, - [827] = 760, - [828] = 763, - [829] = 756, - [830] = 757, - [831] = 758, - [832] = 748, - [833] = 754, - [834] = 753, - [835] = 760, - [836] = 763, - [837] = 756, - [838] = 757, - [839] = 758, - [840] = 748, - [841] = 754, - [842] = 753, - [843] = 760, - [844] = 763, - [845] = 756, - [846] = 757, - [847] = 758, - [848] = 748, - [849] = 754, - [850] = 753, - [851] = 760, - [852] = 763, - [853] = 756, - [854] = 757, - [855] = 758, - [856] = 748, - [857] = 754, - [858] = 753, - [859] = 760, - [860] = 763, - [861] = 756, - [862] = 757, - [863] = 758, - [864] = 748, - [865] = 754, - [866] = 753, - [867] = 760, - [868] = 763, - [869] = 756, - [870] = 757, - [871] = 758, - [872] = 748, - [873] = 754, - [874] = 753, - [875] = 760, - [876] = 763, - [877] = 756, - [878] = 757, - [879] = 758, - [880] = 760, - [881] = 881, - [882] = 881, - [883] = 881, - [884] = 881, - [885] = 881, - [886] = 881, - [887] = 881, - [888] = 881, - [889] = 881, - [890] = 881, - [891] = 881, - [892] = 881, - [893] = 881, - [894] = 894, - [895] = 894, - [896] = 894, - [897] = 894, - [898] = 894, - [899] = 894, - [900] = 894, - [901] = 894, - [902] = 894, - [903] = 894, - [904] = 894, - [905] = 894, - [906] = 894, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, + [764] = 764, + [765] = 753, + [766] = 766, + [767] = 754, + [768] = 751, + [769] = 751, + [770] = 763, + [771] = 764, + [772] = 758, + [773] = 759, + [774] = 761, + [775] = 752, + [776] = 766, + [777] = 751, + [778] = 763, + [779] = 764, + [780] = 758, + [781] = 759, + [782] = 761, + [783] = 752, + [784] = 766, + [785] = 751, + [786] = 763, + [787] = 764, + [788] = 758, + [789] = 759, + [790] = 761, + [791] = 752, + [792] = 766, + [793] = 751, + [794] = 763, + [795] = 764, + [796] = 758, + [797] = 759, + [798] = 766, + [799] = 752, + [800] = 766, + [801] = 751, + [802] = 763, + [803] = 764, + [804] = 758, + [805] = 759, + [806] = 761, + [807] = 752, + [808] = 766, + [809] = 751, + [810] = 763, + [811] = 764, + [812] = 758, + [813] = 759, + [814] = 761, + [815] = 752, + [816] = 766, + [817] = 751, + [818] = 763, + [819] = 764, + [820] = 758, + [821] = 759, + [822] = 761, + [823] = 752, + [824] = 766, + [825] = 751, + [826] = 763, + [827] = 764, + [828] = 758, + [829] = 759, + [830] = 761, + [831] = 752, + [832] = 766, + [833] = 751, + [834] = 763, + [835] = 764, + [836] = 758, + [837] = 759, + [838] = 761, + [839] = 752, + [840] = 766, + [841] = 751, + [842] = 763, + [843] = 764, + [844] = 758, + [845] = 759, + [846] = 761, + [847] = 752, + [848] = 766, + [849] = 751, + [850] = 763, + [851] = 764, + [852] = 758, + [853] = 759, + [854] = 761, + [855] = 752, + [856] = 766, + [857] = 751, + [858] = 763, + [859] = 764, + [860] = 758, + [861] = 759, + [862] = 761, + [863] = 752, + [864] = 766, + [865] = 751, + [866] = 763, + [867] = 764, + [868] = 758, + [869] = 759, + [870] = 761, + [871] = 752, + [872] = 766, + [873] = 763, + [874] = 764, + [875] = 758, + [876] = 759, + [877] = 761, + [878] = 752, + [879] = 766, + [880] = 751, + [881] = 763, + [882] = 764, + [883] = 758, + [884] = 759, + [885] = 761, + [886] = 761, + [887] = 887, + [888] = 887, + [889] = 887, + [890] = 887, + [891] = 887, + [892] = 887, + [893] = 887, + [894] = 887, + [895] = 887, + [896] = 887, + [897] = 887, + [898] = 887, + [899] = 887, + [900] = 900, + [901] = 900, + [902] = 900, + [903] = 900, + [904] = 900, + [905] = 900, + [906] = 900, + [907] = 900, + [908] = 900, + [909] = 900, + [910] = 900, + [911] = 900, + [912] = 900, [913] = 913, [914] = 914, - [915] = 907, + [915] = 915, [916] = 916, - [917] = 917, + [917] = 913, [918] = 918, [919] = 919, [920] = 920, @@ -3016,33 +3022,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [933] = 933, [934] = 934, [935] = 935, - [936] = 911, - [937] = 920, - [938] = 912, - [939] = 916, - [940] = 909, - [941] = 913, - [942] = 917, - [943] = 918, - [944] = 910, - [945] = 911, - [946] = 920, - [947] = 921, - [948] = 922, - [949] = 923, - [950] = 924, - [951] = 925, - [952] = 926, - [953] = 927, - [954] = 928, - [955] = 929, - [956] = 908, - [957] = 931, - [958] = 932, - [959] = 933, - [960] = 934, - [961] = 930, - [962] = 914, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 941, + [942] = 935, + [943] = 936, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 948, + [949] = 949, + [950] = 950, + [951] = 951, + [952] = 922, + [953] = 953, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 962, [963] = 963, [964] = 964, [965] = 965, @@ -3071,7 +3077,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [988] = 988, [989] = 989, [990] = 990, - [991] = 910, + [991] = 991, [992] = 992, [993] = 993, [994] = 994, @@ -3081,7 +3087,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [998] = 998, [999] = 999, [1000] = 1000, - [1001] = 1001, + [1001] = 934, [1002] = 1002, [1003] = 1003, [1004] = 1004, @@ -3089,505 +3095,505 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1006] = 1006, [1007] = 1007, [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 1017, - [1018] = 1018, - [1019] = 1019, - [1020] = 1020, - [1021] = 1021, - [1022] = 921, - [1023] = 922, - [1024] = 923, - [1025] = 924, - [1026] = 925, - [1027] = 926, - [1028] = 919, - [1029] = 927, - [1030] = 928, - [1031] = 929, - [1032] = 908, - [1033] = 913, - [1034] = 917, - [1035] = 918, - [1036] = 931, - [1037] = 1037, - [1038] = 932, - [1039] = 933, - [1040] = 934, - [1041] = 930, - [1042] = 914, - [1043] = 912, - [1044] = 916, - [1045] = 909, - [1046] = 1046, - [1047] = 925, - [1048] = 978, - [1049] = 979, - [1050] = 980, - [1051] = 981, - [1052] = 982, - [1053] = 929, - [1054] = 908, - [1055] = 983, - [1056] = 968, - [1057] = 931, - [1058] = 984, - [1059] = 985, - [1060] = 986, - [1061] = 987, - [1062] = 988, - [1063] = 932, - [1064] = 989, - [1065] = 990, - [1066] = 933, - [1067] = 1046, - [1068] = 992, + [1009] = 916, + [1010] = 920, + [1011] = 921, + [1012] = 925, + [1013] = 926, + [1014] = 914, + [1015] = 928, + [1016] = 918, + [1017] = 919, + [1018] = 924, + [1019] = 929, + [1020] = 930, + [1021] = 935, + [1022] = 927, + [1023] = 937, + [1024] = 940, + [1025] = 923, + [1026] = 939, + [1027] = 915, + [1028] = 931, + [1029] = 932, + [1030] = 933, + [1031] = 936, + [1032] = 938, + [1033] = 927, + [1034] = 937, + [1035] = 940, + [1036] = 923, + [1037] = 939, + [1038] = 922, + [1039] = 938, + [1040] = 916, + [1041] = 920, + [1042] = 921, + [1043] = 925, + [1044] = 934, + [1045] = 926, + [1046] = 914, + [1047] = 928, + [1048] = 918, + [1049] = 919, + [1050] = 924, + [1051] = 929, + [1052] = 930, + [1053] = 931, + [1054] = 932, + [1055] = 933, + [1056] = 1056, + [1057] = 937, + [1058] = 990, + [1059] = 991, + [1060] = 992, + [1061] = 993, + [1062] = 994, + [1063] = 995, + [1064] = 1007, + [1065] = 949, + [1066] = 996, + [1067] = 997, + [1068] = 950, [1069] = 934, - [1070] = 993, - [1071] = 994, - [1072] = 930, - [1073] = 935, - [1074] = 995, - [1075] = 996, - [1076] = 997, - [1077] = 914, - [1078] = 998, - [1079] = 999, - [1080] = 912, - [1081] = 1000, - [1082] = 1001, - [1083] = 1002, - [1084] = 1003, - [1085] = 1004, - [1086] = 1019, - [1087] = 1005, - [1088] = 1006, - [1089] = 1007, - [1090] = 1008, - [1091] = 1009, - [1092] = 1020, - [1093] = 1010, - [1094] = 1011, - [1095] = 1021, - [1096] = 1012, - [1097] = 924, - [1098] = 1013, - [1099] = 1014, - [1100] = 1015, - [1101] = 1016, - [1102] = 1017, - [1103] = 1018, - [1104] = 916, - [1105] = 909, - [1106] = 913, - [1107] = 917, - [1108] = 918, - [1109] = 909, - [1110] = 913, - [1111] = 917, - [1112] = 918, - [1113] = 910, - [1114] = 911, - [1115] = 920, - [1116] = 910, - [1117] = 921, - [1118] = 922, - [1119] = 911, - [1120] = 923, - [1121] = 924, - [1122] = 920, - [1123] = 925, - [1124] = 926, - [1125] = 921, - [1126] = 927, + [1070] = 935, + [1071] = 951, + [1072] = 998, + [1073] = 936, + [1074] = 939, + [1075] = 922, + [1076] = 982, + [1077] = 953, + [1078] = 979, + [1079] = 1008, + [1080] = 954, + [1081] = 955, + [1082] = 956, + [1083] = 938, + [1084] = 927, + [1085] = 937, + [1086] = 940, + [1087] = 923, + [1088] = 939, + [1089] = 922, + [1090] = 916, + [1091] = 957, + [1092] = 958, + [1093] = 959, + [1094] = 960, + [1095] = 920, + [1096] = 921, + [1097] = 961, + [1098] = 985, + [1099] = 986, + [1100] = 987, + [1101] = 988, + [1102] = 989, + [1103] = 1056, + [1104] = 1006, + [1105] = 990, + [1106] = 925, + [1107] = 991, + [1108] = 992, + [1109] = 1109, + [1110] = 993, + [1111] = 994, + [1112] = 962, + [1113] = 963, + [1114] = 926, + [1115] = 938, + [1116] = 916, + [1117] = 920, + [1118] = 921, + [1119] = 925, + [1120] = 926, + [1121] = 914, + [1122] = 928, + [1123] = 938, + [1124] = 918, + [1125] = 919, + [1126] = 914, [1127] = 928, - [1128] = 922, - [1129] = 923, - [1130] = 924, - [1131] = 925, - [1132] = 926, - [1133] = 927, - [1134] = 928, - [1135] = 929, - [1136] = 908, - [1137] = 916, - [1138] = 931, + [1128] = 938, + [1129] = 916, + [1130] = 920, + [1131] = 921, + [1132] = 925, + [1133] = 926, + [1134] = 914, + [1135] = 928, + [1136] = 918, + [1137] = 919, + [1138] = 924, [1139] = 929, - [1140] = 908, - [1141] = 932, - [1142] = 931, - [1143] = 932, - [1144] = 933, - [1145] = 934, + [1140] = 918, + [1141] = 930, + [1142] = 924, + [1143] = 919, + [1144] = 924, + [1145] = 929, [1146] = 930, - [1147] = 914, - [1148] = 1017, - [1149] = 933, - [1150] = 912, - [1151] = 916, - [1152] = 934, - [1153] = 909, - [1154] = 913, - [1155] = 930, - [1156] = 917, - [1157] = 918, - [1158] = 914, - [1159] = 923, - [1160] = 1018, - [1161] = 910, - [1162] = 911, - [1163] = 912, - [1164] = 920, - [1165] = 921, - [1166] = 916, - [1167] = 922, - [1168] = 923, - [1169] = 924, - [1170] = 925, - [1171] = 926, - [1172] = 927, - [1173] = 928, - [1174] = 929, - [1175] = 908, - [1176] = 1176, - [1177] = 909, - [1178] = 931, - [1179] = 932, - [1180] = 933, - [1181] = 934, - [1182] = 930, - [1183] = 914, - [1184] = 963, - [1185] = 913, - [1186] = 917, - [1187] = 918, - [1188] = 916, - [1189] = 1189, - [1190] = 969, - [1191] = 964, - [1192] = 1000, + [1147] = 964, + [1148] = 965, + [1149] = 999, + [1150] = 1000, + [1151] = 966, + [1152] = 929, + [1153] = 1056, + [1154] = 1002, + [1155] = 967, + [1156] = 968, + [1157] = 995, + [1158] = 1007, + [1159] = 930, + [1160] = 980, + [1161] = 996, + [1162] = 997, + [1163] = 931, + [1164] = 932, + [1165] = 933, + [1166] = 934, + [1167] = 1002, + [1168] = 935, + [1169] = 936, + [1170] = 1004, + [1171] = 1005, + [1172] = 1003, + [1173] = 1173, + [1174] = 931, + [1175] = 932, + [1176] = 933, + [1177] = 1000, + [1178] = 998, + [1179] = 1179, + [1180] = 1008, + [1181] = 999, + [1182] = 931, + [1183] = 932, + [1184] = 933, + [1185] = 934, + [1186] = 934, + [1187] = 935, + [1188] = 936, + [1189] = 935, + [1190] = 936, + [1191] = 983, + [1192] = 927, [1193] = 1193, - [1194] = 1001, - [1195] = 1002, - [1196] = 931, - [1197] = 932, - [1198] = 909, - [1199] = 933, - [1200] = 934, - [1201] = 1003, - [1202] = 930, - [1203] = 913, - [1204] = 917, - [1205] = 914, - [1206] = 1004, - [1207] = 1019, - [1208] = 1005, - [1209] = 1006, - [1210] = 1007, - [1211] = 1008, - [1212] = 965, - [1213] = 970, - [1214] = 966, - [1215] = 967, - [1216] = 971, - [1217] = 918, - [1218] = 910, - [1219] = 1219, - [1220] = 911, - [1221] = 910, - [1222] = 911, - [1223] = 920, - [1224] = 921, - [1225] = 972, - [1226] = 973, - [1227] = 974, - [1228] = 975, - [1229] = 922, - [1230] = 1009, - [1231] = 923, - [1232] = 924, - [1233] = 920, - [1234] = 1020, - [1235] = 1010, - [1236] = 976, - [1237] = 977, - [1238] = 978, - [1239] = 925, - [1240] = 926, - [1241] = 979, - [1242] = 1011, - [1243] = 1021, - [1244] = 1012, - [1245] = 980, - [1246] = 981, - [1247] = 982, - [1248] = 968, - [1249] = 927, - [1250] = 928, - [1251] = 921, - [1252] = 983, + [1194] = 937, + [1195] = 1003, + [1196] = 940, + [1197] = 1004, + [1198] = 923, + [1199] = 981, + [1200] = 939, + [1201] = 1005, + [1202] = 944, + [1203] = 922, + [1204] = 927, + [1205] = 945, + [1206] = 1206, + [1207] = 938, + [1208] = 916, + [1209] = 946, + [1210] = 920, + [1211] = 947, + [1212] = 948, + [1213] = 921, + [1214] = 927, + [1215] = 937, + [1216] = 940, + [1217] = 923, + [1218] = 939, + [1219] = 922, + [1220] = 925, + [1221] = 938, + [1222] = 916, + [1223] = 926, + [1224] = 914, + [1225] = 920, + [1226] = 921, + [1227] = 925, + [1228] = 926, + [1229] = 914, + [1230] = 928, + [1231] = 918, + [1232] = 919, + [1233] = 924, + [1234] = 929, + [1235] = 930, + [1236] = 980, + [1237] = 931, + [1238] = 932, + [1239] = 928, + [1240] = 918, + [1241] = 933, + [1242] = 934, + [1243] = 935, + [1244] = 936, + [1245] = 919, + [1246] = 969, + [1247] = 970, + [1248] = 927, + [1249] = 916, + [1250] = 940, + [1251] = 923, + [1252] = 939, [1253] = 922, - [1254] = 969, - [1255] = 984, - [1256] = 985, - [1257] = 1015, - [1258] = 1016, - [1259] = 929, - [1260] = 923, - [1261] = 908, - [1262] = 927, - [1263] = 964, - [1264] = 965, - [1265] = 1176, - [1266] = 966, - [1267] = 967, - [1268] = 931, - [1269] = 932, - [1270] = 924, - [1271] = 912, - [1272] = 916, - [1273] = 933, - [1274] = 934, - [1275] = 909, - [1276] = 913, - [1277] = 917, - [1278] = 918, - [1279] = 930, - [1280] = 970, - [1281] = 914, - [1282] = 1013, - [1283] = 912, - [1284] = 912, - [1285] = 916, - [1286] = 909, - [1287] = 986, - [1288] = 912, - [1289] = 916, - [1290] = 909, - [1291] = 913, - [1292] = 913, - [1293] = 917, - [1294] = 917, + [1254] = 971, + [1255] = 924, + [1256] = 929, + [1257] = 938, + [1258] = 916, + [1259] = 920, + [1260] = 921, + [1261] = 925, + [1262] = 926, + [1263] = 914, + [1264] = 928, + [1265] = 918, + [1266] = 919, + [1267] = 924, + [1268] = 929, + [1269] = 930, + [1270] = 927, + [1271] = 930, + [1272] = 937, + [1273] = 931, + [1274] = 932, + [1275] = 933, + [1276] = 934, + [1277] = 935, + [1278] = 936, + [1279] = 920, + [1280] = 927, + [1281] = 937, + [1282] = 940, + [1283] = 923, + [1284] = 939, + [1285] = 922, + [1286] = 972, + [1287] = 938, + [1288] = 916, + [1289] = 920, + [1290] = 921, + [1291] = 925, + [1292] = 926, + [1293] = 914, + [1294] = 928, [1295] = 918, - [1296] = 987, - [1297] = 988, - [1298] = 925, - [1299] = 926, - [1300] = 989, - [1301] = 990, - [1302] = 910, - [1303] = 918, - [1304] = 910, - [1305] = 911, - [1306] = 920, + [1296] = 919, + [1297] = 1006, + [1298] = 929, + [1299] = 930, + [1300] = 973, + [1301] = 931, + [1302] = 932, + [1303] = 933, + [1304] = 934, + [1305] = 935, + [1306] = 936, [1307] = 921, - [1308] = 922, - [1309] = 923, - [1310] = 924, - [1311] = 925, - [1312] = 926, - [1313] = 911, - [1314] = 920, - [1315] = 927, - [1316] = 928, - [1317] = 929, - [1318] = 908, - [1319] = 971, - [1320] = 1046, - [1321] = 992, - [1322] = 927, - [1323] = 993, - [1324] = 994, - [1325] = 928, - [1326] = 921, - [1327] = 922, - [1328] = 935, - [1329] = 923, - [1330] = 995, - [1331] = 931, - [1332] = 932, - [1333] = 933, - [1334] = 934, - [1335] = 996, - [1336] = 930, - [1337] = 924, - [1338] = 925, - [1339] = 926, - [1340] = 914, - [1341] = 927, - [1342] = 928, - [1343] = 929, - [1344] = 908, - [1345] = 997, - [1346] = 972, - [1347] = 998, - [1348] = 999, - [1349] = 973, - [1350] = 929, - [1351] = 1014, - [1352] = 931, - [1353] = 932, - [1354] = 933, - [1355] = 934, - [1356] = 930, - [1357] = 914, - [1358] = 908, - [1359] = 912, - [1360] = 1360, - [1361] = 974, - [1362] = 916, - [1363] = 909, - [1364] = 913, - [1365] = 917, - [1366] = 918, - [1367] = 910, - [1368] = 911, - [1369] = 920, - [1370] = 921, - [1371] = 922, - [1372] = 923, - [1373] = 924, - [1374] = 925, + [1308] = 927, + [1309] = 937, + [1310] = 940, + [1311] = 923, + [1312] = 939, + [1313] = 922, + [1314] = 974, + [1315] = 938, + [1316] = 916, + [1317] = 920, + [1318] = 921, + [1319] = 925, + [1320] = 926, + [1321] = 914, + [1322] = 928, + [1323] = 918, + [1324] = 919, + [1325] = 924, + [1326] = 929, + [1327] = 930, + [1328] = 975, + [1329] = 931, + [1330] = 932, + [1331] = 933, + [1332] = 931, + [1333] = 934, + [1334] = 935, + [1335] = 936, + [1336] = 940, + [1337] = 932, + [1338] = 933, + [1339] = 934, + [1340] = 935, + [1341] = 936, + [1342] = 937, + [1343] = 927, + [1344] = 927, + [1345] = 937, + [1346] = 940, + [1347] = 923, + [1348] = 939, + [1349] = 922, + [1350] = 937, + [1351] = 940, + [1352] = 923, + [1353] = 976, + [1354] = 939, + [1355] = 922, + [1356] = 923, + [1357] = 938, + [1358] = 938, + [1359] = 916, + [1360] = 920, + [1361] = 921, + [1362] = 925, + [1363] = 926, + [1364] = 916, + [1365] = 914, + [1366] = 928, + [1367] = 918, + [1368] = 919, + [1369] = 924, + [1370] = 929, + [1371] = 920, + [1372] = 921, + [1373] = 925, + [1374] = 930, [1375] = 926, - [1376] = 927, + [1376] = 914, [1377] = 928, - [1378] = 929, - [1379] = 908, - [1380] = 931, - [1381] = 932, - [1382] = 933, - [1383] = 934, - [1384] = 930, - [1385] = 914, - [1386] = 912, - [1387] = 916, - [1388] = 909, - [1389] = 913, - [1390] = 910, - [1391] = 917, - [1392] = 918, - [1393] = 910, - [1394] = 911, - [1395] = 920, - [1396] = 921, - [1397] = 922, - [1398] = 923, - [1399] = 924, - [1400] = 925, - [1401] = 926, - [1402] = 927, - [1403] = 928, - [1404] = 929, - [1405] = 908, - [1406] = 931, - [1407] = 911, - [1408] = 932, - [1409] = 933, - [1410] = 934, - [1411] = 930, - [1412] = 914, - [1413] = 975, - [1414] = 926, - [1415] = 912, - [1416] = 920, - [1417] = 912, - [1418] = 916, - [1419] = 909, - [1420] = 913, - [1421] = 917, - [1422] = 918, - [1423] = 963, - [1424] = 910, - [1425] = 911, - [1426] = 920, - [1427] = 921, - [1428] = 922, - [1429] = 923, - [1430] = 924, - [1431] = 925, - [1432] = 926, - [1433] = 921, - [1434] = 927, - [1435] = 928, - [1436] = 929, - [1437] = 908, - [1438] = 931, - [1439] = 932, - [1440] = 933, - [1441] = 934, - [1442] = 922, - [1443] = 930, - [1444] = 914, - [1445] = 976, - [1446] = 912, - [1447] = 916, - [1448] = 909, - [1449] = 913, - [1450] = 917, - [1451] = 918, - [1452] = 910, - [1453] = 911, - [1454] = 920, - [1455] = 921, - [1456] = 922, - [1457] = 923, - [1458] = 924, - [1459] = 925, - [1460] = 926, - [1461] = 927, - [1462] = 928, - [1463] = 929, - [1464] = 908, - [1465] = 931, - [1466] = 932, - [1467] = 933, - [1468] = 934, - [1469] = 930, - [1470] = 914, - [1471] = 977, - [1472] = 928, - [1473] = 918, - [1474] = 1010, - [1475] = 1011, - [1476] = 1021, - [1477] = 1012, - [1478] = 963, - [1479] = 970, - [1480] = 988, - [1481] = 973, - [1482] = 971, - [1483] = 964, - [1484] = 965, - [1485] = 966, - [1486] = 967, - [1487] = 989, - [1488] = 990, - [1489] = 1013, - [1490] = 1014, - [1491] = 972, - [1492] = 968, - [1493] = 973, - [1494] = 974, - [1495] = 969, - [1496] = 975, - [1497] = 976, - [1498] = 970, - [1499] = 977, - [1500] = 978, - [1501] = 971, - [1502] = 979, - [1503] = 980, - [1504] = 972, - [1505] = 973, - [1506] = 974, - [1507] = 975, + [1378] = 918, + [1379] = 919, + [1380] = 924, + [1381] = 929, + [1382] = 930, + [1383] = 977, + [1384] = 939, + [1385] = 931, + [1386] = 932, + [1387] = 933, + [1388] = 934, + [1389] = 935, + [1390] = 936, + [1391] = 922, + [1392] = 931, + [1393] = 927, + [1394] = 937, + [1395] = 940, + [1396] = 923, + [1397] = 939, + [1398] = 922, + [1399] = 984, + [1400] = 938, + [1401] = 932, + [1402] = 916, + [1403] = 920, + [1404] = 921, + [1405] = 925, + [1406] = 926, + [1407] = 914, + [1408] = 928, + [1409] = 918, + [1410] = 933, + [1411] = 919, + [1412] = 924, + [1413] = 929, + [1414] = 930, + [1415] = 1193, + [1416] = 925, + [1417] = 931, + [1418] = 932, + [1419] = 934, + [1420] = 933, + [1421] = 934, + [1422] = 926, + [1423] = 935, + [1424] = 936, + [1425] = 944, + [1426] = 981, + [1427] = 982, + [1428] = 935, + [1429] = 978, + [1430] = 940, + [1431] = 945, + [1432] = 946, + [1433] = 947, + [1434] = 948, + [1435] = 983, + [1436] = 914, + [1437] = 936, + [1438] = 923, + [1439] = 949, + [1440] = 928, + [1441] = 918, + [1442] = 950, + [1443] = 984, + [1444] = 919, + [1445] = 951, + [1446] = 924, + [1447] = 979, + [1448] = 929, + [1449] = 953, + [1450] = 930, + [1451] = 985, + [1452] = 954, + [1453] = 955, + [1454] = 956, + [1455] = 927, + [1456] = 957, + [1457] = 958, + [1458] = 959, + [1459] = 960, + [1460] = 961, + [1461] = 962, + [1462] = 963, + [1463] = 964, + [1464] = 937, + [1465] = 965, + [1466] = 986, + [1467] = 931, + [1468] = 966, + [1469] = 987, + [1470] = 940, + [1471] = 932, + [1472] = 967, + [1473] = 923, + [1474] = 968, + [1475] = 969, + [1476] = 970, + [1477] = 971, + [1478] = 933, + [1479] = 972, + [1480] = 973, + [1481] = 988, + [1482] = 939, + [1483] = 974, + [1484] = 975, + [1485] = 989, + [1486] = 976, + [1487] = 977, + [1488] = 922, + [1489] = 978, + [1490] = 924, + [1491] = 978, + [1492] = 966, + [1493] = 967, + [1494] = 968, + [1495] = 1002, + [1496] = 1003, + [1497] = 1193, + [1498] = 1004, + [1499] = 1005, + [1500] = 969, + [1501] = 970, + [1502] = 971, + [1503] = 972, + [1504] = 973, + [1505] = 974, + [1506] = 975, + [1507] = 949, [1508] = 976, [1509] = 977, [1510] = 978, @@ -3595,2495 +3601,2652 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1512] = 980, [1513] = 981, [1514] = 982, - [1515] = 981, - [1516] = 982, - [1517] = 983, - [1518] = 974, - [1519] = 1046, - [1520] = 984, - [1521] = 985, - [1522] = 1015, - [1523] = 1016, - [1524] = 1176, - [1525] = 983, - [1526] = 1017, - [1527] = 1018, - [1528] = 986, - [1529] = 987, - [1530] = 988, - [1531] = 992, - [1532] = 989, - [1533] = 990, - [1534] = 1013, - [1535] = 1046, - [1536] = 992, - [1537] = 984, - [1538] = 993, - [1539] = 994, - [1540] = 985, - [1541] = 935, - [1542] = 995, - [1543] = 996, - [1544] = 997, - [1545] = 1015, - [1546] = 998, - [1547] = 999, - [1548] = 1016, - [1549] = 1000, - [1550] = 1001, - [1551] = 1002, - [1552] = 1003, - [1553] = 1004, - [1554] = 1019, - [1555] = 1005, - [1556] = 1006, - [1557] = 1007, - [1558] = 1008, - [1559] = 1009, - [1560] = 1020, - [1561] = 1010, - [1562] = 1011, - [1563] = 1021, - [1564] = 1012, - [1565] = 963, - [1566] = 1176, - [1567] = 993, - [1568] = 1017, - [1569] = 1018, - [1570] = 986, - [1571] = 964, - [1572] = 965, - [1573] = 966, - [1574] = 967, - [1575] = 987, - [1576] = 988, - [1577] = 1013, - [1578] = 994, - [1579] = 1014, - [1580] = 989, - [1581] = 968, - [1582] = 990, - [1583] = 977, - [1584] = 969, - [1585] = 1046, - [1586] = 992, - [1587] = 970, - [1588] = 935, - [1589] = 993, - [1590] = 971, - [1591] = 994, - [1592] = 995, - [1593] = 972, - [1594] = 973, - [1595] = 974, - [1596] = 975, - [1597] = 976, - [1598] = 977, - [1599] = 978, - [1600] = 979, - [1601] = 980, - [1602] = 981, - [1603] = 982, - [1604] = 935, - [1605] = 995, - [1606] = 983, - [1607] = 996, - [1608] = 997, - [1609] = 984, - [1610] = 985, - [1611] = 1015, - [1612] = 1016, - [1613] = 996, + [1515] = 983, + [1516] = 984, + [1517] = 950, + [1518] = 985, + [1519] = 986, + [1520] = 987, + [1521] = 988, + [1522] = 989, + [1523] = 1006, + [1524] = 990, + [1525] = 991, + [1526] = 992, + [1527] = 993, + [1528] = 994, + [1529] = 995, + [1530] = 1007, + [1531] = 996, + [1532] = 997, + [1533] = 998, + [1534] = 1008, + [1535] = 999, + [1536] = 944, + [1537] = 951, + [1538] = 945, + [1539] = 946, + [1540] = 947, + [1541] = 948, + [1542] = 953, + [1543] = 1000, + [1544] = 1056, + [1545] = 954, + [1546] = 949, + [1547] = 955, + [1548] = 950, + [1549] = 956, + [1550] = 957, + [1551] = 951, + [1552] = 958, + [1553] = 959, + [1554] = 953, + [1555] = 960, + [1556] = 961, + [1557] = 954, + [1558] = 955, + [1559] = 956, + [1560] = 957, + [1561] = 958, + [1562] = 959, + [1563] = 960, + [1564] = 961, + [1565] = 962, + [1566] = 963, + [1567] = 964, + [1568] = 965, + [1569] = 962, + [1570] = 964, + [1571] = 966, + [1572] = 964, + [1573] = 967, + [1574] = 968, + [1575] = 1002, + [1576] = 1003, + [1577] = 1193, + [1578] = 965, + [1579] = 1004, + [1580] = 1005, + [1581] = 969, + [1582] = 970, + [1583] = 971, + [1584] = 972, + [1585] = 973, + [1586] = 974, + [1587] = 975, + [1588] = 966, + [1589] = 976, + [1590] = 977, + [1591] = 978, + [1592] = 979, + [1593] = 980, + [1594] = 981, + [1595] = 982, + [1596] = 983, + [1597] = 984, + [1598] = 967, + [1599] = 985, + [1600] = 986, + [1601] = 987, + [1602] = 988, + [1603] = 989, + [1604] = 1006, + [1605] = 990, + [1606] = 991, + [1607] = 992, + [1608] = 993, + [1609] = 994, + [1610] = 995, + [1611] = 1007, + [1612] = 996, + [1613] = 997, [1614] = 998, - [1615] = 1017, - [1616] = 1018, - [1617] = 986, - [1618] = 987, - [1619] = 988, - [1620] = 999, - [1621] = 989, - [1622] = 990, - [1623] = 997, - [1624] = 1046, - [1625] = 992, - [1626] = 1000, - [1627] = 993, - [1628] = 994, - [1629] = 1001, - [1630] = 935, - [1631] = 995, - [1632] = 996, - [1633] = 997, - [1634] = 1002, - [1635] = 998, - [1636] = 999, - [1637] = 1003, - [1638] = 1000, - [1639] = 1001, - [1640] = 1002, - [1641] = 1003, - [1642] = 1004, - [1643] = 1019, - [1644] = 1005, - [1645] = 1006, - [1646] = 1007, - [1647] = 1008, - [1648] = 1009, - [1649] = 1020, - [1650] = 1010, - [1651] = 1011, - [1652] = 1021, - [1653] = 1012, - [1654] = 1004, - [1655] = 1019, - [1656] = 1005, - [1657] = 1006, - [1658] = 1007, - [1659] = 1008, - [1660] = 1009, - [1661] = 1020, - [1662] = 1010, - [1663] = 1011, - [1664] = 1021, - [1665] = 1013, - [1666] = 1014, - [1667] = 1012, - [1668] = 963, - [1669] = 1014, - [1670] = 998, - [1671] = 999, - [1672] = 975, - [1673] = 1000, - [1674] = 964, - [1675] = 965, - [1676] = 966, - [1677] = 967, - [1678] = 1001, - [1679] = 1002, - [1680] = 1013, - [1681] = 984, - [1682] = 1014, - [1683] = 1003, - [1684] = 968, - [1685] = 1004, - [1686] = 1019, - [1687] = 969, - [1688] = 1005, - [1689] = 1006, - [1690] = 970, - [1691] = 1007, - [1692] = 1008, - [1693] = 971, - [1694] = 1009, - [1695] = 1020, - [1696] = 972, - [1697] = 973, - [1698] = 1015, - [1699] = 1016, - [1700] = 1017, - [1701] = 1018, - [1702] = 974, - [1703] = 975, - [1704] = 976, - [1705] = 977, - [1706] = 978, - [1707] = 979, - [1708] = 980, - [1709] = 981, - [1710] = 982, - [1711] = 1010, - [1712] = 1011, - [1713] = 983, - [1714] = 1021, - [1715] = 1012, - [1716] = 984, - [1717] = 985, - [1718] = 1015, - [1719] = 1016, - [1720] = 1176, - [1721] = 985, - [1722] = 1017, - [1723] = 1018, - [1724] = 986, - [1725] = 987, - [1726] = 988, - [1727] = 979, - [1728] = 989, - [1729] = 990, - [1730] = 1046, - [1731] = 992, - [1732] = 963, - [1733] = 993, - [1734] = 994, - [1735] = 980, - [1736] = 935, - [1737] = 995, - [1738] = 912, - [1739] = 916, - [1740] = 909, - [1741] = 913, - [1742] = 917, - [1743] = 996, - [1744] = 997, + [1615] = 1008, + [1616] = 999, + [1617] = 944, + [1618] = 968, + [1619] = 1002, + [1620] = 1003, + [1621] = 945, + [1622] = 946, + [1623] = 947, + [1624] = 948, + [1625] = 1000, + [1626] = 1056, + [1627] = 949, + [1628] = 950, + [1629] = 1193, + [1630] = 951, + [1631] = 953, + [1632] = 954, + [1633] = 955, + [1634] = 956, + [1635] = 957, + [1636] = 958, + [1637] = 959, + [1638] = 960, + [1639] = 961, + [1640] = 962, + [1641] = 963, + [1642] = 964, + [1643] = 965, + [1644] = 966, + [1645] = 967, + [1646] = 968, + [1647] = 1002, + [1648] = 1003, + [1649] = 1193, + [1650] = 1004, + [1651] = 1005, + [1652] = 969, + [1653] = 970, + [1654] = 971, + [1655] = 972, + [1656] = 973, + [1657] = 974, + [1658] = 975, + [1659] = 976, + [1660] = 977, + [1661] = 978, + [1662] = 979, + [1663] = 980, + [1664] = 981, + [1665] = 982, + [1666] = 983, + [1667] = 984, + [1668] = 985, + [1669] = 986, + [1670] = 987, + [1671] = 988, + [1672] = 989, + [1673] = 1006, + [1674] = 990, + [1675] = 991, + [1676] = 992, + [1677] = 993, + [1678] = 994, + [1679] = 995, + [1680] = 1007, + [1681] = 996, + [1682] = 997, + [1683] = 998, + [1684] = 1008, + [1685] = 999, + [1686] = 944, + [1687] = 945, + [1688] = 946, + [1689] = 947, + [1690] = 948, + [1691] = 1000, + [1692] = 1056, + [1693] = 949, + [1694] = 969, + [1695] = 950, + [1696] = 970, + [1697] = 971, + [1698] = 951, + [1699] = 972, + [1700] = 953, + [1701] = 973, + [1702] = 954, + [1703] = 955, + [1704] = 956, + [1705] = 957, + [1706] = 958, + [1707] = 959, + [1708] = 960, + [1709] = 961, + [1710] = 962, + [1711] = 963, + [1712] = 964, + [1713] = 965, + [1714] = 974, + [1715] = 975, + [1716] = 966, + [1717] = 976, + [1718] = 967, + [1719] = 968, + [1720] = 1002, + [1721] = 1003, + [1722] = 1193, + [1723] = 977, + [1724] = 1004, + [1725] = 1005, + [1726] = 969, + [1727] = 970, + [1728] = 971, + [1729] = 972, + [1730] = 973, + [1731] = 978, + [1732] = 974, + [1733] = 975, + [1734] = 976, + [1735] = 977, + [1736] = 979, + [1737] = 978, + [1738] = 979, + [1739] = 980, + [1740] = 981, + [1741] = 982, + [1742] = 980, + [1743] = 983, + [1744] = 984, [1745] = 981, - [1746] = 910, - [1747] = 911, - [1748] = 920, - [1749] = 921, - [1750] = 922, - [1751] = 923, - [1752] = 924, - [1753] = 925, - [1754] = 926, - [1755] = 927, - [1756] = 928, - [1757] = 929, - [1758] = 908, - [1759] = 998, - [1760] = 999, - [1761] = 968, - [1762] = 1000, - [1763] = 931, - [1764] = 932, - [1765] = 933, - [1766] = 934, - [1767] = 930, - [1768] = 914, - [1769] = 1001, - [1770] = 1002, - [1771] = 1003, - [1772] = 1004, - [1773] = 1019, - [1774] = 1005, - [1775] = 1006, - [1776] = 1007, - [1777] = 1008, - [1778] = 1009, - [1779] = 1020, - [1780] = 1010, - [1781] = 1011, - [1782] = 1021, - [1783] = 1012, - [1784] = 963, - [1785] = 1015, - [1786] = 246, - [1787] = 963, - [1788] = 969, + [1746] = 985, + [1747] = 986, + [1748] = 987, + [1749] = 988, + [1750] = 989, + [1751] = 1006, + [1752] = 990, + [1753] = 991, + [1754] = 992, + [1755] = 993, + [1756] = 994, + [1757] = 995, + [1758] = 1007, + [1759] = 996, + [1760] = 997, + [1761] = 998, + [1762] = 1008, + [1763] = 999, + [1764] = 944, + [1765] = 982, + [1766] = 983, + [1767] = 984, + [1768] = 945, + [1769] = 946, + [1770] = 947, + [1771] = 948, + [1772] = 1000, + [1773] = 1056, + [1774] = 949, + [1775] = 950, + [1776] = 941, + [1777] = 951, + [1778] = 953, + [1779] = 954, + [1780] = 955, + [1781] = 956, + [1782] = 957, + [1783] = 958, + [1784] = 959, + [1785] = 960, + [1786] = 961, + [1787] = 962, + [1788] = 963, [1789] = 964, - [1790] = 964, - [1791] = 965, - [1792] = 966, - [1793] = 967, - [1794] = 965, - [1795] = 966, - [1796] = 1013, - [1797] = 1016, - [1798] = 1014, - [1799] = 967, - [1800] = 968, - [1801] = 976, - [1802] = 969, - [1803] = 1013, - [1804] = 982, - [1805] = 970, - [1806] = 1014, - [1807] = 970, - [1808] = 971, - [1809] = 968, - [1810] = 971, - [1811] = 972, - [1812] = 973, - [1813] = 974, - [1814] = 975, - [1815] = 976, - [1816] = 977, - [1817] = 978, - [1818] = 979, - [1819] = 980, - [1820] = 981, - [1821] = 982, - [1822] = 1021, - [1823] = 969, - [1824] = 983, - [1825] = 971, - [1826] = 1012, - [1827] = 984, - [1828] = 985, - [1829] = 1015, - [1830] = 1016, - [1831] = 1176, - [1832] = 1017, - [1833] = 1018, - [1834] = 986, - [1835] = 987, - [1836] = 988, - [1837] = 970, - [1838] = 989, - [1839] = 990, - [1840] = 972, - [1841] = 1046, - [1842] = 992, - [1843] = 972, - [1844] = 993, - [1845] = 994, - [1846] = 971, - [1847] = 935, - [1848] = 995, - [1849] = 996, - [1850] = 997, - [1851] = 973, - [1852] = 998, - [1853] = 999, - [1854] = 974, - [1855] = 1000, - [1856] = 1001, - [1857] = 1002, - [1858] = 1003, - [1859] = 986, - [1860] = 987, - [1861] = 988, - [1862] = 1004, - [1863] = 989, - [1864] = 990, - [1865] = 1019, - [1866] = 1046, - [1867] = 992, - [1868] = 1005, - [1869] = 1006, - [1870] = 993, - [1871] = 994, - [1872] = 1007, - [1873] = 935, - [1874] = 1008, - [1875] = 995, - [1876] = 996, - [1877] = 997, - [1878] = 1009, - [1879] = 998, - [1880] = 1020, - [1881] = 1010, - [1882] = 999, - [1883] = 1011, - [1884] = 1021, - [1885] = 1012, - [1886] = 972, - [1887] = 963, - [1888] = 973, - [1889] = 974, - [1890] = 975, - [1891] = 976, - [1892] = 977, - [1893] = 978, - [1894] = 964, - [1895] = 965, - [1896] = 966, - [1897] = 967, - [1898] = 979, - [1899] = 980, - [1900] = 1000, - [1901] = 1001, - [1902] = 1002, - [1903] = 1013, - [1904] = 981, - [1905] = 1003, - [1906] = 1004, - [1907] = 1019, - [1908] = 1005, - [1909] = 1006, - [1910] = 1007, - [1911] = 1008, - [1912] = 1014, - [1913] = 982, - [1914] = 968, - [1915] = 975, - [1916] = 976, - [1917] = 969, - [1918] = 983, - [1919] = 977, - [1920] = 970, - [1921] = 978, - [1922] = 984, - [1923] = 971, - [1924] = 1009, - [1925] = 1020, - [1926] = 1010, - [1927] = 985, - [1928] = 1015, - [1929] = 1011, - [1930] = 1021, - [1931] = 1012, - [1932] = 972, - [1933] = 1011, - [1934] = 974, - [1935] = 975, - [1936] = 976, - [1937] = 977, - [1938] = 978, - [1939] = 979, - [1940] = 980, - [1941] = 981, - [1942] = 982, - [1943] = 963, - [1944] = 1016, - [1945] = 1176, - [1946] = 983, - [1947] = 979, - [1948] = 1017, - [1949] = 984, - [1950] = 985, - [1951] = 1015, - [1952] = 1016, - [1953] = 1176, - [1954] = 963, - [1955] = 1176, - [1956] = 1017, - [1957] = 1018, - [1958] = 986, - [1959] = 987, - [1960] = 988, - [1961] = 1018, - [1962] = 989, - [1963] = 990, - [1964] = 986, - [1965] = 1046, - [1966] = 992, - [1967] = 987, - [1968] = 993, - [1969] = 994, - [1970] = 988, - [1971] = 935, + [1790] = 965, + [1791] = 966, + [1792] = 967, + [1793] = 968, + [1794] = 1002, + [1795] = 1003, + [1796] = 1193, + [1797] = 1004, + [1798] = 1005, + [1799] = 969, + [1800] = 970, + [1801] = 971, + [1802] = 972, + [1803] = 973, + [1804] = 974, + [1805] = 975, + [1806] = 976, + [1807] = 977, + [1808] = 978, + [1809] = 979, + [1810] = 980, + [1811] = 981, + [1812] = 982, + [1813] = 983, + [1814] = 984, + [1815] = 985, + [1816] = 986, + [1817] = 987, + [1818] = 988, + [1819] = 989, + [1820] = 1006, + [1821] = 990, + [1822] = 991, + [1823] = 992, + [1824] = 993, + [1825] = 994, + [1826] = 995, + [1827] = 1007, + [1828] = 996, + [1829] = 997, + [1830] = 998, + [1831] = 1008, + [1832] = 999, + [1833] = 944, + [1834] = 945, + [1835] = 946, + [1836] = 947, + [1837] = 948, + [1838] = 1000, + [1839] = 1056, + [1840] = 949, + [1841] = 985, + [1842] = 950, + [1843] = 986, + [1844] = 987, + [1845] = 951, + [1846] = 988, + [1847] = 989, + [1848] = 953, + [1849] = 1006, + [1850] = 990, + [1851] = 954, + [1852] = 955, + [1853] = 956, + [1854] = 957, + [1855] = 958, + [1856] = 959, + [1857] = 960, + [1858] = 961, + [1859] = 962, + [1860] = 963, + [1861] = 964, + [1862] = 965, + [1863] = 991, + [1864] = 992, + [1865] = 966, + [1866] = 993, + [1867] = 994, + [1868] = 967, + [1869] = 968, + [1870] = 1002, + [1871] = 1003, + [1872] = 1193, + [1873] = 1004, + [1874] = 1005, + [1875] = 969, + [1876] = 970, + [1877] = 971, + [1878] = 972, + [1879] = 973, + [1880] = 974, + [1881] = 975, + [1882] = 976, + [1883] = 977, + [1884] = 978, + [1885] = 979, + [1886] = 980, + [1887] = 981, + [1888] = 982, + [1889] = 983, + [1890] = 984, + [1891] = 985, + [1892] = 986, + [1893] = 987, + [1894] = 988, + [1895] = 989, + [1896] = 1006, + [1897] = 990, + [1898] = 991, + [1899] = 992, + [1900] = 993, + [1901] = 994, + [1902] = 995, + [1903] = 1007, + [1904] = 996, + [1905] = 997, + [1906] = 998, + [1907] = 1008, + [1908] = 999, + [1909] = 944, + [1910] = 945, + [1911] = 946, + [1912] = 947, + [1913] = 948, + [1914] = 1000, + [1915] = 1056, + [1916] = 949, + [1917] = 950, + [1918] = 995, + [1919] = 951, + [1920] = 1007, + [1921] = 953, + [1922] = 996, + [1923] = 997, + [1924] = 954, + [1925] = 955, + [1926] = 956, + [1927] = 957, + [1928] = 958, + [1929] = 959, + [1930] = 960, + [1931] = 961, + [1932] = 962, + [1933] = 963, + [1934] = 964, + [1935] = 965, + [1936] = 966, + [1937] = 967, + [1938] = 968, + [1939] = 1002, + [1940] = 1003, + [1941] = 1004, + [1942] = 1005, + [1943] = 969, + [1944] = 970, + [1945] = 971, + [1946] = 972, + [1947] = 973, + [1948] = 998, + [1949] = 974, + [1950] = 975, + [1951] = 1008, + [1952] = 976, + [1953] = 977, + [1954] = 999, + [1955] = 979, + [1956] = 980, + [1957] = 981, + [1958] = 982, + [1959] = 983, + [1960] = 984, + [1961] = 985, + [1962] = 986, + [1963] = 987, + [1964] = 988, + [1965] = 989, + [1966] = 1006, + [1967] = 990, + [1968] = 991, + [1969] = 992, + [1970] = 993, + [1971] = 994, [1972] = 995, - [1973] = 964, - [1974] = 965, - [1975] = 966, - [1976] = 967, - [1977] = 996, - [1978] = 997, - [1979] = 980, - [1980] = 998, - [1981] = 999, - [1982] = 989, - [1983] = 1000, - [1984] = 1001, - [1985] = 1002, - [1986] = 1003, - [1987] = 1004, - [1988] = 1019, - [1989] = 1005, - [1990] = 1006, - [1991] = 1007, - [1992] = 964, - [1993] = 1008, - [1994] = 1009, - [1995] = 965, - [1996] = 966, - [1997] = 967, - [1998] = 1020, - [1999] = 1010, - [2000] = 1013, - [2001] = 1011, - [2002] = 1021, - [2003] = 1014, - [2004] = 1012, - [2005] = 963, - [2006] = 990, - [2007] = 981, - [2008] = 1046, - [2009] = 992, - [2010] = 982, - [2011] = 968, - [2012] = 964, - [2013] = 965, - [2014] = 969, - [2015] = 966, - [2016] = 967, - [2017] = 970, - [2018] = 993, - [2019] = 994, - [2020] = 971, - [2021] = 1013, - [2022] = 972, - [2023] = 973, - [2024] = 1014, - [2025] = 964, - [2026] = 974, - [2027] = 975, - [2028] = 976, - [2029] = 977, - [2030] = 978, - [2031] = 979, - [2032] = 980, - [2033] = 981, - [2034] = 982, - [2035] = 968, - [2036] = 935, - [2037] = 983, - [2038] = 995, - [2039] = 969, - [2040] = 984, - [2041] = 985, - [2042] = 996, - [2043] = 997, - [2044] = 970, - [2045] = 965, - [2046] = 998, - [2047] = 1176, - [2048] = 971, - [2049] = 999, - [2050] = 983, - [2051] = 972, - [2052] = 973, - [2053] = 974, - [2054] = 1017, - [2055] = 1018, - [2056] = 975, - [2057] = 986, - [2058] = 987, - [2059] = 988, - [2060] = 976, - [2061] = 989, - [2062] = 990, - [2063] = 977, - [2064] = 1046, - [2065] = 992, - [2066] = 978, - [2067] = 993, - [2068] = 994, - [2069] = 979, - [2070] = 935, - [2071] = 980, - [2072] = 995, - [2073] = 996, - [2074] = 997, - [2075] = 981, - [2076] = 998, - [2077] = 999, - [2078] = 982, - [2079] = 1000, - [2080] = 1001, - [2081] = 983, - [2082] = 1002, - [2083] = 1003, - [2084] = 984, - [2085] = 985, - [2086] = 1015, - [2087] = 1016, - [2088] = 1176, - [2089] = 1017, - [2090] = 1018, - [2091] = 986, - [2092] = 987, - [2093] = 988, - [2094] = 1004, - [2095] = 989, - [2096] = 990, - [2097] = 1019, - [2098] = 1046, - [2099] = 992, - [2100] = 1005, - [2101] = 993, - [2102] = 1000, - [2103] = 1001, - [2104] = 1002, - [2105] = 1003, - [2106] = 994, - [2107] = 1004, - [2108] = 1019, - [2109] = 1005, - [2110] = 1006, - [2111] = 1007, - [2112] = 1008, - [2113] = 1006, - [2114] = 935, - [2115] = 995, - [2116] = 996, - [2117] = 997, - [2118] = 1007, - [2119] = 998, - [2120] = 999, - [2121] = 1008, - [2122] = 1000, - [2123] = 1001, - [2124] = 1037, - [2125] = 1002, - [2126] = 1003, - [2127] = 1004, - [2128] = 1019, - [2129] = 1005, - [2130] = 1006, - [2131] = 1007, - [2132] = 1008, - [2133] = 1009, - [2134] = 1020, - [2135] = 1010, - [2136] = 1011, - [2137] = 1021, - [2138] = 1012, - [2139] = 963, - [2140] = 1009, - [2141] = 1020, - [2142] = 1010, - [2143] = 1011, - [2144] = 1021, - [2145] = 964, - [2146] = 965, - [2147] = 966, - [2148] = 967, - [2149] = 1012, - [2150] = 968, - [2151] = 963, - [2152] = 1013, - [2153] = 966, - [2154] = 1014, - [2155] = 967, - [2156] = 968, - [2157] = 984, - [2158] = 985, - [2159] = 969, - [2160] = 1015, - [2161] = 964, - [2162] = 970, - [2163] = 965, - [2164] = 966, - [2165] = 971, - [2166] = 967, - [2167] = 1016, - [2168] = 972, - [2169] = 973, - [2170] = 974, - [2171] = 975, - [2172] = 976, - [2173] = 977, - [2174] = 978, - [2175] = 979, - [2176] = 980, - [2177] = 969, - [2178] = 981, - [2179] = 982, - [2180] = 1176, - [2181] = 1013, - [2182] = 983, - [2183] = 983, - [2184] = 1014, - [2185] = 984, - [2186] = 985, - [2187] = 1015, - [2188] = 1016, - [2189] = 1176, - [2190] = 978, - [2191] = 1017, - [2192] = 1018, - [2193] = 986, - [2194] = 987, - [2195] = 988, - [2196] = 968, - [2197] = 989, - [2198] = 990, - [2199] = 1017, - [2200] = 1046, - [2201] = 992, - [2202] = 1018, - [2203] = 993, - [2204] = 1009, - [2205] = 994, - [2206] = 969, - [2207] = 935, - [2208] = 995, - [2209] = 996, - [2210] = 997, - [2211] = 986, - [2212] = 998, - [2213] = 1020, - [2214] = 999, - [2215] = 987, - [2216] = 1000, - [2217] = 1001, - [2218] = 1002, - [2219] = 1003, - [2220] = 1004, - [2221] = 1019, - [2222] = 1010, - [2223] = 1005, - [2224] = 1006, - [2225] = 1007, - [2226] = 1008, - [2227] = 1009, - [2228] = 970, - [2229] = 1020, - [2230] = 973, - [2231] = 1009, - [2232] = 989, - [2233] = 990, - [2234] = 967, - [2235] = 1046, - [2236] = 992, - [2237] = 993, - [2238] = 347, - [2239] = 994, - [2240] = 971, - [2241] = 935, - [2242] = 995, - [2243] = 996, - [2244] = 997, - [2245] = 963, - [2246] = 246, - [2247] = 998, - [2248] = 1015, - [2249] = 1016, - [2250] = 1017, - [2251] = 1018, - [2252] = 999, - [2253] = 1000, - [2254] = 1037, - [2255] = 1001, - [2256] = 1002, - [2257] = 1003, - [2258] = 1004, - [2259] = 1005, - [2260] = 1006, - [2261] = 1007, - [2262] = 1008, - [2263] = 988, - [2264] = 970, - [2265] = 1011, - [2266] = 1012, - [2267] = 972, - [2268] = 973, - [2269] = 1189, - [2270] = 974, - [2271] = 975, - [2272] = 976, - [2273] = 1193, - [2274] = 977, - [2275] = 978, - [2276] = 1360, - [2277] = 979, - [2278] = 980, - [2279] = 981, - [2280] = 1019, - [2281] = 982, - [2282] = 1013, - [2283] = 1014, - [2284] = 1020, - [2285] = 983, - [2286] = 968, - [2287] = 1021, - [2288] = 984, - [2289] = 985, - [2290] = 964, - [2291] = 969, - [2292] = 965, - [2293] = 1219, - [2294] = 966, - [2295] = 986, - [2296] = 987, - [2297] = 1010, - [2298] = 347, - [2299] = 2299, - [2300] = 2300, - [2301] = 2301, - [2302] = 2302, - [2303] = 2303, - [2304] = 2304, - [2305] = 2305, - [2306] = 2306, - [2307] = 2307, - [2308] = 2308, - [2309] = 2307, - [2310] = 2310, - [2311] = 2306, - [2312] = 2307, - [2313] = 2306, - [2314] = 2307, - [2315] = 2306, - [2316] = 2307, - [2317] = 2306, - [2318] = 2307, - [2319] = 2306, - [2320] = 2310, - [2321] = 2306, - [2322] = 2308, - [2323] = 2307, - [2324] = 2306, - [2325] = 2308, - [2326] = 2307, - [2327] = 2310, - [2328] = 2306, - [2329] = 2308, - [2330] = 2310, - [2331] = 2306, - [2332] = 2307, - [2333] = 2308, - [2334] = 2307, - [2335] = 2310, - [2336] = 2308, - [2337] = 2307, - [2338] = 2310, - [2339] = 2306, - [2340] = 2306, - [2341] = 2308, - [2342] = 2308, - [2343] = 2307, - [2344] = 2307, - [2345] = 2310, - [2346] = 2306, - [2347] = 2308, - [2348] = 2307, - [2349] = 2310, - [2350] = 2306, - [2351] = 2308, - [2352] = 2307, - [2353] = 2310, - [2354] = 2308, - [2355] = 2307, - [2356] = 2310, - [2357] = 2306, - [2358] = 2308, - [2359] = 2307, - [2360] = 2308, - [2361] = 2307, - [2362] = 2310, - [2363] = 2310, - [2364] = 2306, - [2365] = 2306, - [2366] = 2308, - [2367] = 2307, - [2368] = 2310, - [2369] = 2306, - [2370] = 2306, - [2371] = 2310, - [2372] = 2308, - [2373] = 2307, - [2374] = 2310, - [2375] = 2306, - [2376] = 2308, - [2377] = 2310, - [2378] = 2378, - [2379] = 2378, - [2380] = 2378, - [2381] = 2378, - [2382] = 2378, - [2383] = 2378, - [2384] = 2378, - [2385] = 2378, - [2386] = 2378, - [2387] = 2378, - [2388] = 2378, - [2389] = 2378, - [2390] = 2378, - [2391] = 2378, - [2392] = 2378, - [2393] = 2378, - [2394] = 2378, - [2395] = 2395, - [2396] = 2395, - [2397] = 2395, - [2398] = 2395, - [2399] = 2395, - [2400] = 2395, - [2401] = 2395, - [2402] = 2395, - [2403] = 2395, - [2404] = 2395, - [2405] = 2395, - [2406] = 2395, - [2407] = 2395, - [2408] = 2395, - [2409] = 2395, - [2410] = 2410, - [2411] = 2395, - [2412] = 2395, - [2413] = 2413, - [2414] = 2414, - [2415] = 2415, - [2416] = 2416, - [2417] = 2415, - [2418] = 2416, - [2419] = 2419, - [2420] = 2420, - [2421] = 2421, - [2422] = 2421, - [2423] = 2421, - [2424] = 2421, - [2425] = 2421, - [2426] = 2419, - [2427] = 2419, - [2428] = 2419, - [2429] = 2421, - [2430] = 2421, - [2431] = 2421, - [2432] = 2421, - [2433] = 2419, - [2434] = 2421, - [2435] = 2419, - [2436] = 2436, - [2437] = 2421, - [2438] = 2438, - [2439] = 2419, - [2440] = 2419, - [2441] = 2419, - [2442] = 2421, - [2443] = 2419, - [2444] = 246, - [2445] = 2419, - [2446] = 2419, - [2447] = 2421, - [2448] = 2421, - [2449] = 2419, - [2450] = 2419, - [2451] = 2421, - [2452] = 2421, - [2453] = 2419, - [2454] = 2419, - [2455] = 2455, - [2456] = 2456, - [2457] = 2456, - [2458] = 2456, - [2459] = 2456, - [2460] = 2460, - [2461] = 2461, - [2462] = 2456, - [2463] = 347, - [2464] = 2456, + [1973] = 1007, + [1974] = 996, + [1975] = 997, + [1976] = 998, + [1977] = 1008, + [1978] = 999, + [1979] = 1000, + [1980] = 1056, + [1981] = 944, + [1982] = 1002, + [1983] = 1003, + [1984] = 1004, + [1985] = 1005, + [1986] = 945, + [1987] = 946, + [1988] = 947, + [1989] = 948, + [1990] = 927, + [1991] = 937, + [1992] = 940, + [1993] = 923, + [1994] = 939, + [1995] = 922, + [1996] = 938, + [1997] = 916, + [1998] = 920, + [1999] = 921, + [2000] = 925, + [2001] = 926, + [2002] = 914, + [2003] = 928, + [2004] = 918, + [2005] = 919, + [2006] = 924, + [2007] = 929, + [2008] = 930, + [2009] = 931, + [2010] = 932, + [2011] = 933, + [2012] = 934, + [2013] = 935, + [2014] = 936, + [2015] = 1056, + [2016] = 949, + [2017] = 950, + [2018] = 951, + [2019] = 953, + [2020] = 954, + [2021] = 955, + [2022] = 956, + [2023] = 957, + [2024] = 958, + [2025] = 959, + [2026] = 960, + [2027] = 961, + [2028] = 962, + [2029] = 963, + [2030] = 964, + [2031] = 965, + [2032] = 966, + [2033] = 967, + [2034] = 968, + [2035] = 1193, + [2036] = 1004, + [2037] = 1005, + [2038] = 969, + [2039] = 970, + [2040] = 971, + [2041] = 972, + [2042] = 973, + [2043] = 974, + [2044] = 975, + [2045] = 976, + [2046] = 977, + [2047] = 978, + [2048] = 979, + [2049] = 980, + [2050] = 981, + [2051] = 982, + [2052] = 983, + [2053] = 984, + [2054] = 985, + [2055] = 986, + [2056] = 987, + [2057] = 988, + [2058] = 989, + [2059] = 1006, + [2060] = 990, + [2061] = 991, + [2062] = 992, + [2063] = 993, + [2064] = 994, + [2065] = 995, + [2066] = 1007, + [2067] = 996, + [2068] = 997, + [2069] = 998, + [2070] = 1008, + [2071] = 999, + [2072] = 944, + [2073] = 945, + [2074] = 946, + [2075] = 947, + [2076] = 948, + [2077] = 1000, + [2078] = 1056, + [2079] = 949, + [2080] = 944, + [2081] = 950, + [2082] = 951, + [2083] = 953, + [2084] = 954, + [2085] = 955, + [2086] = 956, + [2087] = 957, + [2088] = 958, + [2089] = 959, + [2090] = 960, + [2091] = 961, + [2092] = 962, + [2093] = 963, + [2094] = 964, + [2095] = 965, + [2096] = 966, + [2097] = 967, + [2098] = 968, + [2099] = 1002, + [2100] = 1003, + [2101] = 1193, + [2102] = 1004, + [2103] = 1005, + [2104] = 969, + [2105] = 970, + [2106] = 971, + [2107] = 972, + [2108] = 973, + [2109] = 974, + [2110] = 975, + [2111] = 976, + [2112] = 977, + [2113] = 978, + [2114] = 979, + [2115] = 980, + [2116] = 981, + [2117] = 982, + [2118] = 983, + [2119] = 984, + [2120] = 985, + [2121] = 986, + [2122] = 987, + [2123] = 988, + [2124] = 989, + [2125] = 1006, + [2126] = 990, + [2127] = 991, + [2128] = 992, + [2129] = 993, + [2130] = 994, + [2131] = 995, + [2132] = 1007, + [2133] = 996, + [2134] = 997, + [2135] = 998, + [2136] = 1008, + [2137] = 999, + [2138] = 212, + [2139] = 944, + [2140] = 945, + [2141] = 946, + [2142] = 947, + [2143] = 948, + [2144] = 1000, + [2145] = 1056, + [2146] = 949, + [2147] = 950, + [2148] = 951, + [2149] = 953, + [2150] = 954, + [2151] = 955, + [2152] = 956, + [2153] = 957, + [2154] = 958, + [2155] = 959, + [2156] = 960, + [2157] = 961, + [2158] = 962, + [2159] = 963, + [2160] = 964, + [2161] = 965, + [2162] = 966, + [2163] = 967, + [2164] = 968, + [2165] = 1002, + [2166] = 1003, + [2167] = 1193, + [2168] = 1004, + [2169] = 1005, + [2170] = 969, + [2171] = 970, + [2172] = 971, + [2173] = 972, + [2174] = 973, + [2175] = 945, + [2176] = 974, + [2177] = 975, + [2178] = 946, + [2179] = 976, + [2180] = 977, + [2181] = 978, + [2182] = 979, + [2183] = 980, + [2184] = 981, + [2185] = 982, + [2186] = 983, + [2187] = 984, + [2188] = 947, + [2189] = 985, + [2190] = 986, + [2191] = 987, + [2192] = 988, + [2193] = 989, + [2194] = 1006, + [2195] = 990, + [2196] = 991, + [2197] = 992, + [2198] = 993, + [2199] = 994, + [2200] = 995, + [2201] = 1007, + [2202] = 996, + [2203] = 997, + [2204] = 998, + [2205] = 1008, + [2206] = 999, + [2207] = 944, + [2208] = 948, + [2209] = 1000, + [2210] = 945, + [2211] = 946, + [2212] = 947, + [2213] = 948, + [2214] = 1000, + [2215] = 1056, + [2216] = 949, + [2217] = 950, + [2218] = 951, + [2219] = 953, + [2220] = 954, + [2221] = 955, + [2222] = 956, + [2223] = 957, + [2224] = 958, + [2225] = 959, + [2226] = 960, + [2227] = 961, + [2228] = 962, + [2229] = 963, + [2230] = 964, + [2231] = 965, + [2232] = 966, + [2233] = 967, + [2234] = 968, + [2235] = 1002, + [2236] = 1003, + [2237] = 1193, + [2238] = 1004, + [2239] = 1005, + [2240] = 969, + [2241] = 970, + [2242] = 971, + [2243] = 972, + [2244] = 973, + [2245] = 974, + [2246] = 975, + [2247] = 976, + [2248] = 977, + [2249] = 978, + [2250] = 979, + [2251] = 980, + [2252] = 981, + [2253] = 982, + [2254] = 983, + [2255] = 984, + [2256] = 985, + [2257] = 986, + [2258] = 987, + [2259] = 988, + [2260] = 989, + [2261] = 1006, + [2262] = 990, + [2263] = 991, + [2264] = 992, + [2265] = 993, + [2266] = 994, + [2267] = 995, + [2268] = 1007, + [2269] = 996, + [2270] = 997, + [2271] = 998, + [2272] = 1008, + [2273] = 999, + [2274] = 944, + [2275] = 945, + [2276] = 946, + [2277] = 947, + [2278] = 948, + [2279] = 1000, + [2280] = 1056, + [2281] = 949, + [2282] = 950, + [2283] = 965, + [2284] = 951, + [2285] = 953, + [2286] = 954, + [2287] = 955, + [2288] = 956, + [2289] = 957, + [2290] = 958, + [2291] = 959, + [2292] = 960, + [2293] = 961, + [2294] = 962, + [2295] = 963, + [2296] = 963, + [2297] = 976, + [2298] = 975, + [2299] = 978, + [2300] = 979, + [2301] = 980, + [2302] = 981, + [2303] = 982, + [2304] = 212, + [2305] = 983, + [2306] = 984, + [2307] = 985, + [2308] = 986, + [2309] = 987, + [2310] = 988, + [2311] = 989, + [2312] = 990, + [2313] = 991, + [2314] = 992, + [2315] = 993, + [2316] = 994, + [2317] = 995, + [2318] = 996, + [2319] = 997, + [2320] = 998, + [2321] = 999, + [2322] = 1000, + [2323] = 1056, + [2324] = 321, + [2325] = 1206, + [2326] = 1002, + [2327] = 1003, + [2328] = 1004, + [2329] = 1005, + [2330] = 944, + [2331] = 1109, + [2332] = 1006, + [2333] = 945, + [2334] = 946, + [2335] = 947, + [2336] = 1007, + [2337] = 948, + [2338] = 1008, + [2339] = 949, + [2340] = 950, + [2341] = 951, + [2342] = 953, + [2343] = 954, + [2344] = 955, + [2345] = 956, + [2346] = 957, + [2347] = 958, + [2348] = 1173, + [2349] = 959, + [2350] = 960, + [2351] = 961, + [2352] = 962, + [2353] = 963, + [2354] = 964, + [2355] = 1179, + [2356] = 965, + [2357] = 966, + [2358] = 967, + [2359] = 968, + [2360] = 969, + [2361] = 970, + [2362] = 971, + [2363] = 941, + [2364] = 972, + [2365] = 973, + [2366] = 974, + [2367] = 977, + [2368] = 321, + [2369] = 2369, + [2370] = 2370, + [2371] = 2371, + [2372] = 2372, + [2373] = 2373, + [2374] = 2374, + [2375] = 2375, + [2376] = 2376, + [2377] = 2377, + [2378] = 2376, + [2379] = 2377, + [2380] = 2377, + [2381] = 2381, + [2382] = 2382, + [2383] = 2376, + [2384] = 2381, + [2385] = 2376, + [2386] = 2382, + [2387] = 2377, + [2388] = 2376, + [2389] = 2377, + [2390] = 2376, + [2391] = 2381, + [2392] = 2382, + [2393] = 2381, + [2394] = 2382, + [2395] = 2381, + [2396] = 2377, + [2397] = 2376, + [2398] = 2381, + [2399] = 2382, + [2400] = 2382, + [2401] = 2377, + [2402] = 2376, + [2403] = 2381, + [2404] = 2382, + [2405] = 2377, + [2406] = 2377, + [2407] = 2376, + [2408] = 2381, + [2409] = 2382, + [2410] = 2376, + [2411] = 2382, + [2412] = 2376, + [2413] = 2382, + [2414] = 2382, + [2415] = 2376, + [2416] = 2382, + [2417] = 2377, + [2418] = 2376, + [2419] = 2381, + [2420] = 2382, + [2421] = 2381, + [2422] = 2377, + [2423] = 2376, + [2424] = 2381, + [2425] = 2382, + [2426] = 2382, + [2427] = 2377, + [2428] = 2376, + [2429] = 2381, + [2430] = 2382, + [2431] = 2377, + [2432] = 2376, + [2433] = 2377, + [2434] = 2376, + [2435] = 2381, + [2436] = 2382, + [2437] = 2377, + [2438] = 2376, + [2439] = 2381, + [2440] = 2381, + [2441] = 2382, + [2442] = 2377, + [2443] = 2376, + [2444] = 2381, + [2445] = 2382, + [2446] = 2382, + [2447] = 2376, + [2448] = 2448, + [2449] = 2448, + [2450] = 2448, + [2451] = 2448, + [2452] = 2448, + [2453] = 2448, + [2454] = 2448, + [2455] = 2448, + [2456] = 2448, + [2457] = 2448, + [2458] = 2448, + [2459] = 2448, + [2460] = 2448, + [2461] = 2448, + [2462] = 2448, + [2463] = 2448, + [2464] = 2448, [2465] = 2465, - [2466] = 2456, - [2467] = 2456, + [2466] = 2465, + [2467] = 2465, [2468] = 2468, - [2469] = 2469, - [2470] = 2461, - [2471] = 2471, - [2472] = 2456, - [2473] = 2473, - [2474] = 2456, - [2475] = 2456, - [2476] = 2468, - [2477] = 2468, - [2478] = 2456, - [2479] = 2473, - [2480] = 2456, - [2481] = 2456, - [2482] = 2456, - [2483] = 2456, - [2484] = 357, - [2485] = 2485, - [2486] = 2486, + [2469] = 2465, + [2470] = 2465, + [2471] = 2465, + [2472] = 2472, + [2473] = 2465, + [2474] = 2465, + [2475] = 2465, + [2476] = 2465, + [2477] = 2465, + [2478] = 2465, + [2479] = 2465, + [2480] = 2465, + [2481] = 2465, + [2482] = 2482, + [2483] = 2465, + [2484] = 2465, + [2485] = 212, + [2486] = 212, [2487] = 2487, - [2488] = 2488, + [2488] = 2487, [2489] = 2489, - [2490] = 2490, - [2491] = 2490, - [2492] = 2492, + [2490] = 2489, + [2491] = 2491, + [2492] = 2489, [2493] = 2493, - [2494] = 2493, + [2494] = 2489, [2495] = 2495, - [2496] = 2490, - [2497] = 2485, - [2498] = 2493, - [2499] = 2485, + [2496] = 2493, + [2497] = 2489, + [2498] = 2489, + [2499] = 321, [2500] = 2495, - [2501] = 2488, - [2502] = 246, - [2503] = 2503, - [2504] = 2504, - [2505] = 2505, - [2506] = 2506, - [2507] = 2507, - [2508] = 246, - [2509] = 2509, - [2510] = 2510, - [2511] = 2511, - [2512] = 2512, - [2513] = 2507, - [2514] = 2514, - [2515] = 2503, - [2516] = 2516, + [2501] = 2489, + [2502] = 2489, + [2503] = 2489, + [2504] = 2489, + [2505] = 2489, + [2506] = 2489, + [2507] = 2489, + [2508] = 321, + [2509] = 2489, + [2510] = 2491, + [2511] = 2489, + [2512] = 2489, + [2513] = 212, + [2514] = 2487, + [2515] = 2515, + [2516] = 2515, [2517] = 2517, - [2518] = 2516, + [2518] = 2517, [2519] = 2519, - [2520] = 2520, + [2520] = 2519, [2521] = 2521, - [2522] = 2522, + [2522] = 2521, [2523] = 2523, - [2524] = 2524, - [2525] = 2503, - [2526] = 2516, - [2527] = 2510, - [2528] = 2523, - [2529] = 2529, - [2530] = 2530, - [2531] = 2520, + [2524] = 2519, + [2525] = 2517, + [2526] = 321, + [2527] = 2521, + [2528] = 2521, + [2529] = 2519, + [2530] = 2495, + [2531] = 2517, [2532] = 2521, - [2533] = 2529, - [2534] = 2530, - [2535] = 347, - [2536] = 2536, - [2537] = 2507, - [2538] = 1021, - [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 2539, - [2544] = 246, - [2545] = 2460, - [2546] = 2546, - [2547] = 2542, - [2548] = 2539, - [2549] = 2549, - [2550] = 2550, - [2551] = 2542, - [2552] = 2465, - [2553] = 2553, - [2554] = 2539, - [2555] = 2471, - [2556] = 2542, - [2557] = 2557, - [2558] = 1019, - [2559] = 2542, - [2560] = 2560, - [2561] = 2539, - [2562] = 1020, - [2563] = 2539, - [2564] = 2542, - [2565] = 2539, - [2566] = 2566, + [2533] = 2519, + [2534] = 2517, + [2535] = 2519, + [2536] = 2519, + [2537] = 2517, + [2538] = 2521, + [2539] = 2517, + [2540] = 2521, + [2541] = 2519, + [2542] = 2519, + [2543] = 2543, + [2544] = 2517, + [2545] = 2521, + [2546] = 2517, + [2547] = 2517, + [2548] = 2519, + [2549] = 2517, + [2550] = 2521, + [2551] = 2521, + [2552] = 2519, + [2553] = 2519, + [2554] = 2554, + [2555] = 2517, + [2556] = 2519, + [2557] = 2521, + [2558] = 2517, + [2559] = 2517, + [2560] = 2521, + [2561] = 2521, + [2562] = 2519, + [2563] = 2521, + [2564] = 2521, + [2565] = 2517, + [2566] = 2519, [2567] = 2567, - [2568] = 2568, - [2569] = 245, - [2570] = 2539, - [2571] = 2542, - [2572] = 2539, - [2573] = 2539, - [2574] = 347, + [2568] = 2521, + [2569] = 2519, + [2570] = 2517, + [2571] = 2571, + [2572] = 2515, + [2573] = 2573, + [2574] = 2574, [2575] = 2575, - [2576] = 2576, - [2577] = 2577, - [2578] = 2542, - [2579] = 2539, - [2580] = 2542, - [2581] = 2581, - [2582] = 2542, + [2576] = 2571, + [2577] = 2574, + [2578] = 2578, + [2579] = 2573, + [2580] = 2580, + [2581] = 2574, + [2582] = 212, [2583] = 2583, [2584] = 2584, [2585] = 2585, - [2586] = 2542, - [2587] = 2539, + [2586] = 2586, + [2587] = 2584, [2588] = 2588, [2589] = 2589, - [2590] = 2539, - [2591] = 2591, - [2592] = 2592, - [2593] = 2593, - [2594] = 2594, - [2595] = 2593, - [2596] = 2596, - [2597] = 2596, + [2590] = 2588, + [2591] = 321, + [2592] = 2586, + [2593] = 2585, + [2594] = 251, + [2595] = 2584, + [2596] = 2589, + [2597] = 2597, [2598] = 2598, - [2599] = 2546, - [2600] = 2546, - [2601] = 2593, - [2602] = 2542, - [2603] = 2539, + [2599] = 2586, + [2600] = 212, + [2601] = 2601, + [2602] = 2588, + [2603] = 2603, [2604] = 2604, [2605] = 2605, - [2606] = 2542, - [2607] = 2539, - [2608] = 2542, - [2609] = 2576, - [2610] = 2576, - [2611] = 2611, + [2606] = 2604, + [2607] = 2607, + [2608] = 2608, + [2609] = 2609, + [2610] = 2610, + [2611] = 2608, [2612] = 2612, - [2613] = 2542, - [2614] = 245, + [2613] = 2613, + [2614] = 2614, [2615] = 2615, - [2616] = 2549, - [2617] = 2617, - [2618] = 2539, - [2619] = 2542, - [2620] = 2549, - [2621] = 2621, - [2622] = 2549, - [2623] = 2576, + [2616] = 2605, + [2617] = 2604, + [2618] = 2607, + [2619] = 2615, + [2620] = 2605, + [2621] = 2615, + [2622] = 2612, + [2623] = 2623, [2624] = 2624, - [2625] = 345, - [2626] = 2549, - [2627] = 2624, - [2628] = 2628, - [2629] = 2629, - [2630] = 2630, - [2631] = 2631, - [2632] = 2549, - [2633] = 2576, - [2634] = 2624, - [2635] = 2624, - [2636] = 2624, - [2637] = 2549, - [2638] = 2638, - [2639] = 2639, - [2640] = 246, - [2641] = 2549, - [2642] = 2576, - [2643] = 347, - [2644] = 2576, - [2645] = 2624, - [2646] = 2624, - [2647] = 2647, - [2648] = 2624, - [2649] = 2549, + [2625] = 2605, + [2626] = 2604, + [2627] = 2615, + [2628] = 2605, + [2629] = 2604, + [2630] = 2607, + [2631] = 2607, + [2632] = 2632, + [2633] = 2607, + [2634] = 2634, + [2635] = 2635, + [2636] = 2636, + [2637] = 2624, + [2638] = 2607, + [2639] = 2615, + [2640] = 2615, + [2641] = 2605, + [2642] = 2604, + [2643] = 2607, + [2644] = 2605, + [2645] = 2604, + [2646] = 2612, + [2647] = 2613, + [2648] = 2607, + [2649] = 2649, [2650] = 2650, - [2651] = 2651, - [2652] = 2624, - [2653] = 2653, - [2654] = 345, - [2655] = 2546, - [2656] = 1019, - [2657] = 1020, - [2658] = 1021, - [2659] = 1019, - [2660] = 2549, - [2661] = 1020, - [2662] = 1021, - [2663] = 2663, - [2664] = 2576, - [2665] = 2624, - [2666] = 2666, - [2667] = 2663, - [2668] = 2546, - [2669] = 2669, - [2670] = 2546, - [2671] = 2671, - [2672] = 2576, - [2673] = 2621, - [2674] = 2549, - [2675] = 2624, - [2676] = 2676, - [2677] = 2576, - [2678] = 2663, - [2679] = 2546, - [2680] = 2549, - [2681] = 2621, - [2682] = 2663, - [2683] = 2621, - [2684] = 2621, - [2685] = 2546, - [2686] = 2621, - [2687] = 2639, - [2688] = 2621, - [2689] = 2689, - [2690] = 2624, - [2691] = 2691, - [2692] = 2576, - [2693] = 2693, - [2694] = 2621, - [2695] = 2621, - [2696] = 2696, + [2651] = 212, + [2652] = 2615, + [2653] = 2605, + [2654] = 2604, + [2655] = 2607, + [2656] = 2604, + [2657] = 2610, + [2658] = 2658, + [2659] = 321, + [2660] = 2604, + [2661] = 2605, + [2662] = 2605, + [2663] = 2607, + [2664] = 2623, + [2665] = 2665, + [2666] = 2615, + [2667] = 2667, + [2668] = 2608, + [2669] = 2615, + [2670] = 2605, + [2671] = 2604, + [2672] = 2607, + [2673] = 2649, + [2674] = 2607, + [2675] = 2675, + [2676] = 2623, + [2677] = 2615, + [2678] = 2615, + [2679] = 2605, + [2680] = 2604, + [2681] = 2607, + [2682] = 2605, + [2683] = 2604, + [2684] = 2607, + [2685] = 2610, + [2686] = 2686, + [2687] = 2615, + [2688] = 2605, + [2689] = 2604, + [2690] = 2607, + [2691] = 2604, + [2692] = 2636, + [2693] = 2615, + [2694] = 2694, + [2695] = 2613, + [2696] = 2634, [2697] = 2697, - [2698] = 2624, - [2699] = 2699, - [2700] = 2621, - [2701] = 2546, - [2702] = 2697, - [2703] = 2546, - [2704] = 2621, - [2705] = 2546, - [2706] = 2624, - [2707] = 2621, - [2708] = 2576, - [2709] = 2546, - [2710] = 2710, - [2711] = 2711, - [2712] = 2546, + [2698] = 2605, + [2699] = 2615, + [2700] = 2605, + [2701] = 2604, + [2702] = 2607, + [2703] = 2605, + [2704] = 2607, + [2705] = 2605, + [2706] = 2607, + [2707] = 2605, + [2708] = 2607, + [2709] = 2605, + [2710] = 2607, + [2711] = 2615, + [2712] = 2615, [2713] = 2713, [2714] = 2714, [2715] = 2715, - [2716] = 2621, - [2717] = 2576, - [2718] = 2624, - [2719] = 2719, - [2720] = 2549, - [2721] = 2621, + [2716] = 2716, + [2717] = 2717, + [2718] = 2718, + [2719] = 2716, + [2720] = 2720, + [2721] = 2714, [2722] = 2722, - [2723] = 2621, - [2724] = 2724, - [2725] = 2621, - [2726] = 2629, - [2727] = 2628, - [2728] = 2629, - [2729] = 2628, - [2730] = 2624, - [2731] = 2731, - [2732] = 2732, - [2733] = 2733, - [2734] = 2734, - [2735] = 2735, - [2736] = 2734, - [2737] = 2735, + [2723] = 2723, + [2724] = 2716, + [2725] = 2714, + [2726] = 2726, + [2727] = 2727, + [2728] = 2728, + [2729] = 2729, + [2730] = 1006, + [2731] = 2716, + [2732] = 1007, + [2733] = 2714, + [2734] = 1008, + [2735] = 212, + [2736] = 2736, + [2737] = 2718, [2738] = 2738, - [2739] = 2739, + [2739] = 2716, [2740] = 2740, - [2741] = 2741, + [2741] = 2714, [2742] = 2742, - [2743] = 2743, - [2744] = 2744, - [2745] = 2541, - [2746] = 2738, - [2747] = 2734, + [2743] = 2726, + [2744] = 2716, + [2745] = 2714, + [2746] = 2746, + [2747] = 2583, [2748] = 2748, - [2749] = 2742, - [2750] = 2748, - [2751] = 2751, - [2752] = 2739, - [2753] = 2738, - [2754] = 2734, - [2755] = 2735, - [2756] = 2740, - [2757] = 2741, - [2758] = 2758, - [2759] = 2738, + [2749] = 2716, + [2750] = 2714, + [2751] = 211, + [2752] = 2716, + [2753] = 2714, + [2754] = 2754, + [2755] = 2716, + [2756] = 2714, + [2757] = 2757, + [2758] = 2575, + [2759] = 2759, [2760] = 2760, - [2761] = 2739, - [2762] = 2740, - [2763] = 2741, - [2764] = 2764, - [2765] = 2731, - [2766] = 2733, - [2767] = 2734, - [2768] = 2739, - [2769] = 2732, - [2770] = 2770, - [2771] = 2771, - [2772] = 2735, - [2773] = 2742, - [2774] = 2742, - [2775] = 2748, - [2776] = 2743, - [2777] = 2734, - [2778] = 2735, - [2779] = 2748, + [2761] = 2761, + [2762] = 2716, + [2763] = 2714, + [2764] = 2714, + [2765] = 2765, + [2766] = 2766, + [2767] = 2767, + [2768] = 2716, + [2769] = 2714, + [2770] = 2716, + [2771] = 212, + [2772] = 2716, + [2773] = 2714, + [2774] = 2774, + [2775] = 2716, + [2776] = 2714, + [2777] = 2777, + [2778] = 2714, + [2779] = 2779, [2780] = 2780, - [2781] = 2567, - [2782] = 2735, - [2783] = 2738, - [2784] = 2739, - [2785] = 2740, - [2786] = 2741, - [2787] = 2734, - [2788] = 2735, - [2789] = 2742, - [2790] = 246, - [2791] = 2738, - [2792] = 2758, - [2793] = 2739, - [2794] = 2740, - [2795] = 2742, - [2796] = 2748, - [2797] = 2741, - [2798] = 2748, - [2799] = 2738, - [2800] = 2734, - [2801] = 2735, - [2802] = 2802, - [2803] = 2803, - [2804] = 2738, - [2805] = 2739, - [2806] = 2740, - [2807] = 2741, - [2808] = 2808, - [2809] = 2809, - [2810] = 2810, - [2811] = 2557, - [2812] = 2734, - [2813] = 2604, - [2814] = 2735, - [2815] = 2815, - [2816] = 2568, - [2817] = 2738, - [2818] = 2739, - [2819] = 2742, - [2820] = 2748, - [2821] = 2740, - [2822] = 2744, - [2823] = 2734, - [2824] = 2735, - [2825] = 2741, - [2826] = 2742, - [2827] = 2827, - [2828] = 2828, - [2829] = 2738, - [2830] = 2748, - [2831] = 2739, - [2832] = 2740, - [2833] = 2741, - [2834] = 2581, - [2835] = 2739, - [2836] = 2741, - [2837] = 2739, - [2838] = 2741, - [2839] = 2732, - [2840] = 2734, - [2841] = 2739, - [2842] = 2741, - [2843] = 2735, - [2844] = 2739, - [2845] = 2739, - [2846] = 2741, - [2847] = 2738, - [2848] = 2848, - [2849] = 2739, - [2850] = 2740, + [2781] = 2781, + [2782] = 2738, + [2783] = 2728, + [2784] = 2784, + [2785] = 2760, + [2786] = 2774, + [2787] = 2787, + [2788] = 2781, + [2789] = 2728, + [2790] = 2784, + [2791] = 2760, + [2792] = 2774, + [2793] = 2793, + [2794] = 2728, + [2795] = 2795, + [2796] = 2784, + [2797] = 2774, + [2798] = 2774, + [2799] = 2799, + [2800] = 2728, + [2801] = 2784, + [2802] = 2760, + [2803] = 2774, + [2804] = 2728, + [2805] = 2784, + [2806] = 2760, + [2807] = 2774, + [2808] = 2716, + [2809] = 2728, + [2810] = 2784, + [2811] = 2760, + [2812] = 2774, + [2813] = 2813, + [2814] = 2728, + [2815] = 2784, + [2816] = 2760, + [2817] = 2774, + [2818] = 2728, + [2819] = 2784, + [2820] = 2760, + [2821] = 2774, + [2822] = 2714, + [2823] = 2728, + [2824] = 2784, + [2825] = 2760, + [2826] = 2774, + [2827] = 2726, + [2828] = 2718, + [2829] = 2784, + [2830] = 2728, + [2831] = 2784, + [2832] = 2760, + [2833] = 2774, + [2834] = 2580, + [2835] = 2728, + [2836] = 2836, + [2837] = 2784, + [2838] = 2760, + [2839] = 2774, + [2840] = 2728, + [2841] = 2784, + [2842] = 2760, + [2843] = 2774, + [2844] = 2836, + [2845] = 2781, + [2846] = 2728, + [2847] = 2784, + [2848] = 2760, + [2849] = 2774, + [2850] = 211, [2851] = 2851, - [2852] = 2741, - [2853] = 2585, - [2854] = 2577, - [2855] = 2855, - [2856] = 2742, - [2857] = 2740, - [2858] = 2748, - [2859] = 2859, - [2860] = 2741, - [2861] = 2861, - [2862] = 2862, - [2863] = 2863, - [2864] = 2848, - [2865] = 2861, - [2866] = 2866, - [2867] = 2867, - [2868] = 246, - [2869] = 2770, - [2870] = 2764, - [2871] = 2731, - [2872] = 2802, - [2873] = 2809, - [2874] = 2867, + [2852] = 2728, + [2853] = 2836, + [2854] = 2784, + [2855] = 2760, + [2856] = 2774, + [2857] = 321, + [2858] = 2858, + [2859] = 2728, + [2860] = 2784, + [2861] = 2760, + [2862] = 2774, + [2863] = 2784, + [2864] = 2774, + [2865] = 2784, + [2866] = 2774, + [2867] = 2784, + [2868] = 2774, + [2869] = 2716, + [2870] = 2784, + [2871] = 2760, + [2872] = 2872, + [2873] = 2873, + [2874] = 2874, [2875] = 2875, - [2876] = 2810, - [2877] = 2862, - [2878] = 2863, + [2876] = 2876, + [2877] = 2877, + [2878] = 2878, [2879] = 2879, - [2880] = 2855, - [2881] = 2827, - [2882] = 2771, - [2883] = 2848, - [2884] = 2742, - [2885] = 2866, - [2886] = 2771, - [2887] = 2748, - [2888] = 2734, - [2889] = 2734, - [2890] = 2735, - [2891] = 2740, - [2892] = 2861, - [2893] = 2866, - [2894] = 2735, - [2895] = 2770, - [2896] = 2764, - [2897] = 2731, - [2898] = 2867, - [2899] = 2875, - [2900] = 2810, - [2901] = 2862, - [2902] = 2863, - [2903] = 2748, - [2904] = 2855, - [2905] = 2827, - [2906] = 2848, - [2907] = 2742, - [2908] = 2748, - [2909] = 2742, - [2910] = 2910, - [2911] = 2911, - [2912] = 2861, - [2913] = 2866, - [2914] = 2748, - [2915] = 2764, - [2916] = 2731, - [2917] = 2848, - [2918] = 2861, - [2919] = 2866, - [2920] = 2738, - [2921] = 2764, - [2922] = 2731, - [2923] = 2848, - [2924] = 2741, - [2925] = 2739, - [2926] = 2861, - [2927] = 2866, - [2928] = 2740, - [2929] = 2764, - [2930] = 2731, - [2931] = 2848, - [2932] = 2734, - [2933] = 2735, - [2934] = 2741, - [2935] = 2861, - [2936] = 2866, - [2937] = 2937, - [2938] = 2764, - [2939] = 2731, - [2940] = 2848, - [2941] = 2734, - [2942] = 347, - [2943] = 2588, - [2944] = 2944, - [2945] = 2589, - [2946] = 2744, - [2947] = 2861, - [2948] = 2866, - [2949] = 2735, - [2950] = 2764, - [2951] = 2731, - [2952] = 2848, - [2953] = 2758, - [2954] = 2738, - [2955] = 2760, - [2956] = 2739, - [2957] = 2740, - [2958] = 2861, - [2959] = 2866, - [2960] = 2741, - [2961] = 2764, - [2962] = 2731, - [2963] = 2848, - [2964] = 2738, - [2965] = 2739, - [2966] = 2742, - [2967] = 2748, - [2968] = 2738, - [2969] = 2861, - [2970] = 2866, - [2971] = 2937, - [2972] = 2764, - [2973] = 2731, - [2974] = 2848, - [2975] = 2740, - [2976] = 2741, - [2977] = 2760, - [2978] = 2734, - [2979] = 2861, - [2980] = 2866, - [2981] = 2735, - [2982] = 2764, - [2983] = 2731, - [2984] = 2848, - [2985] = 2803, - [2986] = 2780, - [2987] = 2851, - [2988] = 2803, - [2989] = 2879, - [2990] = 2751, - [2991] = 2861, - [2992] = 2866, - [2993] = 2738, - [2994] = 2764, - [2995] = 2731, - [2996] = 2848, - [2997] = 2739, - [2998] = 2740, - [2999] = 2741, - [3000] = 245, - [3001] = 2739, - [3002] = 2861, - [3003] = 2866, - [3004] = 2780, - [3005] = 2764, - [3006] = 2731, - [3007] = 2848, - [3008] = 2733, - [3009] = 2740, - [3010] = 2741, - [3011] = 2875, - [3012] = 2861, - [3013] = 2866, - [3014] = 2937, - [3015] = 2764, - [3016] = 2731, - [3017] = 2848, - [3018] = 2743, - [3019] = 2861, - [3020] = 2866, - [3021] = 2851, - [3022] = 2764, - [3023] = 2731, - [3024] = 2848, - [3025] = 2751, - [3026] = 2742, - [3027] = 2748, - [3028] = 2780, - [3029] = 2861, - [3030] = 2866, - [3031] = 2742, - [3032] = 2764, - [3033] = 2731, - [3034] = 2866, - [3035] = 2540, - [3036] = 2866, - [3037] = 2731, - [3038] = 2866, - [3039] = 2731, - [3040] = 2866, - [3041] = 2731, - [3042] = 2742, - [3043] = 2911, - [3044] = 2748, - [3045] = 2879, + [2880] = 2874, + [2881] = 2718, + [2882] = 2872, + [2883] = 2874, + [2884] = 2836, + [2885] = 321, + [2886] = 2886, + [2887] = 2726, + [2888] = 2726, + [2889] = 2718, + [2890] = 2890, + [2891] = 1006, + [2892] = 1007, + [2893] = 1008, + [2894] = 1006, + [2895] = 1007, + [2896] = 1008, + [2897] = 2836, + [2898] = 2898, + [2899] = 2874, + [2900] = 2874, + [2901] = 2874, + [2902] = 2836, + [2903] = 2903, + [2904] = 2487, + [2905] = 2905, + [2906] = 2906, + [2907] = 2726, + [2908] = 2908, + [2909] = 212, + [2910] = 2874, + [2911] = 2836, + [2912] = 320, + [2913] = 2726, + [2914] = 2874, + [2915] = 2874, + [2916] = 2916, + [2917] = 2917, + [2918] = 2918, + [2919] = 2726, + [2920] = 2874, + [2921] = 2836, + [2922] = 2874, + [2923] = 2718, + [2924] = 2726, + [2925] = 321, + [2926] = 2926, + [2927] = 2927, + [2928] = 2874, + [2929] = 2929, + [2930] = 2836, + [2931] = 2874, + [2932] = 2932, + [2933] = 2933, + [2934] = 2718, + [2935] = 2905, + [2936] = 212, + [2937] = 2872, + [2938] = 2726, + [2939] = 2933, + [2940] = 2940, + [2941] = 2836, + [2942] = 2940, + [2943] = 2836, + [2944] = 2836, + [2945] = 320, + [2946] = 2726, + [2947] = 2726, + [2948] = 2718, + [2949] = 2726, + [2950] = 2718, + [2951] = 2836, + [2952] = 2874, + [2953] = 2953, + [2954] = 2954, + [2955] = 2955, + [2956] = 2956, + [2957] = 2940, + [2958] = 2718, + [2959] = 2718, + [2960] = 2960, + [2961] = 2961, + [2962] = 2487, + [2963] = 2874, + [2964] = 2718, + [2965] = 2965, + [2966] = 2718, + [2967] = 2940, + [2968] = 2954, + [2969] = 2916, + [2970] = 2954, + [2971] = 2916, + [2972] = 2918, + [2973] = 2872, + [2974] = 2918, + [2975] = 2872, + [2976] = 2918, + [2977] = 2872, + [2978] = 2918, + [2979] = 2872, + [2980] = 2918, + [2981] = 2872, + [2982] = 2918, + [2983] = 2872, + [2984] = 2918, + [2985] = 2872, + [2986] = 2918, + [2987] = 2872, + [2988] = 2918, + [2989] = 2872, + [2990] = 2918, + [2991] = 2872, + [2992] = 2918, + [2993] = 2993, + [2994] = 2918, + [2995] = 2872, + [2996] = 2918, + [2997] = 2872, + [2998] = 2918, + [2999] = 2872, + [3000] = 2918, + [3001] = 2872, + [3002] = 2872, + [3003] = 2872, + [3004] = 2872, + [3005] = 2874, + [3006] = 3006, + [3007] = 3007, + [3008] = 3008, + [3009] = 3007, + [3010] = 3010, + [3011] = 3011, + [3012] = 3012, + [3013] = 3013, + [3014] = 3014, + [3015] = 3006, + [3016] = 3013, + [3017] = 3012, + [3018] = 3018, + [3019] = 3013, + [3020] = 3006, + [3021] = 3018, + [3022] = 3013, + [3023] = 3006, + [3024] = 3024, + [3025] = 3013, + [3026] = 3006, + [3027] = 3027, + [3028] = 3028, + [3029] = 3029, + [3030] = 3030, + [3031] = 3008, + [3032] = 3007, + [3033] = 3027, + [3034] = 3012, + [3035] = 3035, + [3036] = 3013, + [3037] = 3012, + [3038] = 3038, + [3039] = 3013, + [3040] = 3013, + [3041] = 3041, + [3042] = 3014, + [3043] = 3006, + [3044] = 3038, + [3045] = 3045, [3046] = 3046, [3047] = 3047, - [3048] = 245, - [3049] = 3049, - [3050] = 2594, + [3048] = 3014, + [3049] = 3006, + [3050] = 3050, [3051] = 3051, - [3052] = 2771, + [3052] = 3052, [3053] = 3053, - [3054] = 2771, - [3055] = 347, - [3056] = 2771, - [3057] = 3057, - [3058] = 3058, - [3059] = 3059, - [3060] = 3060, - [3061] = 3061, - [3062] = 2771, - [3063] = 3063, + [3054] = 3054, + [3055] = 3055, + [3056] = 2722, + [3057] = 3028, + [3058] = 2851, + [3059] = 3006, + [3060] = 3014, + [3061] = 3006, + [3062] = 321, + [3063] = 3014, [3064] = 3064, - [3065] = 3049, - [3066] = 3066, - [3067] = 3067, - [3068] = 3068, + [3065] = 3041, + [3066] = 2723, + [3067] = 3041, + [3068] = 3010, [3069] = 3069, - [3070] = 245, - [3071] = 347, - [3072] = 2577, - [3073] = 2689, - [3074] = 3063, - [3075] = 2691, - [3076] = 2605, - [3077] = 3077, - [3078] = 2630, - [3079] = 3079, - [3080] = 3046, - [3081] = 2771, - [3082] = 3082, - [3083] = 3083, - [3084] = 3084, - [3085] = 2771, - [3086] = 3051, - [3087] = 3068, - [3088] = 3088, - [3089] = 3089, - [3090] = 2771, - [3091] = 3060, - [3092] = 3082, - [3093] = 3084, - [3094] = 3079, - [3095] = 3046, - [3096] = 3083, - [3097] = 3058, - [3098] = 3061, - [3099] = 3067, - [3100] = 2771, - [3101] = 3047, - [3102] = 420, - [3103] = 3068, - [3104] = 3088, - [3105] = 3089, - [3106] = 3060, - [3107] = 3082, - [3108] = 3084, - [3109] = 2771, - [3110] = 3079, - [3111] = 3046, - [3112] = 3083, - [3113] = 3058, - [3114] = 3061, - [3115] = 3067, - [3116] = 3116, - [3117] = 2771, - [3118] = 3079, - [3119] = 3046, - [3120] = 3083, - [3121] = 3058, - [3122] = 3061, - [3123] = 3067, - [3124] = 3079, - [3125] = 3046, - [3126] = 3083, - [3127] = 3058, - [3128] = 3061, - [3129] = 3067, - [3130] = 3063, - [3131] = 3131, - [3132] = 3079, - [3133] = 3046, - [3134] = 3083, - [3135] = 3058, - [3136] = 3061, - [3137] = 3067, - [3138] = 3079, - [3139] = 3046, - [3140] = 3083, - [3141] = 3058, - [3142] = 3142, - [3143] = 3067, - [3144] = 3047, - [3145] = 3145, - [3146] = 3146, - [3147] = 3079, - [3148] = 3088, - [3149] = 3046, - [3150] = 3083, - [3151] = 3058, - [3152] = 3061, - [3153] = 3067, - [3154] = 3077, - [3155] = 2715, - [3156] = 3079, - [3157] = 3046, - [3158] = 3083, - [3159] = 3058, - [3160] = 3061, - [3161] = 3067, - [3162] = 3089, - [3163] = 2696, - [3164] = 3079, - [3165] = 3046, - [3166] = 3083, - [3167] = 3058, - [3168] = 3061, - [3169] = 3067, - [3170] = 3079, - [3171] = 3046, - [3172] = 3083, - [3173] = 3058, - [3174] = 3061, - [3175] = 3067, - [3176] = 2710, - [3177] = 3079, - [3178] = 3046, - [3179] = 3083, - [3180] = 3058, - [3181] = 3061, - [3182] = 3067, - [3183] = 2638, - [3184] = 3079, - [3185] = 3083, - [3186] = 3058, - [3187] = 3061, - [3188] = 3067, - [3189] = 3077, - [3190] = 345, - [3191] = 245, - [3192] = 3079, - [3193] = 3046, - [3194] = 3083, - [3195] = 3058, - [3196] = 3061, - [3197] = 3067, - [3198] = 3079, - [3199] = 3046, - [3200] = 3083, - [3201] = 3058, - [3202] = 3061, - [3203] = 3067, - [3204] = 2651, - [3205] = 2653, - [3206] = 2722, - [3207] = 3079, - [3208] = 3046, - [3209] = 3083, - [3210] = 3058, - [3211] = 3061, - [3212] = 3067, - [3213] = 3145, - [3214] = 3046, - [3215] = 3061, - [3216] = 3046, - [3217] = 3061, - [3218] = 3046, - [3219] = 3061, - [3220] = 3046, - [3221] = 3061, - [3222] = 3222, - [3223] = 3061, - [3224] = 3224, - [3225] = 3225, - [3226] = 3226, - [3227] = 3227, - [3228] = 3228, - [3229] = 3229, - [3230] = 3228, - [3231] = 3229, - [3232] = 3232, - [3233] = 3233, - [3234] = 3234, - [3235] = 3235, - [3236] = 3224, - [3237] = 3237, - [3238] = 3238, - [3239] = 3239, - [3240] = 3239, - [3241] = 3241, - [3242] = 3242, - [3243] = 3243, - [3244] = 3225, - [3245] = 3245, - [3246] = 3224, - [3247] = 3247, - [3248] = 3248, + [3070] = 3070, + [3071] = 3038, + [3072] = 3046, + [3073] = 3047, + [3074] = 2495, + [3075] = 3047, + [3076] = 3050, + [3077] = 3051, + [3078] = 3052, + [3079] = 3053, + [3080] = 3054, + [3081] = 3055, + [3082] = 3028, + [3083] = 3011, + [3084] = 2746, + [3085] = 2767, + [3086] = 3035, + [3087] = 2780, + [3088] = 3010, + [3089] = 3035, + [3090] = 3006, + [3091] = 3008, + [3092] = 3007, + [3093] = 3012, + [3094] = 3013, + [3095] = 3028, + [3096] = 3096, + [3097] = 3014, + [3098] = 3006, + [3099] = 3024, + [3100] = 3008, + [3101] = 3064, + [3102] = 3102, + [3103] = 3007, + [3104] = 3010, + [3105] = 2858, + [3106] = 3011, + [3107] = 2495, + [3108] = 3028, + [3109] = 3109, + [3110] = 3110, + [3111] = 3111, + [3112] = 3012, + [3113] = 3035, + [3114] = 3111, + [3115] = 3010, + [3116] = 3028, + [3117] = 3035, + [3118] = 3109, + [3119] = 3013, + [3120] = 3035, + [3121] = 3010, + [3122] = 3014, + [3123] = 3008, + [3124] = 3028, + [3125] = 3010, + [3126] = 3029, + [3127] = 3007, + [3128] = 2487, + [3129] = 3012, + [3130] = 3130, + [3131] = 3013, + [3132] = 3028, + [3133] = 3050, + [3134] = 3014, + [3135] = 3006, + [3136] = 3053, + [3137] = 3018, + [3138] = 3028, + [3139] = 3008, + [3140] = 3024, + [3141] = 3141, + [3142] = 3008, + [3143] = 3007, + [3144] = 3130, + [3145] = 3027, + [3146] = 3007, + [3147] = 3147, + [3148] = 3028, + [3149] = 321, + [3150] = 211, + [3151] = 3006, + [3152] = 3035, + [3153] = 3045, + [3154] = 3010, + [3155] = 212, + [3156] = 3010, + [3157] = 3008, + [3158] = 3028, + [3159] = 3007, + [3160] = 3012, + [3161] = 3109, + [3162] = 3012, + [3163] = 3012, + [3164] = 3013, + [3165] = 3013, + [3166] = 3014, + [3167] = 3006, + [3168] = 2754, + [3169] = 3013, + [3170] = 3028, + [3171] = 3070, + [3172] = 2487, + [3173] = 3014, + [3174] = 3014, + [3175] = 3006, + [3176] = 3006, + [3177] = 2777, + [3178] = 3008, + [3179] = 3070, + [3180] = 3028, + [3181] = 3007, + [3182] = 3012, + [3183] = 2787, + [3184] = 3008, + [3185] = 3028, + [3186] = 3096, + [3187] = 3187, + [3188] = 3130, + [3189] = 3028, + [3190] = 3012, + [3191] = 3035, + [3192] = 3010, + [3193] = 2713, + [3194] = 3029, + [3195] = 3008, + [3196] = 3007, + [3197] = 3046, + [3198] = 3096, + [3199] = 3102, + [3200] = 3028, + [3201] = 3012, + [3202] = 3035, + [3203] = 3013, + [3204] = 3007, + [3205] = 3014, + [3206] = 3006, + [3207] = 3141, + [3208] = 3010, + [3209] = 3035, + [3210] = 3013, + [3211] = 3054, + [3212] = 3055, + [3213] = 3010, + [3214] = 3008, + [3215] = 3007, + [3216] = 3035, + [3217] = 3010, + [3218] = 3012, + [3219] = 3008, + [3220] = 3007, + [3221] = 3012, + [3222] = 3013, + [3223] = 3014, + [3224] = 3006, + [3225] = 3051, + [3226] = 3013, + [3227] = 3011, + [3228] = 3014, + [3229] = 3006, + [3230] = 3035, + [3231] = 3064, + [3232] = 3010, + [3233] = 3052, + [3234] = 3035, + [3235] = 3010, + [3236] = 3014, + [3237] = 3008, + [3238] = 3008, + [3239] = 3007, + [3240] = 3069, + [3241] = 3012, + [3242] = 3013, + [3243] = 3014, + [3244] = 3006, + [3245] = 3102, + [3246] = 3013, + [3247] = 3111, + [3248] = 3007, [3249] = 3249, - [3250] = 3226, + [3250] = 3141, [3251] = 3251, - [3252] = 3252, - [3253] = 3253, - [3254] = 3254, - [3255] = 3235, - [3256] = 3256, + [3252] = 3035, + [3253] = 3010, + [3254] = 3035, + [3255] = 3035, + [3256] = 3008, [3257] = 3257, [3258] = 3258, - [3259] = 3226, - [3260] = 3227, - [3261] = 3233, - [3262] = 3238, - [3263] = 3242, - [3264] = 3256, - [3265] = 3265, - [3266] = 3266, - [3267] = 3267, + [3259] = 2780, + [3260] = 3260, + [3261] = 3261, + [3262] = 3262, + [3263] = 1006, + [3264] = 1007, + [3265] = 1008, + [3266] = 2495, + [3267] = 2515, [3268] = 3268, - [3269] = 3269, - [3270] = 3237, - [3271] = 3271, - [3272] = 3227, - [3273] = 3239, - [3274] = 3233, - [3275] = 3241, + [3269] = 3141, + [3270] = 2956, + [3271] = 2953, + [3272] = 2993, + [3273] = 3141, + [3274] = 2715, + [3275] = 3141, [3276] = 3276, - [3277] = 3265, - [3278] = 3243, - [3279] = 3225, - [3280] = 3232, - [3281] = 3245, - [3282] = 3258, - [3283] = 3224, - [3284] = 3247, - [3285] = 3285, - [3286] = 3286, - [3287] = 3248, - [3288] = 3249, - [3289] = 2910, - [3290] = 3290, - [3291] = 3266, - [3292] = 3228, - [3293] = 3229, - [3294] = 3238, - [3295] = 3295, - [3296] = 3267, - [3297] = 3251, - [3298] = 3252, - [3299] = 3235, - [3300] = 3300, - [3301] = 3237, - [3302] = 3253, - [3303] = 3239, - [3304] = 3254, - [3305] = 3241, - [3306] = 345, - [3307] = 3243, - [3308] = 3225, - [3309] = 3245, - [3310] = 3224, - [3311] = 3247, - [3312] = 3248, - [3313] = 3249, - [3314] = 3242, - [3315] = 3251, - [3316] = 3252, - [3317] = 3253, - [3318] = 3254, - [3319] = 3256, - [3320] = 3268, - [3321] = 3265, - [3322] = 3266, - [3323] = 3226, - [3324] = 3227, - [3325] = 3233, - [3326] = 3238, - [3327] = 3242, - [3328] = 3256, - [3329] = 3265, - [3330] = 3266, - [3331] = 3267, - [3332] = 3268, - [3333] = 3269, - [3334] = 3226, - [3335] = 3227, - [3336] = 3233, - [3337] = 3238, - [3338] = 3242, - [3339] = 3256, - [3340] = 3276, - [3341] = 3341, - [3342] = 3342, - [3343] = 3265, - [3344] = 2676, - [3345] = 3266, - [3346] = 3258, - [3347] = 3267, - [3348] = 3268, - [3349] = 3285, - [3350] = 3269, - [3351] = 3267, - [3352] = 3269, - [3353] = 3268, - [3354] = 3354, - [3355] = 3269, - [3356] = 3228, - [3357] = 3229, - [3358] = 3235, - [3359] = 3359, - [3360] = 3237, - [3361] = 3241, - [3362] = 1017, - [3363] = 3235, - [3364] = 3276, - [3365] = 3237, - [3366] = 3235, - [3367] = 3239, - [3368] = 3368, - [3369] = 3241, - [3370] = 3276, - [3371] = 3243, - [3372] = 3225, - [3373] = 3245, - [3374] = 3224, - [3375] = 3247, - [3376] = 3248, - [3377] = 3249, - [3378] = 3378, - [3379] = 3251, - [3380] = 3252, - [3381] = 3253, - [3382] = 3254, - [3383] = 3245, - [3384] = 3384, - [3385] = 3385, - [3386] = 3386, - [3387] = 3226, - [3388] = 3227, - [3389] = 3233, - [3390] = 3238, - [3391] = 3242, - [3392] = 3256, - [3393] = 3265, - [3394] = 3266, - [3395] = 3267, - [3396] = 3268, - [3397] = 3269, - [3398] = 3258, - [3399] = 3276, + [3277] = 3277, + [3278] = 321, + [3279] = 3279, + [3280] = 3280, + [3281] = 3281, + [3282] = 2926, + [3283] = 3283, + [3284] = 3284, + [3285] = 2965, + [3286] = 2875, + [3287] = 2515, + [3288] = 3288, + [3289] = 3289, + [3290] = 3141, + [3291] = 3291, + [3292] = 288, + [3293] = 3293, + [3294] = 211, + [3295] = 212, + [3296] = 3296, + [3297] = 2720, + [3298] = 3298, + [3299] = 3293, + [3300] = 3281, + [3301] = 3280, + [3302] = 2955, + [3303] = 211, + [3304] = 3304, + [3305] = 3305, + [3306] = 3306, + [3307] = 2960, + [3308] = 3141, + [3309] = 3309, + [3310] = 3289, + [3311] = 3284, + [3312] = 2961, + [3313] = 3296, + [3314] = 3141, + [3315] = 3257, + [3316] = 3316, + [3317] = 3298, + [3318] = 3281, + [3319] = 3280, + [3320] = 320, + [3321] = 2917, + [3322] = 3304, + [3323] = 3305, + [3324] = 3306, + [3325] = 3309, + [3326] = 3289, + [3327] = 3296, + [3328] = 3309, + [3329] = 3289, + [3330] = 3296, + [3331] = 3331, + [3332] = 2927, + [3333] = 3333, + [3334] = 3309, + [3335] = 3289, + [3336] = 3296, + [3337] = 2903, + [3338] = 3141, + [3339] = 3339, + [3340] = 3309, + [3341] = 3289, + [3342] = 3296, + [3343] = 2878, + [3344] = 3141, + [3345] = 3309, + [3346] = 3289, + [3347] = 3296, + [3348] = 3288, + [3349] = 3309, + [3350] = 3289, + [3351] = 3296, + [3352] = 3284, + [3353] = 3353, + [3354] = 3309, + [3355] = 3289, + [3356] = 3296, + [3357] = 3309, + [3358] = 3289, + [3359] = 3296, + [3360] = 3257, + [3361] = 2886, + [3362] = 211, + [3363] = 3363, + [3364] = 3293, + [3365] = 3309, + [3366] = 3289, + [3367] = 3305, + [3368] = 3296, + [3369] = 3369, + [3370] = 3309, + [3371] = 3298, + [3372] = 3316, + [3373] = 3309, + [3374] = 3289, + [3375] = 3296, + [3376] = 2495, + [3377] = 3377, + [3378] = 3309, + [3379] = 3289, + [3380] = 3296, + [3381] = 3304, + [3382] = 3306, + [3383] = 3383, + [3384] = 3309, + [3385] = 3289, + [3386] = 3296, + [3387] = 3309, + [3388] = 3289, + [3389] = 3296, + [3390] = 3309, + [3391] = 3289, + [3392] = 3296, + [3393] = 3141, + [3394] = 3394, + [3395] = 3141, + [3396] = 2898, + [3397] = 3283, + [3398] = 3398, + [3399] = 3399, [3400] = 3400, - [3401] = 3285, + [3401] = 3401, [3402] = 3402, - [3403] = 3237, - [3404] = 3276, + [3403] = 3403, + [3404] = 3404, [3405] = 3405, - [3406] = 3276, - [3407] = 3226, + [3406] = 3406, + [3407] = 3407, [3408] = 3408, - [3409] = 3409, - [3410] = 3258, - [3411] = 3227, - [3412] = 3228, - [3413] = 3285, - [3414] = 3414, + [3409] = 3403, + [3410] = 3410, + [3411] = 3411, + [3412] = 3412, + [3413] = 3413, + [3414] = 3406, [3415] = 3415, - [3416] = 3233, - [3417] = 3238, - [3418] = 3242, - [3419] = 3256, - [3420] = 3229, - [3421] = 1019, - [3422] = 3276, - [3423] = 3265, - [3424] = 1020, - [3425] = 1021, + [3416] = 3416, + [3417] = 3416, + [3418] = 3407, + [3419] = 3398, + [3420] = 3420, + [3421] = 3421, + [3422] = 3422, + [3423] = 3423, + [3424] = 3424, + [3425] = 3425, [3426] = 3426, - [3427] = 3239, - [3428] = 3258, - [3429] = 3235, - [3430] = 3269, - [3431] = 3237, - [3432] = 3224, - [3433] = 3239, - [3434] = 3266, - [3435] = 3241, - [3436] = 3267, - [3437] = 3414, - [3438] = 3243, - [3439] = 3368, - [3440] = 3440, - [3441] = 3225, - [3442] = 3245, - [3443] = 3224, - [3444] = 3247, - [3445] = 3248, - [3446] = 3249, - [3447] = 3285, - [3448] = 3258, - [3449] = 3251, - [3450] = 3450, - [3451] = 3451, - [3452] = 3252, - [3453] = 3253, - [3454] = 3241, - [3455] = 3455, - [3456] = 3228, - [3457] = 3229, - [3458] = 3239, - [3459] = 3254, - [3460] = 3285, - [3461] = 3243, - [3462] = 3462, - [3463] = 3463, - [3464] = 1018, - [3465] = 3268, - [3466] = 3225, - [3467] = 3258, - [3468] = 3243, - [3469] = 3469, - [3470] = 3226, - [3471] = 3471, - [3472] = 3245, - [3473] = 3247, - [3474] = 3224, - [3475] = 3227, - [3476] = 3233, - [3477] = 3238, - [3478] = 3295, - [3479] = 3242, - [3480] = 3256, - [3481] = 3265, - [3482] = 3247, - [3483] = 3266, - [3484] = 3248, - [3485] = 3455, - [3486] = 3267, - [3487] = 3268, - [3488] = 3269, - [3489] = 3489, - [3490] = 3228, - [3491] = 3229, - [3492] = 3248, - [3493] = 3342, - [3494] = 3249, - [3495] = 3269, - [3496] = 3233, - [3497] = 3238, - [3498] = 3276, - [3499] = 3228, - [3500] = 3414, - [3501] = 3249, - [3502] = 3368, - [3503] = 3440, - [3504] = 3229, - [3505] = 3235, - [3506] = 3506, - [3507] = 3237, - [3508] = 3463, - [3509] = 3239, - [3510] = 3258, - [3511] = 3241, - [3512] = 3512, - [3513] = 3450, - [3514] = 3451, - [3515] = 3237, - [3516] = 3243, - [3517] = 3225, - [3518] = 3245, - [3519] = 3224, - [3520] = 3247, - [3521] = 3256, - [3522] = 3341, - [3523] = 3235, - [3524] = 3524, - [3525] = 3248, - [3526] = 3249, - [3527] = 3285, - [3528] = 3251, - [3529] = 3252, - [3530] = 3253, - [3531] = 3254, - [3532] = 3386, - [3533] = 3237, - [3534] = 3251, - [3535] = 3239, - [3536] = 3252, - [3537] = 3235, - [3538] = 3285, - [3539] = 3237, - [3540] = 3265, - [3541] = 3241, - [3542] = 1015, - [3543] = 3253, - [3544] = 3243, - [3545] = 1016, - [3546] = 3228, - [3547] = 3225, - [3548] = 3245, - [3549] = 3224, - [3550] = 3229, - [3551] = 3551, - [3552] = 3239, - [3553] = 3400, - [3554] = 2808, - [3555] = 3241, - [3556] = 3235, - [3557] = 3368, - [3558] = 3440, - [3559] = 3408, - [3560] = 3247, - [3561] = 3237, - [3562] = 2631, - [3563] = 3226, - [3564] = 3227, - [3565] = 3233, - [3566] = 3238, - [3567] = 3248, - [3568] = 3450, - [3569] = 3451, - [3570] = 3239, - [3571] = 3243, - [3572] = 3241, - [3573] = 3225, - [3574] = 3243, - [3575] = 3225, - [3576] = 3249, - [3577] = 3245, - [3578] = 3254, - [3579] = 3251, - [3580] = 3252, - [3581] = 3253, - [3582] = 3254, - [3583] = 3224, - [3584] = 3368, - [3585] = 3440, + [3427] = 3427, + [3428] = 3428, + [3429] = 3429, + [3430] = 3430, + [3431] = 3400, + [3432] = 3425, + [3433] = 3433, + [3434] = 3434, + [3435] = 3402, + [3436] = 3403, + [3437] = 3437, + [3438] = 3438, + [3439] = 3404, + [3440] = 3405, + [3441] = 3398, + [3442] = 3406, + [3443] = 3443, + [3444] = 3415, + [3445] = 3434, + [3446] = 2515, + [3447] = 3447, + [3448] = 3447, + [3449] = 3449, + [3450] = 3407, + [3451] = 3408, + [3452] = 3452, + [3453] = 3410, + [3454] = 3411, + [3455] = 3430, + [3456] = 3433, + [3457] = 3412, + [3458] = 3413, + [3459] = 3401, + [3460] = 3398, + [3461] = 3416, + [3462] = 3449, + [3463] = 3420, + [3464] = 3401, + [3465] = 3400, + [3466] = 3416, + [3467] = 3421, + [3468] = 3400, + [3469] = 2886, + [3470] = 3402, + [3471] = 3403, + [3472] = 3404, + [3473] = 3405, + [3474] = 3406, + [3475] = 3407, + [3476] = 3408, + [3477] = 3402, + [3478] = 3410, + [3479] = 3411, + [3480] = 3412, + [3481] = 3413, + [3482] = 3398, + [3483] = 3403, + [3484] = 3420, + [3485] = 3404, + [3486] = 3421, + [3487] = 3398, + [3488] = 3420, + [3489] = 3421, + [3490] = 3422, + [3491] = 3423, + [3492] = 3424, + [3493] = 3425, + [3494] = 3426, + [3495] = 3427, + [3496] = 3428, + [3497] = 3429, + [3498] = 3405, + [3499] = 3422, + [3500] = 3406, + [3501] = 3407, + [3502] = 3408, + [3503] = 3420, + [3504] = 3504, + [3505] = 3437, + [3506] = 3438, + [3507] = 3507, + [3508] = 3508, + [3509] = 3410, + [3510] = 3510, + [3511] = 3411, + [3512] = 3415, + [3513] = 3434, + [3514] = 3412, + [3515] = 3413, + [3516] = 3447, + [3517] = 3517, + [3518] = 3518, + [3519] = 3422, + [3520] = 3423, + [3521] = 3424, + [3522] = 3522, + [3523] = 3430, + [3524] = 3433, + [3525] = 3423, + [3526] = 3430, + [3527] = 3433, + [3528] = 3425, + [3529] = 3424, + [3530] = 3449, + [3531] = 3426, + [3532] = 3401, + [3533] = 3427, + [3534] = 3416, + [3535] = 3428, + [3536] = 3400, + [3537] = 3429, + [3538] = 3402, + [3539] = 3403, + [3540] = 3404, + [3541] = 3405, + [3542] = 3406, + [3543] = 3407, + [3544] = 3408, + [3545] = 3398, + [3546] = 3410, + [3547] = 3411, + [3548] = 3412, + [3549] = 3413, + [3550] = 3420, + [3551] = 3421, + [3552] = 3552, + [3553] = 3422, + [3554] = 3423, + [3555] = 3398, + [3556] = 3420, + [3557] = 3421, + [3558] = 3422, + [3559] = 3423, + [3560] = 3424, + [3561] = 3425, + [3562] = 3426, + [3563] = 3427, + [3564] = 3428, + [3565] = 3429, + [3566] = 3424, + [3567] = 3425, + [3568] = 3426, + [3569] = 3427, + [3570] = 3428, + [3571] = 3425, + [3572] = 3429, + [3573] = 3437, + [3574] = 3438, + [3575] = 3575, + [3576] = 3576, + [3577] = 3430, + [3578] = 3578, + [3579] = 3433, + [3580] = 3415, + [3581] = 3434, + [3582] = 3426, + [3583] = 3421, + [3584] = 3447, + [3585] = 3585, [3586] = 3586, - [3587] = 3587, - [3588] = 3271, - [3589] = 3232, - [3590] = 3341, - [3591] = 3386, - [3592] = 3225, - [3593] = 3242, - [3594] = 3450, - [3595] = 3451, - [3596] = 3256, - [3597] = 3597, - [3598] = 3247, - [3599] = 3248, - [3600] = 3249, - [3601] = 3245, - [3602] = 3241, - [3603] = 3251, - [3604] = 1014, - [3605] = 3605, - [3606] = 345, - [3607] = 3226, - [3608] = 3227, - [3609] = 3252, - [3610] = 3368, - [3611] = 3440, - [3612] = 3233, - [3613] = 3613, - [3614] = 3253, - [3615] = 3265, - [3616] = 3266, - [3617] = 3267, - [3618] = 3268, - [3619] = 3269, - [3620] = 3450, - [3621] = 3451, - [3622] = 3254, - [3623] = 3238, - [3624] = 3271, - [3625] = 3247, - [3626] = 3248, - [3627] = 3249, - [3628] = 3242, - [3629] = 3226, - [3630] = 3256, - [3631] = 3265, - [3632] = 3266, - [3633] = 3267, - [3634] = 3268, - [3635] = 3227, - [3636] = 3368, - [3637] = 3440, - [3638] = 3233, - [3639] = 3238, - [3640] = 3285, - [3641] = 3242, - [3642] = 3642, - [3643] = 3642, - [3644] = 3644, - [3645] = 3645, - [3646] = 3450, - [3647] = 3451, - [3648] = 3378, - [3649] = 3405, - [3650] = 3256, - [3651] = 3265, - [3652] = 3266, - [3653] = 3267, - [3654] = 3269, - [3655] = 3268, - [3656] = 3226, - [3657] = 3227, - [3658] = 3233, - [3659] = 3238, - [3660] = 3586, - [3661] = 3269, - [3662] = 3368, - [3663] = 3440, - [3664] = 3243, - [3665] = 3249, - [3666] = 3666, - [3667] = 3276, - [3668] = 3668, - [3669] = 3251, - [3670] = 3252, - [3671] = 3253, - [3672] = 3450, - [3673] = 3451, - [3674] = 3440, - [3675] = 3276, - [3676] = 3276, - [3677] = 3266, - [3678] = 3242, - [3679] = 3254, - [3680] = 3256, - [3681] = 3265, - [3682] = 3228, - [3683] = 3266, - [3684] = 3258, - [3685] = 3267, - [3686] = 3268, - [3687] = 3359, - [3688] = 3368, - [3689] = 3440, - [3690] = 3258, - [3691] = 3462, - [3692] = 3409, - [3693] = 3245, - [3694] = 3285, - [3695] = 3385, - [3696] = 3285, - [3697] = 3269, - [3698] = 3450, - [3699] = 3451, - [3700] = 3700, - [3701] = 3701, - [3702] = 3226, - [3703] = 3267, - [3704] = 3228, - [3705] = 3227, + [3587] = 3421, + [3588] = 3422, + [3589] = 3423, + [3590] = 3424, + [3591] = 3591, + [3592] = 3592, + [3593] = 1056, + [3594] = 3452, + [3595] = 3400, + [3596] = 3437, + [3597] = 3438, + [3598] = 3598, + [3599] = 3427, + [3600] = 3600, + [3601] = 3422, + [3602] = 3405, + [3603] = 3428, + [3604] = 3429, + [3605] = 3415, + [3606] = 3434, + [3607] = 3449, + [3608] = 3608, + [3609] = 3437, + [3610] = 3610, + [3611] = 3611, + [3612] = 3408, + [3613] = 3437, + [3614] = 3438, + [3615] = 3447, + [3616] = 3415, + [3617] = 3426, + [3618] = 3423, + [3619] = 3400, + [3620] = 3401, + [3621] = 3621, + [3622] = 3622, + [3623] = 3623, + [3624] = 3410, + [3625] = 3411, + [3626] = 3412, + [3627] = 3404, + [3628] = 3434, + [3629] = 3437, + [3630] = 3438, + [3631] = 3402, + [3632] = 3403, + [3633] = 320, + [3634] = 3634, + [3635] = 3413, + [3636] = 321, + [3637] = 3510, + [3638] = 1004, + [3639] = 3424, + [3640] = 3640, + [3641] = 3404, + [3642] = 3405, + [3643] = 3415, + [3644] = 3434, + [3645] = 3430, + [3646] = 3433, + [3647] = 3522, + [3648] = 3416, + [3649] = 3424, + [3650] = 3415, + [3651] = 3425, + [3652] = 3434, + [3653] = 3400, + [3654] = 3654, + [3655] = 3447, + [3656] = 3426, + [3657] = 3449, + [3658] = 3406, + [3659] = 3401, + [3660] = 3608, + [3661] = 3416, + [3662] = 3398, + [3663] = 3420, + [3664] = 3400, + [3665] = 3402, + [3666] = 3402, + [3667] = 3403, + [3668] = 3404, + [3669] = 3405, + [3670] = 3608, + [3671] = 3406, + [3672] = 3610, + [3673] = 3611, + [3674] = 3407, + [3675] = 3675, + [3676] = 3408, + [3677] = 3598, + [3678] = 3403, + [3679] = 1005, + [3680] = 3449, + [3681] = 3410, + [3682] = 3411, + [3683] = 3621, + [3684] = 3622, + [3685] = 3412, + [3686] = 3686, + [3687] = 3433, + [3688] = 3421, + [3689] = 3447, + [3690] = 3422, + [3691] = 3423, + [3692] = 3413, + [3693] = 3430, + [3694] = 3433, + [3695] = 3424, + [3696] = 3696, + [3697] = 3697, + [3698] = 3698, + [3699] = 3699, + [3700] = 3404, + [3701] = 3407, + [3702] = 3425, + [3703] = 3426, + [3704] = 3427, + [3705] = 3705, [3706] = 3706, - [3707] = 3233, - [3708] = 3701, - [3709] = 3251, - [3710] = 3243, - [3711] = 3711, - [3712] = 3252, - [3713] = 3450, - [3714] = 3368, - [3715] = 3440, - [3716] = 3716, - [3717] = 2693, - [3718] = 3228, - [3719] = 3258, - [3720] = 3229, - [3721] = 3268, - [3722] = 3228, - [3723] = 3342, - [3724] = 3450, - [3725] = 3451, - [3726] = 3238, - [3727] = 3463, - [3728] = 3242, - [3729] = 3256, - [3730] = 3265, - [3731] = 3235, - [3732] = 3229, - [3733] = 3451, + [3707] = 3623, + [3708] = 1000, + [3709] = 3405, + [3710] = 3406, + [3711] = 3398, + [3712] = 3420, + [3713] = 3449, + [3714] = 3428, + [3715] = 3421, + [3716] = 3422, + [3717] = 3423, + [3718] = 3424, + [3719] = 3401, + [3720] = 3425, + [3721] = 3426, + [3722] = 3427, + [3723] = 3428, + [3724] = 3429, + [3725] = 3407, + [3726] = 3408, + [3727] = 3610, + [3728] = 3611, + [3729] = 3437, + [3730] = 3517, + [3731] = 3410, + [3732] = 3411, + [3733] = 3733, [3734] = 3734, - [3735] = 3735, - [3736] = 3253, - [3737] = 3225, - [3738] = 3245, - [3739] = 3237, - [3740] = 3368, - [3741] = 3440, - [3742] = 3266, - [3743] = 3239, - [3744] = 3285, - [3745] = 3745, - [3746] = 3241, - [3747] = 3551, - [3748] = 3400, - [3749] = 3408, - [3750] = 3450, - [3751] = 3451, - [3752] = 3666, - [3753] = 3359, - [3754] = 3267, - [3755] = 3243, - [3756] = 3225, - [3757] = 3245, - [3758] = 3235, - [3759] = 3224, - [3760] = 3760, - [3761] = 3237, + [3735] = 3030, + [3736] = 3736, + [3737] = 3437, + [3738] = 3621, + [3739] = 3622, + [3740] = 3699, + [3741] = 3438, + [3742] = 3430, + [3743] = 3433, + [3744] = 3110, + [3745] = 3412, + [3746] = 3413, + [3747] = 3429, + [3748] = 3416, + [3749] = 3449, + [3750] = 3403, + [3751] = 3591, + [3752] = 3415, + [3753] = 3610, + [3754] = 3611, + [3755] = 3434, + [3756] = 3756, + [3757] = 3401, + [3758] = 3400, + [3759] = 3507, + [3760] = 3447, + [3761] = 3761, [3762] = 3762, - [3763] = 3239, - [3764] = 3764, - [3765] = 3247, - [3766] = 3368, - [3767] = 3440, - [3768] = 3409, - [3769] = 3248, - [3770] = 2699, - [3771] = 3249, - [3772] = 3551, - [3773] = 3268, - [3774] = 3251, - [3775] = 3252, - [3776] = 3450, - [3777] = 3451, - [3778] = 3253, - [3779] = 3241, - [3780] = 3254, - [3781] = 3269, - [3782] = 3666, - [3783] = 3251, - [3784] = 3254, + [3763] = 3621, + [3764] = 3622, + [3765] = 3413, + [3766] = 3427, + [3767] = 3420, + [3768] = 3449, + [3769] = 3421, + [3770] = 3422, + [3771] = 3402, + [3772] = 3403, + [3773] = 3404, + [3774] = 1002, + [3775] = 1003, + [3776] = 3405, + [3777] = 3430, + [3778] = 3610, + [3779] = 3611, + [3780] = 3401, + [3781] = 3518, + [3782] = 3433, + [3783] = 3406, + [3784] = 3416, [3785] = 3785, - [3786] = 3243, - [3787] = 3225, - [3788] = 3245, - [3789] = 3224, - [3790] = 3247, - [3791] = 3226, - [3792] = 3368, - [3793] = 3440, - [3794] = 3227, - [3795] = 3228, - [3796] = 3229, - [3797] = 3233, - [3798] = 3798, - [3799] = 2666, - [3800] = 3238, - [3801] = 3242, - [3802] = 3450, - [3803] = 3451, - [3804] = 3248, - [3805] = 3256, - [3806] = 3265, - [3807] = 3266, - [3808] = 3267, - [3809] = 3268, - [3810] = 3249, - [3811] = 3269, - [3812] = 3587, - [3813] = 3256, - [3814] = 3251, - [3815] = 3252, - [3816] = 3253, - [3817] = 3242, - [3818] = 3368, - [3819] = 3440, - [3820] = 3254, - [3821] = 3642, - [3822] = 3235, - [3823] = 3644, - [3824] = 3237, - [3825] = 3276, - [3826] = 3239, - [3827] = 3229, - [3828] = 3450, - [3829] = 3451, - [3830] = 3241, - [3831] = 3831, - [3832] = 3252, - [3833] = 3276, - [3834] = 3276, - [3835] = 1013, - [3836] = 3224, - [3837] = 3253, - [3838] = 3254, - [3839] = 3226, - [3840] = 3227, - [3841] = 3233, - [3842] = 3238, - [3843] = 3385, - [3844] = 3368, - [3845] = 3440, - [3846] = 3243, - [3847] = 3225, - [3848] = 3245, - [3849] = 3224, - [3850] = 3247, - [3851] = 3248, - [3852] = 3249, - [3853] = 3645, - [3854] = 3450, - [3855] = 3451, - [3856] = 3251, - [3857] = 3252, - [3858] = 3258, - [3859] = 3242, - [3860] = 3378, - [3861] = 3285, - [3862] = 3242, - [3863] = 3258, - [3864] = 3256, - [3865] = 3265, - [3866] = 3266, - [3867] = 3267, - [3868] = 3268, - [3869] = 3405, - [3870] = 3368, - [3871] = 3440, - [3872] = 3253, - [3873] = 3254, - [3874] = 3269, - [3875] = 345, - [3876] = 3644, - [3877] = 3228, - [3878] = 3285, - [3879] = 3226, - [3880] = 3450, - [3881] = 3451, - [3882] = 3227, - [3883] = 3233, - [3884] = 3247, - [3885] = 3248, - [3886] = 3228, - [3887] = 3229, - [3888] = 3249, - [3889] = 3229, - [3890] = 3258, - [3891] = 3235, - [3892] = 3645, - [3893] = 3276, - [3894] = 3251, - [3895] = 3285, - [3896] = 3896, - [3897] = 3897, - [3898] = 3252, - [3899] = 3229, - [3900] = 3896, - [3901] = 3253, - [3902] = 3258, - [3903] = 3235, - [3904] = 3247, - [3905] = 3905, - [3906] = 3254, - [3907] = 3237, - [3908] = 3248, - [3909] = 3285, - [3910] = 3910, - [3911] = 3238, - [3912] = 3239, - [3913] = 3913, - [3914] = 3613, - [3915] = 3798, - [3916] = 3910, - [3917] = 3506, - [3918] = 3764, - [3919] = 3785, - [3920] = 3512, - [3921] = 3524, - [3922] = 3354, - [3923] = 3469, - [3924] = 3471, - [3925] = 3586, - [3926] = 3241, - [3927] = 3587, - [3928] = 3613, - [3929] = 3798, - [3930] = 3910, - [3931] = 3506, - [3932] = 3764, - [3933] = 3785, - [3934] = 3512, - [3935] = 3524, - [3936] = 3354, - [3937] = 3469, - [3938] = 3471, - [3939] = 3613, - [3940] = 3798, - [3941] = 3613, - [3942] = 3798, - [3943] = 3613, - [3944] = 3798, - [3945] = 3613, - [3946] = 3798, - [3947] = 3613, - [3948] = 3798, - [3949] = 3613, - [3950] = 3798, - [3951] = 3613, - [3952] = 3798, - [3953] = 3613, - [3954] = 3798, - [3955] = 3613, - [3956] = 3798, - [3957] = 3613, - [3958] = 3798, - [3959] = 3613, - [3960] = 3798, - [3961] = 3613, - [3962] = 3798, - [3963] = 3613, - [3964] = 3798, - [3965] = 3798, - [3966] = 3798, - [3967] = 3798, - [3968] = 3798, - [3969] = 3905, - [3970] = 3257, - [3971] = 3905, - [3972] = 3257, - [3973] = 3905, - [3974] = 3257, - [3975] = 3905, - [3976] = 3257, - [3977] = 3905, - [3978] = 3257, - [3979] = 3905, - [3980] = 3257, - [3981] = 3905, - [3982] = 3257, - [3983] = 3905, - [3984] = 3257, - [3985] = 3905, - [3986] = 3257, - [3987] = 3905, - [3988] = 3257, - [3989] = 3905, - [3990] = 3257, - [3991] = 3905, - [3992] = 3257, - [3993] = 3905, - [3994] = 3257, - [3995] = 3905, - [3996] = 3257, - [3997] = 3905, - [3998] = 3257, - [3999] = 3257, - [4000] = 3257, - [4001] = 3257, - [4002] = 3257, - [4003] = 3896, + [3786] = 3400, + [3787] = 3407, + [3788] = 3621, + [3789] = 3622, + [3790] = 3423, + [3791] = 3408, + [3792] = 3402, + [3793] = 3403, + [3794] = 3575, + [3795] = 3404, + [3796] = 3796, + [3797] = 3427, + [3798] = 3410, + [3799] = 3424, + [3800] = 3449, + [3801] = 3411, + [3802] = 3425, + [3803] = 3610, + [3804] = 3611, + [3805] = 3405, + [3806] = 3406, + [3807] = 3407, + [3808] = 3408, + [3809] = 3401, + [3810] = 3410, + [3811] = 3411, + [3812] = 3412, + [3813] = 3621, + [3814] = 3622, + [3815] = 3412, + [3816] = 3413, + [3817] = 3398, + [3818] = 3426, + [3819] = 3416, + [3820] = 3413, + [3821] = 3400, + [3822] = 3408, + [3823] = 3428, + [3824] = 3427, + [3825] = 3402, + [3826] = 3401, + [3827] = 3403, + [3828] = 3610, + [3829] = 3611, + [3830] = 3705, + [3831] = 3404, + [3832] = 3405, + [3833] = 3398, + [3834] = 3429, + [3835] = 3420, + [3836] = 3421, + [3837] = 3406, + [3838] = 3621, + [3839] = 3622, + [3840] = 3422, + [3841] = 3504, + [3842] = 3507, + [3843] = 3508, + [3844] = 3407, + [3845] = 3510, + [3846] = 3408, + [3847] = 3592, + [3848] = 3398, + [3849] = 3428, + [3850] = 3410, + [3851] = 3420, + [3852] = 3411, + [3853] = 3610, + [3854] = 3611, + [3855] = 3517, + [3856] = 3518, + [3857] = 3706, + [3858] = 3423, + [3859] = 3424, + [3860] = 3428, + [3861] = 3421, + [3862] = 3422, + [3863] = 3621, + [3864] = 3622, + [3865] = 3675, + [3866] = 3412, + [3867] = 3425, + [3868] = 3426, + [3869] = 3413, + [3870] = 3427, + [3871] = 3429, + [3872] = 3423, + [3873] = 3424, + [3874] = 3416, + [3875] = 3622, + [3876] = 3425, + [3877] = 3877, + [3878] = 3610, + [3879] = 3611, + [3880] = 3428, + [3881] = 3429, + [3882] = 3576, + [3883] = 3398, + [3884] = 3420, + [3885] = 3421, + [3886] = 3422, + [3887] = 3576, + [3888] = 3621, + [3889] = 3622, + [3890] = 3578, + [3891] = 3585, + [3892] = 3586, + [3893] = 3591, + [3894] = 3423, + [3895] = 3592, + [3896] = 3424, + [3897] = 3426, + [3898] = 3427, + [3899] = 3425, + [3900] = 3426, + [3901] = 3428, + [3902] = 3427, + [3903] = 3610, + [3904] = 3611, + [3905] = 3429, + [3906] = 3428, + [3907] = 3429, + [3908] = 3434, + [3909] = 3406, + [3910] = 3400, + [3911] = 3438, + [3912] = 3437, + [3913] = 3621, + [3914] = 3622, + [3915] = 3915, + [3916] = 3438, + [3917] = 3430, + [3918] = 3405, + [3919] = 3438, + [3920] = 3623, + [3921] = 3402, + [3922] = 3437, + [3923] = 3433, + [3924] = 2903, + [3925] = 3438, + [3926] = 3437, + [3927] = 3437, + [3928] = 3610, + [3929] = 3611, + [3930] = 3438, + [3931] = 3428, + [3932] = 3438, + [3933] = 3429, + [3934] = 320, + [3935] = 3430, + [3936] = 3936, + [3937] = 3447, + [3938] = 3621, + [3939] = 3622, + [3940] = 3410, + [3941] = 3437, + [3942] = 3421, + [3943] = 3438, + [3944] = 3415, + [3945] = 3434, + [3946] = 3403, + [3947] = 3447, + [3948] = 3437, + [3949] = 3404, + [3950] = 3447, + [3951] = 3415, + [3952] = 3915, + [3953] = 3610, + [3954] = 3611, + [3955] = 3405, + [3956] = 3415, + [3957] = 3434, + [3958] = 3504, + [3959] = 3434, + [3960] = 3675, + [3961] = 3406, + [3962] = 3962, + [3963] = 3621, + [3964] = 3622, + [3965] = 3598, + [3966] = 3966, + [3967] = 3407, + [3968] = 3415, + [3969] = 3415, + [3970] = 3447, + [3971] = 3434, + [3972] = 3434, + [3973] = 3447, + [3974] = 3430, + [3975] = 3433, + [3976] = 3438, + [3977] = 3408, + [3978] = 3610, + [3979] = 3611, + [3980] = 3696, + [3981] = 3423, + [3982] = 3697, + [3983] = 3698, + [3984] = 3401, + [3985] = 3699, + [3986] = 3697, + [3987] = 3610, + [3988] = 3621, + [3989] = 3622, + [3990] = 3705, + [3991] = 3706, + [3992] = 3698, + [3993] = 3447, + [3994] = 3449, + [3995] = 3411, + [3996] = 3996, + [3997] = 3447, + [3998] = 3412, + [3999] = 3401, + [4000] = 4000, + [4001] = 3430, + [4002] = 3416, + [4003] = 3610, + [4004] = 3611, + [4005] = 3416, + [4006] = 3578, + [4007] = 3420, + [4008] = 3400, + [4009] = 3611, + [4010] = 4010, + [4011] = 3410, + [4012] = 3402, + [4013] = 3621, + [4014] = 3622, + [4015] = 3404, + [4016] = 3430, + [4017] = 3433, + [4018] = 3403, + [4019] = 3404, + [4020] = 3405, + [4021] = 3406, + [4022] = 3433, + [4023] = 3423, + [4024] = 3407, + [4025] = 3408, + [4026] = 3413, + [4027] = 3411, + [4028] = 3610, + [4029] = 3611, + [4030] = 3407, + [4031] = 2515, + [4032] = 3410, + [4033] = 3411, + [4034] = 3449, + [4035] = 3408, + [4036] = 3401, + [4037] = 3412, + [4038] = 3621, + [4039] = 3622, + [4040] = 3416, + [4041] = 3413, + [4042] = 3400, + [4043] = 3422, + [4044] = 3412, + [4045] = 3402, + [4046] = 3413, + [4047] = 320, + [4048] = 3402, + [4049] = 3424, + [4050] = 3621, + [4051] = 4051, + [4052] = 3403, + [4053] = 3404, + [4054] = 3398, + [4055] = 3420, + [4056] = 3405, + [4057] = 3406, + [4058] = 3421, + [4059] = 3422, + [4060] = 3407, + [4061] = 3408, + [4062] = 3423, + [4063] = 3424, + [4064] = 3425, + [4065] = 3410, + [4066] = 3426, + [4067] = 3427, + [4068] = 3411, + [4069] = 3428, + [4070] = 3429, + [4071] = 3443, + [4072] = 3552, + [4073] = 3877, + [4074] = 3686, + [4075] = 3962, + [4076] = 3600, + [4077] = 3936, + [4078] = 4000, + [4079] = 4010, + [4080] = 3634, + [4081] = 3736, + [4082] = 3412, + [4083] = 3425, + [4084] = 3426, + [4085] = 3443, + [4086] = 3552, + [4087] = 3877, + [4088] = 3686, + [4089] = 3962, + [4090] = 3600, + [4091] = 3936, + [4092] = 4000, + [4093] = 4010, + [4094] = 3634, + [4095] = 3736, + [4096] = 3443, + [4097] = 3552, + [4098] = 3443, + [4099] = 3552, + [4100] = 3443, + [4101] = 3552, + [4102] = 3443, + [4103] = 3552, + [4104] = 3443, + [4105] = 3552, + [4106] = 3443, + [4107] = 3552, + [4108] = 3443, + [4109] = 3552, + [4110] = 3443, + [4111] = 3552, + [4112] = 3443, + [4113] = 3552, + [4114] = 3443, + [4115] = 3552, + [4116] = 3443, + [4117] = 3552, + [4118] = 3443, + [4119] = 3552, + [4120] = 3443, + [4121] = 3552, + [4122] = 3552, + [4123] = 3552, + [4124] = 3552, + [4125] = 3552, + [4126] = 3430, + [4127] = 3433, + [4128] = 3427, + [4129] = 3410, + [4130] = 3696, + [4131] = 3437, + [4132] = 3438, + [4133] = 4133, + [4134] = 3411, + [4135] = 3415, + [4136] = 3449, + [4137] = 3398, + [4138] = 3415, + [4139] = 3434, + [4140] = 3449, + [4141] = 3420, + [4142] = 3447, + [4143] = 3508, + [4144] = 3401, + [4145] = 3421, + [4146] = 3416, + [4147] = 3585, + [4148] = 3401, + [4149] = 3412, + [4150] = 3400, + [4151] = 3430, + [4152] = 3433, + [4153] = 3422, + [4154] = 3413, + [4155] = 3449, + [4156] = 3416, + [4157] = 3402, + [4158] = 3449, + [4159] = 3586, + [4160] = 3429, }; static const TSCharacterRange aux_sym_shortcode_naked_string_token1_character_set_1[] = { @@ -6097,228 +6260,410 @@ static const TSCharacterRange aux_sym_shortcode_naked_string_token2_character_se }; static const TSCharacterRange aux_sym_pandoc_str_token1_character_set_1[] = { - {'#', '#'}, {'%', '&'}, {'(', ')'}, {'+', '+'}, {'-', '-'}, {'/', ':'}, {'=', '='}, {'A', 'Z'}, - {'\\', '\\'}, {'a', 'z'}, {0xa0, 0xa0}, {0xa2, 0xa6}, {0xa8, 0xac}, {0xae, 0xb5}, {0xb8, 0xbe}, {0xc0, 0x2ff}, - {0x370, 0x377}, {0x37a, 0x37d}, {0x37f, 0x37f}, {0x384, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x482}, - {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x58a, 0x58a}, {0x58d, 0x58f}, {0x5be, 0x5be}, {0x5d0, 0x5ea}, - {0x5ef, 0x5f2}, {0x606, 0x608}, {0x60b, 0x60b}, {0x60e, 0x60f}, {0x620, 0x64a}, {0x660, 0x669}, {0x66e, 0x66f}, {0x671, 0x6d3}, - {0x6d5, 0x6d5}, {0x6de, 0x6de}, {0x6e5, 0x6e6}, {0x6e9, 0x6e9}, {0x6ee, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, - {0x7b1, 0x7b1}, {0x7c0, 0x7ea}, {0x7f4, 0x7f6}, {0x7fa, 0x7fa}, {0x7fe, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, - {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, {0x958, 0x961}, - {0x966, 0x96f}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, - {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9e6, 0x9fc}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, - {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa66, 0xa6f}, {0xa72, 0xa74}, - {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, - {0xae0, 0xae1}, {0xae6, 0xaef}, {0xaf1, 0xaf1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, - {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb66, 0xb77}, {0xb83, 0xb83}, {0xb85, 0xb8a}, - {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, - {0xbd0, 0xbd0}, {0xbe6, 0xbfa}, {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, - {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc66, 0xc6f}, {0xc78, 0xc80}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, - {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, {0xce6, 0xcef}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, - {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4f}, {0xd54, 0xd56}, {0xd58, 0xd61}, {0xd66, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, - {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xde6, 0xdef}, {0xe01, 0xe30}, {0xe32, 0xe33}, {0xe3f, 0xe46}, {0xe50, 0xe59}, - {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb3}, {0xebd, 0xebd}, - {0xec0, 0xec4}, {0xec6, 0xec6}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf03}, {0xf13, 0xf13}, {0xf15, 0xf17}, {0xf1a, 0xf34}, - {0xf36, 0xf36}, {0xf38, 0xf38}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0xfbe, 0xfc5}, {0xfc7, 0xfcc}, {0xfce, 0xfcf}, - {0xfd5, 0xfd8}, {0x1000, 0x102a}, {0x103f, 0x1049}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, - {0x1075, 0x1081}, {0x108e, 0x108e}, {0x1090, 0x1099}, {0x109e, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, - {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, - {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1369, 0x137c}, - {0x1380, 0x1399}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1400, 0x166d}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, - {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17db, 0x17dc}, - {0x17e0, 0x17e9}, {0x17f0, 0x17f9}, {0x1806, 0x1806}, {0x1810, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x1884}, {0x1887, 0x18a8}, {0x18aa, 0x18aa}, - {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1940, 0x1940}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, - {0x19de, 0x1a16}, {0x1a20, 0x1a54}, {0x1a80, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b50, 0x1b59}, - {0x1b61, 0x1b6a}, {0x1b74, 0x1b7c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1be5}, {0x1c00, 0x1c23}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, - {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, - {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, - {0x1f80, 0x1fb4}, {0x1fb6, 0x1fc4}, {0x1fc6, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fdd, 0x1fef}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffe}, {0x2010, 0x2015}, - {0x2018, 0x201f}, {0x2026, 0x2026}, {0x2039, 0x203a}, {0x203c, 0x203c}, {0x2044, 0x2044}, {0x2049, 0x2049}, {0x2052, 0x2052}, {0x2070, 0x2071}, - {0x2074, 0x207c}, {0x207f, 0x208c}, {0x2090, 0x209c}, {0x20a0, 0x20af}, {0x20b1, 0x20c0}, {0x2100, 0x218b}, {0x2190, 0x2307}, {0x230c, 0x2328}, - {0x232b, 0x2429}, {0x2440, 0x244a}, {0x2460, 0x2767}, {0x2776, 0x27c4}, {0x27c7, 0x27e5}, {0x27f0, 0x2982}, {0x2999, 0x29d7}, {0x29dc, 0x29fb}, - {0x29fe, 0x2b73}, {0x2b76, 0x2b95}, {0x2b97, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2cfd, 0x2cfd}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, - {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, - {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2e17, 0x2e17}, {0x2e1a, 0x2e1a}, {0x2e2f, 0x2e2f}, {0x2e3a, 0x2e3b}, {0x2e40, 0x2e40}, - {0x2e50, 0x2e51}, {0x2e5d, 0x2e5d}, {0x2e80, 0x2e99}, {0x2e9b, 0x2ef3}, {0x2f00, 0x2fd5}, {0x2ff0, 0x2fff}, {0x3004, 0x3007}, {0x3012, 0x3013}, - {0x301c, 0x301c}, {0x3020, 0x3029}, {0x3030, 0x303f}, {0x3041, 0x3096}, {0x309b, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, - {0x3190, 0x31e5}, {0x31ef, 0x321e}, {0x3220, 0xa48c}, {0xa490, 0xa4c6}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66e}, - {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa700, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, - {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa828, 0xa82b}, {0xa830, 0xa839}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8d0, 0xa8d9}, {0xa8f2, 0xa8f7}, - {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa900, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9e4}, - {0xa9e6, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa50, 0xaa59}, {0xaa60, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, - {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, - {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab6b}, {0xab70, 0xabe2}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, - {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb36}, - {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbc2}, {0xfbd3, 0xfd3d}, {0xfd40, 0xfd8f}, {0xfd92, 0xfdc7}, - {0xfdcf, 0xfdcf}, {0xfdf0, 0xfdff}, {0xfe31, 0xfe32}, {0xfe58, 0xfe58}, {0xfe62, 0xfe66}, {0xfe69, 0xfe69}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, - {0xff04, 0xff04}, {0xff0b, 0xff0b}, {0xff0d, 0xff0d}, {0xff10, 0xff19}, {0xff1c, 0xff1e}, {0xff21, 0xff3a}, {0xff3e, 0xff3e}, {0xff40, 0xff5a}, - {0xff5c, 0xff5c}, {0xff5e, 0xff5e}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0xffe0, 0xffe6}, - {0xffe8, 0xffee}, {0xfffc, 0xfffd}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, - {0x10080, 0x100fa}, {0x10107, 0x10133}, {0x10137, 0x1018e}, {0x10190, 0x1019c}, {0x101a0, 0x101a0}, {0x101d0, 0x101fc}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, + {'!', '!'}, {'#', '#'}, {'%', '&'}, {'(', ')'}, {'+', ';'}, {'=', '?'}, {'A', 'Z'}, {'\\', '\\'}, + {'a', 'z'}, {0xa0, 0xa0}, {0xa2, 0xa6}, {0xa8, 0xac}, {0xae, 0xb5}, {0xb8, 0xbe}, {0xc0, 0x2ff}, {0x370, 0x377}, + {0x37a, 0x37d}, {0x37f, 0x37f}, {0x384, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x482}, {0x48a, 0x52f}, + {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x58a, 0x58a}, {0x58d, 0x58f}, {0x5be, 0x5be}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, + {0x606, 0x608}, {0x60b, 0x60b}, {0x60e, 0x60f}, {0x620, 0x64a}, {0x660, 0x669}, {0x66e, 0x66f}, {0x671, 0x6d3}, {0x6d5, 0x6d5}, + {0x6de, 0x6de}, {0x6e5, 0x6e6}, {0x6e9, 0x6e9}, {0x6ee, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, {0x7b1, 0x7b1}, + {0x7c0, 0x7ea}, {0x7f4, 0x7f6}, {0x7fa, 0x7fa}, {0x7fe, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, {0x840, 0x858}, + {0x860, 0x86a}, {0x870, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, {0x958, 0x961}, {0x966, 0x96f}, + {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, + {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9e6, 0x9fc}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, + {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa66, 0xa6f}, {0xa72, 0xa74}, {0xa85, 0xa8d}, + {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, + {0xae6, 0xaef}, {0xaf1, 0xaf1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, + {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb66, 0xb77}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, + {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, + {0xbe6, 0xbfa}, {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, + {0xc60, 0xc61}, {0xc66, 0xc6f}, {0xc78, 0xc80}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, + {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, {0xce6, 0xcef}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, + {0xd3d, 0xd3d}, {0xd4e, 0xd4f}, {0xd54, 0xd56}, {0xd58, 0xd61}, {0xd66, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, + {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xde6, 0xdef}, {0xe01, 0xe30}, {0xe32, 0xe33}, {0xe3f, 0xe46}, {0xe50, 0xe59}, {0xe81, 0xe82}, + {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb3}, {0xebd, 0xebd}, {0xec0, 0xec4}, + {0xec6, 0xec6}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf03}, {0xf13, 0xf13}, {0xf15, 0xf17}, {0xf1a, 0xf34}, {0xf36, 0xf36}, + {0xf38, 0xf38}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0xfbe, 0xfc5}, {0xfc7, 0xfcc}, {0xfce, 0xfcf}, {0xfd5, 0xfd8}, + {0x1000, 0x102a}, {0x103f, 0x1049}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, + {0x108e, 0x108e}, {0x1090, 0x1099}, {0x109e, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, + {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, + {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1369, 0x137c}, {0x1380, 0x1399}, + {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1400, 0x166d}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, + {0x171f, 0x1731}, {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17db, 0x17dc}, {0x17e0, 0x17e9}, + {0x17f0, 0x17f9}, {0x1806, 0x1806}, {0x1810, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x1884}, {0x1887, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, + {0x1900, 0x191e}, {0x1940, 0x1940}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x19de, 0x1a16}, + {0x1a20, 0x1a54}, {0x1a80, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b61, 0x1b6a}, + {0x1b74, 0x1b7c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1be5}, {0x1c00, 0x1c23}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, + {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, + {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, + {0x1fb6, 0x1fc4}, {0x1fc6, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fdd, 0x1fef}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffe}, {0x2010, 0x2015}, {0x2018, 0x201f}, + {0x2026, 0x2026}, {0x2039, 0x203a}, {0x203c, 0x203c}, {0x2044, 0x2044}, {0x2049, 0x2049}, {0x2052, 0x2052}, {0x2070, 0x2071}, {0x2074, 0x207c}, + {0x207f, 0x208c}, {0x2090, 0x209c}, {0x20a0, 0x20af}, {0x20b1, 0x20c0}, {0x2100, 0x218b}, {0x2190, 0x2307}, {0x230c, 0x2328}, {0x232b, 0x2429}, + {0x2440, 0x244a}, {0x2460, 0x2767}, {0x2776, 0x27c4}, {0x27c7, 0x27e5}, {0x27f0, 0x2982}, {0x2999, 0x29d7}, {0x29dc, 0x29fb}, {0x29fe, 0x2b73}, + {0x2b76, 0x2b95}, {0x2b97, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2cfd, 0x2cfd}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, + {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, + {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2e17, 0x2e17}, {0x2e1a, 0x2e1a}, {0x2e2f, 0x2e2f}, {0x2e3a, 0x2e3b}, {0x2e40, 0x2e40}, {0x2e50, 0x2e51}, + {0x2e5d, 0x2e5d}, {0x2e80, 0x2e99}, {0x2e9b, 0x2ef3}, {0x2f00, 0x2fd5}, {0x2ff0, 0x2fff}, {0x3004, 0x3007}, {0x3012, 0x3013}, {0x301c, 0x301c}, + {0x3020, 0x3029}, {0x3030, 0x303f}, {0x3041, 0x3096}, {0x309b, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x3190, 0x31e5}, + {0x31ef, 0x321e}, {0x3220, 0xa48c}, {0xa490, 0xa4c6}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, + {0xa6a0, 0xa6ef}, {0xa700, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, + {0xa80c, 0xa822}, {0xa828, 0xa82b}, {0xa830, 0xa839}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8d0, 0xa8d9}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, + {0xa8fd, 0xa8fe}, {0xa900, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9fe}, + {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa50, 0xaa59}, {0xaa60, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, + {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, + {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab6b}, {0xab70, 0xabe2}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, + {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb36}, {0xfb38, 0xfb3c}, + {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbc2}, {0xfbd3, 0xfd3d}, {0xfd40, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdcf, 0xfdcf}, + {0xfdf0, 0xfdff}, {0xfe31, 0xfe32}, {0xfe58, 0xfe58}, {0xfe62, 0xfe66}, {0xfe69, 0xfe69}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff04, 0xff04}, + {0xff0b, 0xff0b}, {0xff0d, 0xff0d}, {0xff10, 0xff19}, {0xff1c, 0xff1e}, {0xff21, 0xff3a}, {0xff3e, 0xff3e}, {0xff40, 0xff5a}, {0xff5c, 0xff5c}, + {0xff5e, 0xff5e}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0xffe0, 0xffe6}, {0xffe8, 0xffee}, + {0xfffc, 0xfffd}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, + {0x10107, 0x10133}, {0x10137, 0x1018e}, {0x10190, 0x1019c}, {0x101a0, 0x101a0}, {0x101d0, 0x101fc}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e1, 0x102fb}, + {0x10300, 0x10323}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, + {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, + {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, + {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, + {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10858, 0x1089e}, {0x108a7, 0x108af}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x108fb, 0x1091b}, {0x10920, 0x10939}, + {0x10980, 0x109b7}, {0x109bc, 0x109cf}, {0x109d2, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a40, 0x10a48}, {0x10a60, 0x10a7e}, + {0x10a80, 0x10a9f}, {0x10ac0, 0x10ae4}, {0x10aeb, 0x10aef}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b58, 0x10b72}, {0x10b78, 0x10b91}, {0x10ba9, 0x10baf}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10cfa, 0x10d23}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d6e, 0x10d85}, {0x10e60, 0x10e7e}, + {0x10e80, 0x10ea9}, {0x10ead, 0x10ead}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f27}, {0x10f30, 0x10f45}, {0x10f51, 0x10f54}, {0x10f70, 0x10f81}, + {0x10fb0, 0x10fcb}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11052, 0x1106f}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, + {0x110f0, 0x110f9}, {0x11103, 0x11126}, {0x11136, 0x1113f}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, + {0x111c1, 0x111c4}, {0x111d0, 0x111da}, {0x111dc, 0x111dc}, {0x111e1, 0x111f4}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, + {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x112f0, 0x112f9}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, + {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11380, 0x11389}, + {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, {0x11447, 0x1144a}, + {0x11450, 0x11459}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, + {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, + {0x11730, 0x1173b}, {0x1173f, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118f2}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, + {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, + {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, + {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c50, 0x11c6c}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, + {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11da0, 0x11da9}, + {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x11fc0, 0x11ff1}, {0x12000, 0x12399}, + {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, + {0x16130, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, + {0x16b3c, 0x16b43}, {0x16b45, 0x16b45}, {0x16b50, 0x16b59}, {0x16b5b, 0x16b61}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, + {0x16e40, 0x16e96}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, + {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, + {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9c, 0x1bc9c}, {0x1cc00, 0x1ccf9}, + {0x1cd00, 0x1ceb3}, {0x1cf50, 0x1cfc3}, {0x1d000, 0x1d0f5}, {0x1d100, 0x1d126}, {0x1d129, 0x1d164}, {0x1d16a, 0x1d16c}, {0x1d183, 0x1d184}, {0x1d18c, 0x1d1a9}, + {0x1d1ae, 0x1d1ea}, {0x1d200, 0x1d241}, {0x1d245, 0x1d245}, {0x1d2c0, 0x1d2d3}, {0x1d2e0, 0x1d2f3}, {0x1d300, 0x1d356}, {0x1d360, 0x1d378}, {0x1d400, 0x1d454}, + {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, + {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, + {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d7cb}, {0x1d7ce, 0x1d9ff}, {0x1da37, 0x1da3a}, {0x1da6d, 0x1da74}, {0x1da76, 0x1da83}, {0x1da85, 0x1da86}, + {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14f}, {0x1e290, 0x1e2ad}, + {0x1e2c0, 0x1e2eb}, {0x1e2f0, 0x1e2f9}, {0x1e2ff, 0x1e2ff}, {0x1e4d0, 0x1e4eb}, {0x1e4f0, 0x1e4f9}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, + {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8c7, 0x1e8cf}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1e950, 0x1e959}, + {0x1ec71, 0x1ecb4}, {0x1ed01, 0x1ed3d}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, + {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, + {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, + {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, + {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1eef0, 0x1eef1}, {0x1f000, 0x1fb92}, {0x1fb94, 0x1fbf9}, {0x1fc00, 0x1fffd}, {0x20000, 0x2a6df}, + {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, +}; + +static const TSCharacterRange aux_sym_pandoc_str_token1_character_set_2[] = { + {'!', '!'}, {'\'', '\''}, {',', '.'}, {'0', '9'}, {';', ';'}, {'?', '?'}, {'A', 'Z'}, {'_', '_'}, + {'a', 'z'}, {0xa0, 0xa0}, {0xaa, 0xab}, {0xb2, 0xb3}, {0xb5, 0xb5}, {0xb9, 0xbe}, {0xc0, 0xd6}, {0xd8, 0xf6}, + {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37a, 0x37d}, + {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, + {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x660, 0x669}, {0x66e, 0x66f}, + {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, + {0x7b1, 0x7b1}, {0x7c0, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, + {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, + {0x958, 0x961}, {0x966, 0x96f}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, + {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9e6, 0x9f1}, {0x9f4, 0x9f9}, {0x9fc, 0x9fc}, + {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, + {0xa5e, 0xa5e}, {0xa66, 0xa6f}, {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, + {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, {0xae6, 0xaef}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, + {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb66, 0xb6f}, + {0xb71, 0xb77}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, + {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xbe6, 0xbf2}, {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, + {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc66, 0xc6f}, {0xc78, 0xc7e}, {0xc80, 0xc80}, + {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, + {0xce6, 0xcef}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, + {0xd58, 0xd61}, {0xd66, 0xd78}, {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, + {0xde6, 0xdef}, {0xe01, 0xe30}, {0xe32, 0xe33}, {0xe40, 0xe46}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, + {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb3}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xed0, 0xed9}, + {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf20, 0xf33}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0x1000, 0x102a}, {0x103f, 0x1049}, + {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, {0x1090, 0x1099}, + {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, + {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, + {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1369, 0x137c}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, + {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, + {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x17e0, 0x17e9}, {0x17f0, 0x17f9}, {0x1810, 0x1819}, + {0x1820, 0x1878}, {0x1880, 0x1884}, {0x1887, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1946, 0x196d}, {0x1970, 0x1974}, + {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1a80, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, + {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b83, 0x1ba0}, {0x1bae, 0x1be5}, {0x1c00, 0x1c23}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, + {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, + {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, + {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, + {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2018, 0x201f}, {0x2039, 0x203a}, {0x2070, 0x2071}, {0x2074, 0x2079}, {0x207f, 0x2089}, + {0x2090, 0x209c}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2119, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, + {0x2128, 0x2128}, {0x212a, 0x212d}, {0x212f, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2150, 0x2189}, {0x2460, 0x249b}, + {0x24ea, 0x24ff}, {0x2776, 0x2793}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2cfd, 0x2cfd}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, + {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, + {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2e2f, 0x2e2f}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, + {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x3192, 0x3195}, + {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3220, 0x3229}, {0x3248, 0x324f}, {0x3251, 0x325f}, {0x3280, 0x3289}, {0x32b1, 0x32bf}, {0x3400, 0x4dbf}, + {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, + {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, + {0xa80c, 0xa822}, {0xa830, 0xa835}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8d0, 0xa8d9}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, + {0xa900, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9fe}, {0xaa00, 0xaa28}, + {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, + {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, + {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, + {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, + {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, {0xfd50, 0xfd8f}, + {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xffbe}, + {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, + {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10107, 0x10133}, {0x10140, 0x10178}, {0x1018a, 0x1018b}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e1, 0x102fb}, {0x10300, 0x10323}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, - {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10858, 0x1089e}, {0x108a7, 0x108af}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x108fb, 0x1091b}, - {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109bc, 0x109cf}, {0x109d2, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a40, 0x10a48}, - {0x10a60, 0x10a7e}, {0x10a80, 0x10a9f}, {0x10ac0, 0x10ae4}, {0x10aeb, 0x10aef}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b58, 0x10b72}, {0x10b78, 0x10b91}, - {0x10ba9, 0x10baf}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10cfa, 0x10d23}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d6e, 0x10d85}, - {0x10e60, 0x10e7e}, {0x10e80, 0x10ea9}, {0x10ead, 0x10ead}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f27}, {0x10f30, 0x10f45}, {0x10f51, 0x10f54}, - {0x10f70, 0x10f81}, {0x10fb0, 0x10fcb}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11052, 0x1106f}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, - {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11103, 0x11126}, {0x11136, 0x1113f}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, - {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111d0, 0x111da}, {0x111dc, 0x111dc}, {0x111e1, 0x111f4}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, - {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x112f0, 0x112f9}, {0x11305, 0x1130c}, - {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, - {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, - {0x11447, 0x1144a}, {0x11450, 0x11459}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115ae}, - {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, - {0x11700, 0x1171a}, {0x11730, 0x1173b}, {0x1173f, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118f2}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, - {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, - {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, - {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c50, 0x11c6c}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, - {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, - {0x11da0, 0x11da9}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x11fc0, 0x11ff1}, - {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, - {0x16100, 0x1611d}, {0x16130, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, - {0x16b00, 0x16b2f}, {0x16b3c, 0x16b43}, {0x16b45, 0x16b45}, {0x16b50, 0x16b59}, {0x16b5b, 0x16b61}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, + {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10858, 0x10876}, {0x10879, 0x1089e}, {0x108a7, 0x108af}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, + {0x108fb, 0x1091b}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109bc, 0x109cf}, {0x109d2, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, + {0x10a40, 0x10a48}, {0x10a60, 0x10a7e}, {0x10a80, 0x10a9f}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10aeb, 0x10aef}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, + {0x10b58, 0x10b72}, {0x10b78, 0x10b91}, {0x10ba9, 0x10baf}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10cfa, 0x10d23}, {0x10d30, 0x10d39}, + {0x10d40, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e60, 0x10e7e}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f27}, {0x10f30, 0x10f45}, + {0x10f51, 0x10f54}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fcb}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11052, 0x1106f}, {0x11071, 0x11072}, {0x11075, 0x11075}, + {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11103, 0x11126}, {0x11136, 0x1113f}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, + {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111d0, 0x111da}, {0x111dc, 0x111dc}, {0x111e1, 0x111f4}, {0x11200, 0x11211}, {0x11213, 0x1122b}, + {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x112f0, 0x112f9}, + {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, + {0x1135d, 0x11361}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, + {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x11450, 0x11459}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, + {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x116c0, 0x116c9}, + {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x11730, 0x1173b}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118f2}, {0x118ff, 0x11906}, {0x11909, 0x11909}, + {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, + {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, + {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c50, 0x11c6c}, {0x11c72, 0x11c8f}, + {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, + {0x11d98, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, + {0x11fc0, 0x11fd4}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x13460, 0x143fa}, + {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16130, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, + {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b5b, 0x16b61}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e96}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, - {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9c, 0x1bc9c}, - {0x1cc00, 0x1ccf9}, {0x1cd00, 0x1ceb3}, {0x1cf50, 0x1cfc3}, {0x1d000, 0x1d0f5}, {0x1d100, 0x1d126}, {0x1d129, 0x1d164}, {0x1d16a, 0x1d16c}, {0x1d183, 0x1d184}, - {0x1d18c, 0x1d1a9}, {0x1d1ae, 0x1d1ea}, {0x1d200, 0x1d241}, {0x1d245, 0x1d245}, {0x1d2c0, 0x1d2d3}, {0x1d2e0, 0x1d2f3}, {0x1d300, 0x1d356}, {0x1d360, 0x1d378}, - {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, - {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, - {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d7cb}, {0x1d7ce, 0x1d9ff}, {0x1da37, 0x1da3a}, {0x1da6d, 0x1da74}, {0x1da76, 0x1da83}, - {0x1da85, 0x1da86}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14f}, - {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e2f0, 0x1e2f9}, {0x1e2ff, 0x1e2ff}, {0x1e4d0, 0x1e4eb}, {0x1e4f0, 0x1e4f9}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5fa}, + {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1ccf0, 0x1ccf9}, + {0x1d2c0, 0x1d2d3}, {0x1d2e0, 0x1d2f3}, {0x1d360, 0x1d378}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, + {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, + {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, + {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, + {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e140, 0x1e149}, + {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e2f0, 0x1e2f9}, {0x1e4d0, 0x1e4eb}, {0x1e4f0, 0x1e4f9}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8c7, 0x1e8cf}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, - {0x1e950, 0x1e959}, {0x1ec71, 0x1ecb4}, {0x1ed01, 0x1ed3d}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, - {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, - {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, - {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, - {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1eef0, 0x1eef1}, {0x1f000, 0x1fb92}, {0x1fb94, 0x1fbf9}, {0x1fc00, 0x1fffd}, - {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, - {0x31350, 0x323af}, + {0x1e950, 0x1e959}, {0x1ec71, 0x1ecab}, {0x1ecad, 0x1ecaf}, {0x1ecb1, 0x1ecb4}, {0x1ed01, 0x1ed2d}, {0x1ed2f, 0x1ed3d}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, + {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, + {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, + {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, + {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1f100, 0x1f10c}, + {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, + {0x30000, 0x3134a}, {0x31350, 0x323af}, }; -static const TSCharacterRange aux_sym_pandoc_str_token1_character_set_2[] = { - {'!', '!'}, {'\'', '\''}, {'+', '.'}, {'0', '9'}, {';', ';'}, {'=', '='}, {'?', '?'}, {'A', 'Z'}, - {'_', '_'}, {'a', 'z'}, {0xa0, 0xa0}, {0xa2, 0xa6}, {0xa8, 0xac}, {0xae, 0xb5}, {0xb8, 0xbe}, {0xc0, 0x2ff}, - {0x370, 0x377}, {0x37a, 0x37d}, {0x37f, 0x37f}, {0x384, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x482}, - {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x58d, 0x58f}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x606, 0x608}, - {0x60b, 0x60b}, {0x60e, 0x60f}, {0x620, 0x64a}, {0x660, 0x669}, {0x66e, 0x66f}, {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6de, 0x6de}, - {0x6e5, 0x6e6}, {0x6e9, 0x6e9}, {0x6ee, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, {0x7b1, 0x7b1}, {0x7c0, 0x7ea}, - {0x7f4, 0x7f6}, {0x7fa, 0x7fa}, {0x7fe, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, {0x840, 0x858}, {0x860, 0x86a}, - {0x870, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, {0x958, 0x961}, {0x966, 0x96f}, {0x971, 0x980}, - {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, - {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9e6, 0x9fc}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, - {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa66, 0xa6f}, {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, - {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, {0xae6, 0xaef}, - {0xaf1, 0xaf1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, - {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb66, 0xb77}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, - {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xbe6, 0xbfa}, - {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, - {0xc66, 0xc6f}, {0xc78, 0xc80}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, - {0xcdd, 0xcde}, {0xce0, 0xce1}, {0xce6, 0xcef}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, - {0xd4e, 0xd4f}, {0xd54, 0xd56}, {0xd58, 0xd61}, {0xd66, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, - {0xdc0, 0xdc6}, {0xde6, 0xdef}, {0xe01, 0xe30}, {0xe32, 0xe33}, {0xe3f, 0xe46}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, - {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb3}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, - {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf03}, {0xf13, 0xf13}, {0xf15, 0xf17}, {0xf1a, 0xf34}, {0xf36, 0xf36}, {0xf38, 0xf38}, - {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0xfbe, 0xfc5}, {0xfc7, 0xfcc}, {0xfce, 0xfcf}, {0xfd5, 0xfd8}, {0x1000, 0x102a}, - {0x103f, 0x1049}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, - {0x1090, 0x1099}, {0x109e, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, - {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, - {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1369, 0x137c}, {0x1380, 0x1399}, {0x13a0, 0x13f5}, - {0x13f8, 0x13fd}, {0x1401, 0x166d}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, - {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17db, 0x17dc}, {0x17e0, 0x17e9}, {0x17f0, 0x17f9}, - {0x1810, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x1884}, {0x1887, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1940, 0x1940}, - {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x19de, 0x1a16}, {0x1a20, 0x1a54}, {0x1a80, 0x1a89}, - {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b61, 0x1b6a}, {0x1b74, 0x1b7c}, {0x1b83, 0x1ba0}, - {0x1bae, 0x1be5}, {0x1c00, 0x1c23}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, - {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, - {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fc4}, {0x1fc6, 0x1fd3}, - {0x1fd6, 0x1fdb}, {0x1fdd, 0x1fef}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffe}, {0x2018, 0x201f}, {0x2039, 0x203a}, {0x2044, 0x2044}, {0x2052, 0x2052}, - {0x2070, 0x2071}, {0x2074, 0x207c}, {0x207f, 0x208c}, {0x2090, 0x209c}, {0x20a0, 0x20af}, {0x20b1, 0x20c0}, {0x2100, 0x218b}, {0x2190, 0x2307}, - {0x230c, 0x2328}, {0x232b, 0x2429}, {0x2440, 0x244a}, {0x2460, 0x2767}, {0x2776, 0x27c4}, {0x27c7, 0x27e5}, {0x27f0, 0x2982}, {0x2999, 0x29d7}, - {0x29dc, 0x29fb}, {0x29fe, 0x2b73}, {0x2b76, 0x2b95}, {0x2b97, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2cfd, 0x2cfd}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, - {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, - {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2e2f, 0x2e2f}, {0x2e50, 0x2e51}, {0x2e80, 0x2e99}, {0x2e9b, 0x2ef3}, - {0x2f00, 0x2fd5}, {0x2ff0, 0x2fff}, {0x3004, 0x3007}, {0x3012, 0x3013}, {0x3020, 0x3029}, {0x3031, 0x303c}, {0x303e, 0x303f}, {0x3041, 0x3096}, - {0x309b, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x3190, 0x31e5}, {0x31ef, 0x321e}, {0x3220, 0xa48c}, - {0xa490, 0xa4c6}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa700, 0xa7cd}, - {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa828, 0xa82b}, - {0xa830, 0xa839}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8d0, 0xa8d9}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa900, 0xa925}, - {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, - {0xaa44, 0xaa4b}, {0xaa50, 0xaa59}, {0xaa60, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, - {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, - {0xab28, 0xab2e}, {0xab30, 0xab6b}, {0xab70, 0xabe2}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, - {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, - {0xfb43, 0xfb44}, {0xfb46, 0xfbc2}, {0xfbd3, 0xfd3d}, {0xfd40, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdcf, 0xfdcf}, {0xfdf0, 0xfdff}, {0xfe62, 0xfe62}, - {0xfe64, 0xfe66}, {0xfe69, 0xfe69}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff04, 0xff04}, {0xff0b, 0xff0b}, {0xff10, 0xff19}, {0xff1c, 0xff1e}, - {0xff21, 0xff3a}, {0xff3e, 0xff3e}, {0xff40, 0xff5a}, {0xff5c, 0xff5c}, {0xff5e, 0xff5e}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, - {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0xffe0, 0xffe6}, {0xffe8, 0xffee}, {0xfffc, 0xfffd}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, - {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10107, 0x10133}, {0x10137, 0x1018e}, {0x10190, 0x1019c}, {0x101a0, 0x101a0}, - {0x101d0, 0x101fc}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e1, 0x102fb}, {0x10300, 0x10323}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, - {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, - {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, - {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, - {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10858, 0x1089e}, {0x108a7, 0x108af}, +static const TSCharacterRange aux_sym_pandoc_str_token1_character_set_3[] = { + {'!', '!'}, {'\'', '\''}, {',', '.'}, {'0', '9'}, {';', ';'}, {'?', '?'}, {'A', 'Z'}, {'_', '_'}, + {'a', 'z'}, {0xa0, 0xa0}, {0xaa, 0xab}, {0xb2, 0xb3}, {0xb5, 0xb5}, {0xb9, 0xbe}, {0xc0, 0xd6}, {0xd8, 0xf6}, + {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37a, 0x37d}, + {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, + {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x660, 0x669}, {0x66e, 0x66f}, + {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, + {0x7b1, 0x7b1}, {0x7c0, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, + {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, + {0x958, 0x961}, {0x966, 0x96f}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, + {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9e6, 0x9f1}, {0x9f4, 0x9f9}, {0x9fc, 0x9fc}, + {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, + {0xa5e, 0xa5e}, {0xa66, 0xa6f}, {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, + {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, {0xae6, 0xaef}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, + {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb66, 0xb6f}, + {0xb71, 0xb77}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, + {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xbe6, 0xbf2}, {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, + {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc66, 0xc6f}, {0xc78, 0xc7e}, {0xc80, 0xc80}, + {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, + {0xce6, 0xcef}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, + {0xd58, 0xd61}, {0xd66, 0xd78}, {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, + {0xde6, 0xdef}, {0xe01, 0xe30}, {0xe32, 0xe33}, {0xe40, 0xe46}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, + {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb3}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xed0, 0xed9}, + {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf20, 0xf33}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0x1000, 0x102a}, {0x103f, 0x1049}, + {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, {0x1090, 0x1099}, + {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, + {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, + {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1369, 0x137c}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, + {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, + {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x17e0, 0x17e9}, {0x17f0, 0x17f9}, {0x1810, 0x1819}, + {0x1820, 0x1878}, {0x1880, 0x1884}, {0x1887, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1946, 0x196d}, {0x1970, 0x1974}, + {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1a80, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, + {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b83, 0x1ba0}, {0x1bae, 0x1be5}, {0x1c00, 0x1c23}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, + {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, + {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, + {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, + {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200d, 0x200d}, {0x2018, 0x201f}, {0x2039, 0x203a}, {0x2070, 0x2071}, {0x2074, 0x2079}, + {0x207f, 0x2089}, {0x2090, 0x209c}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2119, 0x211d}, {0x2124, 0x2124}, + {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x212d}, {0x212f, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2150, 0x2189}, + {0x2460, 0x249b}, {0x24ea, 0x24ff}, {0x2776, 0x2793}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2cfd, 0x2cfd}, {0x2d00, 0x2d25}, + {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, + {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2e2f, 0x2e2f}, {0x3005, 0x3007}, {0x3021, 0x3029}, + {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, + {0x3192, 0x3195}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3220, 0x3229}, {0x3248, 0x324f}, {0x3251, 0x325f}, {0x3280, 0x3289}, {0x32b1, 0x32bf}, + {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, + {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, + {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa830, 0xa835}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8d0, 0xa8d9}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, + {0xa8fd, 0xa8fe}, {0xa900, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9fe}, + {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, + {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, + {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xabf0, 0xabf9}, + {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, + {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, + {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, {0xfe0f, 0xfe0f}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, + {0xff41, 0xff5a}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, + {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10107, 0x10133}, {0x10140, 0x10178}, {0x1018a, 0x1018b}, + {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e1, 0x102fb}, {0x10300, 0x10323}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, + {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, + {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, + {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, + {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10858, 0x10876}, {0x10879, 0x1089e}, {0x108a7, 0x108af}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x108fb, 0x1091b}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109bc, 0x109cf}, {0x109d2, 0x10a00}, {0x10a10, 0x10a13}, - {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a40, 0x10a48}, {0x10a60, 0x10a7e}, {0x10a80, 0x10a9f}, {0x10ac0, 0x10ae4}, {0x10aeb, 0x10aef}, {0x10b00, 0x10b35}, - {0x10b40, 0x10b55}, {0x10b58, 0x10b72}, {0x10b78, 0x10b91}, {0x10ba9, 0x10baf}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10cfa, 0x10d23}, - {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e60, 0x10e7e}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f27}, - {0x10f30, 0x10f45}, {0x10f51, 0x10f54}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fcb}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11052, 0x1106f}, {0x11071, 0x11072}, - {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11103, 0x11126}, {0x11136, 0x1113f}, {0x11144, 0x11144}, {0x11147, 0x11147}, - {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111d0, 0x111da}, {0x111dc, 0x111dc}, {0x111e1, 0x111f4}, {0x11200, 0x11211}, - {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, - {0x112f0, 0x112f9}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, - {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, - {0x113d3, 0x113d3}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x11450, 0x11459}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, - {0x114d0, 0x114d9}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, - {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x11730, 0x1173b}, {0x1173f, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118f2}, {0x118ff, 0x11906}, - {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, - {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, - {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c50, 0x11c6c}, - {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, - {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11f50, 0x11f59}, - {0x11fb0, 0x11fb0}, {0x11fc0, 0x11ff1}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, - {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16130, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, - {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b3c, 0x16b43}, {0x16b45, 0x16b45}, {0x16b50, 0x16b59}, {0x16b5b, 0x16b61}, {0x16b63, 0x16b77}, + {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a40, 0x10a48}, {0x10a60, 0x10a7e}, {0x10a80, 0x10a9f}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10aeb, 0x10aef}, + {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b58, 0x10b72}, {0x10b78, 0x10b91}, {0x10ba9, 0x10baf}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, + {0x10cfa, 0x10d23}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e60, 0x10e7e}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, + {0x10f00, 0x10f27}, {0x10f30, 0x10f45}, {0x10f51, 0x10f54}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fcb}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11052, 0x1106f}, + {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11103, 0x11126}, {0x11136, 0x1113f}, {0x11144, 0x11144}, + {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111d0, 0x111da}, {0x111dc, 0x111dc}, {0x111e1, 0x111f4}, + {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, + {0x112b0, 0x112de}, {0x112f0, 0x112f9}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, + {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, + {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x11450, 0x11459}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, + {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116aa}, + {0x116b8, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x11730, 0x1173b}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118f2}, + {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x11950, 0x11959}, + {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, + {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, + {0x11c50, 0x11c6c}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, + {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, + {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x11fc0, 0x11fd4}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, + {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16130, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, + {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b5b, 0x16b61}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e96}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, - {0x1bc90, 0x1bc99}, {0x1bc9c, 0x1bc9c}, {0x1cc00, 0x1ccf9}, {0x1cd00, 0x1ceb3}, {0x1cf50, 0x1cfc3}, {0x1d000, 0x1d0f5}, {0x1d100, 0x1d126}, {0x1d129, 0x1d164}, - {0x1d16a, 0x1d16c}, {0x1d183, 0x1d184}, {0x1d18c, 0x1d1a9}, {0x1d1ae, 0x1d1ea}, {0x1d200, 0x1d241}, {0x1d245, 0x1d245}, {0x1d2c0, 0x1d2d3}, {0x1d2e0, 0x1d2f3}, - {0x1d300, 0x1d356}, {0x1d360, 0x1d378}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, - {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, - {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d7cb}, {0x1d7ce, 0x1d9ff}, {0x1da37, 0x1da3a}, - {0x1da6d, 0x1da74}, {0x1da76, 0x1da83}, {0x1da85, 0x1da86}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, - {0x1e140, 0x1e149}, {0x1e14e, 0x1e14f}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e2f0, 0x1e2f9}, {0x1e2ff, 0x1e2ff}, {0x1e4d0, 0x1e4eb}, {0x1e4f0, 0x1e4f9}, + {0x1bc90, 0x1bc99}, {0x1ccf0, 0x1ccf9}, {0x1d2c0, 0x1d2d3}, {0x1d2e0, 0x1d2f3}, {0x1d360, 0x1d378}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, + {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, + {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, + {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, + {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, + {0x1e137, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e2f0, 0x1e2f9}, {0x1e4d0, 0x1e4eb}, {0x1e4f0, 0x1e4f9}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8c7, 0x1e8cf}, - {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ec71, 0x1ecb4}, {0x1ed01, 0x1ed3d}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, - {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, - {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, - {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, - {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1eef0, 0x1eef1}, {0x1f000, 0x1f02b}, - {0x1f030, 0x1f093}, {0x1f0a0, 0x1f0ae}, {0x1f0b1, 0x1f0bf}, {0x1f0c1, 0x1f0cf}, {0x1f0d1, 0x1f0f5}, {0x1f100, 0x1f1ad}, {0x1f1e6, 0x1f202}, {0x1f210, 0x1f23b}, - {0x1f240, 0x1f248}, {0x1f250, 0x1f251}, {0x1f260, 0x1f265}, {0x1f300, 0x1f6d7}, {0x1f6dc, 0x1f6ec}, {0x1f6f0, 0x1f6fc}, {0x1f700, 0x1f776}, {0x1f77b, 0x1f7d9}, - {0x1f7e0, 0x1f7eb}, {0x1f7f0, 0x1f7f0}, {0x1f800, 0x1f80b}, {0x1f810, 0x1f847}, {0x1f850, 0x1f859}, {0x1f860, 0x1f887}, {0x1f890, 0x1f8ad}, {0x1f8b0, 0x1f8bb}, - {0x1f8c0, 0x1f8c1}, {0x1f900, 0x1fa53}, {0x1fa60, 0x1fa6d}, {0x1fa70, 0x1fa7c}, {0x1fa80, 0x1fa89}, {0x1fa8f, 0x1fac6}, {0x1face, 0x1fadc}, {0x1fadf, 0x1fae9}, - {0x1faf0, 0x1faf8}, {0x1fb00, 0x1fb92}, {0x1fb94, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, - {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ec71, 0x1ecab}, {0x1ecad, 0x1ecaf}, {0x1ecb1, 0x1ecb4}, {0x1ed01, 0x1ed2d}, {0x1ed2f, 0x1ed3d}, + {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, + {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, + {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, + {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, + {0x1eeab, 0x1eebb}, {0x1f100, 0x1f10c}, {0x1f3fb, 0x1f3ff}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, + {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; static const TSCharacterRange aux_sym_pandoc_str_token1_character_set_4[] = { - {0xa9, 0xa9}, {0xae, 0xae}, {0x203c, 0x203c}, {0x2049, 0x2049}, {0x2122, 0x2122}, {0x2139, 0x2139}, {0x2194, 0x2199}, {0x21a9, 0x21aa}, - {0x231a, 0x231b}, {0x2328, 0x2328}, {0x2388, 0x2388}, {0x23cf, 0x23cf}, {0x23e9, 0x23f3}, {0x23f8, 0x23fa}, {0x24c2, 0x24c2}, {0x25aa, 0x25ab}, - {0x25b6, 0x25b6}, {0x25c0, 0x25c0}, {0x25fb, 0x25fe}, {0x2600, 0x2605}, {0x2607, 0x2612}, {0x2614, 0x2685}, {0x2690, 0x2705}, {0x2708, 0x2712}, - {0x2714, 0x2714}, {0x2716, 0x2716}, {0x271d, 0x271d}, {0x2721, 0x2721}, {0x2728, 0x2728}, {0x2733, 0x2734}, {0x2744, 0x2744}, {0x2747, 0x2747}, - {0x274c, 0x274c}, {0x274e, 0x274e}, {0x2753, 0x2755}, {0x2757, 0x2757}, {0x2763, 0x2767}, {0x2795, 0x2797}, {0x27a1, 0x27a1}, {0x27b0, 0x27b0}, - {0x27bf, 0x27bf}, {0x2934, 0x2935}, {0x2b05, 0x2b07}, {0x2b1b, 0x2b1c}, {0x2b50, 0x2b50}, {0x2b55, 0x2b55}, {0x3030, 0x3030}, {0x303d, 0x303d}, - {0x3297, 0x3297}, {0x3299, 0x3299}, {0x1f000, 0x1f0ff}, {0x1f10d, 0x1f10f}, {0x1f12f, 0x1f12f}, {0x1f16c, 0x1f171}, {0x1f17e, 0x1f17f}, {0x1f18e, 0x1f18e}, - {0x1f191, 0x1f19a}, {0x1f1ad, 0x1f1e5}, {0x1f201, 0x1f20f}, {0x1f21a, 0x1f21a}, {0x1f22f, 0x1f22f}, {0x1f232, 0x1f23a}, {0x1f23c, 0x1f23f}, {0x1f249, 0x1f3fa}, - {0x1f400, 0x1f53d}, {0x1f546, 0x1f64f}, {0x1f680, 0x1f6ff}, {0x1f774, 0x1f77f}, {0x1f7d5, 0x1f7ff}, {0x1f80c, 0x1f80f}, {0x1f848, 0x1f84f}, {0x1f85a, 0x1f85f}, - {0x1f888, 0x1f88f}, {0x1f8ae, 0x1f8ff}, {0x1f90c, 0x1f93a}, {0x1f93c, 0x1f945}, {0x1f947, 0x1faff}, {0x1fc00, 0x1fffd}, + {'!', '!'}, {'\'', '\''}, {',', '.'}, {'0', '9'}, {';', ';'}, {'?', '?'}, {'A', 'Z'}, {'_', '_'}, + {'a', 'z'}, {0xa0, 0xa0}, {0xaa, 0xab}, {0xb2, 0xb3}, {0xb5, 0xb5}, {0xb9, 0xbe}, {0xc0, 0xd6}, {0xd8, 0xf6}, + {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37a, 0x37d}, + {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, + {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x660, 0x669}, {0x66e, 0x66f}, + {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, + {0x7b1, 0x7b1}, {0x7c0, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, + {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, + {0x958, 0x961}, {0x966, 0x96f}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, + {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9e6, 0x9f1}, {0x9f4, 0x9f9}, {0x9fc, 0x9fc}, + {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, + {0xa5e, 0xa5e}, {0xa66, 0xa6f}, {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, + {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, {0xae6, 0xaef}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, + {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb66, 0xb6f}, + {0xb71, 0xb77}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, + {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xbe6, 0xbf2}, {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, + {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc66, 0xc6f}, {0xc78, 0xc7e}, {0xc80, 0xc80}, + {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, + {0xce6, 0xcef}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, + {0xd58, 0xd61}, {0xd66, 0xd78}, {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, + {0xde6, 0xdef}, {0xe01, 0xe30}, {0xe32, 0xe33}, {0xe40, 0xe46}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, + {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb3}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xed0, 0xed9}, + {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf20, 0xf33}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0x1000, 0x102a}, {0x103f, 0x1049}, + {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, {0x1090, 0x1099}, + {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, + {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, + {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1369, 0x137c}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, + {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, + {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x17e0, 0x17e9}, {0x17f0, 0x17f9}, {0x1810, 0x1819}, + {0x1820, 0x1878}, {0x1880, 0x1884}, {0x1887, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1946, 0x196d}, {0x1970, 0x1974}, + {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1a80, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, + {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b83, 0x1ba0}, {0x1bae, 0x1be5}, {0x1c00, 0x1c23}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, + {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, + {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, + {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, + {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2018, 0x201f}, {0x2039, 0x203a}, {0x2070, 0x2071}, {0x2074, 0x2079}, {0x207f, 0x2089}, + {0x2090, 0x209c}, {0x20e3, 0x20e3}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2119, 0x211d}, {0x2124, 0x2124}, + {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x212d}, {0x212f, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2150, 0x2189}, + {0x2460, 0x249b}, {0x24ea, 0x24ff}, {0x2776, 0x2793}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2cfd, 0x2cfd}, {0x2d00, 0x2d25}, + {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, + {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2e2f, 0x2e2f}, {0x3005, 0x3007}, {0x3021, 0x3029}, + {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, + {0x3192, 0x3195}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3220, 0x3229}, {0x3248, 0x324f}, {0x3251, 0x325f}, {0x3280, 0x3289}, {0x32b1, 0x32bf}, + {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, + {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, + {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa830, 0xa835}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8d0, 0xa8d9}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, + {0xa8fd, 0xa8fe}, {0xa900, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9fe}, + {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, + {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, + {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xabf0, 0xabf9}, + {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, + {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, + {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, {0xfe0f, 0xfe0f}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, + {0xff41, 0xff5a}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, + {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10107, 0x10133}, {0x10140, 0x10178}, {0x1018a, 0x1018b}, + {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e1, 0x102fb}, {0x10300, 0x10323}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, + {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, + {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, + {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, + {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10858, 0x10876}, {0x10879, 0x1089e}, {0x108a7, 0x108af}, + {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x108fb, 0x1091b}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109bc, 0x109cf}, {0x109d2, 0x10a00}, {0x10a10, 0x10a13}, + {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a40, 0x10a48}, {0x10a60, 0x10a7e}, {0x10a80, 0x10a9f}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10aeb, 0x10aef}, + {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b58, 0x10b72}, {0x10b78, 0x10b91}, {0x10ba9, 0x10baf}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, + {0x10cfa, 0x10d23}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e60, 0x10e7e}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, + {0x10f00, 0x10f27}, {0x10f30, 0x10f45}, {0x10f51, 0x10f54}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fcb}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11052, 0x1106f}, + {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11103, 0x11126}, {0x11136, 0x1113f}, {0x11144, 0x11144}, + {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111d0, 0x111da}, {0x111dc, 0x111dc}, {0x111e1, 0x111f4}, + {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, + {0x112b0, 0x112de}, {0x112f0, 0x112f9}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, + {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, + {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x11450, 0x11459}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, + {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116aa}, + {0x116b8, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x11730, 0x1173b}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118f2}, + {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x11950, 0x11959}, + {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, + {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, + {0x11c50, 0x11c6c}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, + {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, + {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x11fc0, 0x11fd4}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, + {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16130, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, + {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b5b, 0x16b61}, {0x16b63, 0x16b77}, + {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e96}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, + {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, + {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, + {0x1bc90, 0x1bc99}, {0x1ccf0, 0x1ccf9}, {0x1d2c0, 0x1d2d3}, {0x1d2e0, 0x1d2f3}, {0x1d360, 0x1d378}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, + {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, + {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, + {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, + {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, + {0x1e137, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e2f0, 0x1e2f9}, {0x1e4d0, 0x1e4eb}, {0x1e4f0, 0x1e4f9}, + {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8c7, 0x1e8cf}, + {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ec71, 0x1ecab}, {0x1ecad, 0x1ecaf}, {0x1ecb1, 0x1ecb4}, {0x1ed01, 0x1ed2d}, {0x1ed2f, 0x1ed3d}, + {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, + {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, + {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, + {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, + {0x1eeab, 0x1eebb}, {0x1f100, 0x1f10c}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, + {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; static const TSCharacterRange aux_sym_pandoc_str_token1_character_set_5[] = { @@ -6422,110 +6767,16 @@ static const TSCharacterRange aux_sym_pandoc_str_token1_character_set_5[] = { }; static const TSCharacterRange aux_sym_pandoc_str_token1_character_set_6[] = { - {'!', '!'}, {'\'', '\''}, {'+', '.'}, {'0', '9'}, {';', ';'}, {'=', '='}, {'?', '?'}, {'A', 'Z'}, - {'_', '_'}, {'a', 'z'}, {0xa0, 0xa0}, {0xa2, 0xa6}, {0xa8, 0xac}, {0xae, 0xb5}, {0xb8, 0xbe}, {0xc0, 0x2ff}, - {0x370, 0x377}, {0x37a, 0x37d}, {0x37f, 0x37f}, {0x384, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x482}, - {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x58d, 0x58f}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x606, 0x608}, - {0x60b, 0x60b}, {0x60e, 0x60f}, {0x620, 0x64a}, {0x660, 0x669}, {0x66e, 0x66f}, {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6de, 0x6de}, - {0x6e5, 0x6e6}, {0x6e9, 0x6e9}, {0x6ee, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, {0x7b1, 0x7b1}, {0x7c0, 0x7ea}, - {0x7f4, 0x7f6}, {0x7fa, 0x7fa}, {0x7fe, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, {0x840, 0x858}, {0x860, 0x86a}, - {0x870, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, {0x958, 0x961}, {0x966, 0x96f}, {0x971, 0x980}, - {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, - {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9e6, 0x9fc}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, - {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa66, 0xa6f}, {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, - {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, {0xae6, 0xaef}, - {0xaf1, 0xaf1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, - {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb66, 0xb77}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, - {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xbe6, 0xbfa}, - {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, - {0xc66, 0xc6f}, {0xc78, 0xc80}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, - {0xcdd, 0xcde}, {0xce0, 0xce1}, {0xce6, 0xcef}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, - {0xd4e, 0xd4f}, {0xd54, 0xd56}, {0xd58, 0xd61}, {0xd66, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, - {0xdc0, 0xdc6}, {0xde6, 0xdef}, {0xe01, 0xe30}, {0xe32, 0xe33}, {0xe3f, 0xe46}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, - {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb3}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, - {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf03}, {0xf13, 0xf13}, {0xf15, 0xf17}, {0xf1a, 0xf34}, {0xf36, 0xf36}, {0xf38, 0xf38}, - {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0xfbe, 0xfc5}, {0xfc7, 0xfcc}, {0xfce, 0xfcf}, {0xfd5, 0xfd8}, {0x1000, 0x102a}, - {0x103f, 0x1049}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, - {0x1090, 0x1099}, {0x109e, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, - {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, - {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1369, 0x137c}, {0x1380, 0x1399}, {0x13a0, 0x13f5}, - {0x13f8, 0x13fd}, {0x1401, 0x166d}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, - {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17db, 0x17dc}, {0x17e0, 0x17e9}, {0x17f0, 0x17f9}, - {0x1810, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x1884}, {0x1887, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1940, 0x1940}, - {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x19de, 0x1a16}, {0x1a20, 0x1a54}, {0x1a80, 0x1a89}, - {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b61, 0x1b6a}, {0x1b74, 0x1b7c}, {0x1b83, 0x1ba0}, - {0x1bae, 0x1be5}, {0x1c00, 0x1c23}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, - {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, - {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fc4}, {0x1fc6, 0x1fd3}, - {0x1fd6, 0x1fdb}, {0x1fdd, 0x1fef}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffe}, {0x200d, 0x200d}, {0x2018, 0x201f}, {0x2039, 0x203a}, {0x2044, 0x2044}, - {0x2052, 0x2052}, {0x2070, 0x2071}, {0x2074, 0x207c}, {0x207f, 0x208c}, {0x2090, 0x209c}, {0x20a0, 0x20af}, {0x20b1, 0x20c0}, {0x2100, 0x218b}, - {0x2190, 0x2307}, {0x230c, 0x2328}, {0x232b, 0x2429}, {0x2440, 0x244a}, {0x2460, 0x2767}, {0x2776, 0x27c4}, {0x27c7, 0x27e5}, {0x27f0, 0x2982}, - {0x2999, 0x29d7}, {0x29dc, 0x29fb}, {0x29fe, 0x2b73}, {0x2b76, 0x2b95}, {0x2b97, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2cfd, 0x2cfd}, {0x2d00, 0x2d25}, - {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, - {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2e2f, 0x2e2f}, {0x2e50, 0x2e51}, {0x2e80, 0x2e99}, - {0x2e9b, 0x2ef3}, {0x2f00, 0x2fd5}, {0x2ff0, 0x2fff}, {0x3004, 0x3007}, {0x3012, 0x3013}, {0x3020, 0x3029}, {0x3031, 0x303c}, {0x303e, 0x303f}, - {0x3041, 0x3096}, {0x309b, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x3190, 0x31e5}, {0x31ef, 0x321e}, - {0x3220, 0xa48c}, {0xa490, 0xa4c6}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, - {0xa700, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, - {0xa828, 0xa82b}, {0xa830, 0xa839}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8d0, 0xa8d9}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, - {0xa900, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9fe}, {0xaa00, 0xaa28}, - {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa50, 0xaa59}, {0xaa60, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, - {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, - {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab6b}, {0xab70, 0xabe2}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, - {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, - {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbc2}, {0xfbd3, 0xfd3d}, {0xfd40, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdcf, 0xfdcf}, {0xfdf0, 0xfdff}, - {0xfe62, 0xfe62}, {0xfe64, 0xfe66}, {0xfe69, 0xfe69}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff04, 0xff04}, {0xff0b, 0xff0b}, {0xff10, 0xff19}, - {0xff1c, 0xff1e}, {0xff21, 0xff3a}, {0xff3e, 0xff3e}, {0xff40, 0xff5a}, {0xff5c, 0xff5c}, {0xff5e, 0xff5e}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, - {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0xffe0, 0xffe6}, {0xffe8, 0xffee}, {0xfffc, 0xfffd}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, - {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10107, 0x10133}, {0x10137, 0x1018e}, {0x10190, 0x1019c}, - {0x101a0, 0x101a0}, {0x101d0, 0x101fc}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e1, 0x102fb}, {0x10300, 0x10323}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, - {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, - {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, - {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, - {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10858, 0x1089e}, - {0x108a7, 0x108af}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x108fb, 0x1091b}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109bc, 0x109cf}, {0x109d2, 0x10a00}, - {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a40, 0x10a48}, {0x10a60, 0x10a7e}, {0x10a80, 0x10a9f}, {0x10ac0, 0x10ae4}, {0x10aeb, 0x10aef}, - {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b58, 0x10b72}, {0x10b78, 0x10b91}, {0x10ba9, 0x10baf}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, - {0x10cfa, 0x10d23}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e60, 0x10e7e}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, - {0x10f00, 0x10f27}, {0x10f30, 0x10f45}, {0x10f51, 0x10f54}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fcb}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11052, 0x1106f}, - {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11103, 0x11126}, {0x11136, 0x1113f}, {0x11144, 0x11144}, - {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111d0, 0x111da}, {0x111dc, 0x111dc}, {0x111e1, 0x111f4}, - {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, - {0x112b0, 0x112de}, {0x112f0, 0x112f9}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, - {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, - {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x11450, 0x11459}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, - {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116aa}, - {0x116b8, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x11730, 0x1173b}, {0x1173f, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118f2}, - {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x11950, 0x11959}, - {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, - {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, - {0x11c50, 0x11c6c}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, - {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, - {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x11fc0, 0x11ff1}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, - {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16130, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, - {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b3c, 0x16b43}, {0x16b45, 0x16b45}, {0x16b50, 0x16b59}, {0x16b5b, 0x16b61}, - {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e96}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, - {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, - {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, - {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9c, 0x1bc9c}, {0x1cc00, 0x1ccf9}, {0x1cd00, 0x1ceb3}, {0x1cf50, 0x1cfc3}, {0x1d000, 0x1d0f5}, {0x1d100, 0x1d126}, - {0x1d129, 0x1d164}, {0x1d16a, 0x1d16c}, {0x1d183, 0x1d184}, {0x1d18c, 0x1d1a9}, {0x1d1ae, 0x1d1ea}, {0x1d200, 0x1d241}, {0x1d245, 0x1d245}, {0x1d2c0, 0x1d2d3}, - {0x1d2e0, 0x1d2f3}, {0x1d300, 0x1d356}, {0x1d360, 0x1d378}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, - {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, - {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d7cb}, {0x1d7ce, 0x1d9ff}, - {0x1da37, 0x1da3a}, {0x1da6d, 0x1da74}, {0x1da76, 0x1da83}, {0x1da85, 0x1da86}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, - {0x1e137, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14f}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e2f0, 0x1e2f9}, {0x1e2ff, 0x1e2ff}, {0x1e4d0, 0x1e4eb}, - {0x1e4f0, 0x1e4f9}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, - {0x1e8c7, 0x1e8cf}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ec71, 0x1ecb4}, {0x1ed01, 0x1ed3d}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, - {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, - {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, - {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, - {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1eef0, 0x1eef1}, - {0x1f000, 0x1f02b}, {0x1f030, 0x1f093}, {0x1f0a0, 0x1f0ae}, {0x1f0b1, 0x1f0bf}, {0x1f0c1, 0x1f0cf}, {0x1f0d1, 0x1f0f5}, {0x1f100, 0x1f1ad}, {0x1f1e6, 0x1f202}, - {0x1f210, 0x1f23b}, {0x1f240, 0x1f248}, {0x1f250, 0x1f251}, {0x1f260, 0x1f265}, {0x1f300, 0x1f6d7}, {0x1f6dc, 0x1f6ec}, {0x1f6f0, 0x1f6fc}, {0x1f700, 0x1f776}, - {0x1f77b, 0x1f7d9}, {0x1f7e0, 0x1f7eb}, {0x1f7f0, 0x1f7f0}, {0x1f800, 0x1f80b}, {0x1f810, 0x1f847}, {0x1f850, 0x1f859}, {0x1f860, 0x1f887}, {0x1f890, 0x1f8ad}, - {0x1f8b0, 0x1f8bb}, {0x1f8c0, 0x1f8c1}, {0x1f900, 0x1fa53}, {0x1fa60, 0x1fa6d}, {0x1fa70, 0x1fa7c}, {0x1fa80, 0x1fa89}, {0x1fa8f, 0x1fac6}, {0x1face, 0x1fadc}, - {0x1fadf, 0x1fae9}, {0x1faf0, 0x1faf8}, {0x1fb00, 0x1fb92}, {0x1fb94, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, - {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0xa9, 0xa9}, {0xae, 0xae}, {0x203c, 0x203c}, {0x2049, 0x2049}, {0x2122, 0x2122}, {0x2139, 0x2139}, {0x2194, 0x2199}, {0x21a9, 0x21aa}, + {0x231a, 0x231b}, {0x2328, 0x2328}, {0x2388, 0x2388}, {0x23cf, 0x23cf}, {0x23e9, 0x23f3}, {0x23f8, 0x23fa}, {0x24c2, 0x24c2}, {0x25aa, 0x25ab}, + {0x25b6, 0x25b6}, {0x25c0, 0x25c0}, {0x25fb, 0x25fe}, {0x2600, 0x2605}, {0x2607, 0x2612}, {0x2614, 0x2685}, {0x2690, 0x2705}, {0x2708, 0x2712}, + {0x2714, 0x2714}, {0x2716, 0x2716}, {0x271d, 0x271d}, {0x2721, 0x2721}, {0x2728, 0x2728}, {0x2733, 0x2734}, {0x2744, 0x2744}, {0x2747, 0x2747}, + {0x274c, 0x274c}, {0x274e, 0x274e}, {0x2753, 0x2755}, {0x2757, 0x2757}, {0x2763, 0x2767}, {0x2795, 0x2797}, {0x27a1, 0x27a1}, {0x27b0, 0x27b0}, + {0x27bf, 0x27bf}, {0x2934, 0x2935}, {0x2b05, 0x2b07}, {0x2b1b, 0x2b1c}, {0x2b50, 0x2b50}, {0x2b55, 0x2b55}, {0x3030, 0x3030}, {0x303d, 0x303d}, + {0x3297, 0x3297}, {0x3299, 0x3299}, {0x1f000, 0x1f0ff}, {0x1f10d, 0x1f10f}, {0x1f12f, 0x1f12f}, {0x1f16c, 0x1f171}, {0x1f17e, 0x1f17f}, {0x1f18e, 0x1f18e}, + {0x1f191, 0x1f19a}, {0x1f1ad, 0x1f1e5}, {0x1f201, 0x1f20f}, {0x1f21a, 0x1f21a}, {0x1f22f, 0x1f22f}, {0x1f232, 0x1f23a}, {0x1f23c, 0x1f23f}, {0x1f249, 0x1f3fa}, + {0x1f400, 0x1f53d}, {0x1f546, 0x1f64f}, {0x1f680, 0x1f6ff}, {0x1f774, 0x1f77f}, {0x1f7d5, 0x1f7ff}, {0x1f80c, 0x1f80f}, {0x1f848, 0x1f84f}, {0x1f85a, 0x1f85f}, + {0x1f888, 0x1f88f}, {0x1f8ae, 0x1f8ff}, {0x1f90c, 0x1f93a}, {0x1f93c, 0x1f945}, {0x1f947, 0x1faff}, {0x1fc00, 0x1fffd}, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -6537,17 +6788,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ' ', 2087, '"', 2085, - '$', 2105, + '$', 2106, '\'', 2083, - ')', 2105, - '-', 2105, - ':', 2105, + ')', 2106, + '-', 2106, + ':', 2106, '=', 2079, - '[', 2105, + '[', 2106, '\\', 2086, '`', 2072, '{', 2074, - '|', 2121, + '|', 2124, '}', 2075, ); if (('!' <= lookahead && lookahead <= '(') || @@ -6555,57 +6806,336 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '@' || lookahead == ']' || - lookahead == '~') ADVANCE(2105); + lookahead == '~') ADVANCE(2106); if (('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(2098); if (lookahead != 0) ADVANCE(2085); END_STATE(); case 1: ADVANCE_MAP( - '\t', 2128, - ' ', 2125, - '!', 2122, + '\t', 2129, + ' ', 2126, + '!', 2120, + '#', 2123, '$', 2065, - '&', 2115, + '&', 2116, + '-', 2119, '[', 2056, '\\', 2046, ']', 2073, '{', 2074, - '|', 2121, - 0x3030, 2120, - '+', 2118, - '-', 2118, - ',', 2123, - '.', 2123, - ';', 2123, - '?', 2123, + '|', 2124, + 0x2139, 2117, ); - if (('#' <= lookahead && lookahead <= '%') || + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2118); + if (lookahead == 0x203c || + lookahead == 0x2049 || + lookahead == 0x303d || + (0x1f02c <= lookahead && lookahead <= 0x1f02f) || + (0x1f094 <= lookahead && lookahead <= 0x1f09f) || + lookahead == 0x1f0af || + lookahead == 0x1f0b0 || + lookahead == 0x1f0c0 || + lookahead == 0x1f0d0 || + (0x1f0f6 <= lookahead && lookahead <= 0x1f0ff) || + (0x1f1ae <= lookahead && lookahead <= 0x1f1e5) || + (0x1f203 <= lookahead && lookahead <= 0x1f20f) || + (0x1f23c <= lookahead && lookahead <= 0x1f23f) || + (0x1f249 <= lookahead && lookahead <= 0x1f24f) || + (0x1f252 <= lookahead && lookahead <= 0x1f25f) || + (0x1f266 <= lookahead && lookahead <= 0x1f2ff) || + (0x1f6d8 <= lookahead && lookahead <= 0x1f6db) || + (0x1f6ed <= lookahead && lookahead <= 0x1f6ef) || + (0x1f6fd <= lookahead && lookahead <= 0x1f6ff) || + (0x1f777 <= lookahead && lookahead <= 0x1f77a) || + (0x1f7da <= lookahead && lookahead <= 0x1f7df) || + (0x1f7ec <= lookahead && lookahead <= 0x1f7ef) || + (0x1f7f1 <= lookahead && lookahead <= 0x1f7ff) || + (0x1f80c <= lookahead && lookahead <= 0x1f80f) || + (0x1f848 <= lookahead && lookahead <= 0x1f84f) || + (0x1f85a <= lookahead && lookahead <= 0x1f85f) || + (0x1f888 <= lookahead && lookahead <= 0x1f88f) || + lookahead == 0x1f8ae || + lookahead == 0x1f8af || + (0x1f8bc <= lookahead && lookahead <= 0x1f8bf) || + (0x1f8c2 <= lookahead && lookahead <= 0x1f8ff) || + (0x1fa54 <= lookahead && lookahead <= 0x1fa5f) || + lookahead == 0x1fa6e || + lookahead == 0x1fa6f || + (0x1fa7d <= lookahead && lookahead <= 0x1fa7f) || + (0x1fa8a <= lookahead && lookahead <= 0x1fa8e) || + (0x1fac7 <= lookahead && lookahead <= 0x1facd) || + lookahead == 0x1fadd || + lookahead == 0x1fade || + (0x1faea <= lookahead && lookahead <= 0x1faef) || + (0x1faf9 <= lookahead && lookahead <= 0x1faff) || + (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2122); + if (set_contains(aux_sym_pandoc_str_token1_character_set_6, 78, lookahead)) ADVANCE(2122); + if (lookahead == '%' || lookahead == '(' || lookahead == ')' || - lookahead == '/' || - lookahead == ':' || + ('+' <= lookahead && lookahead <= ';') || + ('=' <= lookahead && lookahead <= '?') || + (0xa2 <= lookahead && lookahead <= 0xa6) || + lookahead == 0xa8 || + lookahead == 0xac || + (0xaf <= lookahead && lookahead <= 0xb1) || + lookahead == 0xb4 || + lookahead == 0xb8 || + lookahead == 0xd7 || + lookahead == 0xf7 || + (0x2c2 <= lookahead && lookahead <= 0x2c5) || + (0x2d2 <= lookahead && lookahead <= 0x2df) || + (0x2e5 <= lookahead && lookahead <= 0x2eb) || + lookahead == 0x2ed || + (0x2ef <= lookahead && lookahead <= 0x2ff) || + lookahead == 0x375 || + lookahead == 0x384 || + lookahead == 0x385 || + lookahead == 0x3f6 || + lookahead == 0x482 || lookahead == 0x58a || + (0x58d <= lookahead && lookahead <= 0x58f) || lookahead == 0x5be || + (0x606 <= lookahead && lookahead <= 0x608) || + lookahead == 0x60b || + lookahead == 0x60e || + lookahead == 0x60f || + lookahead == 0x6de || + lookahead == 0x6e9 || + lookahead == 0x6fd || + lookahead == 0x6fe || + lookahead == 0x7f6 || + lookahead == 0x7fe || + lookahead == 0x7ff || + lookahead == 0x888 || + lookahead == 0x9f2 || + lookahead == 0x9f3 || + lookahead == 0x9fa || + lookahead == 0x9fb || + lookahead == 0xaf1 || + lookahead == 0xb70 || + (0xbf3 <= lookahead && lookahead <= 0xbfa) || + lookahead == 0xc7f || + lookahead == 0xd4f || + lookahead == 0xd79 || + lookahead == 0xe3f || + (0xf01 <= lookahead && lookahead <= 0xf03) || + lookahead == 0xf13 || + (0xf15 <= lookahead && lookahead <= 0xf17) || + (0xf1a <= lookahead && lookahead <= 0xf1f) || + lookahead == 0xf34 || + lookahead == 0xf36 || + lookahead == 0xf38 || + (0xfbe <= lookahead && lookahead <= 0xfc5) || + (0xfc7 <= lookahead && lookahead <= 0xfcc) || + lookahead == 0xfce || + lookahead == 0xfcf || + (0xfd5 <= lookahead && lookahead <= 0xfd8) || + lookahead == 0x109e || + lookahead == 0x109f || + (0x1390 <= lookahead && lookahead <= 0x1399) || lookahead == 0x1400 || + lookahead == 0x166d || + lookahead == 0x17db || lookahead == 0x1806 || + lookahead == 0x1940 || + (0x19de <= lookahead && lookahead <= 0x19ff) || + (0x1b61 <= lookahead && lookahead <= 0x1b6a) || + (0x1b74 <= lookahead && lookahead <= 0x1b7c) || + lookahead == 0x1fbd || + (0x1fbf <= lookahead && lookahead <= 0x1fc1) || + (0x1fcd <= lookahead && lookahead <= 0x1fcf) || + (0x1fdd <= lookahead && lookahead <= 0x1fdf) || + (0x1fed <= lookahead && lookahead <= 0x1fef) || + lookahead == 0x1ffd || + lookahead == 0x1ffe || (0x2010 <= lookahead && lookahead <= 0x2015) || lookahead == 0x2026 || + lookahead == 0x2044 || + lookahead == 0x2052 || + (0x207a <= lookahead && lookahead <= 0x207c) || + (0x208a <= lookahead && lookahead <= 0x208c) || + (0x20a0 <= lookahead && lookahead <= 0x20af) || + (0x20b1 <= lookahead && lookahead <= 0x20c0) || + lookahead == 0x2100 || + lookahead == 0x2101 || + (0x2103 <= lookahead && lookahead <= 0x2106) || + lookahead == 0x2108 || + lookahead == 0x2109 || + lookahead == 0x2114 || + (0x2116 <= lookahead && lookahead <= 0x2118) || + (0x211e <= lookahead && lookahead <= 0x2123) || + lookahead == 0x2125 || + lookahead == 0x2127 || + lookahead == 0x2129 || + lookahead == 0x212e || + lookahead == 0x213a || + lookahead == 0x213b || + (0x2140 <= lookahead && lookahead <= 0x2144) || + (0x214a <= lookahead && lookahead <= 0x214d) || + lookahead == 0x214f || + lookahead == 0x218a || + lookahead == 0x218b || + (0x2190 <= lookahead && lookahead <= 0x2307) || + (0x230c <= lookahead && lookahead <= 0x2327) || + (0x232b <= lookahead && lookahead <= 0x2429) || + (0x2440 <= lookahead && lookahead <= 0x244a) || + (0x249c <= lookahead && lookahead <= 0x24e9) || + (0x2500 <= lookahead && lookahead <= 0x2762) || + (0x2794 <= lookahead && lookahead <= 0x27c4) || + (0x27c7 <= lookahead && lookahead <= 0x27e5) || + (0x27f0 <= lookahead && lookahead <= 0x2982) || + (0x2999 <= lookahead && lookahead <= 0x29d7) || + (0x29dc <= lookahead && lookahead <= 0x29fb) || + (0x29fe <= lookahead && lookahead <= 0x2b73) || + (0x2b76 <= lookahead && lookahead <= 0x2b95) || + (0x2b97 <= lookahead && lookahead <= 0x2bff) || + (0x2ce5 <= lookahead && lookahead <= 0x2cea) || lookahead == 0x2e17 || lookahead == 0x2e1a || lookahead == 0x2e3a || lookahead == 0x2e3b || lookahead == 0x2e40 || + lookahead == 0x2e50 || + lookahead == 0x2e51 || lookahead == 0x2e5d || + (0x2e80 <= lookahead && lookahead <= 0x2e99) || + (0x2e9b <= lookahead && lookahead <= 0x2ef3) || + (0x2f00 <= lookahead && lookahead <= 0x2fd5) || + (0x2ff0 <= lookahead && lookahead <= 0x2fff) || + lookahead == 0x3004 || + lookahead == 0x3012 || + lookahead == 0x3013 || lookahead == 0x301c || + lookahead == 0x3020 || + lookahead == 0x3036 || + lookahead == 0x3037 || + lookahead == 0x303e || + lookahead == 0x303f || + lookahead == 0x309b || + lookahead == 0x309c || lookahead == 0x30a0 || + lookahead == 0x3190 || + lookahead == 0x3191 || + (0x3196 <= lookahead && lookahead <= 0x319f) || + (0x31c0 <= lookahead && lookahead <= 0x31e5) || + lookahead == 0x31ef || + (0x3200 <= lookahead && lookahead <= 0x321e) || + (0x322a <= lookahead && lookahead <= 0x3247) || + lookahead == 0x3250 || + (0x3260 <= lookahead && lookahead <= 0x327f) || + (0x328a <= lookahead && lookahead <= 0x32b0) || + (0x32c0 <= lookahead && lookahead <= 0x33ff) || + (0x4dc0 <= lookahead && lookahead <= 0x4dff) || + (0xa490 <= lookahead && lookahead <= 0xa4c6) || + (0xa700 <= lookahead && lookahead <= 0xa716) || + lookahead == 0xa720 || + lookahead == 0xa721 || + lookahead == 0xa789 || + lookahead == 0xa78a || + (0xa828 <= lookahead && lookahead <= 0xa82b) || + (0xa836 <= lookahead && lookahead <= 0xa839) || + (0xaa77 <= lookahead && lookahead <= 0xaa79) || + lookahead == 0xab5b || + lookahead == 0xab6a || + lookahead == 0xab6b || + lookahead == 0xfb29 || + (0xfbb2 <= lookahead && lookahead <= 0xfbc2) || + (0xfd40 <= lookahead && lookahead <= 0xfd4f) || + lookahead == 0xfdcf || + (0xfdfc <= lookahead && lookahead <= 0xfdff) || lookahead == 0xfe31 || lookahead == 0xfe32 || lookahead == 0xfe58 || - lookahead == 0xfe63 || + (0xfe62 <= lookahead && lookahead <= 0xfe66) || + lookahead == 0xfe69 || + lookahead == 0xff04 || + lookahead == 0xff0b || lookahead == 0xff0d || + (0xff1c <= lookahead && lookahead <= 0xff1e) || + lookahead == 0xff3e || + lookahead == 0xff40 || + lookahead == 0xff5c || + lookahead == 0xff5e || + (0xffe0 <= lookahead && lookahead <= 0xffe6) || + (0xffe8 <= lookahead && lookahead <= 0xffee) || + lookahead == 0xfffc || + lookahead == 0xfffd || + (0x10137 <= lookahead && lookahead <= 0x1013f) || + (0x10179 <= lookahead && lookahead <= 0x10189) || + (0x1018c <= lookahead && lookahead <= 0x1018e) || + (0x10190 <= lookahead && lookahead <= 0x1019c) || + lookahead == 0x101a0 || + (0x101d0 <= lookahead && lookahead <= 0x101fc) || + lookahead == 0x10877 || + lookahead == 0x10878 || + lookahead == 0x10ac8 || lookahead == 0x10d6e || - lookahead == 0x10ead) ADVANCE(2114); + lookahead == 0x10ead || + lookahead == 0x1173f || + (0x11fd5 <= lookahead && lookahead <= 0x11ff1) || + (0x16b3c <= lookahead && lookahead <= 0x16b3f) || + lookahead == 0x16b45 || + lookahead == 0x1bc9c || + (0x1cc00 <= lookahead && lookahead <= 0x1ccef) || + (0x1cd00 <= lookahead && lookahead <= 0x1ceb3) || + (0x1cf50 <= lookahead && lookahead <= 0x1cfc3) || + (0x1d000 <= lookahead && lookahead <= 0x1d0f5) || + (0x1d100 <= lookahead && lookahead <= 0x1d126) || + (0x1d129 <= lookahead && lookahead <= 0x1d164) || + (0x1d16a <= lookahead && lookahead <= 0x1d16c) || + lookahead == 0x1d183 || + lookahead == 0x1d184 || + (0x1d18c <= lookahead && lookahead <= 0x1d1a9) || + (0x1d1ae <= lookahead && lookahead <= 0x1d1ea) || + (0x1d200 <= lookahead && lookahead <= 0x1d241) || + lookahead == 0x1d245 || + (0x1d300 <= lookahead && lookahead <= 0x1d356) || + lookahead == 0x1d6c1 || + lookahead == 0x1d6db || + lookahead == 0x1d6fb || + lookahead == 0x1d715 || + lookahead == 0x1d735 || + lookahead == 0x1d74f || + lookahead == 0x1d76f || + lookahead == 0x1d789 || + lookahead == 0x1d7a9 || + lookahead == 0x1d7c3 || + (0x1d800 <= lookahead && lookahead <= 0x1d9ff) || + (0x1da37 <= lookahead && lookahead <= 0x1da3a) || + (0x1da6d <= lookahead && lookahead <= 0x1da74) || + (0x1da76 <= lookahead && lookahead <= 0x1da83) || + lookahead == 0x1da85 || + lookahead == 0x1da86 || + lookahead == 0x1e14f || + lookahead == 0x1e2ff || + lookahead == 0x1ecac || + lookahead == 0x1ecb0 || + lookahead == 0x1ed2e || + lookahead == 0x1eef0 || + lookahead == 0x1eef1 || + (0x1f110 <= lookahead && lookahead <= 0x1fb92) || + (0x1fb94 <= lookahead && lookahead <= 0x1fbef)) ADVANCE(2115); + if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 808, lookahead)) ADVANCE(2119); + END_STATE(); + case 2: + ADVANCE_MAP( + '!', 2120, + '#', 2123, + '$', 2065, + '&', 2116, + '-', 2119, + '[', 2056, + '\\', 2046, + ']', 2057, + '{', 2074, + '|', 2124, + 0x2139, 2117, + '\t', 2127, + ' ', 2127, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2118); if (lookahead == 0x203c || lookahead == 0x2049 || lookahead == 0x303d || @@ -6647,56 +7177,273 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x1fade || (0x1faea <= lookahead && lookahead <= 0x1faef) || (0x1faf9 <= lookahead && lookahead <= 0x1faff) || - (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2120); - if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2116); - if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 809, lookahead)) ADVANCE(2118); - END_STATE(); - case 2: - ADVANCE_MAP( - '!', 2122, - '$', 2065, - '&', 2115, - '[', 2056, - '\\', 2046, - ']', 2057, - '{', 2074, - '|', 2121, - 0x3030, 2120, - '\t', 2126, - ' ', 2126, - '+', 2118, - '-', 2118, - ',', 2123, - '.', 2123, - ';', 2123, - '?', 2123, - ); - if (('#' <= lookahead && lookahead <= '%') || + (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2122); + if (set_contains(aux_sym_pandoc_str_token1_character_set_6, 78, lookahead)) ADVANCE(2122); + if (lookahead == '%' || lookahead == '(' || lookahead == ')' || - lookahead == '/' || - lookahead == ':' || + ('+' <= lookahead && lookahead <= ';') || + ('=' <= lookahead && lookahead <= '?') || + (0xa2 <= lookahead && lookahead <= 0xa6) || + lookahead == 0xa8 || + lookahead == 0xac || + (0xaf <= lookahead && lookahead <= 0xb1) || + lookahead == 0xb4 || + lookahead == 0xb8 || + lookahead == 0xd7 || + lookahead == 0xf7 || + (0x2c2 <= lookahead && lookahead <= 0x2c5) || + (0x2d2 <= lookahead && lookahead <= 0x2df) || + (0x2e5 <= lookahead && lookahead <= 0x2eb) || + lookahead == 0x2ed || + (0x2ef <= lookahead && lookahead <= 0x2ff) || + lookahead == 0x375 || + lookahead == 0x384 || + lookahead == 0x385 || + lookahead == 0x3f6 || + lookahead == 0x482 || lookahead == 0x58a || + (0x58d <= lookahead && lookahead <= 0x58f) || lookahead == 0x5be || + (0x606 <= lookahead && lookahead <= 0x608) || + lookahead == 0x60b || + lookahead == 0x60e || + lookahead == 0x60f || + lookahead == 0x6de || + lookahead == 0x6e9 || + lookahead == 0x6fd || + lookahead == 0x6fe || + lookahead == 0x7f6 || + lookahead == 0x7fe || + lookahead == 0x7ff || + lookahead == 0x888 || + lookahead == 0x9f2 || + lookahead == 0x9f3 || + lookahead == 0x9fa || + lookahead == 0x9fb || + lookahead == 0xaf1 || + lookahead == 0xb70 || + (0xbf3 <= lookahead && lookahead <= 0xbfa) || + lookahead == 0xc7f || + lookahead == 0xd4f || + lookahead == 0xd79 || + lookahead == 0xe3f || + (0xf01 <= lookahead && lookahead <= 0xf03) || + lookahead == 0xf13 || + (0xf15 <= lookahead && lookahead <= 0xf17) || + (0xf1a <= lookahead && lookahead <= 0xf1f) || + lookahead == 0xf34 || + lookahead == 0xf36 || + lookahead == 0xf38 || + (0xfbe <= lookahead && lookahead <= 0xfc5) || + (0xfc7 <= lookahead && lookahead <= 0xfcc) || + lookahead == 0xfce || + lookahead == 0xfcf || + (0xfd5 <= lookahead && lookahead <= 0xfd8) || + lookahead == 0x109e || + lookahead == 0x109f || + (0x1390 <= lookahead && lookahead <= 0x1399) || lookahead == 0x1400 || + lookahead == 0x166d || + lookahead == 0x17db || lookahead == 0x1806 || + lookahead == 0x1940 || + (0x19de <= lookahead && lookahead <= 0x19ff) || + (0x1b61 <= lookahead && lookahead <= 0x1b6a) || + (0x1b74 <= lookahead && lookahead <= 0x1b7c) || + lookahead == 0x1fbd || + (0x1fbf <= lookahead && lookahead <= 0x1fc1) || + (0x1fcd <= lookahead && lookahead <= 0x1fcf) || + (0x1fdd <= lookahead && lookahead <= 0x1fdf) || + (0x1fed <= lookahead && lookahead <= 0x1fef) || + lookahead == 0x1ffd || + lookahead == 0x1ffe || (0x2010 <= lookahead && lookahead <= 0x2015) || lookahead == 0x2026 || + lookahead == 0x2044 || + lookahead == 0x2052 || + (0x207a <= lookahead && lookahead <= 0x207c) || + (0x208a <= lookahead && lookahead <= 0x208c) || + (0x20a0 <= lookahead && lookahead <= 0x20af) || + (0x20b1 <= lookahead && lookahead <= 0x20c0) || + lookahead == 0x2100 || + lookahead == 0x2101 || + (0x2103 <= lookahead && lookahead <= 0x2106) || + lookahead == 0x2108 || + lookahead == 0x2109 || + lookahead == 0x2114 || + (0x2116 <= lookahead && lookahead <= 0x2118) || + (0x211e <= lookahead && lookahead <= 0x2123) || + lookahead == 0x2125 || + lookahead == 0x2127 || + lookahead == 0x2129 || + lookahead == 0x212e || + lookahead == 0x213a || + lookahead == 0x213b || + (0x2140 <= lookahead && lookahead <= 0x2144) || + (0x214a <= lookahead && lookahead <= 0x214d) || + lookahead == 0x214f || + lookahead == 0x218a || + lookahead == 0x218b || + (0x2190 <= lookahead && lookahead <= 0x2307) || + (0x230c <= lookahead && lookahead <= 0x2327) || + (0x232b <= lookahead && lookahead <= 0x2429) || + (0x2440 <= lookahead && lookahead <= 0x244a) || + (0x249c <= lookahead && lookahead <= 0x24e9) || + (0x2500 <= lookahead && lookahead <= 0x2762) || + (0x2794 <= lookahead && lookahead <= 0x27c4) || + (0x27c7 <= lookahead && lookahead <= 0x27e5) || + (0x27f0 <= lookahead && lookahead <= 0x2982) || + (0x2999 <= lookahead && lookahead <= 0x29d7) || + (0x29dc <= lookahead && lookahead <= 0x29fb) || + (0x29fe <= lookahead && lookahead <= 0x2b73) || + (0x2b76 <= lookahead && lookahead <= 0x2b95) || + (0x2b97 <= lookahead && lookahead <= 0x2bff) || + (0x2ce5 <= lookahead && lookahead <= 0x2cea) || lookahead == 0x2e17 || lookahead == 0x2e1a || lookahead == 0x2e3a || lookahead == 0x2e3b || lookahead == 0x2e40 || + lookahead == 0x2e50 || + lookahead == 0x2e51 || lookahead == 0x2e5d || + (0x2e80 <= lookahead && lookahead <= 0x2e99) || + (0x2e9b <= lookahead && lookahead <= 0x2ef3) || + (0x2f00 <= lookahead && lookahead <= 0x2fd5) || + (0x2ff0 <= lookahead && lookahead <= 0x2fff) || + lookahead == 0x3004 || + lookahead == 0x3012 || + lookahead == 0x3013 || lookahead == 0x301c || + lookahead == 0x3020 || + lookahead == 0x3036 || + lookahead == 0x3037 || + lookahead == 0x303e || + lookahead == 0x303f || + lookahead == 0x309b || + lookahead == 0x309c || lookahead == 0x30a0 || + lookahead == 0x3190 || + lookahead == 0x3191 || + (0x3196 <= lookahead && lookahead <= 0x319f) || + (0x31c0 <= lookahead && lookahead <= 0x31e5) || + lookahead == 0x31ef || + (0x3200 <= lookahead && lookahead <= 0x321e) || + (0x322a <= lookahead && lookahead <= 0x3247) || + lookahead == 0x3250 || + (0x3260 <= lookahead && lookahead <= 0x327f) || + (0x328a <= lookahead && lookahead <= 0x32b0) || + (0x32c0 <= lookahead && lookahead <= 0x33ff) || + (0x4dc0 <= lookahead && lookahead <= 0x4dff) || + (0xa490 <= lookahead && lookahead <= 0xa4c6) || + (0xa700 <= lookahead && lookahead <= 0xa716) || + lookahead == 0xa720 || + lookahead == 0xa721 || + lookahead == 0xa789 || + lookahead == 0xa78a || + (0xa828 <= lookahead && lookahead <= 0xa82b) || + (0xa836 <= lookahead && lookahead <= 0xa839) || + (0xaa77 <= lookahead && lookahead <= 0xaa79) || + lookahead == 0xab5b || + lookahead == 0xab6a || + lookahead == 0xab6b || + lookahead == 0xfb29 || + (0xfbb2 <= lookahead && lookahead <= 0xfbc2) || + (0xfd40 <= lookahead && lookahead <= 0xfd4f) || + lookahead == 0xfdcf || + (0xfdfc <= lookahead && lookahead <= 0xfdff) || lookahead == 0xfe31 || lookahead == 0xfe32 || lookahead == 0xfe58 || - lookahead == 0xfe63 || + (0xfe62 <= lookahead && lookahead <= 0xfe66) || + lookahead == 0xfe69 || + lookahead == 0xff04 || + lookahead == 0xff0b || lookahead == 0xff0d || + (0xff1c <= lookahead && lookahead <= 0xff1e) || + lookahead == 0xff3e || + lookahead == 0xff40 || + lookahead == 0xff5c || + lookahead == 0xff5e || + (0xffe0 <= lookahead && lookahead <= 0xffe6) || + (0xffe8 <= lookahead && lookahead <= 0xffee) || + lookahead == 0xfffc || + lookahead == 0xfffd || + (0x10137 <= lookahead && lookahead <= 0x1013f) || + (0x10179 <= lookahead && lookahead <= 0x10189) || + (0x1018c <= lookahead && lookahead <= 0x1018e) || + (0x10190 <= lookahead && lookahead <= 0x1019c) || + lookahead == 0x101a0 || + (0x101d0 <= lookahead && lookahead <= 0x101fc) || + lookahead == 0x10877 || + lookahead == 0x10878 || + lookahead == 0x10ac8 || lookahead == 0x10d6e || - lookahead == 0x10ead) ADVANCE(2114); + lookahead == 0x10ead || + lookahead == 0x1173f || + (0x11fd5 <= lookahead && lookahead <= 0x11ff1) || + (0x16b3c <= lookahead && lookahead <= 0x16b3f) || + lookahead == 0x16b45 || + lookahead == 0x1bc9c || + (0x1cc00 <= lookahead && lookahead <= 0x1ccef) || + (0x1cd00 <= lookahead && lookahead <= 0x1ceb3) || + (0x1cf50 <= lookahead && lookahead <= 0x1cfc3) || + (0x1d000 <= lookahead && lookahead <= 0x1d0f5) || + (0x1d100 <= lookahead && lookahead <= 0x1d126) || + (0x1d129 <= lookahead && lookahead <= 0x1d164) || + (0x1d16a <= lookahead && lookahead <= 0x1d16c) || + lookahead == 0x1d183 || + lookahead == 0x1d184 || + (0x1d18c <= lookahead && lookahead <= 0x1d1a9) || + (0x1d1ae <= lookahead && lookahead <= 0x1d1ea) || + (0x1d200 <= lookahead && lookahead <= 0x1d241) || + lookahead == 0x1d245 || + (0x1d300 <= lookahead && lookahead <= 0x1d356) || + lookahead == 0x1d6c1 || + lookahead == 0x1d6db || + lookahead == 0x1d6fb || + lookahead == 0x1d715 || + lookahead == 0x1d735 || + lookahead == 0x1d74f || + lookahead == 0x1d76f || + lookahead == 0x1d789 || + lookahead == 0x1d7a9 || + lookahead == 0x1d7c3 || + (0x1d800 <= lookahead && lookahead <= 0x1d9ff) || + (0x1da37 <= lookahead && lookahead <= 0x1da3a) || + (0x1da6d <= lookahead && lookahead <= 0x1da74) || + (0x1da76 <= lookahead && lookahead <= 0x1da83) || + lookahead == 0x1da85 || + lookahead == 0x1da86 || + lookahead == 0x1e14f || + lookahead == 0x1e2ff || + lookahead == 0x1ecac || + lookahead == 0x1ecb0 || + lookahead == 0x1ed2e || + lookahead == 0x1eef0 || + lookahead == 0x1eef1 || + (0x1f110 <= lookahead && lookahead <= 0x1fb92) || + (0x1fb94 <= lookahead && lookahead <= 0x1fbef)) ADVANCE(2115); + if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 808, lookahead)) ADVANCE(2119); + END_STATE(); + case 3: + ADVANCE_MAP( + '!', 2120, + '#', 2123, + '$', 2065, + '&', 2116, + '-', 2119, + '[', 2056, + '\\', 2046, + ']', 2114, + '{', 2074, + '|', 2124, + 0x2139, 2117, + '\t', 2128, + ' ', 2128, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2118); if (lookahead == 0x203c || lookahead == 0x2049 || lookahead == 0x303d || @@ -6738,56 +7485,272 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x1fade || (0x1faea <= lookahead && lookahead <= 0x1faef) || (0x1faf9 <= lookahead && lookahead <= 0x1faff) || - (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2120); - if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2116); - if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 809, lookahead)) ADVANCE(2118); - END_STATE(); - case 3: - ADVANCE_MAP( - '!', 2122, - '$', 2065, - '&', 2115, - '[', 2056, - '\\', 2046, - ']', 2113, - '{', 2074, - '|', 2121, - 0x3030, 2120, - '\t', 2127, - ' ', 2127, - '+', 2118, - '-', 2118, - ',', 2123, - '.', 2123, - ';', 2123, - '?', 2123, - ); - if (('#' <= lookahead && lookahead <= '%') || + (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2122); + if (set_contains(aux_sym_pandoc_str_token1_character_set_6, 78, lookahead)) ADVANCE(2122); + if (lookahead == '%' || lookahead == '(' || lookahead == ')' || - lookahead == '/' || - lookahead == ':' || + ('+' <= lookahead && lookahead <= ';') || + ('=' <= lookahead && lookahead <= '?') || + (0xa2 <= lookahead && lookahead <= 0xa6) || + lookahead == 0xa8 || + lookahead == 0xac || + (0xaf <= lookahead && lookahead <= 0xb1) || + lookahead == 0xb4 || + lookahead == 0xb8 || + lookahead == 0xd7 || + lookahead == 0xf7 || + (0x2c2 <= lookahead && lookahead <= 0x2c5) || + (0x2d2 <= lookahead && lookahead <= 0x2df) || + (0x2e5 <= lookahead && lookahead <= 0x2eb) || + lookahead == 0x2ed || + (0x2ef <= lookahead && lookahead <= 0x2ff) || + lookahead == 0x375 || + lookahead == 0x384 || + lookahead == 0x385 || + lookahead == 0x3f6 || + lookahead == 0x482 || lookahead == 0x58a || + (0x58d <= lookahead && lookahead <= 0x58f) || lookahead == 0x5be || + (0x606 <= lookahead && lookahead <= 0x608) || + lookahead == 0x60b || + lookahead == 0x60e || + lookahead == 0x60f || + lookahead == 0x6de || + lookahead == 0x6e9 || + lookahead == 0x6fd || + lookahead == 0x6fe || + lookahead == 0x7f6 || + lookahead == 0x7fe || + lookahead == 0x7ff || + lookahead == 0x888 || + lookahead == 0x9f2 || + lookahead == 0x9f3 || + lookahead == 0x9fa || + lookahead == 0x9fb || + lookahead == 0xaf1 || + lookahead == 0xb70 || + (0xbf3 <= lookahead && lookahead <= 0xbfa) || + lookahead == 0xc7f || + lookahead == 0xd4f || + lookahead == 0xd79 || + lookahead == 0xe3f || + (0xf01 <= lookahead && lookahead <= 0xf03) || + lookahead == 0xf13 || + (0xf15 <= lookahead && lookahead <= 0xf17) || + (0xf1a <= lookahead && lookahead <= 0xf1f) || + lookahead == 0xf34 || + lookahead == 0xf36 || + lookahead == 0xf38 || + (0xfbe <= lookahead && lookahead <= 0xfc5) || + (0xfc7 <= lookahead && lookahead <= 0xfcc) || + lookahead == 0xfce || + lookahead == 0xfcf || + (0xfd5 <= lookahead && lookahead <= 0xfd8) || + lookahead == 0x109e || + lookahead == 0x109f || + (0x1390 <= lookahead && lookahead <= 0x1399) || lookahead == 0x1400 || + lookahead == 0x166d || + lookahead == 0x17db || lookahead == 0x1806 || + lookahead == 0x1940 || + (0x19de <= lookahead && lookahead <= 0x19ff) || + (0x1b61 <= lookahead && lookahead <= 0x1b6a) || + (0x1b74 <= lookahead && lookahead <= 0x1b7c) || + lookahead == 0x1fbd || + (0x1fbf <= lookahead && lookahead <= 0x1fc1) || + (0x1fcd <= lookahead && lookahead <= 0x1fcf) || + (0x1fdd <= lookahead && lookahead <= 0x1fdf) || + (0x1fed <= lookahead && lookahead <= 0x1fef) || + lookahead == 0x1ffd || + lookahead == 0x1ffe || (0x2010 <= lookahead && lookahead <= 0x2015) || lookahead == 0x2026 || + lookahead == 0x2044 || + lookahead == 0x2052 || + (0x207a <= lookahead && lookahead <= 0x207c) || + (0x208a <= lookahead && lookahead <= 0x208c) || + (0x20a0 <= lookahead && lookahead <= 0x20af) || + (0x20b1 <= lookahead && lookahead <= 0x20c0) || + lookahead == 0x2100 || + lookahead == 0x2101 || + (0x2103 <= lookahead && lookahead <= 0x2106) || + lookahead == 0x2108 || + lookahead == 0x2109 || + lookahead == 0x2114 || + (0x2116 <= lookahead && lookahead <= 0x2118) || + (0x211e <= lookahead && lookahead <= 0x2123) || + lookahead == 0x2125 || + lookahead == 0x2127 || + lookahead == 0x2129 || + lookahead == 0x212e || + lookahead == 0x213a || + lookahead == 0x213b || + (0x2140 <= lookahead && lookahead <= 0x2144) || + (0x214a <= lookahead && lookahead <= 0x214d) || + lookahead == 0x214f || + lookahead == 0x218a || + lookahead == 0x218b || + (0x2190 <= lookahead && lookahead <= 0x2307) || + (0x230c <= lookahead && lookahead <= 0x2327) || + (0x232b <= lookahead && lookahead <= 0x2429) || + (0x2440 <= lookahead && lookahead <= 0x244a) || + (0x249c <= lookahead && lookahead <= 0x24e9) || + (0x2500 <= lookahead && lookahead <= 0x2762) || + (0x2794 <= lookahead && lookahead <= 0x27c4) || + (0x27c7 <= lookahead && lookahead <= 0x27e5) || + (0x27f0 <= lookahead && lookahead <= 0x2982) || + (0x2999 <= lookahead && lookahead <= 0x29d7) || + (0x29dc <= lookahead && lookahead <= 0x29fb) || + (0x29fe <= lookahead && lookahead <= 0x2b73) || + (0x2b76 <= lookahead && lookahead <= 0x2b95) || + (0x2b97 <= lookahead && lookahead <= 0x2bff) || + (0x2ce5 <= lookahead && lookahead <= 0x2cea) || lookahead == 0x2e17 || lookahead == 0x2e1a || lookahead == 0x2e3a || lookahead == 0x2e3b || lookahead == 0x2e40 || + lookahead == 0x2e50 || + lookahead == 0x2e51 || lookahead == 0x2e5d || + (0x2e80 <= lookahead && lookahead <= 0x2e99) || + (0x2e9b <= lookahead && lookahead <= 0x2ef3) || + (0x2f00 <= lookahead && lookahead <= 0x2fd5) || + (0x2ff0 <= lookahead && lookahead <= 0x2fff) || + lookahead == 0x3004 || + lookahead == 0x3012 || + lookahead == 0x3013 || lookahead == 0x301c || + lookahead == 0x3020 || + lookahead == 0x3036 || + lookahead == 0x3037 || + lookahead == 0x303e || + lookahead == 0x303f || + lookahead == 0x309b || + lookahead == 0x309c || lookahead == 0x30a0 || + lookahead == 0x3190 || + lookahead == 0x3191 || + (0x3196 <= lookahead && lookahead <= 0x319f) || + (0x31c0 <= lookahead && lookahead <= 0x31e5) || + lookahead == 0x31ef || + (0x3200 <= lookahead && lookahead <= 0x321e) || + (0x322a <= lookahead && lookahead <= 0x3247) || + lookahead == 0x3250 || + (0x3260 <= lookahead && lookahead <= 0x327f) || + (0x328a <= lookahead && lookahead <= 0x32b0) || + (0x32c0 <= lookahead && lookahead <= 0x33ff) || + (0x4dc0 <= lookahead && lookahead <= 0x4dff) || + (0xa490 <= lookahead && lookahead <= 0xa4c6) || + (0xa700 <= lookahead && lookahead <= 0xa716) || + lookahead == 0xa720 || + lookahead == 0xa721 || + lookahead == 0xa789 || + lookahead == 0xa78a || + (0xa828 <= lookahead && lookahead <= 0xa82b) || + (0xa836 <= lookahead && lookahead <= 0xa839) || + (0xaa77 <= lookahead && lookahead <= 0xaa79) || + lookahead == 0xab5b || + lookahead == 0xab6a || + lookahead == 0xab6b || + lookahead == 0xfb29 || + (0xfbb2 <= lookahead && lookahead <= 0xfbc2) || + (0xfd40 <= lookahead && lookahead <= 0xfd4f) || + lookahead == 0xfdcf || + (0xfdfc <= lookahead && lookahead <= 0xfdff) || lookahead == 0xfe31 || lookahead == 0xfe32 || lookahead == 0xfe58 || - lookahead == 0xfe63 || + (0xfe62 <= lookahead && lookahead <= 0xfe66) || + lookahead == 0xfe69 || + lookahead == 0xff04 || + lookahead == 0xff0b || lookahead == 0xff0d || + (0xff1c <= lookahead && lookahead <= 0xff1e) || + lookahead == 0xff3e || + lookahead == 0xff40 || + lookahead == 0xff5c || + lookahead == 0xff5e || + (0xffe0 <= lookahead && lookahead <= 0xffe6) || + (0xffe8 <= lookahead && lookahead <= 0xffee) || + lookahead == 0xfffc || + lookahead == 0xfffd || + (0x10137 <= lookahead && lookahead <= 0x1013f) || + (0x10179 <= lookahead && lookahead <= 0x10189) || + (0x1018c <= lookahead && lookahead <= 0x1018e) || + (0x10190 <= lookahead && lookahead <= 0x1019c) || + lookahead == 0x101a0 || + (0x101d0 <= lookahead && lookahead <= 0x101fc) || + lookahead == 0x10877 || + lookahead == 0x10878 || + lookahead == 0x10ac8 || lookahead == 0x10d6e || - lookahead == 0x10ead) ADVANCE(2114); + lookahead == 0x10ead || + lookahead == 0x1173f || + (0x11fd5 <= lookahead && lookahead <= 0x11ff1) || + (0x16b3c <= lookahead && lookahead <= 0x16b3f) || + lookahead == 0x16b45 || + lookahead == 0x1bc9c || + (0x1cc00 <= lookahead && lookahead <= 0x1ccef) || + (0x1cd00 <= lookahead && lookahead <= 0x1ceb3) || + (0x1cf50 <= lookahead && lookahead <= 0x1cfc3) || + (0x1d000 <= lookahead && lookahead <= 0x1d0f5) || + (0x1d100 <= lookahead && lookahead <= 0x1d126) || + (0x1d129 <= lookahead && lookahead <= 0x1d164) || + (0x1d16a <= lookahead && lookahead <= 0x1d16c) || + lookahead == 0x1d183 || + lookahead == 0x1d184 || + (0x1d18c <= lookahead && lookahead <= 0x1d1a9) || + (0x1d1ae <= lookahead && lookahead <= 0x1d1ea) || + (0x1d200 <= lookahead && lookahead <= 0x1d241) || + lookahead == 0x1d245 || + (0x1d300 <= lookahead && lookahead <= 0x1d356) || + lookahead == 0x1d6c1 || + lookahead == 0x1d6db || + lookahead == 0x1d6fb || + lookahead == 0x1d715 || + lookahead == 0x1d735 || + lookahead == 0x1d74f || + lookahead == 0x1d76f || + lookahead == 0x1d789 || + lookahead == 0x1d7a9 || + lookahead == 0x1d7c3 || + (0x1d800 <= lookahead && lookahead <= 0x1d9ff) || + (0x1da37 <= lookahead && lookahead <= 0x1da3a) || + (0x1da6d <= lookahead && lookahead <= 0x1da74) || + (0x1da76 <= lookahead && lookahead <= 0x1da83) || + lookahead == 0x1da85 || + lookahead == 0x1da86 || + lookahead == 0x1e14f || + lookahead == 0x1e2ff || + lookahead == 0x1ecac || + lookahead == 0x1ecb0 || + lookahead == 0x1ed2e || + lookahead == 0x1eef0 || + lookahead == 0x1eef1 || + (0x1f110 <= lookahead && lookahead <= 0x1fb92) || + (0x1fb94 <= lookahead && lookahead <= 0x1fbef)) ADVANCE(2115); + if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 808, lookahead)) ADVANCE(2119); + END_STATE(); + case 4: + ADVANCE_MAP( + '!', 2120, + '#', 2123, + '$', 2065, + '&', 2116, + '-', 2119, + '[', 2056, + '\\', 2046, + '{', 2074, + '|', 2124, + 0x2139, 2117, + '\t', 2129, + ' ', 2129, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2118); if (lookahead == 0x203c || lookahead == 0x2049 || lookahead == 0x303d || @@ -6829,134 +7792,284 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x1fade || (0x1faea <= lookahead && lookahead <= 0x1faef) || (0x1faf9 <= lookahead && lookahead <= 0x1faff) || - (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2120); - if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2116); - if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 809, lookahead)) ADVANCE(2118); - END_STATE(); - case 4: - ADVANCE_MAP( - '!', 2122, - '$', 2065, - '&', 2115, - '[', 2056, - '\\', 2046, - '{', 2074, - '|', 2121, - 0x3030, 2120, - '\t', 2128, - ' ', 2128, - '+', 2118, - '-', 2118, - ',', 2123, - '.', 2123, - ';', 2123, - '?', 2123, - ); - if (('#' <= lookahead && lookahead <= '%') || + (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2122); + if (set_contains(aux_sym_pandoc_str_token1_character_set_6, 78, lookahead)) ADVANCE(2122); + if (lookahead == '%' || lookahead == '(' || lookahead == ')' || - lookahead == '/' || - lookahead == ':' || + ('+' <= lookahead && lookahead <= ';') || + ('=' <= lookahead && lookahead <= '?') || + (0xa2 <= lookahead && lookahead <= 0xa6) || + lookahead == 0xa8 || + lookahead == 0xac || + (0xaf <= lookahead && lookahead <= 0xb1) || + lookahead == 0xb4 || + lookahead == 0xb8 || + lookahead == 0xd7 || + lookahead == 0xf7 || + (0x2c2 <= lookahead && lookahead <= 0x2c5) || + (0x2d2 <= lookahead && lookahead <= 0x2df) || + (0x2e5 <= lookahead && lookahead <= 0x2eb) || + lookahead == 0x2ed || + (0x2ef <= lookahead && lookahead <= 0x2ff) || + lookahead == 0x375 || + lookahead == 0x384 || + lookahead == 0x385 || + lookahead == 0x3f6 || + lookahead == 0x482 || lookahead == 0x58a || + (0x58d <= lookahead && lookahead <= 0x58f) || lookahead == 0x5be || + (0x606 <= lookahead && lookahead <= 0x608) || + lookahead == 0x60b || + lookahead == 0x60e || + lookahead == 0x60f || + lookahead == 0x6de || + lookahead == 0x6e9 || + lookahead == 0x6fd || + lookahead == 0x6fe || + lookahead == 0x7f6 || + lookahead == 0x7fe || + lookahead == 0x7ff || + lookahead == 0x888 || + lookahead == 0x9f2 || + lookahead == 0x9f3 || + lookahead == 0x9fa || + lookahead == 0x9fb || + lookahead == 0xaf1 || + lookahead == 0xb70 || + (0xbf3 <= lookahead && lookahead <= 0xbfa) || + lookahead == 0xc7f || + lookahead == 0xd4f || + lookahead == 0xd79 || + lookahead == 0xe3f || + (0xf01 <= lookahead && lookahead <= 0xf03) || + lookahead == 0xf13 || + (0xf15 <= lookahead && lookahead <= 0xf17) || + (0xf1a <= lookahead && lookahead <= 0xf1f) || + lookahead == 0xf34 || + lookahead == 0xf36 || + lookahead == 0xf38 || + (0xfbe <= lookahead && lookahead <= 0xfc5) || + (0xfc7 <= lookahead && lookahead <= 0xfcc) || + lookahead == 0xfce || + lookahead == 0xfcf || + (0xfd5 <= lookahead && lookahead <= 0xfd8) || + lookahead == 0x109e || + lookahead == 0x109f || + (0x1390 <= lookahead && lookahead <= 0x1399) || lookahead == 0x1400 || + lookahead == 0x166d || + lookahead == 0x17db || lookahead == 0x1806 || + lookahead == 0x1940 || + (0x19de <= lookahead && lookahead <= 0x19ff) || + (0x1b61 <= lookahead && lookahead <= 0x1b6a) || + (0x1b74 <= lookahead && lookahead <= 0x1b7c) || + lookahead == 0x1fbd || + (0x1fbf <= lookahead && lookahead <= 0x1fc1) || + (0x1fcd <= lookahead && lookahead <= 0x1fcf) || + (0x1fdd <= lookahead && lookahead <= 0x1fdf) || + (0x1fed <= lookahead && lookahead <= 0x1fef) || + lookahead == 0x1ffd || + lookahead == 0x1ffe || (0x2010 <= lookahead && lookahead <= 0x2015) || lookahead == 0x2026 || + lookahead == 0x2044 || + lookahead == 0x2052 || + (0x207a <= lookahead && lookahead <= 0x207c) || + (0x208a <= lookahead && lookahead <= 0x208c) || + (0x20a0 <= lookahead && lookahead <= 0x20af) || + (0x20b1 <= lookahead && lookahead <= 0x20c0) || + lookahead == 0x2100 || + lookahead == 0x2101 || + (0x2103 <= lookahead && lookahead <= 0x2106) || + lookahead == 0x2108 || + lookahead == 0x2109 || + lookahead == 0x2114 || + (0x2116 <= lookahead && lookahead <= 0x2118) || + (0x211e <= lookahead && lookahead <= 0x2123) || + lookahead == 0x2125 || + lookahead == 0x2127 || + lookahead == 0x2129 || + lookahead == 0x212e || + lookahead == 0x213a || + lookahead == 0x213b || + (0x2140 <= lookahead && lookahead <= 0x2144) || + (0x214a <= lookahead && lookahead <= 0x214d) || + lookahead == 0x214f || + lookahead == 0x218a || + lookahead == 0x218b || + (0x2190 <= lookahead && lookahead <= 0x2307) || + (0x230c <= lookahead && lookahead <= 0x2327) || + (0x232b <= lookahead && lookahead <= 0x2429) || + (0x2440 <= lookahead && lookahead <= 0x244a) || + (0x249c <= lookahead && lookahead <= 0x24e9) || + (0x2500 <= lookahead && lookahead <= 0x2762) || + (0x2794 <= lookahead && lookahead <= 0x27c4) || + (0x27c7 <= lookahead && lookahead <= 0x27e5) || + (0x27f0 <= lookahead && lookahead <= 0x2982) || + (0x2999 <= lookahead && lookahead <= 0x29d7) || + (0x29dc <= lookahead && lookahead <= 0x29fb) || + (0x29fe <= lookahead && lookahead <= 0x2b73) || + (0x2b76 <= lookahead && lookahead <= 0x2b95) || + (0x2b97 <= lookahead && lookahead <= 0x2bff) || + (0x2ce5 <= lookahead && lookahead <= 0x2cea) || lookahead == 0x2e17 || lookahead == 0x2e1a || lookahead == 0x2e3a || lookahead == 0x2e3b || lookahead == 0x2e40 || + lookahead == 0x2e50 || + lookahead == 0x2e51 || lookahead == 0x2e5d || + (0x2e80 <= lookahead && lookahead <= 0x2e99) || + (0x2e9b <= lookahead && lookahead <= 0x2ef3) || + (0x2f00 <= lookahead && lookahead <= 0x2fd5) || + (0x2ff0 <= lookahead && lookahead <= 0x2fff) || + lookahead == 0x3004 || + lookahead == 0x3012 || + lookahead == 0x3013 || lookahead == 0x301c || + lookahead == 0x3020 || + lookahead == 0x3036 || + lookahead == 0x3037 || + lookahead == 0x303e || + lookahead == 0x303f || + lookahead == 0x309b || + lookahead == 0x309c || lookahead == 0x30a0 || + lookahead == 0x3190 || + lookahead == 0x3191 || + (0x3196 <= lookahead && lookahead <= 0x319f) || + (0x31c0 <= lookahead && lookahead <= 0x31e5) || + lookahead == 0x31ef || + (0x3200 <= lookahead && lookahead <= 0x321e) || + (0x322a <= lookahead && lookahead <= 0x3247) || + lookahead == 0x3250 || + (0x3260 <= lookahead && lookahead <= 0x327f) || + (0x328a <= lookahead && lookahead <= 0x32b0) || + (0x32c0 <= lookahead && lookahead <= 0x33ff) || + (0x4dc0 <= lookahead && lookahead <= 0x4dff) || + (0xa490 <= lookahead && lookahead <= 0xa4c6) || + (0xa700 <= lookahead && lookahead <= 0xa716) || + lookahead == 0xa720 || + lookahead == 0xa721 || + lookahead == 0xa789 || + lookahead == 0xa78a || + (0xa828 <= lookahead && lookahead <= 0xa82b) || + (0xa836 <= lookahead && lookahead <= 0xa839) || + (0xaa77 <= lookahead && lookahead <= 0xaa79) || + lookahead == 0xab5b || + lookahead == 0xab6a || + lookahead == 0xab6b || + lookahead == 0xfb29 || + (0xfbb2 <= lookahead && lookahead <= 0xfbc2) || + (0xfd40 <= lookahead && lookahead <= 0xfd4f) || + lookahead == 0xfdcf || + (0xfdfc <= lookahead && lookahead <= 0xfdff) || lookahead == 0xfe31 || lookahead == 0xfe32 || lookahead == 0xfe58 || - lookahead == 0xfe63 || + (0xfe62 <= lookahead && lookahead <= 0xfe66) || + lookahead == 0xfe69 || + lookahead == 0xff04 || + lookahead == 0xff0b || lookahead == 0xff0d || + (0xff1c <= lookahead && lookahead <= 0xff1e) || + lookahead == 0xff3e || + lookahead == 0xff40 || + lookahead == 0xff5c || + lookahead == 0xff5e || + (0xffe0 <= lookahead && lookahead <= 0xffe6) || + (0xffe8 <= lookahead && lookahead <= 0xffee) || + lookahead == 0xfffc || + lookahead == 0xfffd || + (0x10137 <= lookahead && lookahead <= 0x1013f) || + (0x10179 <= lookahead && lookahead <= 0x10189) || + (0x1018c <= lookahead && lookahead <= 0x1018e) || + (0x10190 <= lookahead && lookahead <= 0x1019c) || + lookahead == 0x101a0 || + (0x101d0 <= lookahead && lookahead <= 0x101fc) || + lookahead == 0x10877 || + lookahead == 0x10878 || + lookahead == 0x10ac8 || lookahead == 0x10d6e || - lookahead == 0x10ead) ADVANCE(2114); - if (lookahead == 0x203c || - lookahead == 0x2049 || - lookahead == 0x303d || - (0x1f02c <= lookahead && lookahead <= 0x1f02f) || - (0x1f094 <= lookahead && lookahead <= 0x1f09f) || - lookahead == 0x1f0af || - lookahead == 0x1f0b0 || - lookahead == 0x1f0c0 || - lookahead == 0x1f0d0 || - (0x1f0f6 <= lookahead && lookahead <= 0x1f0ff) || - (0x1f1ae <= lookahead && lookahead <= 0x1f1e5) || - (0x1f203 <= lookahead && lookahead <= 0x1f20f) || - (0x1f23c <= lookahead && lookahead <= 0x1f23f) || - (0x1f249 <= lookahead && lookahead <= 0x1f24f) || - (0x1f252 <= lookahead && lookahead <= 0x1f25f) || - (0x1f266 <= lookahead && lookahead <= 0x1f2ff) || - (0x1f6d8 <= lookahead && lookahead <= 0x1f6db) || - (0x1f6ed <= lookahead && lookahead <= 0x1f6ef) || - (0x1f6fd <= lookahead && lookahead <= 0x1f6ff) || - (0x1f777 <= lookahead && lookahead <= 0x1f77a) || - (0x1f7da <= lookahead && lookahead <= 0x1f7df) || - (0x1f7ec <= lookahead && lookahead <= 0x1f7ef) || - (0x1f7f1 <= lookahead && lookahead <= 0x1f7ff) || - (0x1f80c <= lookahead && lookahead <= 0x1f80f) || - (0x1f848 <= lookahead && lookahead <= 0x1f84f) || - (0x1f85a <= lookahead && lookahead <= 0x1f85f) || - (0x1f888 <= lookahead && lookahead <= 0x1f88f) || - lookahead == 0x1f8ae || - lookahead == 0x1f8af || - (0x1f8bc <= lookahead && lookahead <= 0x1f8bf) || - (0x1f8c2 <= lookahead && lookahead <= 0x1f8ff) || - (0x1fa54 <= lookahead && lookahead <= 0x1fa5f) || - lookahead == 0x1fa6e || - lookahead == 0x1fa6f || - (0x1fa7d <= lookahead && lookahead <= 0x1fa7f) || - (0x1fa8a <= lookahead && lookahead <= 0x1fa8e) || - (0x1fac7 <= lookahead && lookahead <= 0x1facd) || - lookahead == 0x1fadd || - lookahead == 0x1fade || - (0x1faea <= lookahead && lookahead <= 0x1faef) || - (0x1faf9 <= lookahead && lookahead <= 0x1faff) || - (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2120); - if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2116); - if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 809, lookahead)) ADVANCE(2118); + lookahead == 0x10ead || + lookahead == 0x1173f || + (0x11fd5 <= lookahead && lookahead <= 0x11ff1) || + (0x16b3c <= lookahead && lookahead <= 0x16b3f) || + lookahead == 0x16b45 || + lookahead == 0x1bc9c || + (0x1cc00 <= lookahead && lookahead <= 0x1ccef) || + (0x1cd00 <= lookahead && lookahead <= 0x1ceb3) || + (0x1cf50 <= lookahead && lookahead <= 0x1cfc3) || + (0x1d000 <= lookahead && lookahead <= 0x1d0f5) || + (0x1d100 <= lookahead && lookahead <= 0x1d126) || + (0x1d129 <= lookahead && lookahead <= 0x1d164) || + (0x1d16a <= lookahead && lookahead <= 0x1d16c) || + lookahead == 0x1d183 || + lookahead == 0x1d184 || + (0x1d18c <= lookahead && lookahead <= 0x1d1a9) || + (0x1d1ae <= lookahead && lookahead <= 0x1d1ea) || + (0x1d200 <= lookahead && lookahead <= 0x1d241) || + lookahead == 0x1d245 || + (0x1d300 <= lookahead && lookahead <= 0x1d356) || + lookahead == 0x1d6c1 || + lookahead == 0x1d6db || + lookahead == 0x1d6fb || + lookahead == 0x1d715 || + lookahead == 0x1d735 || + lookahead == 0x1d74f || + lookahead == 0x1d76f || + lookahead == 0x1d789 || + lookahead == 0x1d7a9 || + lookahead == 0x1d7c3 || + (0x1d800 <= lookahead && lookahead <= 0x1d9ff) || + (0x1da37 <= lookahead && lookahead <= 0x1da3a) || + (0x1da6d <= lookahead && lookahead <= 0x1da74) || + (0x1da76 <= lookahead && lookahead <= 0x1da83) || + lookahead == 0x1da85 || + lookahead == 0x1da86 || + lookahead == 0x1e14f || + lookahead == 0x1e2ff || + lookahead == 0x1ecac || + lookahead == 0x1ecb0 || + lookahead == 0x1ed2e || + lookahead == 0x1eef0 || + lookahead == 0x1eef1 || + (0x1f110 <= lookahead && lookahead <= 0x1fb92) || + (0x1fb94 <= lookahead && lookahead <= 0x1fbef)) ADVANCE(2115); + if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 808, lookahead)) ADVANCE(2119); END_STATE(); case 5: - ADVANCE_MAP( - '"', 2090, - '#', 2041, - '.', 2039, - '=', 2079, - ']', 2113, - '{', 2074, - '}', 2075, - '\t', 386, - ' ', 386, - ); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '"') ADVANCE(2090); + if (lookahead == '#') ADVANCE(2041); + if (lookahead == '.') ADVANCE(2039); + if (lookahead == '=') ADVANCE(2079); + if (lookahead == '}') ADVANCE(2075); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2129); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2082); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2099); END_STATE(); case 6: if (lookahead == '"') ADVANCE(2090); if (lookahead == '\'') ADVANCE(2083); - if (lookahead == '-') ADVANCE(2099); - if (lookahead == '0') ADVANCE(2107); + if (lookahead == '-') ADVANCE(2100); + if (lookahead == '0') ADVANCE(2108); if (lookahead == '=') ADVANCE(2079); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2128); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2108); + lookahead == ' ') ADVANCE(2129); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2109); if (('!' <= lookahead && lookahead <= ')') || ('+' <= lookahead && lookahead <= ';') || lookahead == '?' || lookahead == '@' || lookahead == '[' || lookahead == ']' || - lookahead == '~') ADVANCE(2104); + lookahead == '~') ADVANCE(2105); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2097); @@ -6967,6 +8080,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(2094); END_STATE(); case 8: + if (lookahead == '"') ADVANCE(2060); + if (lookahead == ')') ADVANCE(2063); + if (lookahead == '\\') ADVANCE(2062); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2129); + if (lookahead != 0 && + lookahead != '{') ADVANCE(2060); + END_STATE(); + case 9: ADVANCE_MAP( '#', 2041, '$', 2064, @@ -6976,32 +8098,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ':', 2052, '{', 2074, '}', 2075, - '\t', 2128, - ' ', 2128, + '\t', 2129, + ' ', 2129, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2112); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2113); END_STATE(); - case 9: + case 10: if (lookahead == '$') ADVANCE(2049); if (lookahead == '\\') ADVANCE(2070); if (lookahead != 0) ADVANCE(2069); END_STATE(); - case 10: + case 11: if (lookahead == '\'') ADVANCE(2083); if (lookahead == '\\') ADVANCE(2088); if (lookahead != 0) ADVANCE(2087); END_STATE(); - case 11: - if (lookahead == ')') ADVANCE(2063); - if (lookahead == '\\') ADVANCE(2062); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2128); - if (lookahead != 0 && - lookahead != '{') ADVANCE(2060); - END_STATE(); case 12: if (lookahead == '1') ADVANCE(2018); if (lookahead == '3') ADVANCE(15); @@ -7023,7 +8137,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 16: if (lookahead == '4') ADVANCE(19); - if (lookahead == 'f') ADVANCE(1527); + if (lookahead == 'f') ADVANCE(1526); END_STATE(); case 17: if (lookahead == '5') ADVANCE(19); @@ -7037,103 +8151,103 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 20: ADVANCE_MAP( ';', 2054, - 'A', 452, - 'B', 442, + 'A', 451, + 'B', 441, 'E', 147, - 'H', 405, - 'a', 678, - 'b', 443, - 'c', 470, - 'd', 662, + 'H', 404, + 'a', 677, + 'b', 442, + 'c', 469, + 'd', 661, 'e', 144, - 'f', 1120, + 'f', 1119, 'g', 34, - 'h', 488, - 'j', 613, + 'h', 487, + 'j', 612, 'l', 70, - 'm', 1103, + 'm', 1102, 'n', 322, - 'o', 413, - 'p', 492, - 'r', 446, - 's', 393, + 'o', 412, + 'p', 491, + 'r', 445, + 's', 392, 't', 97, - 'u', 1637, - 'v', 930, + 'u', 1636, + 'v', 929, ); END_STATE(); case 21: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'A') ADVANCE(1628); - if (lookahead == 'a') ADVANCE(1621); - if (lookahead == 'd') ADVANCE(1457); - if (lookahead == 'q') ADVANCE(1938); - if (lookahead == 's') ADVANCE(837); - if (lookahead == 'x') ADVANCE(1162); + if (lookahead == 'A') ADVANCE(1627); + if (lookahead == 'a') ADVANCE(1620); + if (lookahead == 'd') ADVANCE(1456); + if (lookahead == 'q') ADVANCE(1937); + if (lookahead == 's') ADVANCE(836); + if (lookahead == 'x') ADVANCE(1161); END_STATE(); case 22: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'A') ADVANCE(1740); + if (lookahead == 'A') ADVANCE(1739); END_STATE(); case 23: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'A') ADVANCE(1740); - if (lookahead == 'V') ADVANCE(931); + if (lookahead == 'A') ADVANCE(1739); + if (lookahead == 'V') ADVANCE(930); END_STATE(); case 24: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'B') ADVANCE(405); + if (lookahead == 'B') ADVANCE(404); END_STATE(); case 25: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'B') ADVANCE(405); - if (lookahead == 'D') ADVANCE(1511); + if (lookahead == 'B') ADVANCE(404); + if (lookahead == 'D') ADVANCE(1510); END_STATE(); case 26: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'B') ADVANCE(405); - if (lookahead == 'E') ADVANCE(1599); + if (lookahead == 'B') ADVANCE(404); + if (lookahead == 'E') ADVANCE(1598); END_STATE(); case 27: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'B') ADVANCE(405); - if (lookahead == 'L') ADVANCE(933); + if (lookahead == 'B') ADVANCE(404); + if (lookahead == 'L') ADVANCE(932); END_STATE(); case 28: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'B') ADVANCE(405); - if (lookahead == 'R') ADVANCE(1184); + if (lookahead == 'B') ADVANCE(404); + if (lookahead == 'R') ADVANCE(1183); END_STATE(); case 29: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'B') ADVANCE(405); - if (lookahead == 'U') ADVANCE(1555); + if (lookahead == 'B') ADVANCE(404); + if (lookahead == 'U') ADVANCE(1554); END_STATE(); case 30: ADVANCE_MAP( ';', 2054, - 'C', 1522, - 'D', 1496, - 'E', 1231, - 'G', 1756, - 'H', 1949, - 'L', 905, - 'N', 872, - 'P', 1717, - 'R', 906, - 'S', 1600, - 'T', 1109, - 'V', 945, + 'C', 1521, + 'D', 1495, + 'E', 1230, + 'G', 1755, + 'H', 1948, + 'L', 904, + 'N', 871, + 'P', 1716, + 'R', 905, + 'S', 1599, + 'T', 1108, + 'V', 944, ); END_STATE(); case 31: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'C') ADVANCE(431); + if (lookahead == 'C') ADVANCE(430); END_STATE(); case 32: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'D') ADVANCE(1457); - if (lookahead == 'E') ADVANCE(1599); + if (lookahead == 'D') ADVANCE(1456); + if (lookahead == 'E') ADVANCE(1598); END_STATE(); case 33: if (lookahead == ';') ADVANCE(2054); @@ -7147,33 +8261,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ';', 2054, 'E', 19, - 'a', 1536, - 'c', 1927, + 'a', 1535, + 'c', 1926, 'e', 96, - 'i', 1358, + 'i', 1357, 'n', 321, - 'o', 741, - 's', 1114, - 'u', 1668, + 'o', 740, + 's', 1113, + 'u', 1667, ); END_STATE(); case 36: ADVANCE_MAP( ';', 2054, 'E', 19, - 'd', 1457, + 'd', 1456, 'e', 107, - 'm', 1934, + 'm', 1933, 'n', 2021, - 'p', 1307, - 'r', 442, - 's', 885, + 'p', 1306, + 'r', 441, + 's', 884, ); END_STATE(); case 37: if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E') ADVANCE(19); - if (lookahead == 'd') ADVANCE(1457); + if (lookahead == 'd') ADVANCE(1456); if (lookahead == 'v') ADVANCE(2034); END_STATE(); case 38: @@ -7184,69 +8298,69 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 39: if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E') ADVANCE(19); - if (lookahead == 'i') ADVANCE(740); - if (lookahead == 'o') ADVANCE(1762); - if (lookahead == 'p') ADVANCE(1688); + if (lookahead == 'i') ADVANCE(739); + if (lookahead == 'o') ADVANCE(1761); + if (lookahead == 'p') ADVANCE(1687); END_STATE(); case 40: ADVANCE_MAP( ';', 2054, 'E', 164, - 'a', 680, - 'b', 1608, - 'c', 1150, - 'd', 1457, + 'a', 679, + 'b', 1607, + 'c', 1149, + 'd', 1456, 'e', 165, - 'f', 1609, + 'f', 1608, 'g', 147, - 'i', 1343, - 'j', 613, + 'i', 1342, + 'j', 612, 'l', 236, 'n', 322, - 'o', 1539, - 'r', 396, - 's', 648, + 'o', 1538, + 'r', 395, + 's', 647, 't', 98, - 'v', 930, + 'v', 929, ); END_STATE(); case 41: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'E') ADVANCE(1599); + if (lookahead == 'E') ADVANCE(1598); END_STATE(); case 42: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'E') ADVANCE(1599); - if (lookahead == 'F') ADVANCE(1956); - if (lookahead == 'G') ADVANCE(1749); - if (lookahead == 'L') ADVANCE(831); - if (lookahead == 'S') ADVANCE(1317); - if (lookahead == 'T') ADVANCE(1177); + if (lookahead == 'E') ADVANCE(1598); + if (lookahead == 'F') ADVANCE(1955); + if (lookahead == 'G') ADVANCE(1748); + if (lookahead == 'L') ADVANCE(830); + if (lookahead == 'S') ADVANCE(1316); + if (lookahead == 'T') ADVANCE(1176); END_STATE(); case 43: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'E') ADVANCE(1599); - if (lookahead == 'F') ADVANCE(1956); - if (lookahead == 'T') ADVANCE(1177); + if (lookahead == 'E') ADVANCE(1598); + if (lookahead == 'F') ADVANCE(1955); + if (lookahead == 'T') ADVANCE(1176); END_STATE(); case 44: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'E') ADVANCE(1599); - if (lookahead == 'G') ADVANCE(1749); - if (lookahead == 'L') ADVANCE(831); - if (lookahead == 'S') ADVANCE(1317); - if (lookahead == 'T') ADVANCE(1177); + if (lookahead == 'E') ADVANCE(1598); + if (lookahead == 'G') ADVANCE(1748); + if (lookahead == 'L') ADVANCE(830); + if (lookahead == 'S') ADVANCE(1316); + if (lookahead == 'T') ADVANCE(1176); END_STATE(); case 45: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'E') ADVANCE(1599); - if (lookahead == 'S') ADVANCE(1317); + if (lookahead == 'E') ADVANCE(1598); + if (lookahead == 'S') ADVANCE(1316); END_STATE(); case 46: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'E') ADVANCE(1599); - if (lookahead == 'S') ADVANCE(1317); - if (lookahead == 'T') ADVANCE(1177); + if (lookahead == 'E') ADVANCE(1598); + if (lookahead == 'S') ADVANCE(1316); + if (lookahead == 'T') ADVANCE(1176); END_STATE(); case 47: if (lookahead == ';') ADVANCE(2054); @@ -7258,22 +8372,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 49: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'I') ADVANCE(1439); - if (lookahead == 'S') ADVANCE(1920); - if (lookahead == 'U') ADVANCE(1420); + if (lookahead == 'I') ADVANCE(1438); + if (lookahead == 'S') ADVANCE(1919); + if (lookahead == 'U') ADVANCE(1419); END_STATE(); case 50: ADVANCE_MAP( ';', 2054, - 'J', 613, - 'a', 679, - 'c', 472, - 'e', 962, - 'f', 1609, + 'J', 612, + 'a', 678, + 'c', 471, + 'e', 961, + 'f', 1608, 'l', 124, - 'm', 1102, - 'o', 1387, - 's', 645, + 'm', 1101, + 'o', 1386, + 's', 644, 'T', 19, 't', 19, ); @@ -7281,15 +8395,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 51: ADVANCE_MAP( ';', 2054, - 'J', 613, - 'a', 1359, - 'b', 1608, - 'c', 841, - 'd', 1457, - 'f', 1609, - 'o', 1539, - 'r', 857, - 's', 637, + 'J', 612, + 'a', 1358, + 'b', 1607, + 'c', 840, + 'd', 1456, + 'f', 1608, + 'o', 1538, + 'r', 856, + 's', 636, 'T', 19, 'g', 19, 't', 19, @@ -7297,7 +8411,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 52: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'L') ADVANCE(831); + if (lookahead == 'L') ADVANCE(830); END_STATE(); case 53: if (lookahead == ';') ADVANCE(2054); @@ -7309,7 +8423,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 55: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'P') ADVANCE(1307); + if (lookahead == 'P') ADVANCE(1306); END_STATE(); case 56: if (lookahead == ';') ADVANCE(2054); @@ -7317,7 +8431,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 57: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'T') ADVANCE(1177); + if (lookahead == 'T') ADVANCE(1176); END_STATE(); case 58: if (lookahead == ';') ADVANCE(2054); @@ -7325,13 +8439,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 59: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(643); - if (lookahead == 'p') ADVANCE(1273); + if (lookahead == 'a') ADVANCE(642); + if (lookahead == 'p') ADVANCE(1272); END_STATE(); case 60: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(994); - if (lookahead == 'o') ADVANCE(1872); + if (lookahead == 'a') ADVANCE(993); + if (lookahead == 'o') ADVANCE(1871); END_STATE(); case 61: if (lookahead == ';') ADVANCE(2054); @@ -7339,28 +8453,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 62: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'a') ADVANCE(636); if (lookahead == 'l') ADVANCE(19); END_STATE(); case 63: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1609); + if (lookahead == 'a') ADVANCE(1608); END_STATE(); case 64: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(651); + if (lookahead == 'a') ADVANCE(650); if (lookahead == 'p') ADVANCE(19); END_STATE(); case 65: ADVANCE_MAP( ';', 2054, - 'a', 1537, - 'c', 1927, + 'a', 1536, + 'c', 1926, 'e', 116, - 'i', 1676, + 'i', 1675, 'n', 321, - 'p', 1532, - 's', 1114, + 'p', 1531, + 's', 1113, 'E', 19, 'y', 19, ); @@ -7368,20 +8482,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 66: if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(172); - if (lookahead == 's') ADVANCE(1115); + if (lookahead == 's') ADVANCE(1114); if (lookahead == 't') ADVANCE(19); END_STATE(); case 67: ADVANCE_MAP( ';', 2054, - 'a', 1536, + 'a', 1535, 'b', 143, - 'f', 1762, - 'h', 1198, - 'l', 1536, - 'p', 1217, - 's', 1114, - 't', 1217, + 'f', 1761, + 'h', 1197, + 'l', 1535, + 'p', 1216, + 's', 1113, + 't', 1216, 'c', 19, 'w', 19, ); @@ -7389,126 +8503,126 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 68: ADVANCE_MAP( ';', 2054, - 'a', 709, - 'c', 1092, + 'a', 708, + 'c', 1091, 'd', 2030, 'm', 176, - 's', 1114, - 't', 1980, + 's', 1113, + 't', 1979, 'b', 19, 'e', 19, ); END_STATE(); case 69: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(709); - if (lookahead == 'i') ADVANCE(740); - if (lookahead == 'o') ADVANCE(1762); - if (lookahead == 'p') ADVANCE(1682); + if (lookahead == 'a') ADVANCE(708); + if (lookahead == 'i') ADVANCE(739); + if (lookahead == 'o') ADVANCE(1761); + if (lookahead == 'p') ADVANCE(1681); if (lookahead == 'E' || lookahead == 'e') ADVANCE(19); END_STATE(); case 70: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'c') ADVANCE(1508); - if (lookahead == 'h') ADVANCE(507); - if (lookahead == 't') ADVANCE(1644); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'c') ADVANCE(1507); + if (lookahead == 'h') ADVANCE(506); + if (lookahead == 't') ADVANCE(1643); END_STATE(); case 71: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1628); + if (lookahead == 'a') ADVANCE(1627); if (lookahead == 'd') ADVANCE(139); - if (lookahead == 'i') ADVANCE(996); - if (lookahead == 'o') ADVANCE(1609); - if (lookahead == 's') ADVANCE(1272); + if (lookahead == 'i') ADVANCE(995); + if (lookahead == 'o') ADVANCE(1608); + if (lookahead == 's') ADVANCE(1271); if (lookahead == 'v') ADVANCE(19); END_STATE(); case 72: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1762); + if (lookahead == 'a') ADVANCE(1761); END_STATE(); case 73: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1773); - if (lookahead == 'c') ADVANCE(1092); - if (lookahead == 'd') ADVANCE(1464); + if (lookahead == 'a') ADVANCE(1772); + if (lookahead == 'c') ADVANCE(1091); + if (lookahead == 'd') ADVANCE(1463); END_STATE(); case 74: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1217); + if (lookahead == 'a') ADVANCE(1216); END_STATE(); case 75: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1662); - if (lookahead == 'e') ADVANCE(780); - if (lookahead == 'i') ADVANCE(1676); + if (lookahead == 'a') ADVANCE(1661); + if (lookahead == 'e') ADVANCE(779); + if (lookahead == 'i') ADVANCE(1675); if (lookahead == 'y') ADVANCE(19); END_STATE(); case 76: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1222); - if (lookahead == 'c') ADVANCE(1817); + if (lookahead == 'a') ADVANCE(1221); + if (lookahead == 'c') ADVANCE(1816); if (lookahead == 'g') ADVANCE(19); END_STATE(); case 77: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1362); - if (lookahead == 'b') ADVANCE(1731); - if (lookahead == 'c') ADVANCE(435); - if (lookahead == 'd') ADVANCE(1457); + if (lookahead == 'a') ADVANCE(1361); + if (lookahead == 'b') ADVANCE(1730); + if (lookahead == 'c') ADVANCE(434); + if (lookahead == 'd') ADVANCE(1456); if (lookahead == 's') ADVANCE(19); END_STATE(); case 78: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1362); - if (lookahead == 's') ADVANCE(1272); + if (lookahead == 'a') ADVANCE(1361); + if (lookahead == 's') ADVANCE(1271); if (lookahead == 'd' || lookahead == 'v') ADVANCE(19); END_STATE(); case 79: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(702); + if (lookahead == 'a') ADVANCE(701); END_STATE(); case 80: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1657); - if (lookahead == 'c') ADVANCE(1049); - if (lookahead == 'o') ADVANCE(1696); + if (lookahead == 'a') ADVANCE(1656); + if (lookahead == 'c') ADVANCE(1048); + if (lookahead == 'o') ADVANCE(1695); if (lookahead == 'y') ADVANCE(19); END_STATE(); case 81: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1242); + if (lookahead == 'a') ADVANCE(1241); END_STATE(); case 82: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1625); + if (lookahead == 'a') ADVANCE(1624); if (lookahead == 'f') ADVANCE(19); END_STATE(); case 83: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1571); - if (lookahead == 'c') ADVANCE(1947); - if (lookahead == 'e') ADVANCE(1591); - if (lookahead == 'n') ADVANCE(529); - if (lookahead == 's') ADVANCE(1114); + if (lookahead == 'a') ADVANCE(1570); + if (lookahead == 'c') ADVANCE(1946); + if (lookahead == 'e') ADVANCE(1590); + if (lookahead == 'n') ADVANCE(528); + if (lookahead == 's') ADVANCE(1113); END_STATE(); case 84: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1122); + if (lookahead == 'a') ADVANCE(1121); if (lookahead == 'e') ADVANCE(201); END_STATE(); case 85: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'a') ADVANCE(1316); - if (lookahead == 's') ADVANCE(1217); + if (lookahead == 'a') ADVANCE(1315); + if (lookahead == 's') ADVANCE(1216); if (lookahead == 't') ADVANCE(19); END_STATE(); case 86: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'b') ADVANCE(1457); - if (lookahead == 'c') ADVANCE(1092); + if (lookahead == 'b') ADVANCE(1456); + if (lookahead == 'c') ADVANCE(1091); if (lookahead == 'f') ADVANCE(185); END_STATE(); case 87: @@ -7519,7 +8633,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 88: if (lookahead == ';') ADVANCE(2054); if (lookahead == 'b') ADVANCE(19); - if (lookahead == 'h') ADVANCE(1809); + if (lookahead == 'h') ADVANCE(1808); END_STATE(); case 89: if (lookahead == ';') ADVANCE(2054); @@ -7534,25 +8648,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ';', 2054, 'b', 143, - 'f', 1762, - 'h', 1198, - 'l', 1536, - 'p', 1217, - 's', 1114, - 't', 1217, + 'f', 1761, + 'h', 1197, + 'l', 1535, + 'p', 1216, + 's', 1113, + 't', 1216, ); END_STATE(); case 92: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'b') ADVANCE(405); - if (lookahead == 'e') ADVANCE(1591); + if (lookahead == 'b') ADVANCE(404); + if (lookahead == 'e') ADVANCE(1590); END_STATE(); case 93: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'b') ADVANCE(1684); - if (lookahead == 'c') ADVANCE(435); - if (lookahead == 'd') ADVANCE(1457); - if (lookahead == 'o') ADVANCE(1609); + if (lookahead == 'b') ADVANCE(1683); + if (lookahead == 'c') ADVANCE(434); + if (lookahead == 'd') ADVANCE(1456); + if (lookahead == 'o') ADVANCE(1608); if (lookahead == 's') ADVANCE(19); END_STATE(); case 94: @@ -7562,9 +8676,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 95: if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(127); - if (lookahead == 'f') ADVANCE(1425); - if (lookahead == 'm') ADVANCE(1081); - if (lookahead == 's') ADVANCE(709); + if (lookahead == 'f') ADVANCE(1424); + if (lookahead == 'm') ADVANCE(1080); + if (lookahead == 's') ADVANCE(708); if (lookahead == 'E' || lookahead == 'e') ADVANCE(19); END_STATE(); @@ -7575,22 +8689,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 97: ADVANCE_MAP( ';', 2054, - 'c', 622, - 'd', 1457, - 'h', 1658, - 'i', 1356, - 'l', 442, - 'q', 1939, + 'c', 621, + 'd', 1456, + 'h', 1657, + 'i', 1355, + 'l', 441, + 'q', 1938, 'r', 363, ); END_STATE(); case 98: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'c') ADVANCE(622); - if (lookahead == 'd') ADVANCE(1457); + if (lookahead == 'c') ADVANCE(621); + if (lookahead == 'd') ADVANCE(1456); if (lookahead == 'l') ADVANCE(362); - if (lookahead == 'q') ADVANCE(1939); - if (lookahead == 'r') ADVANCE(430); + if (lookahead == 'q') ADVANCE(1938); + if (lookahead == 'r') ADVANCE(429); END_STATE(); case 99: if (lookahead == ';') ADVANCE(2054); @@ -7598,66 +8712,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 100: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'c') ADVANCE(621); - if (lookahead == 'd') ADVANCE(1501); + if (lookahead == 'c') ADVANCE(620); + if (lookahead == 'd') ADVANCE(1500); if (lookahead == 'l') ADVANCE(134); END_STATE(); case 101: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'c') ADVANCE(621); - if (lookahead == 'd') ADVANCE(1502); + if (lookahead == 'c') ADVANCE(620); + if (lookahead == 'd') ADVANCE(1501); if (lookahead == 'g') ADVANCE(134); - if (lookahead == 's') ADVANCE(528); + if (lookahead == 's') ADVANCE(527); END_STATE(); case 102: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'c') ADVANCE(459); - if (lookahead == 'e') ADVANCE(1027); - if (lookahead == 'l') ADVANCE(514); - if (lookahead == 'p') ADVANCE(1669); + if (lookahead == 'c') ADVANCE(458); + if (lookahead == 'e') ADVANCE(1026); + if (lookahead == 'l') ADVANCE(513); + if (lookahead == 'p') ADVANCE(1668); END_STATE(); case 103: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'c') ADVANCE(1092); + if (lookahead == 'c') ADVANCE(1091); if (lookahead == 'w') ADVANCE(19); END_STATE(); case 104: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'c') ADVANCE(1927); + if (lookahead == 'c') ADVANCE(1926); if (lookahead == 'e') ADVANCE(99); END_STATE(); case 105: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'c') ADVANCE(1927); + if (lookahead == 'c') ADVANCE(1926); if (lookahead == 'e' || lookahead == 'r') ADVANCE(19); END_STATE(); case 106: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'c') ADVANCE(549); - if (lookahead == 'f') ADVANCE(1137); - if (lookahead == 'o') ADVANCE(735); + if (lookahead == 'c') ADVANCE(548); + if (lookahead == 'f') ADVANCE(1136); + if (lookahead == 'o') ADVANCE(734); if (lookahead == 't') ADVANCE(102); END_STATE(); case 107: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'd') ADVANCE(1457); + if (lookahead == 'd') ADVANCE(1456); END_STATE(); case 108: ADVANCE_MAP( ';', 2054, - 'd', 1457, + 'd', 1456, 'e', 192, 'g', 34, 'l', 34, - 'n', 785, - 'p', 1307, - 'r', 442, + 'n', 784, + 'p', 1306, + 'r', 441, ); END_STATE(); case 109: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'd') ADVANCE(1457); + if (lookahead == 'd') ADVANCE(1456); if (lookahead == 's') ADVANCE(225); if (lookahead == 'E' || lookahead == 'v') ADVANCE(19); @@ -7669,45 +8783,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 111: if (lookahead == ';') ADVANCE(2054); if (lookahead == 'd') ADVANCE(19); - if (lookahead == 'l') ADVANCE(785); + if (lookahead == 'l') ADVANCE(784); END_STATE(); case 112: ADVANCE_MAP( ';', 2054, - 'd', 1458, + 'd', 1457, 'e', 107, - 'h', 1775, - 'l', 442, - 'm', 1934, + 'h', 1774, + 'l', 441, + 'm', 1933, 'n', 2021, - 'p', 1307, - 's', 885, + 'p', 1306, + 's', 884, ); if (('1' <= lookahead && lookahead <= '3') || lookahead == 'E') ADVANCE(19); END_STATE(); case 113: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'd') ADVANCE(1450); - if (lookahead == 'l') ADVANCE(845); - if (lookahead == 'r') ADVANCE(1145); + if (lookahead == 'd') ADVANCE(1449); + if (lookahead == 'l') ADVANCE(844); + if (lookahead == 'r') ADVANCE(1144); END_STATE(); case 114: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'd') ADVANCE(1450); - if (lookahead == 'l') ADVANCE(845); - if (lookahead == 'u') ADVANCE(1536); + if (lookahead == 'd') ADVANCE(1449); + if (lookahead == 'l') ADVANCE(844); + if (lookahead == 'u') ADVANCE(1535); END_STATE(); case 115: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'd') ADVANCE(1450); - if (lookahead == 'l') ADVANCE(938); + if (lookahead == 'd') ADVANCE(1449); + if (lookahead == 'l') ADVANCE(937); if (lookahead == 'q') ADVANCE(19); - if (lookahead == 'r') ADVANCE(1188); + if (lookahead == 'r') ADVANCE(1187); END_STATE(); case 116: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'd') ADVANCE(1122); + if (lookahead == 'd') ADVANCE(1121); END_STATE(); case 117: if (lookahead == ';') ADVANCE(2054); @@ -7716,39 +8830,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 118: if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(19); - if (lookahead == 'l') ADVANCE(785); - if (lookahead == 'm') ADVANCE(1792); - if (lookahead == 'r') ADVANCE(1846); - if (lookahead == 's') ADVANCE(1559); - if (lookahead == 'z') ADVANCE(442); + if (lookahead == 'l') ADVANCE(784); + if (lookahead == 'm') ADVANCE(1791); + if (lookahead == 'r') ADVANCE(1845); + if (lookahead == 's') ADVANCE(1558); + if (lookahead == 'z') ADVANCE(441); END_STATE(); case 119: if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(19); - if (lookahead == 's') ADVANCE(873); + if (lookahead == 's') ADVANCE(872); END_STATE(); case 120: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1609); + if (lookahead == 'e') ADVANCE(1608); END_STATE(); case 121: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1592); - if (lookahead == 'm') ADVANCE(1174); - if (lookahead == 'p') ADVANCE(1307); - if (lookahead == 's') ADVANCE(1606); + if (lookahead == 'e') ADVANCE(1591); + if (lookahead == 'm') ADVANCE(1173); + if (lookahead == 'p') ADVANCE(1306); + if (lookahead == 's') ADVANCE(1605); END_STATE(); case 122: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1817); + if (lookahead == 'e') ADVANCE(1816); END_STATE(); case 123: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1020); + if (lookahead == 'e') ADVANCE(1019); END_STATE(); case 124: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(965); + if (lookahead == 'e') ADVANCE(964); END_STATE(); case 125: if (lookahead == ';') ADVANCE(2054); @@ -7756,12 +8870,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 126: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1591); + if (lookahead == 'e') ADVANCE(1590); END_STATE(); case 127: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1591); - if (lookahead == 'l') ADVANCE(806); + if (lookahead == 'e') ADVANCE(1590); + if (lookahead == 'l') ADVANCE(805); END_STATE(); case 128: if (lookahead == ';') ADVANCE(2054); @@ -7769,9 +8883,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 129: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(711); - if (lookahead == 'i') ADVANCE(1346); - if (lookahead == 'o') ADVANCE(764); + if (lookahead == 'e') ADVANCE(710); + if (lookahead == 'i') ADVANCE(1345); + if (lookahead == 'o') ADVANCE(763); END_STATE(); case 130: if (lookahead == ';') ADVANCE(2054); @@ -7779,49 +8893,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 131: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1596); + if (lookahead == 'e') ADVANCE(1595); END_STATE(); case 132: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1596); - if (lookahead == 'n') ADVANCE(850); + if (lookahead == 'e') ADVANCE(1595); + if (lookahead == 'n') ADVANCE(849); END_STATE(); case 133: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(458); + if (lookahead == 'e') ADVANCE(457); END_STATE(); case 134: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1762); + if (lookahead == 'e') ADVANCE(1761); END_STATE(); case 135: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1793); + if (lookahead == 'e') ADVANCE(1792); END_STATE(); case 136: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1417); + if (lookahead == 'e') ADVANCE(1416); if (lookahead == 'f') ADVANCE(19); END_STATE(); case 137: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1694); - if (lookahead == 's') ADVANCE(821); + if (lookahead == 'e') ADVANCE(1693); + if (lookahead == 's') ADVANCE(820); END_STATE(); case 138: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1650); - if (lookahead == 's') ADVANCE(1536); + if (lookahead == 'e') ADVANCE(1649); + if (lookahead == 's') ADVANCE(1535); END_STATE(); case 139: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1660); + if (lookahead == 'e') ADVANCE(1659); if (lookahead == 'f' || lookahead == 'm') ADVANCE(19); END_STATE(); case 140: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'e') ADVANCE(1649); + if (lookahead == 'e') ADVANCE(1648); END_STATE(); case 141: if (lookahead == ';') ADVANCE(2054); @@ -7830,28 +8944,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 142: if (lookahead == ';') ADVANCE(2054); if (lookahead == 'f') ADVANCE(19); - if (lookahead == 'r') ADVANCE(1446); + if (lookahead == 'r') ADVANCE(1445); if (lookahead == 'y') ADVANCE(202); END_STATE(); case 143: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'f') ADVANCE(1762); + if (lookahead == 'f') ADVANCE(1761); END_STATE(); case 144: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'f') ADVANCE(1822); + if (lookahead == 'f') ADVANCE(1821); if (lookahead == 'g') ADVANCE(19); if (lookahead == 'q') ADVANCE(193); if (lookahead == 's') ADVANCE(101); END_STATE(); case 145: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'f') ADVANCE(1363); - if (lookahead == 'l') ADVANCE(807); + if (lookahead == 'f') ADVANCE(1362); + if (lookahead == 'l') ADVANCE(806); END_STATE(); case 146: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'f') ADVANCE(1848); + if (lookahead == 'f') ADVANCE(1847); if (lookahead == 'q') ADVANCE(193); if (lookahead == 's') ADVANCE(201); END_STATE(); @@ -7862,16 +8976,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 148: if (lookahead == ';') ADVANCE(2054); if (lookahead == 'g') ADVANCE(19); - if (lookahead == 'l') ADVANCE(1838); - if (lookahead == 'm') ADVANCE(1570); + if (lookahead == 'l') ADVANCE(1837); + if (lookahead == 'm') ADVANCE(1569); END_STATE(); case 149: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'g') ADVANCE(1817); + if (lookahead == 'g') ADVANCE(1816); END_STATE(); case 150: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'g') ADVANCE(785); + if (lookahead == 'g') ADVANCE(784); END_STATE(); case 151: if (lookahead == ';') ADVANCE(2054); @@ -7880,62 +8994,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 152: if (lookahead == ';') ADVANCE(2054); if (lookahead == 'h') ADVANCE(19); - if (lookahead == 'l') ADVANCE(1488); + if (lookahead == 'l') ADVANCE(1487); END_STATE(); case 153: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'h') ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1446); END_STATE(); case 154: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'i') ADVANCE(1095); - if (lookahead == 'n') ADVANCE(977); - if (lookahead == 'o') ADVANCE(1838); + if (lookahead == 'i') ADVANCE(1094); + if (lookahead == 'n') ADVANCE(976); + if (lookahead == 'o') ADVANCE(1837); END_STATE(); case 155: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'i') ADVANCE(759); - if (lookahead == 'o') ADVANCE(1380); + if (lookahead == 'i') ADVANCE(758); + if (lookahead == 'o') ADVANCE(1379); END_STATE(); case 156: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'i') ADVANCE(1639); - if (lookahead == 'u') ADVANCE(1854); + if (lookahead == 'i') ADVANCE(1638); + if (lookahead == 'u') ADVANCE(1853); if (lookahead == 'E' || lookahead == 'd' || lookahead == 'y') ADVANCE(19); END_STATE(); case 157: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'i') ADVANCE(1639); + if (lookahead == 'i') ADVANCE(1638); if (lookahead == 'y') ADVANCE(19); END_STATE(); case 158: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'i') ADVANCE(1397); - if (lookahead == 'p') ADVANCE(511); + if (lookahead == 'i') ADVANCE(1396); + if (lookahead == 'p') ADVANCE(510); if (lookahead == 's') ADVANCE(19); END_STATE(); case 159: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'i') ADVANCE(1876); + if (lookahead == 'i') ADVANCE(1875); END_STATE(); case 160: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'i') ADVANCE(724); + if (lookahead == 'i') ADVANCE(723); END_STATE(); case 161: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'i') ADVANCE(1372); - if (lookahead == 'n') ADVANCE(1105); + if (lookahead == 'i') ADVANCE(1371); + if (lookahead == 'n') ADVANCE(1104); END_STATE(); case 162: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'i') ADVANCE(1299); + if (lookahead == 'i') ADVANCE(1298); END_STATE(); case 163: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'i') ADVANCE(1436); + if (lookahead == 'i') ADVANCE(1435); if (lookahead == 'l') ADVANCE(19); if (lookahead == 's') ADVANCE(107); END_STATE(); @@ -7951,37 +9065,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 166: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'l') ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1874); if (lookahead == 'e' || lookahead == 'f') ADVANCE(19); END_STATE(); case 167: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'l') ADVANCE(1817); + if (lookahead == 'l') ADVANCE(1816); END_STATE(); case 168: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'l') ADVANCE(1488); + if (lookahead == 'l') ADVANCE(1487); END_STATE(); case 169: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'l') ADVANCE(1488); + if (lookahead == 'l') ADVANCE(1487); if (lookahead == 'v') ADVANCE(19); END_STATE(); case 170: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'l') ADVANCE(785); + if (lookahead == 'l') ADVANCE(784); if (lookahead == 'd' || lookahead == 'e') ADVANCE(19); END_STATE(); case 171: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'l') ADVANCE(1879); - if (lookahead == 'm') ADVANCE(431); + if (lookahead == 'l') ADVANCE(1878); + if (lookahead == 'm') ADVANCE(430); END_STATE(); case 172: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'l') ADVANCE(1258); + if (lookahead == 'l') ADVANCE(1257); END_STATE(); case 173: if (lookahead == ';') ADVANCE(2054); @@ -7993,7 +9107,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 175: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'm') ADVANCE(465); + if (lookahead == 'm') ADVANCE(464); END_STATE(); case 176: if (lookahead == ';') ADVANCE(2054); @@ -8001,7 +9115,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 177: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'n') ADVANCE(484); + if (lookahead == 'n') ADVANCE(483); END_STATE(); case 178: if (lookahead == ';') ADVANCE(2054); @@ -8017,36 +9131,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 181: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'o') ADVANCE(955); + if (lookahead == 'o') ADVANCE(954); END_STATE(); case 182: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'o') ADVANCE(1986); + if (lookahead == 'o') ADVANCE(1985); END_STATE(); case 183: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'o') ADVANCE(1975); + if (lookahead == 'o') ADVANCE(1974); END_STATE(); case 184: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'o') ADVANCE(709); + if (lookahead == 'o') ADVANCE(708); END_STATE(); case 185: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'o') ADVANCE(1663); + if (lookahead == 'o') ADVANCE(1662); END_STATE(); case 186: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'o') ADVANCE(1892); + if (lookahead == 'o') ADVANCE(1891); END_STATE(); case 187: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'o') ADVANCE(1402); + if (lookahead == 'o') ADVANCE(1401); if (lookahead == 's') ADVANCE(19); END_STATE(); case 188: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'o') ADVANCE(1427); + if (lookahead == 'o') ADVANCE(1426); END_STATE(); case 189: if (lookahead == ';') ADVANCE(2054); @@ -8054,12 +9168,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 190: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'p') ADVANCE(955); + if (lookahead == 'p') ADVANCE(954); if (lookahead == 't') ADVANCE(161); END_STATE(); case 191: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'p') ADVANCE(1688); + if (lookahead == 'p') ADVANCE(1687); END_STATE(); case 192: if (lookahead == ';') ADVANCE(2054); @@ -8068,7 +9182,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 193: if (lookahead == ';') ADVANCE(2054); if (lookahead == 'q') ADVANCE(19); - if (lookahead == 's') ADVANCE(1302); + if (lookahead == 's') ADVANCE(1301); END_STATE(); case 194: if (lookahead == ';') ADVANCE(2054); @@ -8081,7 +9195,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 196: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'q') ADVANCE(1938); + if (lookahead == 'q') ADVANCE(1937); END_STATE(); case 197: if (lookahead == ';') ADVANCE(2054); @@ -8089,16 +9203,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 198: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'r') ADVANCE(423); + if (lookahead == 'r') ADVANCE(422); if (lookahead == 's') ADVANCE(107); END_STATE(); case 199: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'r') ADVANCE(1130); + if (lookahead == 'r') ADVANCE(1129); END_STATE(); case 200: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'r') ADVANCE(1108); + if (lookahead == 'r') ADVANCE(1107); END_STATE(); case 201: if (lookahead == ';') ADVANCE(2054); @@ -8106,7 +9220,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 202: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 's') ADVANCE(1609); + if (lookahead == 's') ADVANCE(1608); END_STATE(); case 203: if (lookahead == ';') ADVANCE(2054); @@ -8119,39 +9233,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 205: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 's') ADVANCE(2008); + if (lookahead == 's') ADVANCE(2007); if (lookahead == 'v') ADVANCE(19); END_STATE(); case 206: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 's') ADVANCE(1322); + if (lookahead == 's') ADVANCE(1321); END_STATE(); case 207: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 's') ADVANCE(1217); + if (lookahead == 's') ADVANCE(1216); END_STATE(); case 208: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 's') ADVANCE(1880); + if (lookahead == 's') ADVANCE(1879); END_STATE(); case 209: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 's') ADVANCE(821); + if (lookahead == 's') ADVANCE(820); if (lookahead == 'v') ADVANCE(19); END_STATE(); case 210: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 's') ADVANCE(875); + if (lookahead == 's') ADVANCE(874); END_STATE(); case 211: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 's') ADVANCE(888); + if (lookahead == 's') ADVANCE(887); if (lookahead == 'E' || lookahead == 'e') ADVANCE(19); END_STATE(); case 212: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 's') ADVANCE(1942); + if (lookahead == 's') ADVANCE(1941); END_STATE(); case 213: if (lookahead == ';') ADVANCE(2054); @@ -8159,11 +9273,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 214: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 't') ADVANCE(391); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 215: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 't') ADVANCE(1447); + if (lookahead == 't') ADVANCE(1446); END_STATE(); case 216: if (lookahead == ';') ADVANCE(2054); @@ -8171,28 +9285,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 217: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 't') ADVANCE(593); + if (lookahead == 't') ADVANCE(592); END_STATE(); case 218: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 't') ADVANCE(1217); + if (lookahead == 't') ADVANCE(1216); END_STATE(); case 219: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 't') ADVANCE(691); + if (lookahead == 't') ADVANCE(690); if (lookahead == 'v') ADVANCE(19); END_STATE(); case 220: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 't') ADVANCE(538); + if (lookahead == 't') ADVANCE(537); END_STATE(); case 221: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 't') ADVANCE(1471); + if (lookahead == 't') ADVANCE(1470); END_STATE(); case 222: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 't') ADVANCE(1130); + if (lookahead == 't') ADVANCE(1129); END_STATE(); case 223: if (lookahead == ';') ADVANCE(2054); @@ -8200,7 +9314,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 224: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'u') ADVANCE(1100); + if (lookahead == 'u') ADVANCE(1099); END_STATE(); case 225: if (lookahead == ';') ADVANCE(2054); @@ -8212,11 +9326,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 227: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'v') ADVANCE(582); + if (lookahead == 'v') ADVANCE(581); END_STATE(); case 228: if (lookahead == ';') ADVANCE(2054); - if (lookahead == 'v') ADVANCE(887); + if (lookahead == 'v') ADVANCE(886); END_STATE(); case 229: if (lookahead == ';') ADVANCE(2054); @@ -8346,51 +9460,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 253: ADVANCE_MAP( 'A', 367, - 'a', 684, - 'c', 1148, - 'f', 1609, - 'i', 1237, - 'o', 1542, - 's', 658, - 'u', 1335, + 'a', 683, + 'c', 1147, + 'f', 1608, + 'i', 1236, + 'o', 1541, + 's', 657, + 'u', 1334, ); END_STATE(); case 254: ADVANCE_MAP( - 'A', 452, - 'B', 442, - 'H', 405, - 'a', 631, - 'b', 443, - 'c', 470, - 'd', 661, + 'A', 451, + 'B', 441, + 'H', 404, + 'a', 630, + 'b', 442, + 'c', 469, + 'd', 660, 'e', 76, - 'f', 1120, - 'h', 489, - 'i', 1010, - 'l', 448, - 'm', 1520, - 'n', 1336, - 'o', 414, - 'p', 496, - 'r', 442, - 's', 394, - 't', 1076, - 'u', 1262, + 'f', 1119, + 'h', 488, + 'i', 1009, + 'l', 447, + 'm', 1519, + 'n', 1335, + 'o', 413, + 'p', 495, + 'r', 441, + 's', 393, + 't', 1075, + 'u', 1261, 'x', 19, ); END_STATE(); case 255: ADVANCE_MAP( - 'A', 613, - 'I', 613, - 'U', 613, - 'a', 671, - 'c', 1150, - 'f', 1609, - 'o', 1539, - 's', 637, - 'u', 1344, + 'A', 612, + 'I', 612, + 'U', 612, + 'a', 670, + 'c', 1149, + 'f', 1608, + 'o', 1538, + 's', 636, + 'u', 1343, ); END_STATE(); case 256: @@ -8398,322 +9512,322 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 257: ADVANCE_MAP( - 'A', 1434, - 'C', 947, - 'D', 1452, - 'F', 1261, - 'R', 1183, - 'T', 892, - 'U', 1550, - 'V', 926, - 'a', 1740, - 'r', 1176, + 'A', 1433, + 'C', 946, + 'D', 1451, + 'F', 1260, + 'R', 1182, + 'T', 891, + 'U', 1549, + 'V', 925, + 'a', 1739, + 'r', 1175, ); END_STATE(); case 258: ADVANCE_MAP( - 'A', 1628, - 'B', 499, - 'D', 438, - 'a', 1394, - 'c', 1998, - 'd', 438, - 'e', 798, - 'f', 1609, - 'l', 1875, - 'n', 1791, - 'o', 1539, - 'p', 1678, - 'r', 1875, - 's', 660, - 'z', 1123, + 'A', 1627, + 'B', 498, + 'D', 437, + 'a', 1393, + 'c', 1997, + 'd', 437, + 'e', 797, + 'f', 1608, + 'l', 1874, + 'n', 1790, + 'o', 1538, + 'p', 1677, + 'r', 1874, + 's', 659, + 'z', 1122, ); END_STATE(); case 259: - if (lookahead == 'A') ADVANCE(1628); + if (lookahead == 'A') ADVANCE(1627); if (lookahead == 'E') ADVANCE(19); - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'd') ADVANCE(1609); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'd') ADVANCE(1608); if (lookahead == 'e') ADVANCE(146); - if (lookahead == 's') ADVANCE(1114); + if (lookahead == 's') ADVANCE(1113); if (lookahead == 't') ADVANCE(200); END_STATE(); case 260: ADVANCE_MAP( - 'A', 1628, - 'H', 405, - 'a', 993, - 'b', 1214, - 'c', 475, + 'A', 1627, + 'H', 404, + 'a', 992, + 'b', 1213, + 'c', 474, 'd', 60, 'e', 148, - 'f', 1121, - 'h', 482, - 'i', 453, - 'j', 613, - 'l', 627, - 'o', 1265, - 'r', 589, - 's', 629, - 't', 739, - 'u', 447, - 'w', 457, - 'z', 618, + 'f', 1120, + 'h', 481, + 'i', 452, + 'j', 612, + 'l', 626, + 'o', 1264, + 'r', 588, + 's', 628, + 't', 738, + 'u', 446, + 'w', 456, + 'z', 617, ); END_STATE(); case 261: ADVANCE_MAP( - 'A', 1628, - 'H', 405, - 'a', 672, - 'b', 1631, - 'c', 1129, - 'd', 444, - 'f', 1121, - 'g', 1670, - 'h', 483, - 'l', 720, + 'A', 1627, + 'H', 404, + 'a', 671, + 'b', 1630, + 'c', 1128, + 'd', 443, + 'f', 1120, + 'g', 1669, + 'h', 482, + 'l', 719, 'm', 62, - 'o', 997, - 'p', 554, - 'r', 719, - 's', 637, - 't', 736, - 'u', 449, - 'w', 457, + 'o', 996, + 'p', 553, + 'r', 718, + 's', 636, + 't', 735, + 'u', 448, + 'w', 456, ); END_STATE(); case 262: ADVANCE_MAP( - 'A', 1628, - 'a', 1136, - 'b', 405, - 'c', 1148, - 'e', 536, - 'f', 1609, - 'k', 1763, - 'o', 450, - 's', 650, - 'y', 591, + 'A', 1627, + 'a', 1135, + 'b', 404, + 'c', 1147, + 'e', 535, + 'f', 1608, + 'k', 1762, + 'o', 449, + 's', 649, + 'y', 590, ); END_STATE(); case 263: - if (lookahead == 'A') ADVANCE(1628); - if (lookahead == 'a') ADVANCE(1628); + if (lookahead == 'A') ADVANCE(1627); + if (lookahead == 'a') ADVANCE(1627); END_STATE(); case 264: - if (lookahead == 'A') ADVANCE(1628); - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'p') ADVANCE(405); + if (lookahead == 'A') ADVANCE(1627); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'p') ADVANCE(404); END_STATE(); case 265: - if (lookahead == 'A') ADVANCE(1628); - if (lookahead == 'a') ADVANCE(1621); + if (lookahead == 'A') ADVANCE(1627); + if (lookahead == 'a') ADVANCE(1620); if (lookahead == 'c') ADVANCE(213); - if (lookahead == 'm') ADVANCE(1082); - if (lookahead == 's') ADVANCE(1981); - if (lookahead == 't') ADVANCE(1330); - if (lookahead == 'x') ADVANCE(1817); + if (lookahead == 'm') ADVANCE(1081); + if (lookahead == 's') ADVANCE(1980); + if (lookahead == 't') ADVANCE(1329); + if (lookahead == 'x') ADVANCE(1816); END_STATE(); case 266: - if (lookahead == 'A') ADVANCE(1628); - if (lookahead == 'a') ADVANCE(1621); - if (lookahead == 'n') ADVANCE(1981); + if (lookahead == 'A') ADVANCE(1627); + if (lookahead == 'a') ADVANCE(1620); + if (lookahead == 'n') ADVANCE(1980); END_STATE(); case 267: - if (lookahead == 'A') ADVANCE(1628); - if (lookahead == 'a') ADVANCE(1621); - if (lookahead == 'n') ADVANCE(836); + if (lookahead == 'A') ADVANCE(1627); + if (lookahead == 'a') ADVANCE(1620); + if (lookahead == 'n') ADVANCE(835); END_STATE(); case 268: - if (lookahead == 'A') ADVANCE(1628); - if (lookahead == 'a') ADVANCE(1720); - if (lookahead == 'i') ADVANCE(1013); - if (lookahead == 't') ADVANCE(1703); + if (lookahead == 'A') ADVANCE(1627); + if (lookahead == 'a') ADVANCE(1719); + if (lookahead == 'i') ADVANCE(1012); + if (lookahead == 't') ADVANCE(1702); END_STATE(); case 269: - if (lookahead == 'A') ADVANCE(1628); + if (lookahead == 'A') ADVANCE(1627); if (lookahead == 'e') ADVANCE(19); if (lookahead == 't') ADVANCE(199); END_STATE(); case 270: - if (lookahead == 'A') ADVANCE(1628); - if (lookahead == 't') ADVANCE(1698); + if (lookahead == 'A') ADVANCE(1627); + if (lookahead == 't') ADVANCE(1697); END_STATE(); case 271: ADVANCE_MAP( - 'A', 1743, - 'D', 1511, - 'E', 1602, - 'T', 877, - 'a', 1740, - 'd', 1518, - 'p', 886, - 's', 1099, + 'A', 1742, + 'D', 1510, + 'E', 1601, + 'T', 876, + 'a', 1739, + 'd', 1517, + 'p', 885, + 's', 1098, ); END_STATE(); case 272: - if (lookahead == 'A') ADVANCE(677); + if (lookahead == 'A') ADVANCE(676); END_STATE(); case 273: - if (lookahead == 'A') ADVANCE(677); - if (lookahead == 'D') ADVANCE(1455); - if (lookahead == 'G') ADVANCE(1661); - if (lookahead == 'T') ADVANCE(1177); + if (lookahead == 'A') ADVANCE(676); + if (lookahead == 'D') ADVANCE(1454); + if (lookahead == 'G') ADVANCE(1660); + if (lookahead == 'T') ADVANCE(1176); END_STATE(); case 274: - if (lookahead == 'A') ADVANCE(1259); + if (lookahead == 'A') ADVANCE(1258); END_STATE(); case 275: ADVANCE_MAP( - 'A', 1435, - 'C', 947, - 'D', 1452, - 'F', 1261, - 'T', 892, - 'U', 1550, - 'V', 926, - 'a', 1740, + 'A', 1434, + 'C', 946, + 'D', 1451, + 'F', 1260, + 'T', 891, + 'U', 1549, + 'V', 925, + 'a', 1739, ); END_STATE(); case 276: - if (lookahead == 'A') ADVANCE(1740); + if (lookahead == 'A') ADVANCE(1739); END_STATE(); case 277: - if (lookahead == 'A') ADVANCE(1740); - if (lookahead == 'D') ADVANCE(1511); + if (lookahead == 'A') ADVANCE(1739); + if (lookahead == 'D') ADVANCE(1510); END_STATE(); case 278: - if (lookahead == 'A') ADVANCE(1740); - if (lookahead == 'R') ADVANCE(1184); + if (lookahead == 'A') ADVANCE(1739); + if (lookahead == 'R') ADVANCE(1183); END_STATE(); case 279: - if (lookahead == 'A') ADVANCE(1740); - if (lookahead == 'R') ADVANCE(1184); - if (lookahead == 'T') ADVANCE(862); + if (lookahead == 'A') ADVANCE(1739); + if (lookahead == 'R') ADVANCE(1183); + if (lookahead == 'T') ADVANCE(861); END_STATE(); case 280: - if (lookahead == 'A') ADVANCE(1740); - if (lookahead == 'T') ADVANCE(862); + if (lookahead == 'A') ADVANCE(1739); + if (lookahead == 'T') ADVANCE(861); END_STATE(); case 281: - if (lookahead == 'A') ADVANCE(1740); - if (lookahead == 'V') ADVANCE(931); + if (lookahead == 'A') ADVANCE(1739); + if (lookahead == 'V') ADVANCE(930); END_STATE(); case 282: - if (lookahead == 'A') ADVANCE(1744); - if (lookahead == 'B') ADVANCE(1608); - if (lookahead == 'L') ADVANCE(924); - if (lookahead == 'R') ADVANCE(1182); - if (lookahead == 'T') ADVANCE(877); - if (lookahead == 'a') ADVANCE(1740); + if (lookahead == 'A') ADVANCE(1743); + if (lookahead == 'B') ADVANCE(1607); + if (lookahead == 'L') ADVANCE(923); + if (lookahead == 'R') ADVANCE(1181); + if (lookahead == 'T') ADVANCE(876); + if (lookahead == 'a') ADVANCE(1739); END_STATE(); case 283: - if (lookahead == 'B') ADVANCE(408); - if (lookahead == 'P') ADVANCE(557); + if (lookahead == 'B') ADVANCE(407); + if (lookahead == 'P') ADVANCE(556); END_STATE(); case 284: ADVANCE_MAP( - 'B', 442, + 'B', 441, 'E', 47, - 'a', 681, - 'c', 472, + 'a', 680, + 'c', 471, 'e', 228, - 'f', 1609, - 'h', 1447, - 'i', 991, - 'o', 1545, - 'r', 1176, - 's', 644, - 'u', 1252, + 'f', 1608, + 'h', 1446, + 'i', 990, + 'o', 1544, + 'r', 1175, + 's', 643, + 'u', 1251, ); END_STATE(); case 285: - if (lookahead == 'B') ADVANCE(405); + if (lookahead == 'B') ADVANCE(404); END_STATE(); case 286: - if (lookahead == 'B') ADVANCE(405); - if (lookahead == 'L') ADVANCE(1131); - if (lookahead == 'S') ADVANCE(919); - if (lookahead == 'T') ADVANCE(1177); + if (lookahead == 'B') ADVANCE(404); + if (lookahead == 'L') ADVANCE(1130); + if (lookahead == 'S') ADVANCE(918); + if (lookahead == 'T') ADVANCE(1176); END_STATE(); case 287: - if (lookahead == 'B') ADVANCE(1741); + if (lookahead == 'B') ADVANCE(1740); END_STATE(); case 288: - if (lookahead == 'B') ADVANCE(1733); + if (lookahead == 'B') ADVANCE(1732); if (lookahead == 'n') ADVANCE(289); - if (lookahead == 'p') ADVANCE(955); + if (lookahead == 'p') ADVANCE(954); if (lookahead == 't') ADVANCE(30); END_STATE(); case 289: - if (lookahead == 'B') ADVANCE(1738); + if (lookahead == 'B') ADVANCE(1737); END_STATE(); case 290: if (lookahead == 'C') ADVANCE(340); - if (lookahead == 'c') ADVANCE(1998); + if (lookahead == 'c') ADVANCE(1997); END_STATE(); case 291: - if (lookahead == 'C') ADVANCE(431); + if (lookahead == 'C') ADVANCE(430); END_STATE(); case 292: - if (lookahead == 'C') ADVANCE(1512); - if (lookahead == 'T') ADVANCE(1163); + if (lookahead == 'C') ADVANCE(1511); + if (lookahead == 'T') ADVANCE(1162); END_STATE(); case 293: - if (lookahead == 'C') ADVANCE(1189); + if (lookahead == 'C') ADVANCE(1188); END_STATE(); case 294: - if (lookahead == 'C') ADVANCE(1284); + if (lookahead == 'C') ADVANCE(1283); END_STATE(); case 295: - if (lookahead == 'C') ADVANCE(1946); + if (lookahead == 'C') ADVANCE(1945); END_STATE(); case 296: - if (lookahead == 'C') ADVANCE(1528); + if (lookahead == 'C') ADVANCE(1527); END_STATE(); case 297: - if (lookahead == 'C') ADVANCE(1528); - if (lookahead == 'D') ADVANCE(1454); - if (lookahead == 'L') ADVANCE(936); - if (lookahead == 'R') ADVANCE(1186); - if (lookahead == 'U') ADVANCE(1551); - if (lookahead == 'V') ADVANCE(945); + if (lookahead == 'C') ADVANCE(1527); + if (lookahead == 'D') ADVANCE(1453); + if (lookahead == 'L') ADVANCE(935); + if (lookahead == 'R') ADVANCE(1185); + if (lookahead == 'U') ADVANCE(1550); + if (lookahead == 'V') ADVANCE(944); END_STATE(); case 298: - if (lookahead == 'D') ADVANCE(1457); + if (lookahead == 'D') ADVANCE(1456); END_STATE(); case 299: - if (lookahead == 'D') ADVANCE(1457); - if (lookahead == 'M') ADVANCE(1174); - if (lookahead == 'P') ADVANCE(1307); - if (lookahead == 'T') ADVANCE(1163); + if (lookahead == 'D') ADVANCE(1456); + if (lookahead == 'M') ADVANCE(1173); + if (lookahead == 'P') ADVANCE(1306); + if (lookahead == 'T') ADVANCE(1162); END_STATE(); case 300: - if (lookahead == 'D') ADVANCE(1457); - if (lookahead == 'a') ADVANCE(1628); + if (lookahead == 'D') ADVANCE(1456); + if (lookahead == 'a') ADVANCE(1627); END_STATE(); case 301: - if (lookahead == 'D') ADVANCE(1457); - if (lookahead == 'o') ADVANCE(1817); + if (lookahead == 'D') ADVANCE(1456); + if (lookahead == 'o') ADVANCE(1816); END_STATE(); case 302: - if (lookahead == 'D') ADVANCE(1457); + if (lookahead == 'D') ADVANCE(1456); if (lookahead == 'r') ADVANCE(19); END_STATE(); case 303: ADVANCE_MAP( 'D', 186, - 'J', 613, - 'S', 613, - 'Z', 613, - 'a', 995, - 'c', 475, - 'e', 1218, - 'f', 1609, - 'i', 417, - 'o', 1543, - 's', 658, + 'J', 612, + 'S', 612, + 'Z', 612, + 'a', 994, + 'c', 474, + 'e', 1217, + 'f', 1608, + 'i', 416, + 'o', 1542, + 's', 657, ); END_STATE(); case 304: @@ -8722,40 +9836,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 305: ADVANCE_MAP( 'D', 301, - 'a', 675, - 'c', 473, - 'd', 1457, + 'a', 674, + 'c', 472, + 'd', 1456, 'e', 19, 'f', 302, 'g', 198, 'l', 163, - 'm', 404, - 'n', 980, - 'o', 997, - 'p', 486, - 'q', 668, + 'm', 403, + 'n', 979, + 'o', 996, + 'p', 485, + 'q', 667, 'r', 300, - 's', 638, + 's', 637, 't', 229, - 'u', 1324, - 'x', 696, + 'u', 1323, + 'x', 695, ); END_STATE(); case 306: ADVANCE_MAP( 'D', 298, - 'a', 623, - 'c', 1513, - 'd', 438, - 'e', 521, - 'f', 1609, - 'h', 1447, - 'i', 712, - 'l', 676, - 'n', 1567, - 'o', 776, + 'a', 622, + 'c', 1512, + 'd', 437, + 'e', 520, + 'f', 1608, + 'h', 1446, + 'i', 711, + 'l', 675, + 'n', 1566, + 'o', 775, 'p', 19, - 's', 657, + 's', 656, 'u', 171, ); END_STATE(); @@ -8768,92 +9882,92 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'H', 238, 'U', 2035, 'V', 239, - 'b', 1462, + 'b', 1461, 'd', 2035, 'h', 238, - 'm', 1174, - 'p', 1307, - 't', 1163, + 'm', 1173, + 'p', 1306, + 't', 1162, 'u', 2035, 'v', 239, ); END_STATE(); case 309: - if (lookahead == 'D') ADVANCE(613); + if (lookahead == 'D') ADVANCE(612); END_STATE(); case 310: ADVANCE_MAP( - 'D', 438, - 'H', 442, - 'a', 1536, - 'd', 438, + 'D', 437, + 'H', 441, + 'a', 1535, + 'd', 437, 'g', 2027, - 'i', 1381, + 'i', 1380, 'l', 269, 'r', 270, - 's', 1114, + 's', 1113, ); END_STATE(); case 311: ADVANCE_MAP( - 'D', 438, - 'b', 405, - 'c', 1998, - 'd', 441, - 'e', 788, - 'f', 1609, - 'o', 1539, - 's', 637, - 'v', 756, + 'D', 437, + 'b', 404, + 'c', 1997, + 'd', 440, + 'e', 787, + 'f', 1608, + 'o', 1538, + 's', 636, + 'v', 755, ); END_STATE(); case 312: - if (lookahead == 'D') ADVANCE(438); - if (lookahead == 'd') ADVANCE(438); + if (lookahead == 'D') ADVANCE(437); + if (lookahead == 'd') ADVANCE(437); END_STATE(); case 313: - if (lookahead == 'D') ADVANCE(1511); - if (lookahead == 'L') ADVANCE(933); - if (lookahead == 'R') ADVANCE(1184); - if (lookahead == 'U') ADVANCE(1555); + if (lookahead == 'D') ADVANCE(1510); + if (lookahead == 'L') ADVANCE(932); + if (lookahead == 'R') ADVANCE(1183); + if (lookahead == 'U') ADVANCE(1554); END_STATE(); case 314: - if (lookahead == 'D') ADVANCE(1113); + if (lookahead == 'D') ADVANCE(1112); END_STATE(); case 315: - if (lookahead == 'D') ADVANCE(879); + if (lookahead == 'D') ADVANCE(878); END_STATE(); case 316: - if (lookahead == 'D') ADVANCE(1519); - if (lookahead == 'E') ADVANCE(1599); + if (lookahead == 'D') ADVANCE(1518); + if (lookahead == 'E') ADVANCE(1598); END_STATE(); case 317: - if (lookahead == 'D') ADVANCE(1523); - if (lookahead == 'T') ADVANCE(898); - if (lookahead == 'V') ADVANCE(926); + if (lookahead == 'D') ADVANCE(1522); + if (lookahead == 'T') ADVANCE(897); + if (lookahead == 'V') ADVANCE(925); END_STATE(); case 318: - if (lookahead == 'D') ADVANCE(1533); - if (lookahead == 'Q') ADVANCE(1957); + if (lookahead == 'D') ADVANCE(1532); + if (lookahead == 'Q') ADVANCE(1956); END_STATE(); case 319: ADVANCE_MAP( - 'E', 1257, + 'E', 1256, 'M', 54, - 'a', 671, - 'b', 1608, - 'c', 1129, - 'f', 1609, - 'g', 1670, - 'l', 1538, - 'm', 400, - 'n', 740, - 'o', 997, - 'p', 1563, - 'r', 1104, - 's', 655, - 't', 1151, - 'u', 1323, + 'a', 670, + 'b', 1607, + 'c', 1128, + 'f', 1608, + 'g', 1669, + 'l', 1537, + 'm', 399, + 'n', 739, + 'o', 996, + 'p', 1562, + 'r', 1103, + 's', 654, + 't', 1150, + 'u', 1322, ); END_STATE(); case 320: @@ -8861,145 +9975,145 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 321: if (lookahead == 'E') ADVANCE(19); - if (lookahead == 'a') ADVANCE(1536); - if (lookahead == 's') ADVANCE(1114); + if (lookahead == 'a') ADVANCE(1535); + if (lookahead == 's') ADVANCE(1113); END_STATE(); case 322: if (lookahead == 'E') ADVANCE(19); - if (lookahead == 'a') ADVANCE(1554); + if (lookahead == 'a') ADVANCE(1553); if (lookahead == 'e') ADVANCE(195); - if (lookahead == 's') ADVANCE(1114); + if (lookahead == 's') ADVANCE(1113); END_STATE(); case 323: if (lookahead == 'E') ADVANCE(19); if (lookahead == 'e') ADVANCE(194); - if (lookahead == 's') ADVANCE(1114); + if (lookahead == 's') ADVANCE(1113); if (lookahead == 't') ADVANCE(197); END_STATE(); case 324: - if (lookahead == 'E') ADVANCE(1230); - if (lookahead == 'U') ADVANCE(1586); + if (lookahead == 'E') ADVANCE(1229); + if (lookahead == 'U') ADVANCE(1585); END_STATE(); case 325: ADVANCE_MAP( - 'E', 613, - 'J', 1263, - 'O', 613, - 'a', 671, - 'c', 1129, - 'd', 1457, - 'f', 1609, - 'g', 1670, + 'E', 612, + 'J', 1262, + 'O', 612, + 'a', 670, + 'c', 1128, + 'd', 1456, + 'f', 1608, + 'g', 1669, 'm', 59, - 'n', 1845, - 'o', 998, - 's', 637, - 't', 1177, - 'u', 1206, + 'n', 1844, + 'o', 997, + 's', 636, + 't', 1176, + 'u', 1205, ); END_STATE(); case 326: - if (lookahead == 'E') ADVANCE(1229); + if (lookahead == 'E') ADVANCE(1228); END_STATE(); case 327: ADVANCE_MAP( - 'E', 1263, - 'a', 671, - 'c', 1129, - 'd', 611, - 'f', 1609, - 'g', 1670, - 'm', 402, - 'o', 1539, - 'p', 849, + 'E', 1262, + 'a', 670, + 'c', 1128, + 'd', 610, + 'f', 1608, + 'g', 1669, + 'm', 401, + 'o', 1538, + 'p', 848, 'r', 19, - 's', 652, - 't', 1098, - 'u', 1323, - 'v', 864, + 's', 651, + 't', 1097, + 'u', 1322, + 'v', 863, ); END_STATE(); case 328: - if (lookahead == 'E') ADVANCE(1602); + if (lookahead == 'E') ADVANCE(1601); END_STATE(); case 329: - if (lookahead == 'E') ADVANCE(1599); + if (lookahead == 'E') ADVANCE(1598); END_STATE(); case 330: - if (lookahead == 'E') ADVANCE(1604); - if (lookahead == 'F') ADVANCE(1956); - if (lookahead == 'G') ADVANCE(1749); - if (lookahead == 'L') ADVANCE(831); - if (lookahead == 'S') ADVANCE(1317); - if (lookahead == 'T') ADVANCE(1177); + if (lookahead == 'E') ADVANCE(1603); + if (lookahead == 'F') ADVANCE(1955); + if (lookahead == 'G') ADVANCE(1748); + if (lookahead == 'L') ADVANCE(830); + if (lookahead == 'S') ADVANCE(1316); + if (lookahead == 'T') ADVANCE(1176); END_STATE(); case 331: - if (lookahead == 'E') ADVANCE(1605); - if (lookahead == 'F') ADVANCE(1956); - if (lookahead == 'G') ADVANCE(1749); - if (lookahead == 'L') ADVANCE(831); - if (lookahead == 'S') ADVANCE(1317); - if (lookahead == 'T') ADVANCE(1177); + if (lookahead == 'E') ADVANCE(1604); + if (lookahead == 'F') ADVANCE(1955); + if (lookahead == 'G') ADVANCE(1748); + if (lookahead == 'L') ADVANCE(830); + if (lookahead == 'S') ADVANCE(1316); + if (lookahead == 'T') ADVANCE(1176); END_STATE(); case 332: if (lookahead == 'F') ADVANCE(375); END_STATE(); case 333: - if (lookahead == 'F') ADVANCE(1950); + if (lookahead == 'F') ADVANCE(1949); END_STATE(); case 334: if (lookahead == 'G') ADVANCE(19); END_STATE(); case 335: ADVANCE_MAP( - 'G', 981, - 'L', 912, - 'R', 1176, + 'G', 980, + 'L', 911, + 'R', 1175, 'V', 312, - 'a', 595, - 'b', 1764, - 'c', 425, - 'd', 438, + 'a', 594, + 'b', 1763, + 'c', 424, + 'd', 437, 'e', 21, - 'f', 1609, + 'f', 1608, 'g', 323, 'h', 264, 'i', 203, - 'j', 613, + 'j', 612, 'l', 259, - 'm', 1081, + 'm', 1080, 'o', 190, - 'p', 494, + 'p', 493, 'r', 268, - 's', 630, - 't', 1001, + 's', 629, + 't', 1000, 'u', 174, 'v', 310, 'w', 267, ); END_STATE(); case 336: - if (lookahead == 'G') ADVANCE(1749); + if (lookahead == 'G') ADVANCE(1748); END_STATE(); case 337: - if (lookahead == 'G') ADVANCE(1758); - if (lookahead == 'L') ADVANCE(914); + if (lookahead == 'G') ADVANCE(1757); + if (lookahead == 'L') ADVANCE(913); END_STATE(); case 338: ADVANCE_MAP( 'H', 290, 'O', 332, - 'a', 677, + 'a', 676, 'c', 75, - 'f', 1609, - 'h', 1514, - 'i', 999, - 'm', 519, - 'o', 1539, - 'q', 1635, - 's', 637, - 't', 405, - 'u', 579, + 'f', 1608, + 'h', 1513, + 'i', 998, + 'm', 518, + 'o', 1538, + 'q', 1634, + 's', 636, + 't', 404, + 'u', 578, ); END_STATE(); case 339: @@ -9008,152 +10122,152 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 256, 'S', 344, 'a', 2024, - 'c', 472, - 'f', 1609, - 'h', 820, - 'i', 1246, - 'o', 1539, - 'r', 1156, - 's', 658, + 'c', 471, + 'f', 1608, + 'h', 819, + 'i', 1245, + 'o', 1538, + 'r', 1155, + 's', 657, ); END_STATE(); case 340: - if (lookahead == 'H') ADVANCE(613); + if (lookahead == 'H') ADVANCE(612); END_STATE(); case 341: - if (lookahead == 'H') ADVANCE(613); - if (lookahead == 'J') ADVANCE(613); - if (lookahead == 'a') ADVANCE(1560); - if (lookahead == 'c') ADVANCE(842); - if (lookahead == 'f') ADVANCE(1609); - if (lookahead == 'o') ADVANCE(1539); - if (lookahead == 's') ADVANCE(637); + if (lookahead == 'H') ADVANCE(612); + if (lookahead == 'J') ADVANCE(612); + if (lookahead == 'a') ADVANCE(1559); + if (lookahead == 'c') ADVANCE(841); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'o') ADVANCE(1538); + if (lookahead == 's') ADVANCE(636); END_STATE(); case 342: ADVANCE_MAP( - 'H', 613, + 'H', 612, 'O', 361, - 'a', 683, - 'c', 471, - 'd', 1457, - 'e', 773, - 'f', 1609, - 'h', 1082, - 'i', 1656, - 'l', 1461, - 'o', 1301, - 'r', 1463, - 's', 637, - 'u', 1546, + 'a', 682, + 'c', 470, + 'd', 1456, + 'e', 772, + 'f', 1608, + 'h', 1081, + 'i', 1655, + 'l', 1460, + 'o', 1300, + 'r', 1462, + 's', 636, + 'u', 1545, ); END_STATE(); case 343: ADVANCE_MAP( - 'H', 613, - 'a', 677, - 'c', 475, - 'd', 1457, - 'e', 1666, - 'f', 1609, - 'o', 1539, - 's', 637, + 'H', 612, + 'a', 676, + 'c', 474, + 'd', 1456, + 'e', 1665, + 'f', 1608, + 'o', 1538, + 's', 636, ); END_STATE(); case 344: - if (lookahead == 'H') ADVANCE(613); - if (lookahead == 'c') ADVANCE(1998); + if (lookahead == 'H') ADVANCE(612); + if (lookahead == 'c') ADVANCE(1997); END_STATE(); case 345: - if (lookahead == 'H') ADVANCE(1958); + if (lookahead == 'H') ADVANCE(1957); END_STATE(); case 346: if (lookahead == 'I') ADVANCE(19); END_STATE(); case 347: - if (lookahead == 'I') ADVANCE(1357); + if (lookahead == 'I') ADVANCE(1356); END_STATE(); case 348: - if (lookahead == 'I') ADVANCE(1424); + if (lookahead == 'I') ADVANCE(1423); END_STATE(); case 349: ADVANCE_MAP( - 'J', 613, - 'a', 677, - 'c', 472, - 'e', 1002, - 'f', 1609, + 'J', 612, + 'a', 676, + 'c', 471, + 'e', 1001, + 'f', 1608, 'o', 288, - 's', 637, - 't', 1151, + 's', 636, + 't', 1150, 'u', 19, ); END_STATE(); case 350: - if (lookahead == 'L') ADVANCE(831); + if (lookahead == 'L') ADVANCE(830); END_STATE(); case 351: - if (lookahead == 'L') ADVANCE(1131); + if (lookahead == 'L') ADVANCE(1130); END_STATE(); case 352: - if (lookahead == 'L') ADVANCE(929); - if (lookahead == 'R') ADVANCE(1184); + if (lookahead == 'L') ADVANCE(928); + if (lookahead == 'R') ADVANCE(1183); END_STATE(); case 353: - if (lookahead == 'L') ADVANCE(929); - if (lookahead == 'R') ADVANCE(1184); - if (lookahead == 'l') ADVANCE(911); - if (lookahead == 'r') ADVANCE(1176); + if (lookahead == 'L') ADVANCE(928); + if (lookahead == 'R') ADVANCE(1183); + if (lookahead == 'l') ADVANCE(910); + if (lookahead == 'r') ADVANCE(1175); END_STATE(); case 354: - if (lookahead == 'L') ADVANCE(933); - if (lookahead == 'R') ADVANCE(1184); + if (lookahead == 'L') ADVANCE(932); + if (lookahead == 'R') ADVANCE(1183); END_STATE(); case 355: - if (lookahead == 'M') ADVANCE(915); - if (lookahead == 'T') ADVANCE(1064); - if (lookahead == 'V') ADVANCE(903); + if (lookahead == 'M') ADVANCE(914); + if (lookahead == 'T') ADVANCE(1063); + if (lookahead == 'V') ADVANCE(902); END_STATE(); case 356: - if (lookahead == 'M') ADVANCE(1174); + if (lookahead == 'M') ADVANCE(1173); END_STATE(); case 357: ADVANCE_MAP( - 'N', 1457, - 'a', 667, - 'b', 1652, - 'c', 1478, - 'd', 1598, - 'e', 732, - 'f', 1609, - 'i', 982, - 'k', 537, - 'l', 418, - 'n', 797, - 'o', 1544, - 'p', 1679, - 'r', 795, - 's', 639, - 'u', 1264, + 'N', 1456, + 'a', 666, + 'b', 1651, + 'c', 1477, + 'd', 1597, + 'e', 731, + 'f', 1608, + 'i', 981, + 'k', 536, + 'l', 417, + 'n', 796, + 'o', 1543, + 'p', 1678, + 'r', 794, + 's', 638, + 'u', 1263, ); END_STATE(); case 358: ADVANCE_MAP( 'N', 334, 'T', 48, - 'a', 671, - 'c', 474, - 'd', 1457, - 'f', 1609, - 'g', 1670, - 'l', 916, - 'm', 403, - 'o', 997, - 'p', 1813, - 'q', 1910, - 's', 647, - 't', 391, - 'u', 1323, - 'x', 1107, + 'a', 670, + 'c', 473, + 'd', 1456, + 'f', 1608, + 'g', 1669, + 'l', 915, + 'm', 402, + 'o', 996, + 'p', 1812, + 'q', 1909, + 's', 646, + 't', 390, + 'u', 1322, + 'x', 1106, ); END_STATE(); case 359: @@ -9166,17 +10280,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'P') ADVANCE(58); END_STATE(); case 362: - if (lookahead == 'P') ADVANCE(405); + if (lookahead == 'P') ADVANCE(404); END_STATE(); case 363: - if (lookahead == 'P') ADVANCE(405); + if (lookahead == 'P') ADVANCE(404); if (lookahead == 'i') ADVANCE(235); END_STATE(); case 364: - if (lookahead == 'P') ADVANCE(1307); + if (lookahead == 'P') ADVANCE(1306); END_STATE(); case 365: - if (lookahead == 'Q') ADVANCE(1957); + if (lookahead == 'Q') ADVANCE(1956); END_STATE(); case 366: if (lookahead == 'R') ADVANCE(53); @@ -9185,78 +10299,78 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'R') ADVANCE(309); END_STATE(); case 368: - if (lookahead == 'R') ADVANCE(1187); - if (lookahead == 'T') ADVANCE(898); - if (lookahead == 'V') ADVANCE(926); + if (lookahead == 'R') ADVANCE(1186); + if (lookahead == 'T') ADVANCE(897); + if (lookahead == 'V') ADVANCE(925); END_STATE(); case 369: ADVANCE_MAP( 'S', 19, - 'a', 674, - 'c', 1129, - 'd', 439, - 'e', 1263, - 'f', 710, - 'g', 1489, - 'h', 586, - 'i', 1376, - 'l', 445, - 'm', 401, - 'o', 1539, - 'p', 406, + 'a', 673, + 'c', 1128, + 'd', 438, + 'e', 1262, + 'f', 709, + 'g', 1488, + 'h', 585, + 'i', 1375, + 'l', 444, + 'm', 400, + 'o', 1538, + 'p', 405, 'r', 71, - 's', 653, - 't', 1146, - 'u', 1323, - 'v', 584, + 's', 652, + 't', 1145, + 'u', 1322, + 'v', 583, ); END_STATE(); case 370: - if (lookahead == 'S') ADVANCE(1361); + if (lookahead == 'S') ADVANCE(1360); END_STATE(); case 371: - if (lookahead == 'S') ADVANCE(1361); - if (lookahead == 'V') ADVANCE(901); + if (lookahead == 'S') ADVANCE(1360); + if (lookahead == 'V') ADVANCE(900); END_STATE(); case 372: - if (lookahead == 'S') ADVANCE(1579); + if (lookahead == 'S') ADVANCE(1578); END_STATE(); case 373: - if (lookahead == 'S') ADVANCE(1920); + if (lookahead == 'S') ADVANCE(1919); END_STATE(); case 374: - if (lookahead == 'S') ADVANCE(1606); + if (lookahead == 'S') ADVANCE(1605); END_STATE(); case 375: - if (lookahead == 'T') ADVANCE(613); + if (lookahead == 'T') ADVANCE(612); END_STATE(); case 376: - if (lookahead == 'T') ADVANCE(1078); + if (lookahead == 'T') ADVANCE(1077); END_STATE(); case 377: - if (lookahead == 'T') ADVANCE(1059); + if (lookahead == 'T') ADVANCE(1058); END_STATE(); case 378: - if (lookahead == 'T') ADVANCE(898); - if (lookahead == 'V') ADVANCE(926); + if (lookahead == 'T') ADVANCE(897); + if (lookahead == 'V') ADVANCE(925); END_STATE(); case 379: - if (lookahead == 'T') ADVANCE(1760); + if (lookahead == 'T') ADVANCE(1759); END_STATE(); case 380: if (lookahead == 'U') ADVANCE(359); - if (lookahead == 'f') ADVANCE(1609); - if (lookahead == 'o') ADVANCE(1539); - if (lookahead == 's') ADVANCE(637); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'o') ADVANCE(1538); + if (lookahead == 's') ADVANCE(636); END_STATE(); case 381: - if (lookahead == 'V') ADVANCE(945); + if (lookahead == 'V') ADVANCE(944); END_STATE(); case 382: - if (lookahead == 'V') ADVANCE(931); + if (lookahead == 'V') ADVANCE(930); END_STATE(); case 383: - if (lookahead == 'W') ADVANCE(1133); + if (lookahead == 'W') ADVANCE(1132); END_STATE(); case 384: if (lookahead == '\\') ADVANCE(2086); @@ -9271,922 +10385,920 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"') ADVANCE(2092); END_STATE(); case 386: - if (lookahead == ']') ADVANCE(2113); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(386); - END_STATE(); - case 387: if (lookahead == '`') ADVANCE(2072); if (lookahead != 0) ADVANCE(2071); END_STATE(); - case 388: + case 387: ADVANCE_MAP( - 'a', 671, - 'b', 1608, + 'a', 670, + 'b', 1607, 'c', 156, - 'e', 1257, + 'e', 1256, 'f', 197, - 'g', 1670, - 'l', 796, + 'g', 1669, + 'l', 795, 'm', 64, - 'n', 744, - 'o', 997, + 'n', 743, + 'o', 996, 'p', 69, - 'r', 1104, - 's', 656, - 't', 1151, - 'u', 1323, - 'w', 692, + 'r', 1103, + 's', 655, + 't', 1150, + 'u', 1322, + 'w', 691, ); END_STATE(); - case 389: + case 388: ADVANCE_MAP( - 'a', 671, + 'a', 670, 'c', 157, - 'e', 620, + 'e', 619, 'f', 2028, - 'g', 1670, + 'g', 1669, 'i', 154, - 'j', 1263, - 'm', 397, + 'j', 1262, + 'm', 396, 'n', 106, - 'o', 617, - 'p', 1669, - 'q', 1925, - 's', 649, + 'o', 616, + 'p', 1668, + 'q', 1924, + 's', 648, 't', 162, - 'u', 1206, + 'u', 1205, ); END_STATE(); - case 390: + case 389: ADVANCE_MAP( - 'a', 663, - 'c', 1998, - 'e', 698, - 'f', 1609, - 'o', 1539, - 'r', 794, - 's', 637, - 'u', 1334, + 'a', 662, + 'c', 1997, + 'e', 697, + 'f', 1608, + 'o', 1538, + 'r', 793, + 's', 636, + 'u', 1333, ); END_STATE(); - case 391: + case 390: if (lookahead == 'a') ADVANCE(19); END_STATE(); - case 392: + case 391: if (lookahead == 'a') ADVANCE(197); END_STATE(); - case 393: - if (lookahead == 'a') ADVANCE(1598); - if (lookahead == 'c') ADVANCE(1609); + case 392: + if (lookahead == 'a') ADVANCE(1597); + if (lookahead == 'c') ADVANCE(1608); if (lookahead == 'h') ADVANCE(19); - if (lookahead == 'i') ADVANCE(1328); - if (lookahead == 'q') ADVANCE(578); - if (lookahead == 't') ADVANCE(1680); + if (lookahead == 'i') ADVANCE(1327); + if (lookahead == 'q') ADVANCE(577); + if (lookahead == 't') ADVANCE(1679); END_STATE(); - case 394: - if (lookahead == 'a') ADVANCE(1598); - if (lookahead == 'c') ADVANCE(1609); + case 393: + if (lookahead == 'a') ADVANCE(1597); + if (lookahead == 'c') ADVANCE(1608); if (lookahead == 'h') ADVANCE(19); - if (lookahead == 'q') ADVANCE(578); + if (lookahead == 'q') ADVANCE(577); END_STATE(); - case 395: + case 394: ADVANCE_MAP( - 'a', 682, - 'c', 420, - 'd', 1457, - 'e', 766, - 'f', 1609, - 'h', 615, - 'i', 1613, - 'l', 1915, - 'o', 1311, - 'r', 451, - 's', 659, - 't', 735, - 'u', 783, - 'w', 692, - 'y', 1254, + 'a', 681, + 'c', 419, + 'd', 1456, + 'e', 765, + 'f', 1608, + 'h', 614, + 'i', 1612, + 'l', 1914, + 'o', 1310, + 'r', 450, + 's', 658, + 't', 734, + 'u', 782, + 'w', 691, + 'y', 1253, ); END_STATE(); + case 395: + if (lookahead == 'a') ADVANCE(1971); + END_STATE(); case 396: - if (lookahead == 'a') ADVANCE(1972); + if (lookahead == 'a') ADVANCE(641); + if (lookahead == 'o') ADVANCE(954); + if (lookahead == 'p') ADVANCE(783); END_STATE(); case 397: - if (lookahead == 'a') ADVANCE(642); - if (lookahead == 'o') ADVANCE(955); - if (lookahead == 'p') ADVANCE(784); + if (lookahead == 'a') ADVANCE(1270); + if (lookahead == 'e') ADVANCE(1583); + if (lookahead == 'i') ADVANCE(741); + if (lookahead == 't') ADVANCE(128); END_STATE(); case 398: - if (lookahead == 'a') ADVANCE(1271); - if (lookahead == 'e') ADVANCE(1584); - if (lookahead == 'i') ADVANCE(742); - if (lookahead == 't') ADVANCE(128); + if (lookahead == 'a') ADVANCE(234); END_STATE(); case 399: - if (lookahead == 'a') ADVANCE(234); + if (lookahead == 'a') ADVANCE(636); END_STATE(); case 400: - if (lookahead == 'a') ADVANCE(637); + if (lookahead == 'a') ADVANCE(636); + if (lookahead == 'e') ADVANCE(989); + if (lookahead == 'i') ADVANCE(703); END_STATE(); case 401: - if (lookahead == 'a') ADVANCE(637); - if (lookahead == 'e') ADVANCE(990); - if (lookahead == 'i') ADVANCE(704); + if (lookahead == 'a') ADVANCE(636); + if (lookahead == 'e') ADVANCE(989); + if (lookahead == 'i') ADVANCE(702); END_STATE(); case 402: - if (lookahead == 'a') ADVANCE(637); - if (lookahead == 'e') ADVANCE(990); - if (lookahead == 'i') ADVANCE(703); + if (lookahead == 'a') ADVANCE(636); + if (lookahead == 'p') ADVANCE(1843); END_STATE(); case 403: - if (lookahead == 'a') ADVANCE(637); - if (lookahead == 'p') ADVANCE(1844); + if (lookahead == 'a') ADVANCE(636); + if (lookahead == 'p') ADVANCE(1852); + if (lookahead == 's') ADVANCE(1548); END_STATE(); case 404: - if (lookahead == 'a') ADVANCE(637); - if (lookahead == 'p') ADVANCE(1853); - if (lookahead == 's') ADVANCE(1549); + if (lookahead == 'a') ADVANCE(1608); END_STATE(); case 405: - if (lookahead == 'a') ADVANCE(1609); + if (lookahead == 'a') ADVANCE(1608); + if (lookahead == 'e') ADVANCE(1656); + if (lookahead == 'l') ADVANCE(1923); END_STATE(); case 406: - if (lookahead == 'a') ADVANCE(1609); - if (lookahead == 'e') ADVANCE(1657); - if (lookahead == 'l') ADVANCE(1924); + if (lookahead == 'a') ADVANCE(1608); + if (lookahead == 'f') ADVANCE(19); + if (lookahead == 'l') ADVANCE(1923); END_STATE(); case 407: - if (lookahead == 'a') ADVANCE(1609); - if (lookahead == 'f') ADVANCE(19); - if (lookahead == 'l') ADVANCE(1924); + if (lookahead == 'a') ADVANCE(1608); + if (lookahead == 'r') ADVANCE(486); END_STATE(); case 408: - if (lookahead == 'a') ADVANCE(1609); - if (lookahead == 'r') ADVANCE(487); - END_STATE(); - case 409: ADVANCE_MAP( - 'a', 673, - 'b', 1631, - 'c', 1129, - 'd', 611, - 'f', 1609, - 'g', 1670, - 'm', 400, - 'n', 754, - 'o', 997, + 'a', 672, + 'b', 1630, + 'c', 1128, + 'd', 610, + 'f', 1608, + 'g', 1669, + 'm', 399, + 'n', 753, + 'o', 996, 'p', 271, - 'r', 1119, - 's', 637, - 't', 1177, - 'u', 1323, + 'r', 1118, + 's', 636, + 't', 1176, + 'u', 1322, ); END_STATE(); - case 410: - if (lookahead == 'a') ADVANCE(1376); + case 409: + if (lookahead == 'a') ADVANCE(1375); END_STATE(); - case 411: + case 410: if (lookahead == 'a') ADVANCE(225); END_STATE(); - case 412: + case 411: ADVANCE_MAP( - 'a', 1734, - 'b', 1663, - 'c', 472, - 'd', 1457, - 'e', 1312, - 'f', 1609, - 'h', 826, - 'i', 1300, - 'o', 818, - 'p', 1679, - 'r', 524, - 's', 628, - 'w', 1086, + 'a', 1733, + 'b', 1662, + 'c', 471, + 'd', 1456, + 'e', 1311, + 'f', 1608, + 'h', 825, + 'i', 1299, + 'o', 817, + 'p', 1678, + 'r', 523, + 's', 627, + 'w', 1085, ); END_STATE(); - case 413: + case 412: ADVANCE_MAP( - 'a', 1385, - 'b', 1663, - 'n', 988, - 'o', 1585, - 'p', 407, - 't', 1163, - 'w', 455, + 'a', 1384, + 'b', 1662, + 'n', 987, + 'o', 1584, + 'p', 406, + 't', 1162, + 'w', 454, 'z', 136, ); END_STATE(); + case 413: + if (lookahead == 'a') ADVANCE(1384); + if (lookahead == 'b') ADVANCE(1662); + if (lookahead == 'p') ADVANCE(406); + if (lookahead == 't') ADVANCE(1162); + END_STATE(); case 414: - if (lookahead == 'a') ADVANCE(1385); - if (lookahead == 'b') ADVANCE(1663); - if (lookahead == 'p') ADVANCE(407); - if (lookahead == 't') ADVANCE(1163); + if (lookahead == 'a') ADVANCE(1816); END_STATE(); case 415: - if (lookahead == 'a') ADVANCE(1817); + if (lookahead == 'a') ADVANCE(1816); + if (lookahead == 'l') ADVANCE(1110); + if (lookahead == 't') ADVANCE(1390); END_STATE(); case 416: - if (lookahead == 'a') ADVANCE(1817); - if (lookahead == 'l') ADVANCE(1111); - if (lookahead == 't') ADVANCE(1391); + if (lookahead == 'a') ADVANCE(725); + if (lookahead == 'f') ADVANCE(965); END_STATE(); case 417: - if (lookahead == 'a') ADVANCE(726); - if (lookahead == 'f') ADVANCE(966); + if (lookahead == 'a') ADVANCE(692); + if (lookahead == 'k') ADVANCE(12); + if (lookahead == 'o') ADVANCE(685); END_STATE(); case 418: - if (lookahead == 'a') ADVANCE(693); - if (lookahead == 'k') ADVANCE(12); - if (lookahead == 'o') ADVANCE(686); + if (lookahead == 'a') ADVANCE(110); END_STATE(); case 419: - if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(764); + if (lookahead == 'i') ADVANCE(1675); + if (lookahead == 'u') ADVANCE(1568); END_STATE(); case 420: - if (lookahead == 'a') ADVANCE(1561); - if (lookahead == 'e') ADVANCE(765); - if (lookahead == 'i') ADVANCE(1676); - if (lookahead == 'u') ADVANCE(1569); + if (lookahead == 'a') ADVANCE(776); END_STATE(); case 421: - if (lookahead == 'a') ADVANCE(777); + if (lookahead == 'a') ADVANCE(205); END_STATE(); case 422: - if (lookahead == 'a') ADVANCE(205); + if (lookahead == 'a') ADVANCE(1969); END_STATE(); case 423: - if (lookahead == 'a') ADVANCE(1970); + if (lookahead == 'a') ADVANCE(632); + if (lookahead == 'o') ADVANCE(1985); END_STATE(); case 424: - if (lookahead == 'a') ADVANCE(633); - if (lookahead == 'o') ADVANCE(1986); - END_STATE(); - case 425: - if (lookahead == 'a') ADVANCE(1537); - if (lookahead == 'e') ADVANCE(780); - if (lookahead == 'o') ADVANCE(1398); - if (lookahead == 'u') ADVANCE(1536); + if (lookahead == 'a') ADVANCE(1536); + if (lookahead == 'e') ADVANCE(779); + if (lookahead == 'o') ADVANCE(1397); + if (lookahead == 'u') ADVANCE(1535); if (lookahead == 'y') ADVANCE(19); END_STATE(); - case 426: + case 425: if (lookahead == 'a') ADVANCE(213); END_STATE(); - case 427: + case 426: ADVANCE_MAP( - 'a', 632, - 'c', 1150, + 'a', 631, + 'c', 1149, 'e', 176, - 'f', 1609, - 'i', 613, - 'o', 1539, - 's', 637, - 'u', 619, + 'f', 1608, + 'i', 612, + 'o', 1538, + 's', 636, + 'u', 618, ); END_STATE(); - case 428: + case 427: ADVANCE_MAP( - 'a', 1659, - 'c', 1998, - 'f', 1609, - 'h', 1082, + 'a', 1658, + 'c', 1997, + 'f', 1608, + 'h', 1081, 'i', 19, - 'l', 1919, - 'o', 1147, + 'l', 1918, + 'o', 1146, 'r', 129, - 's', 646, + 's', 645, ); END_STATE(); + case 428: + if (lookahead == 'a') ADVANCE(1559); + END_STATE(); case 429: - if (lookahead == 'a') ADVANCE(1560); + if (lookahead == 'a') ADVANCE(1571); + if (lookahead == 'd') ADVANCE(1456); + if (lookahead == 'e') ADVANCE(1592); + if (lookahead == 'l') ADVANCE(830); + if (lookahead == 's') ADVANCE(1113); END_STATE(); case 430: - if (lookahead == 'a') ADVANCE(1572); - if (lookahead == 'd') ADVANCE(1457); - if (lookahead == 'e') ADVANCE(1593); - if (lookahead == 'l') ADVANCE(831); - if (lookahead == 's') ADVANCE(1114); + if (lookahead == 'a') ADVANCE(1535); END_STATE(); case 431: - if (lookahead == 'a') ADVANCE(1536); - END_STATE(); - case 432: ADVANCE_MAP( - 'a', 1536, - 'c', 1998, - 'e', 761, - 'f', 1609, - 'i', 1415, - 'o', 1539, - 's', 637, + 'a', 1535, + 'c', 1997, + 'e', 760, + 'f', 1608, + 'i', 1414, + 'o', 1538, + 's', 636, 'u', 19, ); END_STATE(); + case 432: + if (lookahead == 'a') ADVANCE(1535); + if (lookahead == 'i') ADVANCE(1675); + if (lookahead == 'u') ADVANCE(1535); + END_STATE(); case 433: - if (lookahead == 'a') ADVANCE(1536); - if (lookahead == 'i') ADVANCE(1676); - if (lookahead == 'u') ADVANCE(1536); + if (lookahead == 'a') ADVANCE(1535); + if (lookahead == 's') ADVANCE(1113); END_STATE(); case 434: - if (lookahead == 'a') ADVANCE(1536); - if (lookahead == 's') ADVANCE(1114); + if (lookahead == 'a') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(1535); END_STATE(); case 435: - if (lookahead == 'a') ADVANCE(1536); - if (lookahead == 'u') ADVANCE(1536); + if (lookahead == 'a') ADVANCE(978); END_STATE(); case 436: - if (lookahead == 'a') ADVANCE(979); - END_STATE(); - case 437: ADVANCE_MAP( - 'a', 1319, - 'c', 1998, - 'e', 1349, - 'f', 1144, - 'i', 1263, - 'j', 1263, - 'l', 416, - 'n', 1449, - 'o', 1540, - 'p', 527, - 'r', 424, - 's', 637, + 'a', 1318, + 'c', 1997, + 'e', 1348, + 'f', 1143, + 'i', 1262, + 'j', 1262, + 'l', 415, + 'n', 1448, + 'o', 1539, + 'p', 526, + 'r', 423, + 's', 636, ); END_STATE(); + case 437: + if (lookahead == 'a') ADVANCE(1782); + END_STATE(); case 438: - if (lookahead == 'a') ADVANCE(1783); + if (lookahead == 'a') ADVANCE(1782); + if (lookahead == 'b') ADVANCE(1296); + if (lookahead == 'i') ADVANCE(1966); + if (lookahead == 'o') ADVANCE(1816); + if (lookahead == 's') ADVANCE(1498); END_STATE(); case 439: - if (lookahead == 'a') ADVANCE(1783); - if (lookahead == 'b') ADVANCE(1297); - if (lookahead == 'i') ADVANCE(1967); - if (lookahead == 'o') ADVANCE(1817); - if (lookahead == 's') ADVANCE(1499); + if (lookahead == 'a') ADVANCE(1197); END_STATE(); case 440: - if (lookahead == 'a') ADVANCE(1198); + if (lookahead == 'a') ADVANCE(1785); END_STATE(); case 441: - if (lookahead == 'a') ADVANCE(1786); + if (lookahead == 'a') ADVANCE(1627); END_STATE(); case 442: - if (lookahead == 'a') ADVANCE(1628); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'b') ADVANCE(1662); + if (lookahead == 'r') ADVANCE(476); END_STATE(); case 443: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'b') ADVANCE(1663); - if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'b') ADVANCE(1296); + if (lookahead == 'h') ADVANCE(404); END_STATE(); case 444: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'b') ADVANCE(1297); - if (lookahead == 'h') ADVANCE(405); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'c') ADVANCE(1092); + if (lookahead == 'i') ADVANCE(1396); + if (lookahead == 't') ADVANCE(19); END_STATE(); case 445: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'c') ADVANCE(1093); - if (lookahead == 'i') ADVANCE(1397); - if (lookahead == 't') ADVANCE(19); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'c') ADVANCE(1507); + if (lookahead == 'h') ADVANCE(507); + if (lookahead == 'm') ADVANCE(19); + if (lookahead == 't') ADVANCE(1643); END_STATE(); case 446: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'c') ADVANCE(1508); - if (lookahead == 'h') ADVANCE(508); - if (lookahead == 'm') ADVANCE(19); - if (lookahead == 't') ADVANCE(1644); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'h') ADVANCE(404); END_STATE(); case 447: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'h') ADVANCE(405); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'h') ADVANCE(404); + if (lookahead == 'm') ADVANCE(19); END_STATE(); case 448: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'h') ADVANCE(405); - if (lookahead == 'm') ADVANCE(19); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'm') ADVANCE(164); END_STATE(); case 449: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'm') ADVANCE(164); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'm') ADVANCE(1858); + if (lookahead == 'o') ADVANCE(1200); + if (lookahead == 'p') ADVANCE(954); + if (lookahead == 'r') ADVANCE(583); END_STATE(); case 450: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'm') ADVANCE(1859); - if (lookahead == 'o') ADVANCE(1201); - if (lookahead == 'p') ADVANCE(955); - if (lookahead == 'r') ADVANCE(584); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'o') ADVANCE(1787); END_STATE(); case 451: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'o') ADVANCE(1788); + if (lookahead == 'a') ADVANCE(1627); + if (lookahead == 'r') ADVANCE(1608); + if (lookahead == 't') ADVANCE(537); END_STATE(); case 452: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'r') ADVANCE(1609); - if (lookahead == 't') ADVANCE(538); - END_STATE(); - case 453: - if (lookahead == 'a') ADVANCE(1326); + if (lookahead == 'a') ADVANCE(1325); if (lookahead == 'e') ADVANCE(19); - if (lookahead == 'g') ADVANCE(520); - if (lookahead == 's') ADVANCE(1126); + if (lookahead == 'g') ADVANCE(519); + if (lookahead == 's') ADVANCE(1125); if (lookahead == 'v') ADVANCE(155); END_STATE(); + case 453: + if (lookahead == 'a') ADVANCE(2008); + END_STATE(); case 454: - if (lookahead == 'a') ADVANCE(2009); + if (lookahead == 'a') ADVANCE(1772); + if (lookahead == 'b') ADVANCE(404); END_STATE(); case 455: - if (lookahead == 'a') ADVANCE(1773); - if (lookahead == 'b') ADVANCE(405); - END_STATE(); - case 456: - if (lookahead == 'a') ADVANCE(1773); - if (lookahead == 'c') ADVANCE(1148); - if (lookahead == 'd') ADVANCE(438); + if (lookahead == 'a') ADVANCE(1772); + if (lookahead == 'c') ADVANCE(1147); + if (lookahead == 'd') ADVANCE(437); if (lookahead == 'R' || lookahead == 'S') ADVANCE(19); END_STATE(); + case 456: + if (lookahead == 'a') ADVANCE(1395); + END_STATE(); case 457: - if (lookahead == 'a') ADVANCE(1396); + if (lookahead == 'a') ADVANCE(1855); END_STATE(); case 458: - if (lookahead == 'a') ADVANCE(1856); + if (lookahead == 'a') ADVANCE(1216); END_STATE(); case 459: - if (lookahead == 'a') ADVANCE(1217); - END_STATE(); - case 460: ADVANCE_MAP( - 'a', 1615, - 'c', 1998, - 'e', 1616, - 'f', 1609, - 'h', 1096, + 'a', 1614, + 'c', 1997, + 'e', 1615, + 'f', 1608, + 'h', 1095, 'i', 219, - 'l', 476, + 'l', 475, 'm', 19, - 'o', 1157, + 'o', 1156, 'r', 35, - 's', 646, - 'u', 1395, + 's', 645, + 'u', 1394, ); END_STATE(); - case 461: - if (lookahead == 'a') ADVANCE(1850); - if (lookahead == 'e') ADVANCE(1797); + case 460: + if (lookahead == 'a') ADVANCE(1849); + if (lookahead == 'e') ADVANCE(1796); if (lookahead == 'o') ADVANCE(213); END_STATE(); + case 461: + if (lookahead == 'a') ADVANCE(1040); + END_STATE(); case 462: - if (lookahead == 'a') ADVANCE(1041); + if (lookahead == 'a') ADVANCE(1214); END_STATE(); case 463: - if (lookahead == 'a') ADVANCE(1215); + if (lookahead == 'a') ADVANCE(1239); + if (lookahead == 'l') ADVANCE(1130); + if (lookahead == 's') ADVANCE(1943); END_STATE(); case 464: - if (lookahead == 'a') ADVANCE(1240); - if (lookahead == 'l') ADVANCE(1131); - if (lookahead == 's') ADVANCE(1944); + if (lookahead == 'a') ADVANCE(1662); END_STATE(); case 465: - if (lookahead == 'a') ADVANCE(1663); + if (lookahead == 'a') ADVANCE(1775); END_STATE(); case 466: - if (lookahead == 'a') ADVANCE(1776); + if (lookahead == 'a') ADVANCE(1362); END_STATE(); case 467: - if (lookahead == 'a') ADVANCE(1363); + if (lookahead == 'a') ADVANCE(620); END_STATE(); case 468: - if (lookahead == 'a') ADVANCE(621); + if (lookahead == 'a') ADVANCE(1396); END_STATE(); case 469: - if (lookahead == 'a') ADVANCE(1397); + if (lookahead == 'a') ADVANCE(1661); + if (lookahead == 'e') ADVANCE(780); + if (lookahead == 'u') ADVANCE(576); + if (lookahead == 'y') ADVANCE(19); END_STATE(); case 470: - if (lookahead == 'a') ADVANCE(1662); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'u') ADVANCE(577); - if (lookahead == 'y') ADVANCE(19); + if (lookahead == 'a') ADVANCE(1661); + if (lookahead == 'e') ADVANCE(764); + if (lookahead == 'i') ADVANCE(1675); + if (lookahead == 'o') ADVANCE(1424); END_STATE(); case 471: - if (lookahead == 'a') ADVANCE(1662); - if (lookahead == 'e') ADVANCE(765); - if (lookahead == 'i') ADVANCE(1676); - if (lookahead == 'o') ADVANCE(1425); + if (lookahead == 'a') ADVANCE(1661); + if (lookahead == 'e') ADVANCE(779); + if (lookahead == 'y') ADVANCE(19); END_STATE(); case 472: - if (lookahead == 'a') ADVANCE(1662); - if (lookahead == 'e') ADVANCE(780); + if (lookahead == 'a') ADVANCE(1661); + if (lookahead == 'i') ADVANCE(1638); + if (lookahead == 'o') ADVANCE(1246); if (lookahead == 'y') ADVANCE(19); END_STATE(); case 473: - if (lookahead == 'a') ADVANCE(1662); - if (lookahead == 'i') ADVANCE(1639); - if (lookahead == 'o') ADVANCE(1247); + if (lookahead == 'a') ADVANCE(1661); + if (lookahead == 'i') ADVANCE(1638); if (lookahead == 'y') ADVANCE(19); END_STATE(); case 474: - if (lookahead == 'a') ADVANCE(1662); - if (lookahead == 'i') ADVANCE(1639); + if (lookahead == 'a') ADVANCE(1661); if (lookahead == 'y') ADVANCE(19); END_STATE(); case 475: - if (lookahead == 'a') ADVANCE(1662); - if (lookahead == 'y') ADVANCE(19); + if (lookahead == 'a') ADVANCE(1369); + if (lookahead == 'u') ADVANCE(1766); END_STATE(); case 476: - if (lookahead == 'a') ADVANCE(1370); - if (lookahead == 'u') ADVANCE(1767); + if (lookahead == 'a') ADVANCE(634); + if (lookahead == 'k') ADVANCE(788); END_STATE(); case 477: - if (lookahead == 'a') ADVANCE(635); - if (lookahead == 'k') ADVANCE(789); + if (lookahead == 'a') ADVANCE(1557); + if (lookahead == 'u') ADVANCE(1557); END_STATE(); case 478: - if (lookahead == 'a') ADVANCE(1558); - if (lookahead == 'u') ADVANCE(1558); + if (lookahead == 'a') ADVANCE(745); END_STATE(); case 479: - if (lookahead == 'a') ADVANCE(746); + if (lookahead == 'a') ADVANCE(1233); END_STATE(); case 480: - if (lookahead == 'a') ADVANCE(1234); + if (lookahead == 'a') ADVANCE(1233); + if (lookahead == 'i') ADVANCE(1278); END_STATE(); case 481: - if (lookahead == 'a') ADVANCE(1234); - if (lookahead == 'i') ADVANCE(1279); + if (lookahead == 'a') ADVANCE(1617); END_STATE(); case 482: - if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'a') ADVANCE(1617); + if (lookahead == 'b') ADVANCE(1247); END_STATE(); case 483: - if (lookahead == 'a') ADVANCE(1618); - if (lookahead == 'b') ADVANCE(1248); + if (lookahead == 'a') ADVANCE(1252); END_STATE(); case 484: - if (lookahead == 'a') ADVANCE(1253); + if (lookahead == 'a') ADVANCE(1252); + if (lookahead == 'e') ADVANCE(1772); + if (lookahead == 'i') ADVANCE(1968); END_STATE(); case 485: - if (lookahead == 'a') ADVANCE(1253); - if (lookahead == 'e') ADVANCE(1773); - if (lookahead == 'i') ADVANCE(1969); + if (lookahead == 'a') ADVANCE(1652); + if (lookahead == 'l') ADVANCE(1923); + if (lookahead == 's') ADVANCE(1088); END_STATE(); case 486: - if (lookahead == 'a') ADVANCE(1653); - if (lookahead == 'l') ADVANCE(1924); - if (lookahead == 's') ADVANCE(1089); + if (lookahead == 'a') ADVANCE(635); END_STATE(); case 487: - if (lookahead == 'a') ADVANCE(636); + if (lookahead == 'a') ADVANCE(1647); + if (lookahead == 'b') ADVANCE(1247); END_STATE(); case 488: - if (lookahead == 'a') ADVANCE(1648); - if (lookahead == 'b') ADVANCE(1248); + if (lookahead == 'a') ADVANCE(1647); + if (lookahead == 'o') ADVANCE(225); END_STATE(); case 489: - if (lookahead == 'a') ADVANCE(1648); - if (lookahead == 'o') ADVANCE(225); + if (lookahead == 'a') ADVANCE(1579); END_STATE(); case 490: - if (lookahead == 'a') ADVANCE(1580); + if (lookahead == 'a') ADVANCE(720); END_STATE(); case 491: - if (lookahead == 'a') ADVANCE(721); + if (lookahead == 'a') ADVANCE(1645); END_STATE(); case 492: - if (lookahead == 'a') ADVANCE(1646); + if (lookahead == 'a') ADVANCE(1244); END_STATE(); case 493: - if (lookahead == 'a') ADVANCE(1245); + if (lookahead == 'a') ADVANCE(1637); + if (lookahead == 'o') ADVANCE(1312); + if (lookahead == 'r') ADVANCE(104); END_STATE(); case 494: - if (lookahead == 'a') ADVANCE(1638); - if (lookahead == 'o') ADVANCE(1313); - if (lookahead == 'r') ADVANCE(104); + if (lookahead == 'a') ADVANCE(1240); END_STATE(); case 495: - if (lookahead == 'a') ADVANCE(1241); + if (lookahead == 'a') ADVANCE(1632); + if (lookahead == 'p') ADVANCE(1531); END_STATE(); case 496: - if (lookahead == 'a') ADVANCE(1633); - if (lookahead == 'p') ADVANCE(1532); + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'r') ADVANCE(567); END_STATE(); case 497: - if (lookahead == 'a') ADVANCE(1619); - if (lookahead == 'r') ADVANCE(568); + if (lookahead == 'a') ADVANCE(1223); END_STATE(); case 498: - if (lookahead == 'a') ADVANCE(1224); + if (lookahead == 'a') ADVANCE(1631); END_STATE(); case 499: - if (lookahead == 'a') ADVANCE(1632); + if (lookahead == 'a') ADVANCE(1231); END_STATE(); case 500: - if (lookahead == 'a') ADVANCE(1232); + if (lookahead == 'a') ADVANCE(1218); END_STATE(); case 501: - if (lookahead == 'a') ADVANCE(1219); + if (lookahead == 'a') ADVANCE(1224); END_STATE(); case 502: - if (lookahead == 'a') ADVANCE(1225); + if (lookahead == 'a') ADVANCE(1219); END_STATE(); case 503: - if (lookahead == 'a') ADVANCE(1220); + if (lookahead == 'a') ADVANCE(1685); END_STATE(); case 504: - if (lookahead == 'a') ADVANCE(1686); + if (lookahead == 'a') ADVANCE(1237); END_STATE(); case 505: - if (lookahead == 'a') ADVANCE(1238); + if (lookahead == 'a') ADVANCE(1225); END_STATE(); case 506: - if (lookahead == 'a') ADVANCE(1226); + if (lookahead == 'a') ADVANCE(1606); END_STATE(); case 507: - if (lookahead == 'a') ADVANCE(1607); + if (lookahead == 'a') ADVANCE(1635); END_STATE(); case 508: - if (lookahead == 'a') ADVANCE(1636); + if (lookahead == 'a') ADVANCE(1611); END_STATE(); case 509: - if (lookahead == 'a') ADVANCE(1612); + if (lookahead == 'a') ADVANCE(1689); END_STATE(); case 510: - if (lookahead == 'a') ADVANCE(1690); + if (lookahead == 'a') ADVANCE(1633); END_STATE(); case 511: - if (lookahead == 'a') ADVANCE(1634); + if (lookahead == 'a') ADVANCE(1873); END_STATE(); case 512: - if (lookahead == 'a') ADVANCE(1874); + if (lookahead == 'a') ADVANCE(1700); END_STATE(); case 513: - if (lookahead == 'a') ADVANCE(1701); + if (lookahead == 'a') ADVANCE(1673); END_STATE(); case 514: - if (lookahead == 'a') ADVANCE(1674); + if (lookahead == 'a') ADVANCE(1664); END_STATE(); case 515: - if (lookahead == 'a') ADVANCE(1665); + if (lookahead == 'a') ADVANCE(1670); END_STATE(); case 516: - if (lookahead == 'a') ADVANCE(1671); - END_STATE(); - case 517: ADVANCE_MAP( - 'a', 677, - 'b', 1598, + 'a', 676, + 'b', 1597, 'c', 65, - 'd', 1486, + 'd', 1485, 'e', 265, - 'f', 1629, + 'f', 1628, 'h', 80, - 'i', 1018, - 'l', 442, - 'm', 398, - 'o', 963, - 'p', 421, - 'q', 665, - 'r', 442, - 's', 640, - 't', 497, - 'u', 580, + 'i', 1017, + 'l', 441, + 'm', 397, + 'o', 962, + 'p', 420, + 'q', 664, + 'r', 441, + 's', 639, + 't', 496, + 'u', 579, 'w', 266, - 'z', 1257, + 'z', 1256, ); END_STATE(); - case 518: + case 517: ADVANCE_MAP( - 'a', 677, - 'c', 475, - 'd', 1457, - 'e', 922, - 'f', 1609, - 'h', 613, - 'i', 1012, - 'o', 1539, - 's', 637, - 'w', 1197, + 'a', 676, + 'c', 474, + 'd', 1456, + 'e', 921, + 'f', 1608, + 'h', 612, + 'i', 1011, + 'o', 1538, + 's', 636, + 'w', 1196, ); END_STATE(); + case 518: + if (lookahead == 'a') ADVANCE(1268); + END_STATE(); case 519: - if (lookahead == 'a') ADVANCE(1269); + if (lookahead == 'a') ADVANCE(1337); END_STATE(); case 520: - if (lookahead == 'a') ADVANCE(1338); + if (lookahead == 'a') ADVANCE(1794); END_STATE(); case 521: - if (lookahead == 'a') ADVANCE(1795); - END_STATE(); - case 522: ADVANCE_MAP( - 'a', 1564, - 'c', 842, - 'f', 1609, - 'g', 1673, - 'h', 613, - 'j', 613, - 'o', 1539, - 's', 637, + 'a', 1563, + 'c', 841, + 'f', 1608, + 'g', 1672, + 'h', 612, + 'j', 612, + 'o', 1538, + 's', 636, ); END_STATE(); + case 522: + if (lookahead == 'a') ADVANCE(714); + END_STATE(); case 523: - if (lookahead == 'a') ADVANCE(715); + if (lookahead == 'a') ADVANCE(761); + if (lookahead == 'i') ADVANCE(568); + if (lookahead == 'p') ADVANCE(823); END_STATE(); case 524: - if (lookahead == 'a') ADVANCE(762); - if (lookahead == 'i') ADVANCE(569); - if (lookahead == 'p') ADVANCE(824); + if (lookahead == 'a') ADVANCE(1721); END_STATE(); case 525: - if (lookahead == 'a') ADVANCE(1722); + if (lookahead == 'a') ADVANCE(1870); END_STATE(); case 526: - if (lookahead == 'a') ADVANCE(1871); + if (lookahead == 'a') ADVANCE(1688); END_STATE(); case 527: - if (lookahead == 'a') ADVANCE(1689); + if (lookahead == 'a') ADVANCE(1570); + if (lookahead == 'd') ADVANCE(1456); + if (lookahead == 'e') ADVANCE(1593); + if (lookahead == 'g') ADVANCE(1836); + if (lookahead == 's') ADVANCE(1113); END_STATE(); case 528: - if (lookahead == 'a') ADVANCE(1571); - if (lookahead == 'd') ADVANCE(1457); - if (lookahead == 'e') ADVANCE(1594); - if (lookahead == 'g') ADVANCE(1837); - if (lookahead == 's') ADVANCE(1114); + if (lookahead == 'a') ADVANCE(1570); + if (lookahead == 'e') ADVANCE(1596); + if (lookahead == 's') ADVANCE(1113); END_STATE(); case 529: - if (lookahead == 'a') ADVANCE(1571); - if (lookahead == 'e') ADVANCE(1597); - if (lookahead == 's') ADVANCE(1114); + if (lookahead == 'a') ADVANCE(1570); + if (lookahead == 's') ADVANCE(1113); END_STATE(); case 530: - if (lookahead == 'a') ADVANCE(1571); - if (lookahead == 's') ADVANCE(1114); + if (lookahead == 'a') ADVANCE(700); END_STATE(); case 531: - if (lookahead == 'a') ADVANCE(701); + if (lookahead == 'a') ADVANCE(1722); + if (lookahead == 'l') ADVANCE(1999); + if (lookahead == 'r') ADVANCE(792); + if (lookahead == 'v') ADVANCE(941); END_STATE(); case 532: - if (lookahead == 'a') ADVANCE(1723); - if (lookahead == 'l') ADVANCE(2000); - if (lookahead == 'r') ADVANCE(793); - if (lookahead == 'v') ADVANCE(942); + if (lookahead == 'a') ADVANCE(1407); END_STATE(); case 533: - if (lookahead == 'a') ADVANCE(1408); + if (lookahead == 'a') ADVANCE(1258); + if (lookahead == 'k') ADVANCE(225); END_STATE(); case 534: - if (lookahead == 'a') ADVANCE(1259); - if (lookahead == 'k') ADVANCE(225); + if (lookahead == 'a') ADVANCE(1880); END_STATE(); case 535: - if (lookahead == 'a') ADVANCE(1881); + if (lookahead == 'a') ADVANCE(1734); + if (lookahead == 'l') ADVANCE(1273); + if (lookahead == 'r') ADVANCE(684); END_STATE(); case 536: - if (lookahead == 'a') ADVANCE(1735); - if (lookahead == 'l') ADVANCE(1274); - if (lookahead == 'r') ADVANCE(685); + if (lookahead == 'a') ADVANCE(1684); END_STATE(); case 537: - if (lookahead == 'a') ADVANCE(1685); + if (lookahead == 'a') ADVANCE(1121); END_STATE(); case 538: - if (lookahead == 'a') ADVANCE(1122); + if (lookahead == 'a') ADVANCE(1121); + if (lookahead == 'i') ADVANCE(1458); END_STATE(); case 539: - if (lookahead == 'a') ADVANCE(1122); - if (lookahead == 'i') ADVANCE(1459); + if (lookahead == 'a') ADVANCE(1934); END_STATE(); case 540: - if (lookahead == 'a') ADVANCE(1935); + if (lookahead == 'a') ADVANCE(1280); END_STATE(); case 541: - if (lookahead == 'a') ADVANCE(1281); + if (lookahead == 'a') ADVANCE(1725); END_STATE(); case 542: - if (lookahead == 'a') ADVANCE(1726); + if (lookahead == 'a') ADVANCE(1936); END_STATE(); case 543: - if (lookahead == 'a') ADVANCE(1937); + if (lookahead == 'a') ADVANCE(1888); END_STATE(); case 544: - if (lookahead == 'a') ADVANCE(1889); + if (lookahead == 'a') ADVANCE(1408); END_STATE(); case 545: - if (lookahead == 'a') ADVANCE(1409); + if (lookahead == 'a') ADVANCE(1727); END_STATE(); case 546: - if (lookahead == 'a') ADVANCE(1728); + if (lookahead == 'a') ADVANCE(1265); END_STATE(); case 547: - if (lookahead == 'a') ADVANCE(1266); + if (lookahead == 'a') ADVANCE(1717); END_STATE(); case 548: - if (lookahead == 'a') ADVANCE(1718); + if (lookahead == 'a') ADVANCE(1676); END_STATE(); case 549: - if (lookahead == 'a') ADVANCE(1677); + if (lookahead == 'a') ADVANCE(1723); END_STATE(); case 550: if (lookahead == 'a') ADVANCE(1724); END_STATE(); case 551: - if (lookahead == 'a') ADVANCE(1725); + if (lookahead == 'a') ADVANCE(1315); END_STATE(); case 552: - if (lookahead == 'a') ADVANCE(1316); + if (lookahead == 'a') ADVANCE(1739); END_STATE(); case 553: - if (lookahead == 'a') ADVANCE(1740); + if (lookahead == 'a') ADVANCE(1739); + if (lookahead == 'd') ADVANCE(1517); + if (lookahead == 'h') ADVANCE(509); + if (lookahead == 'l') ADVANCE(1923); + if (lookahead == 's') ADVANCE(1090); + if (lookahead == 'u') ADVANCE(1589); END_STATE(); case 554: - if (lookahead == 'a') ADVANCE(1740); - if (lookahead == 'd') ADVANCE(1518); - if (lookahead == 'h') ADVANCE(510); - if (lookahead == 'l') ADVANCE(1924); - if (lookahead == 's') ADVANCE(1091); - if (lookahead == 'u') ADVANCE(1590); + if (lookahead == 'a') ADVANCE(1739); + if (lookahead == 'd') ADVANCE(1533); + if (lookahead == 'h') ADVANCE(509); END_STATE(); case 555: - if (lookahead == 'a') ADVANCE(1740); - if (lookahead == 'd') ADVANCE(1534); - if (lookahead == 'h') ADVANCE(510); + if (lookahead == 'a') ADVANCE(1739); + if (lookahead == 'r') ADVANCE(1175); END_STATE(); case 556: - if (lookahead == 'a') ADVANCE(1740); - if (lookahead == 'r') ADVANCE(1176); + if (lookahead == 'a') ADVANCE(1750); END_STATE(); case 557: - if (lookahead == 'a') ADVANCE(1751); + if (lookahead == 'a') ADVANCE(1896); END_STATE(); case 558: - if (lookahead == 'a') ADVANCE(1897); + if (lookahead == 'a') ADVANCE(1744); + if (lookahead == 'h') ADVANCE(569); + if (lookahead == 'l') ADVANCE(933); + if (lookahead == 'r') ADVANCE(1190); + if (lookahead == 's') ADVANCE(1600); + if (lookahead == 't') ADVANCE(1078); END_STATE(); case 559: - if (lookahead == 'a') ADVANCE(1745); - if (lookahead == 'h') ADVANCE(570); - if (lookahead == 'l') ADVANCE(934); - if (lookahead == 'r') ADVANCE(1191); - if (lookahead == 's') ADVANCE(1601); - if (lookahead == 't') ADVANCE(1079); + if (lookahead == 'a') ADVANCE(1744); + if (lookahead == 'h') ADVANCE(569); + if (lookahead == 'l') ADVANCE(953); + if (lookahead == 'r') ADVANCE(1184); + if (lookahead == 't') ADVANCE(1078); END_STATE(); case 560: - if (lookahead == 'a') ADVANCE(1745); - if (lookahead == 'h') ADVANCE(570); - if (lookahead == 'l') ADVANCE(954); - if (lookahead == 'r') ADVANCE(1185); - if (lookahead == 't') ADVANCE(1079); + if (lookahead == 'a') ADVANCE(1898); END_STATE(); case 561: - if (lookahead == 'a') ADVANCE(1899); + if (lookahead == 'a') ADVANCE(1745); END_STATE(); case 562: - if (lookahead == 'a') ADVANCE(1746); + if (lookahead == 'a') ADVANCE(1745); + if (lookahead == 'd') ADVANCE(455); END_STATE(); case 563: if (lookahead == 'a') ADVANCE(1746); - if (lookahead == 'd') ADVANCE(456); END_STATE(); case 564: - if (lookahead == 'a') ADVANCE(1747); + if (lookahead == 'a') ADVANCE(1746); + if (lookahead == 'h') ADVANCE(571); END_STATE(); case 565: - if (lookahead == 'a') ADVANCE(1747); - if (lookahead == 'h') ADVANCE(572); + if (lookahead == 'a') ADVANCE(1900); END_STATE(); case 566: - if (lookahead == 'a') ADVANCE(1901); + if (lookahead == 'a') ADVANCE(1747); + if (lookahead == 'h') ADVANCE(571); + if (lookahead == 's') ADVANCE(1600); END_STATE(); case 567: - if (lookahead == 'a') ADVANCE(1748); - if (lookahead == 'h') ADVANCE(572); - if (lookahead == 's') ADVANCE(1601); + if (lookahead == 'a') ADVANCE(1180); + if (lookahead == 'n') ADVANCE(1761); END_STATE(); case 568: - if (lookahead == 'a') ADVANCE(1181); - if (lookahead == 'n') ADVANCE(1762); + if (lookahead == 'a') ADVANCE(1429); + if (lookahead == 'd') ADVANCE(1456); + if (lookahead == 'e') ADVANCE(19); + if (lookahead == 'm') ADVANCE(1173); + if (lookahead == 'p') ADVANCE(1306); + if (lookahead == 's') ADVANCE(576); + if (lookahead == 't') ADVANCE(1158); END_STATE(); case 569: - if (lookahead == 'a') ADVANCE(1430); - if (lookahead == 'd') ADVANCE(1457); - if (lookahead == 'e') ADVANCE(19); - if (lookahead == 'm') ADVANCE(1174); - if (lookahead == 'p') ADVANCE(1307); - if (lookahead == 's') ADVANCE(577); - if (lookahead == 't') ADVANCE(1159); + if (lookahead == 'a') ADVANCE(1752); END_STATE(); case 570: - if (lookahead == 'a') ADVANCE(1753); + if (lookahead == 'a') ADVANCE(1436); END_STATE(); case 571: - if (lookahead == 'a') ADVANCE(1437); + if (lookahead == 'a') ADVANCE(1754); END_STATE(); case 572: - if (lookahead == 'a') ADVANCE(1755); + if (lookahead == 'a') ADVANCE(1437); END_STATE(); case 573: - if (lookahead == 'a') ADVANCE(1438); + if (lookahead == 'a') ADVANCE(1439); END_STATE(); case 574: if (lookahead == 'a') ADVANCE(1440); @@ -10195,131 +11307,131 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(1441); END_STATE(); case 576: - if (lookahead == 'a') ADVANCE(1442); + if (lookahead == 'b') ADVANCE(19); END_STATE(); case 577: if (lookahead == 'b') ADVANCE(19); + if (lookahead == 'u') ADVANCE(1447); END_STATE(); case 578: - if (lookahead == 'b') ADVANCE(19); - if (lookahead == 'u') ADVANCE(1448); - END_STATE(); - case 579: if (lookahead == 'b') ADVANCE(210); - if (lookahead == 'c') ADVANCE(723); + if (lookahead == 'c') ADVANCE(722); if (lookahead == 'm') ADVANCE(19); if (lookahead == 'p') ADVANCE(137); END_STATE(); - case 580: + case 579: if (lookahead == 'b') ADVANCE(36); - if (lookahead == 'c') ADVANCE(634); + if (lookahead == 'c') ADVANCE(633); if (lookahead == 'm') ADVANCE(19); - if (lookahead == 'n') ADVANCE(979); + if (lookahead == 'n') ADVANCE(978); if (lookahead == 'p') ADVANCE(112); END_STATE(); - case 581: + case 580: if (lookahead == 'b') ADVANCE(211); - if (lookahead == 'c') ADVANCE(690); + if (lookahead == 'c') ADVANCE(689); if (lookahead == 'p') ADVANCE(211); END_STATE(); - case 582: + case 581: if (lookahead == 'b') ADVANCE(110); END_STATE(); - case 583: + case 582: if (lookahead == 'b') ADVANCE(119); if (lookahead == 'p') ADVANCE(119); END_STATE(); + case 583: + if (lookahead == 'b') ADVANCE(404); + END_STATE(); case 584: - if (lookahead == 'b') ADVANCE(405); + if (lookahead == 'b') ADVANCE(404); + if (lookahead == 'g') ADVANCE(827); END_STATE(); case 585: - if (lookahead == 'b') ADVANCE(405); - if (lookahead == 'g') ADVANCE(828); - END_STATE(); - case 586: - if (lookahead == 'b') ADVANCE(405); + if (lookahead == 'b') ADVANCE(404); if (lookahead == 'm') ADVANCE(19); END_STATE(); - case 587: - if (lookahead == 'b') ADVANCE(405); + case 586: + if (lookahead == 'b') ADVANCE(404); if (lookahead == 't') ADVANCE(19); END_STATE(); - case 588: - if (lookahead == 'b') ADVANCE(405); + case 587: + if (lookahead == 'b') ADVANCE(404); if (lookahead == 't') ADVANCE(160); if (lookahead == 'y') ADVANCE(376); END_STATE(); - case 589: - if (lookahead == 'b') ADVANCE(1213); - if (lookahead == 'c') ADVANCE(1507); + case 588: + if (lookahead == 'b') ADVANCE(1212); + if (lookahead == 'c') ADVANCE(1506); END_STATE(); - case 590: + case 589: if (lookahead == 'b') ADVANCE(117); if (lookahead == 'p') ADVANCE(117); END_STATE(); + case 590: + if (lookahead == 'b') ADVANCE(1952); + if (lookahead == 'p') ADVANCE(1073); + END_STATE(); case 591: - if (lookahead == 'b') ADVANCE(1953); - if (lookahead == 'p') ADVANCE(1074); + if (lookahead == 'b') ADVANCE(749); END_STATE(); case 592: - if (lookahead == 'b') ADVANCE(750); + if (lookahead == 'b') ADVANCE(1662); END_STATE(); case 593: - if (lookahead == 'b') ADVANCE(1663); + if (lookahead == 'b') ADVANCE(784); + if (lookahead == 'p') ADVANCE(784); END_STATE(); case 594: - if (lookahead == 'b') ADVANCE(785); - if (lookahead == 'p') ADVANCE(785); + if (lookahead == 'b') ADVANCE(1226); + if (lookahead == 'c') ADVANCE(1953); + if (lookahead == 'n') ADVANCE(978); + if (lookahead == 'p') ADVANCE(39); + if (lookahead == 't') ADVANCE(1942); END_STATE(); case 595: - if (lookahead == 'b') ADVANCE(1227); - if (lookahead == 'c') ADVANCE(1954); - if (lookahead == 'n') ADVANCE(979); - if (lookahead == 'p') ADVANCE(39); - if (lookahead == 't') ADVANCE(1943); + if (lookahead == 'b') ADVANCE(1767); END_STATE(); case 596: - if (lookahead == 'b') ADVANCE(1768); + if (lookahead == 'b') ADVANCE(391); END_STATE(); case 597: - if (lookahead == 'b') ADVANCE(392); + if (lookahead == 'b') ADVANCE(936); END_STATE(); case 598: - if (lookahead == 'b') ADVANCE(937); + if (lookahead == 'b') ADVANCE(1370); + if (lookahead == 'p') ADVANCE(1370); END_STATE(); case 599: - if (lookahead == 'b') ADVANCE(1371); - if (lookahead == 'p') ADVANCE(1371); + if (lookahead == 'b') ADVANCE(1811); + if (lookahead == 'c') ADVANCE(721); + if (lookahead == 'p') ADVANCE(888); END_STATE(); case 600: - if (lookahead == 'b') ADVANCE(1812); - if (lookahead == 'c') ADVANCE(722); - if (lookahead == 'p') ADVANCE(889); + if (lookahead == 'b') ADVANCE(1811); + if (lookahead == 'p') ADVANCE(888); END_STATE(); case 601: - if (lookahead == 'b') ADVANCE(1812); - if (lookahead == 'p') ADVANCE(889); + if (lookahead == 'b') ADVANCE(1282); END_STATE(); case 602: - if (lookahead == 'b') ADVANCE(1283); + if (lookahead == 'b') ADVANCE(1285); END_STATE(); case 603: - if (lookahead == 'b') ADVANCE(1286); + if (lookahead == 'b') ADVANCE(1728); END_STATE(); case 604: - if (lookahead == 'b') ADVANCE(1729); + if (lookahead == 'b') ADVANCE(1288); END_STATE(); case 605: if (lookahead == 'b') ADVANCE(1289); END_STATE(); case 606: - if (lookahead == 'b') ADVANCE(1290); + if (lookahead == 'b') ADVANCE(1303); END_STATE(); case 607: - if (lookahead == 'b') ADVANCE(1304); + if (lookahead == 'b') ADVANCE(515); END_STATE(); case 608: - if (lookahead == 'b') ADVANCE(516); + if (lookahead == 'b') ADVANCE(1294); END_STATE(); case 609: if (lookahead == 'b') ADVANCE(1295); @@ -10328,1533 +11440,1533 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(1296); END_STATE(); case 611: - if (lookahead == 'b') ADVANCE(1297); + if (lookahead == 'b') ADVANCE(1814); + if (lookahead == 'p') ADVANCE(1814); END_STATE(); case 612: - if (lookahead == 'b') ADVANCE(1815); - if (lookahead == 'p') ADVANCE(1815); + if (lookahead == 'c') ADVANCE(1997); END_STATE(); case 613: - if (lookahead == 'c') ADVANCE(1998); + if (lookahead == 'c') ADVANCE(1997); + if (lookahead == 'e') ADVANCE(1971); END_STATE(); case 614: - if (lookahead == 'c') ADVANCE(1998); - if (lookahead == 'e') ADVANCE(1972); + if (lookahead == 'c') ADVANCE(1997); + if (lookahead == 'e') ADVANCE(694); + if (lookahead == 'i') ADVANCE(19); END_STATE(); case 615: - if (lookahead == 'c') ADVANCE(1998); - if (lookahead == 'e') ADVANCE(695); - if (lookahead == 'i') ADVANCE(19); + if (lookahead == 'c') ADVANCE(1997); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'i') ADVANCE(1307); + if (lookahead == 'o') ADVANCE(1540); + if (lookahead == 's') ADVANCE(636); END_STATE(); case 616: - if (lookahead == 'c') ADVANCE(1998); - if (lookahead == 'f') ADVANCE(1609); - if (lookahead == 'i') ADVANCE(1308); - if (lookahead == 'o') ADVANCE(1541); - if (lookahead == 's') ADVANCE(637); + if (lookahead == 'c') ADVANCE(1997); + if (lookahead == 'g') ADVANCE(1487); + if (lookahead == 'p') ADVANCE(954); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 617: - if (lookahead == 'c') ADVANCE(1998); - if (lookahead == 'g') ADVANCE(1488); - if (lookahead == 'p') ADVANCE(955); - if (lookahead == 't') ADVANCE(391); + if (lookahead == 'c') ADVANCE(1997); + if (lookahead == 'i') ADVANCE(1011); END_STATE(); case 618: - if (lookahead == 'c') ADVANCE(1998); - if (lookahead == 'i') ADVANCE(1012); + if (lookahead == 'c') ADVANCE(1997); + if (lookahead == 'm') ADVANCE(164); END_STATE(); case 619: - if (lookahead == 'c') ADVANCE(1998); - if (lookahead == 'm') ADVANCE(164); + if (lookahead == 'c') ADVANCE(1997); + if (lookahead == 'x') ADVANCE(623); END_STATE(); case 620: - if (lookahead == 'c') ADVANCE(1998); - if (lookahead == 'x') ADVANCE(624); + if (lookahead == 'c') ADVANCE(19); END_STATE(); case 621: if (lookahead == 'c') ADVANCE(19); + if (lookahead == 'i') ADVANCE(1608); END_STATE(); case 622: - if (lookahead == 'c') ADVANCE(19); - if (lookahead == 'i') ADVANCE(1609); - END_STATE(); - case 623: if (lookahead == 'c') ADVANCE(197); - if (lookahead == 'l') ADVANCE(790); + if (lookahead == 'l') ADVANCE(789); if (lookahead == 'p') ADVANCE(208); - if (lookahead == 'r') ADVANCE(1210); + if (lookahead == 'r') ADVANCE(1209); END_STATE(); - case 624: + case 623: if (lookahead == 'c') ADVANCE(164); END_STATE(); - case 625: + case 624: ADVANCE_MAP( - 'c', 433, - 'd', 1875, - 'f', 1609, + 'c', 432, + 'd', 1874, + 'f', 1608, 'h', 263, 'i', 19, 'l', 263, - 'm', 431, - 'n', 1118, - 'o', 737, + 'm', 430, + 'n', 1117, + 'o', 736, 'r', 263, - 's', 654, - 'u', 1568, - 'v', 862, - 'w', 825, + 's', 653, + 'u', 1567, + 'v', 861, + 'w', 824, ); END_STATE(); + case 625: + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'o') ADVANCE(737); + if (lookahead == 's') ADVANCE(1602); + if (lookahead == 't') ADVANCE(1758); + if (lookahead == 'u') ADVANCE(1566); + if (lookahead == 'v') ADVANCE(861); + if (lookahead == 'w') ADVANCE(824); + END_STATE(); case 626: - if (lookahead == 'c') ADVANCE(433); - if (lookahead == 'o') ADVANCE(738); - if (lookahead == 's') ADVANCE(1603); - if (lookahead == 't') ADVANCE(1759); - if (lookahead == 'u') ADVANCE(1567); - if (lookahead == 'v') ADVANCE(862); - if (lookahead == 'w') ADVANCE(825); + if (lookahead == 'c') ADVANCE(1506); END_STATE(); case 627: - if (lookahead == 'c') ADVANCE(1507); + if (lookahead == 'c') ADVANCE(2031); + if (lookahead == 'h') ADVANCE(612); + if (lookahead == 't') ADVANCE(1679); END_STATE(); case 628: if (lookahead == 'c') ADVANCE(2031); - if (lookahead == 'h') ADVANCE(613); - if (lookahead == 't') ADVANCE(1680); + if (lookahead == 'o') ADVANCE(1216); + if (lookahead == 't') ADVANCE(1679); END_STATE(); case 629: - if (lookahead == 'c') ADVANCE(2031); - if (lookahead == 'o') ADVANCE(1217); - if (lookahead == 't') ADVANCE(1680); + if (lookahead == 'c') ADVANCE(105); + if (lookahead == 'h') ADVANCE(1524); + if (lookahead == 'i') ADVANCE(1338); + if (lookahead == 'm') ADVANCE(1080); + if (lookahead == 'p') ADVANCE(404); + if (lookahead == 'q') ADVANCE(1795); + if (lookahead == 'u') ADVANCE(580); END_STATE(); case 630: - if (lookahead == 'c') ADVANCE(105); - if (lookahead == 'h') ADVANCE(1525); - if (lookahead == 'i') ADVANCE(1339); - if (lookahead == 'm') ADVANCE(1081); - if (lookahead == 'p') ADVANCE(405); - if (lookahead == 'q') ADVANCE(1796); - if (lookahead == 'u') ADVANCE(581); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(1127); + if (lookahead == 'e') ADVANCE(1339); + if (lookahead == 'n') ADVANCE(988); + if (lookahead == 'q') ADVANCE(1912); + if (lookahead == 'r') ADVANCE(1621); + if (lookahead == 't') ADVANCE(538); END_STATE(); case 631: - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(1128); - if (lookahead == 'e') ADVANCE(1340); - if (lookahead == 'n') ADVANCE(989); - if (lookahead == 'q') ADVANCE(1913); - if (lookahead == 'r') ADVANCE(1622); - if (lookahead == 't') ADVANCE(539); + if (lookahead == 'c') ADVANCE(1921); END_STATE(); case 632: - if (lookahead == 'c') ADVANCE(1922); + if (lookahead == 'c') ADVANCE(14); + if (lookahead == 's') ADVANCE(1216); END_STATE(); case 633: - if (lookahead == 'c') ADVANCE(14); - if (lookahead == 's') ADVANCE(1217); + if (lookahead == 'c') ADVANCE(83); END_STATE(); case 634: - if (lookahead == 'c') ADVANCE(83); + if (lookahead == 'c') ADVANCE(2026); END_STATE(); case 635: - if (lookahead == 'c') ADVANCE(2026); + if (lookahead == 'c') ADVANCE(785); END_STATE(); case 636: - if (lookahead == 'c') ADVANCE(786); + if (lookahead == 'c') ADVANCE(1608); END_STATE(); case 637: - if (lookahead == 'c') ADVANCE(1609); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'd') ADVANCE(1456); + if (lookahead == 'i') ADVANCE(1321); END_STATE(); case 638: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'd') ADVANCE(1457); - if (lookahead == 'i') ADVANCE(1322); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'e') ADVANCE(1330); + if (lookahead == 'i') ADVANCE(1331); + if (lookahead == 'o') ADVANCE(1220); END_STATE(); case 639: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'e') ADVANCE(1331); - if (lookahead == 'i') ADVANCE(1332); - if (lookahead == 'o') ADVANCE(1221); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'e') ADVANCE(1864); + if (lookahead == 'm') ADVANCE(1170); + if (lookahead == 't') ADVANCE(508); END_STATE(); case 640: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'e') ADVANCE(1865); - if (lookahead == 'm') ADVANCE(1171); - if (lookahead == 't') ADVANCE(509); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'e') ADVANCE(1641); END_STATE(); case 641: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'e') ADVANCE(1642); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'g') ADVANCE(786); + if (lookahead == 't') ADVANCE(1041); END_STATE(); case 642: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'g') ADVANCE(787); - if (lookahead == 't') ADVANCE(1042); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'g') ADVANCE(1140); END_STATE(); case 643: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'g') ADVANCE(1141); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'h') ADVANCE(19); END_STATE(); case 644: - if (lookahead == 'c') ADVANCE(1609); + if (lookahead == 'c') ADVANCE(1608); if (lookahead == 'h') ADVANCE(19); + if (lookahead == 't') ADVANCE(1679); END_STATE(); case 645: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'h') ADVANCE(19); - if (lookahead == 't') ADVANCE(1680); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'i') ADVANCE(19); END_STATE(); case 646: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'i') ADVANCE(19); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'i') ADVANCE(1321); END_STATE(); case 647: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'i') ADVANCE(1322); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'i') ADVANCE(1326); END_STATE(); case 648: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'i') ADVANCE(1327); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'i') ADVANCE(1368); END_STATE(); case 649: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'i') ADVANCE(1369); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'l') ADVANCE(437); + if (lookahead == 't') ADVANCE(1679); END_STATE(); case 650: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'l') ADVANCE(438); - if (lookahead == 't') ADVANCE(1680); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'l') ADVANCE(978); END_STATE(); case 651: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'l') ADVANCE(979); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'l') ADVANCE(465); END_STATE(); case 652: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'l') ADVANCE(466); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'l') ADVANCE(465); + if (lookahead == 'o') ADVANCE(1216); END_STATE(); case 653: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'l') ADVANCE(466); - if (lookahead == 'o') ADVANCE(1217); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'q') ADVANCE(705); END_STATE(); case 654: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'q') ADVANCE(706); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 's') ADVANCE(1123); END_STATE(); case 655: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 's') ADVANCE(1124); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 't') ADVANCE(19); + if (lookahead == 'y') ADVANCE(1346); END_STATE(); case 656: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 't') ADVANCE(19); - if (lookahead == 'y') ADVANCE(1347); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 't') ADVANCE(1576); END_STATE(); case 657: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 't') ADVANCE(1577); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 't') ADVANCE(1679); END_STATE(); case 658: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 't') ADVANCE(1680); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'u') ADVANCE(589); END_STATE(); case 659: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'u') ADVANCE(590); + if (lookahead == 'c') ADVANCE(1608); + if (lookahead == 'u') ADVANCE(598); END_STATE(); case 660: - if (lookahead == 'c') ADVANCE(1609); - if (lookahead == 'u') ADVANCE(599); + if (lookahead == 'c') ADVANCE(390); + if (lookahead == 'l') ADVANCE(770); + if (lookahead == 'q') ADVANCE(1932); + if (lookahead == 's') ADVANCE(1041); END_STATE(); case 661: - if (lookahead == 'c') ADVANCE(391); - if (lookahead == 'l') ADVANCE(771); - if (lookahead == 'q') ADVANCE(1933); - if (lookahead == 's') ADVANCE(1042); + if (lookahead == 'c') ADVANCE(390); + if (lookahead == 'q') ADVANCE(1932); + if (lookahead == 'r') ADVANCE(771); + if (lookahead == 's') ADVANCE(1041); END_STATE(); case 662: - if (lookahead == 'c') ADVANCE(391); - if (lookahead == 'q') ADVANCE(1933); - if (lookahead == 'r') ADVANCE(772); - if (lookahead == 's') ADVANCE(1042); + if (lookahead == 'c') ADVANCE(1208); + if (lookahead == 'r') ADVANCE(1967); END_STATE(); case 663: - if (lookahead == 'c') ADVANCE(1209); - if (lookahead == 'r') ADVANCE(1968); + if (lookahead == 'c') ADVANCE(1375); + if (lookahead == 'i') ADVANCE(1445); + if (lookahead == 'm') ADVANCE(1121); + if (lookahead == 'p') ADVANCE(19); + if (lookahead == 't') ADVANCE(877); END_STATE(); case 664: - if (lookahead == 'c') ADVANCE(1376); - if (lookahead == 'i') ADVANCE(1446); - if (lookahead == 'm') ADVANCE(1122); - if (lookahead == 'p') ADVANCE(19); - if (lookahead == 't') ADVANCE(878); + if (lookahead == 'c') ADVANCE(477); + if (lookahead == 's') ADVANCE(1913); + if (lookahead == 'u') ADVANCE(82); END_STATE(); case 665: - if (lookahead == 'c') ADVANCE(478); - if (lookahead == 's') ADVANCE(1914); - if (lookahead == 'u') ADVANCE(82); + if (lookahead == 'c') ADVANCE(1816); END_STATE(); case 666: - if (lookahead == 'c') ADVANCE(1817); + if (lookahead == 'c') ADVANCE(1199); + if (lookahead == 'r') ADVANCE(1970); END_STATE(); case 667: - if (lookahead == 'c') ADVANCE(1200); - if (lookahead == 'r') ADVANCE(1971); + if (lookahead == 'c') ADVANCE(1148); + if (lookahead == 's') ADVANCE(1115); + if (lookahead == 'u') ADVANCE(484); + if (lookahead == 'v') ADVANCE(1583); END_STATE(); case 668: - if (lookahead == 'c') ADVANCE(1149); - if (lookahead == 's') ADVANCE(1116); - if (lookahead == 'u') ADVANCE(485); - if (lookahead == 'v') ADVANCE(1584); - END_STATE(); - case 669: - if (lookahead == 'c') ADVANCE(1148); - if (lookahead == 'e') ADVANCE(745); - if (lookahead == 'f') ADVANCE(1609); - if (lookahead == 'o') ADVANCE(1539); + if (lookahead == 'c') ADVANCE(1147); + if (lookahead == 'e') ADVANCE(744); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'o') ADVANCE(1538); if (lookahead == 'p') ADVANCE(19); if (lookahead == 'r') ADVANCE(133); - if (lookahead == 's') ADVANCE(637); + if (lookahead == 's') ADVANCE(636); + END_STATE(); + case 669: + if (lookahead == 'c') ADVANCE(1147); + if (lookahead == 'e') ADVANCE(773); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'o') ADVANCE(1538); + if (lookahead == 's') ADVANCE(636); END_STATE(); case 670: - if (lookahead == 'c') ADVANCE(1148); - if (lookahead == 'e') ADVANCE(774); - if (lookahead == 'f') ADVANCE(1609); - if (lookahead == 'o') ADVANCE(1539); - if (lookahead == 's') ADVANCE(637); + if (lookahead == 'c') ADVANCE(1920); END_STATE(); case 671: - if (lookahead == 'c') ADVANCE(1921); + if (lookahead == 'c') ADVANCE(1920); + if (lookahead == 'r') ADVANCE(1608); END_STATE(); case 672: - if (lookahead == 'c') ADVANCE(1921); - if (lookahead == 'r') ADVANCE(1609); + if (lookahead == 'c') ADVANCE(1920); + if (lookahead == 'r') ADVANCE(1644); END_STATE(); case 673: - if (lookahead == 'c') ADVANCE(1921); - if (lookahead == 'r') ADVANCE(1645); + if (lookahead == 'c') ADVANCE(1920); + if (lookahead == 's') ADVANCE(1816); END_STATE(); case 674: - if (lookahead == 'c') ADVANCE(1921); - if (lookahead == 's') ADVANCE(1817); + if (lookahead == 'c') ADVANCE(1920); + if (lookahead == 's') ADVANCE(1870); END_STATE(); case 675: - if (lookahead == 'c') ADVANCE(1921); - if (lookahead == 's') ADVANCE(1871); + if (lookahead == 'c') ADVANCE(1535); + if (lookahead == 'd') ADVANCE(1608); END_STATE(); case 676: - if (lookahead == 'c') ADVANCE(1536); - if (lookahead == 'd') ADVANCE(1609); + if (lookahead == 'c') ADVANCE(1953); END_STATE(); case 677: - if (lookahead == 'c') ADVANCE(1954); - END_STATE(); - case 678: ADVANCE_MAP( - 'c', 1954, - 'e', 1340, - 'g', 1727, - 'm', 592, - 'n', 987, + 'c', 1953, + 'e', 1339, + 'g', 1726, + 'm', 591, + 'n', 986, 'p', 19, - 'q', 1913, - 'r', 1620, + 'q', 1912, + 'r', 1619, 't', 84, ); END_STATE(); + case 678: + if (lookahead == 'c') ADVANCE(1953); + if (lookahead == 'm') ADVANCE(591); + if (lookahead == 'n') ADVANCE(978); + if (lookahead == 'p') ADVANCE(1305); + if (lookahead == 'r') ADVANCE(1608); + END_STATE(); case 679: - if (lookahead == 'c') ADVANCE(1954); - if (lookahead == 'm') ADVANCE(592); - if (lookahead == 'n') ADVANCE(979); - if (lookahead == 'p') ADVANCE(1306); - if (lookahead == 'r') ADVANCE(1609); + if (lookahead == 'c') ADVANCE(1953); + if (lookahead == 'm') ADVANCE(1349); + if (lookahead == 'p') ADVANCE(19); END_STATE(); case 680: - if (lookahead == 'c') ADVANCE(1954); - if (lookahead == 'm') ADVANCE(1350); - if (lookahead == 'p') ADVANCE(19); + if (lookahead == 'c') ADVANCE(1953); + if (lookahead == 'n') ADVANCE(978); + if (lookahead == 'r') ADVANCE(1654); END_STATE(); case 681: - if (lookahead == 'c') ADVANCE(1954); - if (lookahead == 'n') ADVANCE(979); - if (lookahead == 'r') ADVANCE(1655); + if (lookahead == 'c') ADVANCE(1953); + if (lookahead == 'p') ADVANCE(77); + if (lookahead == 'r') ADVANCE(821); END_STATE(); case 682: - if (lookahead == 'c') ADVANCE(1954); - if (lookahead == 'p') ADVANCE(77); - if (lookahead == 'r') ADVANCE(822); + if (lookahead == 'c') ADVANCE(1953); + if (lookahead == 'p') ADVANCE(159); + if (lookahead == 'y') ADVANCE(1266); END_STATE(); case 683: - if (lookahead == 'c') ADVANCE(1954); - if (lookahead == 'p') ADVANCE(159); - if (lookahead == 'y') ADVANCE(1267); + if (lookahead == 'c') ADVANCE(847); + if (lookahead == 't') ADVANCE(19); END_STATE(); case 684: - if (lookahead == 'c') ADVANCE(848); - if (lookahead == 't') ADVANCE(19); + if (lookahead == 'c') ADVANCE(1487); END_STATE(); case 685: - if (lookahead == 'c') ADVANCE(1488); + if (lookahead == 'c') ADVANCE(1197); END_STATE(); case 686: - if (lookahead == 'c') ADVANCE(1198); + if (lookahead == 'c') ADVANCE(1206); END_STATE(); case 687: - if (lookahead == 'c') ADVANCE(1207); + if (lookahead == 'c') ADVANCE(1206); + if (lookahead == 's') ADVANCE(798); END_STATE(); case 688: - if (lookahead == 'c') ADVANCE(1207); - if (lookahead == 's') ADVANCE(799); + if (lookahead == 'c') ADVANCE(1198); + if (lookahead == 'n') ADVANCE(372); END_STATE(); case 689: - if (lookahead == 'c') ADVANCE(1199); - if (lookahead == 'n') ADVANCE(372); + if (lookahead == 'c') ADVANCE(126); END_STATE(); case 690: - if (lookahead == 'c') ADVANCE(126); + if (lookahead == 'c') ADVANCE(1074); END_STATE(); case 691: - if (lookahead == 'c') ADVANCE(1075); + if (lookahead == 'c') ADVANCE(1467); + if (lookahead == 'i') ADVANCE(1375); END_STATE(); case 692: - if (lookahead == 'c') ADVANCE(1468); - if (lookahead == 'i') ADVANCE(1376); + if (lookahead == 'c') ADVANCE(1201); + if (lookahead == 'n') ADVANCE(1197); END_STATE(); case 693: - if (lookahead == 'c') ADVANCE(1202); - if (lookahead == 'n') ADVANCE(1198); + if (lookahead == 'c') ADVANCE(430); END_STATE(); case 694: - if (lookahead == 'c') ADVANCE(431); + if (lookahead == 'c') ADVANCE(1202); END_STATE(); case 695: - if (lookahead == 'c') ADVANCE(1203); + if (lookahead == 'c') ADVANCE(1216); + if (lookahead == 'i') ADVANCE(1772); + if (lookahead == 'p') ADVANCE(916); END_STATE(); case 696: - if (lookahead == 'c') ADVANCE(1217); - if (lookahead == 'i') ADVANCE(1773); - if (lookahead == 'p') ADVANCE(917); + if (lookahead == 'c') ADVANCE(1211); + if (lookahead == 'n') ADVANCE(1781); END_STATE(); case 697: - if (lookahead == 'c') ADVANCE(1212); - if (lookahead == 'n') ADVANCE(1782); + if (lookahead == 'c') ADVANCE(539); + if (lookahead == 'r') ADVANCE(1399); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 698: - if (lookahead == 'c') ADVANCE(540); - if (lookahead == 'r') ADVANCE(1400); - if (lookahead == 't') ADVANCE(391); + if (lookahead == 'c') ADVANCE(1203); + if (lookahead == 'k') ADVANCE(1966); END_STATE(); case 699: - if (lookahead == 'c') ADVANCE(1204); - if (lookahead == 'k') ADVANCE(1967); + if (lookahead == 'c') ADVANCE(620); END_STATE(); case 700: - if (lookahead == 'c') ADVANCE(621); + if (lookahead == 'c') ADVANCE(784); END_STATE(); case 701: - if (lookahead == 'c') ADVANCE(785); + if (lookahead == 'c') ADVANCE(1055); END_STATE(); case 702: - if (lookahead == 'c') ADVANCE(1056); + if (lookahead == 'c') ADVANCE(1661); END_STATE(); case 703: - if (lookahead == 'c') ADVANCE(1662); + if (lookahead == 'c') ADVANCE(1661); + if (lookahead == 'd') ADVANCE(19); + if (lookahead == 'n') ADVANCE(1923); END_STATE(); case 704: - if (lookahead == 'c') ADVANCE(1662); - if (lookahead == 'd') ADVANCE(19); - if (lookahead == 'n') ADVANCE(1924); + if (lookahead == 'c') ADVANCE(1781); END_STATE(); case 705: - if (lookahead == 'c') ADVANCE(1782); + if (lookahead == 'c') ADVANCE(1916); END_STATE(); case 706: - if (lookahead == 'c') ADVANCE(1917); + if (lookahead == 'c') ADVANCE(1815); END_STATE(); case 707: - if (lookahead == 'c') ADVANCE(1816); + if (lookahead == 'c') ADVANCE(458); END_STATE(); case 708: - if (lookahead == 'c') ADVANCE(459); + if (lookahead == 'c') ADVANCE(1091); END_STATE(); case 709: - if (lookahead == 'c') ADVANCE(1092); + if (lookahead == 'c') ADVANCE(1091); + if (lookahead == 'r') ADVANCE(19); END_STATE(); case 710: - if (lookahead == 'c') ADVANCE(1092); - if (lookahead == 'r') ADVANCE(19); + if (lookahead == 'c') ADVANCE(924); END_STATE(); case 711: - if (lookahead == 'c') ADVANCE(925); + if (lookahead == 'c') ADVANCE(1650); + if (lookahead == 'd') ADVANCE(73); + if (lookahead == 'n') ADVANCE(1931); END_STATE(); case 712: - if (lookahead == 'c') ADVANCE(1651); - if (lookahead == 'd') ADVANCE(73); - if (lookahead == 'n') ADVANCE(1932); + if (lookahead == 'c') ADVANCE(1902); END_STATE(); case 713: - if (lookahead == 'c') ADVANCE(1903); + if (lookahead == 'c') ADVANCE(1889); END_STATE(); case 714: - if (lookahead == 'c') ADVANCE(1890); + if (lookahead == 'c') ADVANCE(920); END_STATE(); case 715: - if (lookahead == 'c') ADVANCE(921); + if (lookahead == 'c') ADVANCE(1873); END_STATE(); case 716: - if (lookahead == 'c') ADVANCE(1874); + if (lookahead == 'c') ADVANCE(1149); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'm') ADVANCE(457); + if (lookahead == 'o') ADVANCE(1538); + if (lookahead == 's') ADVANCE(640); + if (lookahead == 'u') ADVANCE(1204); END_STATE(); case 717: - if (lookahead == 'c') ADVANCE(1150); - if (lookahead == 'f') ADVANCE(1609); - if (lookahead == 'm') ADVANCE(458); - if (lookahead == 'o') ADVANCE(1539); - if (lookahead == 's') ADVANCE(641); - if (lookahead == 'u') ADVANCE(1205); + if (lookahead == 'c') ADVANCE(1149); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'o') ADVANCE(1538); + if (lookahead == 's') ADVANCE(640); + if (lookahead == 'u') ADVANCE(1204); END_STATE(); case 718: - if (lookahead == 'c') ADVANCE(1150); - if (lookahead == 'f') ADVANCE(1609); - if (lookahead == 'o') ADVANCE(1539); - if (lookahead == 's') ADVANCE(641); - if (lookahead == 'u') ADVANCE(1205); + if (lookahead == 'c') ADVANCE(1508); + if (lookahead == 'i') ADVANCE(1383); + if (lookahead == 't') ADVANCE(1643); END_STATE(); case 719: - if (lookahead == 'c') ADVANCE(1509); - if (lookahead == 'i') ADVANCE(1384); - if (lookahead == 't') ADVANCE(1644); + if (lookahead == 'c') ADVANCE(1508); + if (lookahead == 't') ADVANCE(1643); END_STATE(); case 720: - if (lookahead == 'c') ADVANCE(1509); - if (lookahead == 't') ADVANCE(1644); + if (lookahead == 'c') ADVANCE(1210); END_STATE(); case 721: - if (lookahead == 'c') ADVANCE(1211); + if (lookahead == 'c') ADVANCE(890); END_STATE(); case 722: - if (lookahead == 'c') ADVANCE(891); + if (lookahead == 'c') ADVANCE(890); + if (lookahead == 'h') ADVANCE(377); END_STATE(); case 723: - if (lookahead == 'c') ADVANCE(891); - if (lookahead == 'h') ADVANCE(377); + if (lookahead == 'c') ADVANCE(497); END_STATE(); case 724: - if (lookahead == 'c') ADVANCE(498); + if (lookahead == 'c') ADVANCE(1281); END_STATE(); case 725: - if (lookahead == 'c') ADVANCE(1282); + if (lookahead == 'c') ADVANCE(1705); + if (lookahead == 'm') ADVANCE(1493); END_STATE(); case 726: - if (lookahead == 'c') ADVANCE(1706); - if (lookahead == 'm') ADVANCE(1494); + if (lookahead == 'c') ADVANCE(501); END_STATE(); case 727: - if (lookahead == 'c') ADVANCE(502); + if (lookahead == 'c') ADVANCE(1888); END_STATE(); case 728: - if (lookahead == 'c') ADVANCE(1889); + if (lookahead == 'c') ADVANCE(1476); + if (lookahead == 'e') ADVANCE(1534); + if (lookahead == 'p') ADVANCE(1678); + if (lookahead == 's') ADVANCE(1133); END_STATE(); case 729: - if (lookahead == 'c') ADVANCE(1477); - if (lookahead == 'e') ADVANCE(1535); - if (lookahead == 'p') ADVANCE(1679); - if (lookahead == 's') ADVANCE(1134); + if (lookahead == 'c') ADVANCE(1265); END_STATE(); case 730: - if (lookahead == 'c') ADVANCE(1266); + if (lookahead == 'c') ADVANCE(504); END_STATE(); case 731: - if (lookahead == 'c') ADVANCE(505); + if (lookahead == 'c') ADVANCE(542); + if (lookahead == 'm') ADVANCE(1569); + if (lookahead == 'p') ADVANCE(1776); + if (lookahead == 'r') ADVANCE(1422); + if (lookahead == 't') ADVANCE(1984); END_STATE(); case 732: - if (lookahead == 'c') ADVANCE(543); - if (lookahead == 'm') ADVANCE(1570); - if (lookahead == 'p') ADVANCE(1777); - if (lookahead == 'r') ADVANCE(1423); - if (lookahead == 't') ADVANCE(1985); + if (lookahead == 'c') ADVANCE(549); END_STATE(); case 733: - if (lookahead == 'c') ADVANCE(550); + if (lookahead == 'c') ADVANCE(948); END_STATE(); case 734: - if (lookahead == 'c') ADVANCE(949); + if (lookahead == 'd') ADVANCE(1456); END_STATE(); case 735: - if (lookahead == 'd') ADVANCE(1457); + if (lookahead == 'd') ADVANCE(1456); + if (lookahead == 'i') ADVANCE(1298); + if (lookahead == 'r') ADVANCE(1087); END_STATE(); case 736: - if (lookahead == 'd') ADVANCE(1457); - if (lookahead == 'i') ADVANCE(1299); - if (lookahead == 'r') ADVANCE(1088); + if (lookahead == 'd') ADVANCE(1456); + if (lookahead == 'p') ADVANCE(955); + if (lookahead == 't') ADVANCE(1158); END_STATE(); case 737: - if (lookahead == 'd') ADVANCE(1457); - if (lookahead == 'p') ADVANCE(956); - if (lookahead == 't') ADVANCE(1159); + if (lookahead == 'd') ADVANCE(1456); + if (lookahead == 'p') ADVANCE(1306); + if (lookahead == 't') ADVANCE(1162); END_STATE(); case 738: - if (lookahead == 'd') ADVANCE(1457); - if (lookahead == 'p') ADVANCE(1307); - if (lookahead == 't') ADVANCE(1163); + if (lookahead == 'd') ADVANCE(1456); + if (lookahead == 'r') ADVANCE(1087); END_STATE(); case 739: - if (lookahead == 'd') ADVANCE(1457); - if (lookahead == 'r') ADVANCE(1088); + if (lookahead == 'd') ADVANCE(19); END_STATE(); case 740: if (lookahead == 'd') ADVANCE(19); + if (lookahead == 'f') ADVANCE(463); + if (lookahead == 'p') ADVANCE(215); END_STATE(); case 741: if (lookahead == 'd') ADVANCE(19); - if (lookahead == 'f') ADVANCE(464); - if (lookahead == 'p') ADVANCE(215); + if (lookahead == 'l') ADVANCE(784); END_STATE(); case 742: - if (lookahead == 'd') ADVANCE(19); - if (lookahead == 'l') ADVANCE(785); - END_STATE(); - case 743: if (lookahead == 'd') ADVANCE(19); if (lookahead == 'u') ADVANCE(164); END_STATE(); - case 744: + case 743: if (lookahead == 'd') ADVANCE(78); if (lookahead == 'g') ADVANCE(118); END_STATE(); + case 744: + if (lookahead == 'd') ADVANCE(584); + if (lookahead == 'i') ADVANCE(879); + END_STATE(); case 745: - if (lookahead == 'd') ADVANCE(585); - if (lookahead == 'i') ADVANCE(880); + if (lookahead == 'd') ADVANCE(1302); END_STATE(); case 746: - if (lookahead == 'd') ADVANCE(1303); + if (lookahead == 'd') ADVANCE(371); END_STATE(); case 747: - if (lookahead == 'd') ADVANCE(371); + if (lookahead == 'd') ADVANCE(347); END_STATE(); case 748: - if (lookahead == 'd') ADVANCE(347); + if (lookahead == 'd') ADVANCE(337); END_STATE(); case 749: - if (lookahead == 'd') ADVANCE(337); + if (lookahead == 'd') ADVANCE(390); END_STATE(); case 750: - if (lookahead == 'd') ADVANCE(391); + if (lookahead == 'd') ADVANCE(612); + if (lookahead == 'r') ADVANCE(103); END_STATE(); case 751: - if (lookahead == 'd') ADVANCE(613); - if (lookahead == 'r') ADVANCE(103); + if (lookahead == 'd') ADVANCE(150); END_STATE(); case 752: - if (lookahead == 'd') ADVANCE(150); + if (lookahead == 'd') ADVANCE(61); END_STATE(); case 753: - if (lookahead == 'd') ADVANCE(61); + if (lookahead == 'd') ADVANCE(863); + if (lookahead == 'i') ADVANCE(1491); END_STATE(); case 754: - if (lookahead == 'd') ADVANCE(864); - if (lookahead == 'i') ADVANCE(1492); + if (lookahead == 'd') ADVANCE(117); END_STATE(); case 755: - if (lookahead == 'd') ADVANCE(117); + if (lookahead == 'd') ADVANCE(437); END_STATE(); case 756: - if (lookahead == 'd') ADVANCE(438); + if (lookahead == 'd') ADVANCE(456); END_STATE(); case 757: - if (lookahead == 'd') ADVANCE(457); + if (lookahead == 'd') ADVANCE(212); END_STATE(); case 758: - if (lookahead == 'd') ADVANCE(212); + if (lookahead == 'd') ADVANCE(130); END_STATE(); case 759: - if (lookahead == 'd') ADVANCE(130); + if (lookahead == 'd') ADVANCE(1124); END_STATE(); case 760: - if (lookahead == 'd') ADVANCE(1125); + if (lookahead == 'd') ADVANCE(1124); + if (lookahead == 'l') ADVANCE(1314); END_STATE(); case 761: - if (lookahead == 'd') ADVANCE(1125); - if (lookahead == 'l') ADVANCE(1315); + if (lookahead == 'd') ADVANCE(784); END_STATE(); case 762: - if (lookahead == 'd') ADVANCE(785); + if (lookahead == 'd') ADVANCE(1928); END_STATE(); case 763: - if (lookahead == 'd') ADVANCE(1929); + if (lookahead == 'd') ADVANCE(1928); + if (lookahead == 'p') ADVANCE(1530); END_STATE(); case 764: - if (lookahead == 'd') ADVANCE(1929); - if (lookahead == 'p') ADVANCE(1531); + if (lookahead == 'd') ADVANCE(1082); END_STATE(); case 765: - if (lookahead == 'd') ADVANCE(1083); + if (lookahead == 'd') ADVANCE(1082); + if (lookahead == 'm') ADVANCE(1569); + if (lookahead == 'n') ADVANCE(216); END_STATE(); case 766: - if (lookahead == 'd') ADVANCE(1083); - if (lookahead == 'm') ADVANCE(1570); - if (lookahead == 'n') ADVANCE(216); + if (lookahead == 'd') ADVANCE(1807); + if (lookahead == 'u') ADVANCE(1051); END_STATE(); case 767: - if (lookahead == 'd') ADVANCE(1808); - if (lookahead == 'u') ADVANCE(1052); + if (lookahead == 'd') ADVANCE(799); END_STATE(); case 768: - if (lookahead == 'd') ADVANCE(800); + if (lookahead == 'd') ADVANCE(1770); END_STATE(); case 769: - if (lookahead == 'd') ADVANCE(1771); + if (lookahead == 'd') ADVANCE(1863); END_STATE(); case 770: - if (lookahead == 'd') ADVANCE(1864); + if (lookahead == 'd') ADVANCE(1051); END_STATE(); case 771: - if (lookahead == 'd') ADVANCE(1052); + if (lookahead == 'd') ADVANCE(1051); + if (lookahead == 'u') ADVANCE(1807); END_STATE(); case 772: - if (lookahead == 'd') ADVANCE(1052); - if (lookahead == 'u') ADVANCE(1808); + if (lookahead == 'd') ADVANCE(1157); + if (lookahead == 'n') ADVANCE(1892); END_STATE(); case 773: - if (lookahead == 'd') ADVANCE(1158); - if (lookahead == 'n') ADVANCE(1893); + if (lookahead == 'd') ADVANCE(1003); END_STATE(); case 774: - if (lookahead == 'd') ADVANCE(1004); + if (lookahead == 'd') ADVANCE(1449); + if (lookahead == 'u') ADVANCE(1535); END_STATE(); case 775: - if (lookahead == 'd') ADVANCE(1450); - if (lookahead == 'u') ADVANCE(1536); + if (lookahead == 'd') ADVANCE(868); + if (lookahead == 'p') ADVANCE(954); END_STATE(); case 776: - if (lookahead == 'd') ADVANCE(869); - if (lookahead == 'p') ADVANCE(955); + if (lookahead == 'd') ADVANCE(864); + if (lookahead == 'r') ADVANCE(19); END_STATE(); case 777: - if (lookahead == 'd') ADVANCE(865); - if (lookahead == 'r') ADVANCE(19); + if (lookahead == 'd') ADVANCE(881); END_STATE(); case 778: - if (lookahead == 'd') ADVANCE(882); + if (lookahead == 'd') ADVANCE(1472); END_STATE(); case 779: - if (lookahead == 'd') ADVANCE(1473); + if (lookahead == 'd') ADVANCE(1121); END_STATE(); case 780: - if (lookahead == 'd') ADVANCE(1122); + if (lookahead == 'd') ADVANCE(1121); + if (lookahead == 'i') ADVANCE(1216); END_STATE(); case 781: - if (lookahead == 'd') ADVANCE(1122); - if (lookahead == 'i') ADVANCE(1217); + if (lookahead == 'd') ADVANCE(883); END_STATE(); case 782: - if (lookahead == 'd') ADVANCE(884); + if (lookahead == 'd') ADVANCE(503); + if (lookahead == 'e') ADVANCE(1551); + if (lookahead == 'l') ADVANCE(524); + if (lookahead == 'p') ADVANCE(93); + if (lookahead == 'r') ADVANCE(531); + if (lookahead == 'v') ADVANCE(861); + if (lookahead == 'w') ADVANCE(783); END_STATE(); case 783: - if (lookahead == 'd') ADVANCE(504); - if (lookahead == 'e') ADVANCE(1552); - if (lookahead == 'l') ADVANCE(525); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(532); - if (lookahead == 'v') ADVANCE(862); - if (lookahead == 'w') ADVANCE(784); + if (lookahead == 'e') ADVANCE(739); END_STATE(); case 784: - if (lookahead == 'e') ADVANCE(740); + if (lookahead == 'e') ADVANCE(19); END_STATE(); case 785: if (lookahead == 'e') ADVANCE(19); + if (lookahead == 'k') ADVANCE(820); END_STATE(); case 786: if (lookahead == 'e') ADVANCE(19); - if (lookahead == 'k') ADVANCE(821); + if (lookahead == 'l') ADVANCE(1130); + if (lookahead == 'p') ADVANCE(510); END_STATE(); case 787: if (lookahead == 'e') ADVANCE(19); - if (lookahead == 'l') ADVANCE(1131); - if (lookahead == 'p') ADVANCE(511); + if (lookahead == 'r') ADVANCE(587); END_STATE(); case 788: if (lookahead == 'e') ADVANCE(19); - if (lookahead == 'r') ADVANCE(588); + if (lookahead == 's') ADVANCE(1222); END_STATE(); case 789: if (lookahead == 'e') ADVANCE(19); - if (lookahead == 's') ADVANCE(1223); + if (lookahead == 't') ADVANCE(135); END_STATE(); case 790: if (lookahead == 'e') ADVANCE(19); - if (lookahead == 't') ADVANCE(135); + if (lookahead == 'u') ADVANCE(1865); END_STATE(); case 791: - if (lookahead == 'e') ADVANCE(19); - if (lookahead == 'u') ADVANCE(1866); + if (lookahead == 'e') ADVANCE(298); END_STATE(); case 792: - if (lookahead == 'e') ADVANCE(298); + if (lookahead == 'e') ADVANCE(176); END_STATE(); case 793: - if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'e') ADVANCE(1971); END_STATE(); case 794: - if (lookahead == 'e') ADVANCE(1972); + if (lookahead == 'e') ADVANCE(1971); + if (lookahead == 'v') ADVANCE(596); END_STATE(); case 795: - if (lookahead == 'e') ADVANCE(1972); - if (lookahead == 'v') ADVANCE(597); + if (lookahead == 'e') ADVANCE(963); + if (lookahead == 'p') ADVANCE(1044); END_STATE(); case 796: - if (lookahead == 'e') ADVANCE(964); - if (lookahead == 'p') ADVANCE(1045); + if (lookahead == 'e') ADVANCE(196); + if (lookahead == 'o') ADVANCE(1816); END_STATE(); case 797: - if (lookahead == 'e') ADVANCE(196); - if (lookahead == 'o') ADVANCE(1817); + if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'l') ADVANCE(1273); + if (lookahead == 'r') ADVANCE(586); END_STATE(); case 798: - if (lookahead == 'e') ADVANCE(92); - if (lookahead == 'l') ADVANCE(1274); - if (lookahead == 'r') ADVANCE(587); + if (lookahead == 'e') ADVANCE(295); END_STATE(); case 799: - if (lookahead == 'e') ADVANCE(295); + if (lookahead == 'e') ADVANCE(43); END_STATE(); case 800: - if (lookahead == 'e') ADVANCE(43); + if (lookahead == 'e') ADVANCE(22); END_STATE(); case 801: - if (lookahead == 'e') ADVANCE(22); + if (lookahead == 'e') ADVANCE(16); END_STATE(); case 802: - if (lookahead == 'e') ADVANCE(16); + if (lookahead == 'e') ADVANCE(299); END_STATE(); case 803: - if (lookahead == 'e') ADVANCE(299); + if (lookahead == 'e') ADVANCE(297); END_STATE(); case 804: - if (lookahead == 'e') ADVANCE(297); + if (lookahead == 'e') ADVANCE(49); END_STATE(); case 805: - if (lookahead == 'e') ADVANCE(49); + if (lookahead == 'e') ADVANCE(562); END_STATE(); case 806: - if (lookahead == 'e') ADVANCE(563); + if (lookahead == 'e') ADVANCE(1352); END_STATE(); case 807: - if (lookahead == 'e') ADVANCE(1353); + if (lookahead == 'e') ADVANCE(23); END_STATE(); case 808: - if (lookahead == 'e') ADVANCE(23); + if (lookahead == 'e') ADVANCE(324); END_STATE(); case 809: - if (lookahead == 'e') ADVANCE(324); + if (lookahead == 'e') ADVANCE(355); END_STATE(); case 810: - if (lookahead == 'e') ADVANCE(355); + if (lookahead == 'e') ADVANCE(115); END_STATE(); case 811: - if (lookahead == 'e') ADVANCE(115); + if (lookahead == 'e') ADVANCE(292); END_STATE(); case 812: - if (lookahead == 'e') ADVANCE(292); + if (lookahead == 'e') ADVANCE(382); END_STATE(); case 813: - if (lookahead == 'e') ADVANCE(382); + if (lookahead == 'e') ADVANCE(26); END_STATE(); case 814: - if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'e') ADVANCE(113); END_STATE(); case 815: - if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'e') ADVANCE(365); END_STATE(); case 816: - if (lookahead == 'e') ADVANCE(365); + if (lookahead == 'e') ADVANCE(1608); END_STATE(); case 817: - if (lookahead == 'e') ADVANCE(1609); + if (lookahead == 'e') ADVANCE(390); + if (lookahead == 'p') ADVANCE(86); + if (lookahead == 's') ADVANCE(390); END_STATE(); case 818: - if (lookahead == 'e') ADVANCE(391); - if (lookahead == 'p') ADVANCE(86); - if (lookahead == 's') ADVANCE(391); + if (lookahead == 'e') ADVANCE(1375); END_STATE(); case 819: - if (lookahead == 'e') ADVANCE(1376); + if (lookahead == 'e') ADVANCE(1694); + if (lookahead == 'i') ADVANCE(688); END_STATE(); case 820: - if (lookahead == 'e') ADVANCE(1695); - if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'e') ADVANCE(1816); END_STATE(); case 821: - if (lookahead == 'e') ADVANCE(1817); + if (lookahead == 'e') ADVANCE(1816); + if (lookahead == 'o') ADVANCE(1362); END_STATE(); case 822: - if (lookahead == 'e') ADVANCE(1817); - if (lookahead == 'o') ADVANCE(1363); + if (lookahead == 'e') ADVANCE(287); END_STATE(); case 823: - if (lookahead == 'e') ADVANCE(287); + if (lookahead == 'e') ADVANCE(2013); END_STATE(); case 824: - if (lookahead == 'e') ADVANCE(2014); + if (lookahead == 'e') ADVANCE(773); END_STATE(); case 825: - if (lookahead == 'e') ADVANCE(774); + if (lookahead == 'e') ADVANCE(1710); + if (lookahead == 'i') ADVANCE(696); + if (lookahead == 'k') ADVANCE(433); + if (lookahead == 'o') ADVANCE(1610); END_STATE(); case 826: - if (lookahead == 'e') ADVANCE(1711); - if (lookahead == 'i') ADVANCE(697); - if (lookahead == 'k') ADVANCE(434); - if (lookahead == 'o') ADVANCE(1611); + if (lookahead == 'e') ADVANCE(964); END_STATE(); case 827: - if (lookahead == 'e') ADVANCE(965); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 828: - if (lookahead == 'e') ADVANCE(192); + if (lookahead == 'e') ADVANCE(326); END_STATE(); case 829: - if (lookahead == 'e') ADVANCE(326); + if (lookahead == 'e') ADVANCE(373); END_STATE(); case 830: - if (lookahead == 'e') ADVANCE(373); + if (lookahead == 'e') ADVANCE(1787); END_STATE(); case 831: - if (lookahead == 'e') ADVANCE(1788); + if (lookahead == 'e') ADVANCE(272); END_STATE(); case 832: - if (lookahead == 'e') ADVANCE(272); + if (lookahead == 'e') ADVANCE(1590); END_STATE(); case 833: - if (lookahead == 'e') ADVANCE(1591); + if (lookahead == 'e') ADVANCE(315); END_STATE(); case 834: - if (lookahead == 'e') ADVANCE(315); + if (lookahead == 'e') ADVANCE(774); END_STATE(); case 835: - if (lookahead == 'e') ADVANCE(775); + if (lookahead == 'e') ADVANCE(404); END_STATE(); case 836: - if (lookahead == 'e') ADVANCE(405); + if (lookahead == 'e') ADVANCE(404); + if (lookahead == 'i') ADVANCE(1321); END_STATE(); case 837: - if (lookahead == 'e') ADVANCE(405); - if (lookahead == 'i') ADVANCE(1322); + if (lookahead == 'e') ADVANCE(968); END_STATE(); case 838: - if (lookahead == 'e') ADVANCE(969); + if (lookahead == 'e') ADVANCE(201); END_STATE(); case 839: - if (lookahead == 'e') ADVANCE(201); + if (lookahead == 'e') ADVANCE(296); END_STATE(); case 840: - if (lookahead == 'e') ADVANCE(296); + if (lookahead == 'e') ADVANCE(779); + if (lookahead == 'i') ADVANCE(1675); + if (lookahead == 'y') ADVANCE(19); END_STATE(); case 841: - if (lookahead == 'e') ADVANCE(780); - if (lookahead == 'i') ADVANCE(1676); + if (lookahead == 'e') ADVANCE(779); if (lookahead == 'y') ADVANCE(19); END_STATE(); case 842: - if (lookahead == 'e') ADVANCE(780); - if (lookahead == 'y') ADVANCE(19); + if (lookahead == 'e') ADVANCE(2009); END_STATE(); case 843: - if (lookahead == 'e') ADVANCE(2010); + if (lookahead == 'e') ADVANCE(1594); + if (lookahead == 'v') ADVANCE(861); + if (lookahead == 'w') ADVANCE(824); END_STATE(); case 844: - if (lookahead == 'e') ADVANCE(1595); - if (lookahead == 'v') ADVANCE(862); - if (lookahead == 'w') ADVANCE(825); + if (lookahead == 'e') ADVANCE(959); END_STATE(); case 845: - if (lookahead == 'e') ADVANCE(960); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 846: - if (lookahead == 'e') ADVANCE(204); + if (lookahead == 'e') ADVANCE(1596); END_STATE(); case 847: - if (lookahead == 'e') ADVANCE(1597); + if (lookahead == 'e') ADVANCE(1197); END_STATE(); case 848: - if (lookahead == 'e') ADVANCE(1198); + if (lookahead == 'e') ADVANCE(1365); END_STATE(); case 849: - if (lookahead == 'e') ADVANCE(1366); + if (lookahead == 'e') ADVANCE(1595); END_STATE(); case 850: - if (lookahead == 'e') ADVANCE(1596); + if (lookahead == 'e') ADVANCE(1837); END_STATE(); case 851: - if (lookahead == 'e') ADVANCE(1838); + if (lookahead == 'e') ADVANCE(1761); END_STATE(); case 852: - if (lookahead == 'e') ADVANCE(1762); + if (lookahead == 'e') ADVANCE(1772); END_STATE(); case 853: - if (lookahead == 'e') ADVANCE(1773); + if (lookahead == 'e') ADVANCE(1855); END_STATE(); case 854: - if (lookahead == 'e') ADVANCE(1856); + if (lookahead == 'e') ADVANCE(1216); END_STATE(); case 855: - if (lookahead == 'e') ADVANCE(1217); + if (lookahead == 'e') ADVANCE(746); END_STATE(); case 856: - if (lookahead == 'e') ADVANCE(747); + if (lookahead == 'e') ADVANCE(557); END_STATE(); case 857: - if (lookahead == 'e') ADVANCE(558); + if (lookahead == 'e') ADVANCE(748); END_STATE(); case 858: - if (lookahead == 'e') ADVANCE(749); + if (lookahead == 'e') ADVANCE(1362); END_STATE(); case 859: - if (lookahead == 'e') ADVANCE(1363); + if (lookahead == 'e') ADVANCE(620); END_STATE(); case 860: - if (lookahead == 'e') ADVANCE(621); + if (lookahead == 'e') ADVANCE(751); END_STATE(); case 861: - if (lookahead == 'e') ADVANCE(752); + if (lookahead == 'e') ADVANCE(784); END_STATE(); case 862: - if (lookahead == 'e') ADVANCE(785); + if (lookahead == 'e') ADVANCE(768); END_STATE(); case 863: - if (lookahead == 'e') ADVANCE(769); + if (lookahead == 'e') ADVANCE(1616); END_STATE(); case 864: - if (lookahead == 'e') ADVANCE(1617); + if (lookahead == 'e') ADVANCE(1767); END_STATE(); case 865: - if (lookahead == 'e') ADVANCE(1768); + if (lookahead == 'e') ADVANCE(1534); + if (lookahead == 'k') ADVANCE(428); + if (lookahead == 'n') ADVANCE(1502); + if (lookahead == 'p') ADVANCE(1050); + if (lookahead == 'r') ADVANCE(153); + if (lookahead == 's') ADVANCE(1096); + if (lookahead == 't') ADVANCE(1067); END_STATE(); case 866: - if (lookahead == 'e') ADVANCE(1535); - if (lookahead == 'k') ADVANCE(429); - if (lookahead == 'n') ADVANCE(1503); - if (lookahead == 'p') ADVANCE(1051); - if (lookahead == 'r') ADVANCE(153); - if (lookahead == 's') ADVANCE(1097); - if (lookahead == 't') ADVANCE(1068); + if (lookahead == 'e') ADVANCE(1534); + if (lookahead == 'p') ADVANCE(1049); END_STATE(); case 867: - if (lookahead == 'e') ADVANCE(1535); - if (lookahead == 'p') ADVANCE(1050); + if (lookahead == 'e') ADVANCE(1778); END_STATE(); case 868: - if (lookahead == 'e') ADVANCE(1779); + if (lookahead == 'e') ADVANCE(1252); END_STATE(); case 869: - if (lookahead == 'e') ADVANCE(1253); + if (lookahead == 'e') ADVANCE(727); END_STATE(); case 870: - if (lookahead == 'e') ADVANCE(728); + if (lookahead == 'e') ADVANCE(1416); END_STATE(); case 871: - if (lookahead == 'e') ADVANCE(1417); + if (lookahead == 'e') ADVANCE(1809); END_STATE(); case 872: - if (lookahead == 'e') ADVANCE(1810); + if (lookahead == 'e') ADVANCE(1861); END_STATE(); case 873: - if (lookahead == 'e') ADVANCE(1862); + if (lookahead == 'e') ADVANCE(1780); END_STATE(); case 874: - if (lookahead == 'e') ADVANCE(1781); + if (lookahead == 'e') ADVANCE(1839); END_STATE(); case 875: - if (lookahead == 'e') ADVANCE(1840); + if (lookahead == 'e') ADVANCE(439); END_STATE(); case 876: - if (lookahead == 'e') ADVANCE(440); + if (lookahead == 'e') ADVANCE(800); END_STATE(); case 877: - if (lookahead == 'e') ADVANCE(801); + if (lookahead == 'e') ADVANCE(1388); END_STATE(); case 878: - if (lookahead == 'e') ADVANCE(1389); + if (lookahead == 'e') ADVANCE(1279); END_STATE(); case 879: - if (lookahead == 'e') ADVANCE(1280); + if (lookahead == 'e') ADVANCE(1656); END_STATE(); case 880: - if (lookahead == 'e') ADVANCE(1657); + if (lookahead == 'e') ADVANCE(478); END_STATE(); case 881: - if (lookahead == 'e') ADVANCE(479); + if (lookahead == 'e') ADVANCE(1770); END_STATE(); case 882: - if (lookahead == 'e') ADVANCE(1771); + if (lookahead == 'e') ADVANCE(462); END_STATE(); case 883: - if (lookahead == 'e') ADVANCE(463); + if (lookahead == 'e') ADVANCE(1771); END_STATE(); case 884: - if (lookahead == 'e') ADVANCE(1772); + if (lookahead == 'e') ADVANCE(1826); + if (lookahead == 'i') ADVANCE(1321); + if (lookahead == 'u') ADVANCE(2023); END_STATE(); case 885: - if (lookahead == 'e') ADVANCE(1827); - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'u') ADVANCE(2023); + if (lookahead == 'e') ADVANCE(1622); END_STATE(); case 886: - if (lookahead == 'e') ADVANCE(1623); + if (lookahead == 'e') ADVANCE(1729); END_STATE(); case 887: - if (lookahead == 'e') ADVANCE(1730); + if (lookahead == 'e') ADVANCE(1862); END_STATE(); case 888: - if (lookahead == 'e') ADVANCE(1863); + if (lookahead == 'e') ADVANCE(1693); END_STATE(); case 889: - if (lookahead == 'e') ADVANCE(1694); + if (lookahead == 'e') ADVANCE(1869); END_STATE(); case 890: - if (lookahead == 'e') ADVANCE(1870); + if (lookahead == 'e') ADVANCE(862); END_STATE(); case 891: - if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'e') ADVANCE(807); + if (lookahead == 'r') ADVANCE(1193); END_STATE(); case 892: - if (lookahead == 'e') ADVANCE(808); - if (lookahead == 'r') ADVANCE(1194); + if (lookahead == 'e') ADVANCE(1609); END_STATE(); case 893: - if (lookahead == 'e') ADVANCE(1610); + if (lookahead == 'e') ADVANCE(1703); + if (lookahead == 'i') ADVANCE(1375); END_STATE(); case 894: - if (lookahead == 'e') ADVANCE(1704); - if (lookahead == 'i') ADVANCE(1376); + if (lookahead == 'e') ADVANCE(1653); END_STATE(); case 895: - if (lookahead == 'e') ADVANCE(1654); + if (lookahead == 'e') ADVANCE(1731); END_STATE(); case 896: - if (lookahead == 'e') ADVANCE(1732); + if (lookahead == 'e') ADVANCE(1751); END_STATE(); case 897: - if (lookahead == 'e') ADVANCE(1752); + if (lookahead == 'e') ADVANCE(812); END_STATE(); case 898: - if (lookahead == 'e') ADVANCE(813); + if (lookahead == 'e') ADVANCE(1666); END_STATE(); case 899: - if (lookahead == 'e') ADVANCE(1667); + if (lookahead == 'e') ADVANCE(938); END_STATE(); case 900: - if (lookahead == 'e') ADVANCE(939); + if (lookahead == 'e') ADVANCE(1663); END_STATE(); case 901: - if (lookahead == 'e') ADVANCE(1664); + if (lookahead == 'e') ADVANCE(1626); END_STATE(); case 902: - if (lookahead == 'e') ADVANCE(1627); + if (lookahead == 'e') ADVANCE(1671); END_STATE(); case 903: - if (lookahead == 'e') ADVANCE(1672); + if (lookahead == 'e') ADVANCE(1629); END_STATE(); case 904: - if (lookahead == 'e') ADVANCE(1630); + if (lookahead == 'e') ADVANCE(969); END_STATE(); case 905: - if (lookahead == 'e') ADVANCE(970); + if (lookahead == 'e') ADVANCE(1973); + if (lookahead == 'i') ADVANCE(1016); END_STATE(); case 906: - if (lookahead == 'e') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1017); + if (lookahead == 'e') ADVANCE(1286); END_STATE(); case 907: - if (lookahead == 'e') ADVANCE(1287); + if (lookahead == 'e') ADVANCE(381); END_STATE(); case 908: - if (lookahead == 'e') ADVANCE(381); + if (lookahead == 'e') ADVANCE(756); END_STATE(); case 909: - if (lookahead == 'e') ADVANCE(757); + if (lookahead == 'e') ADVANCE(536); + if (lookahead == 'w') ADVANCE(536); END_STATE(); case 910: - if (lookahead == 'e') ADVANCE(537); - if (lookahead == 'w') ADVANCE(537); + if (lookahead == 'e') ADVANCE(966); END_STATE(); case 911: - if (lookahead == 'e') ADVANCE(967); - END_STATE(); - case 912: - if (lookahead == 'e') ADVANCE(967); + if (lookahead == 'e') ADVANCE(966); if (lookahead == 'l') ADVANCE(19); if (lookahead == 't') ADVANCE(225); END_STATE(); + case 912: + if (lookahead == 'e') ADVANCE(858); + END_STATE(); case 913: - if (lookahead == 'e') ADVANCE(859); + if (lookahead == 'e') ADVANCE(1798); END_STATE(); case 914: - if (lookahead == 'e') ADVANCE(1799); + if (lookahead == 'e') ADVANCE(759); END_STATE(); case 915: - if (lookahead == 'e') ADVANCE(760); + if (lookahead == 'e') ADVANCE(1351); END_STATE(); case 916: - if (lookahead == 'e') ADVANCE(1352); + if (lookahead == 'e') ADVANCE(712); + if (lookahead == 'o') ADVANCE(1432); END_STATE(); case 917: - if (lookahead == 'e') ADVANCE(713); - if (lookahead == 'o') ADVANCE(1433); + if (lookahead == 'e') ADVANCE(525); END_STATE(); case 918: - if (lookahead == 'e') ADVANCE(526); + if (lookahead == 'e') ADVANCE(1587); END_STATE(); case 919: - if (lookahead == 'e') ADVANCE(1588); + if (lookahead == 'e') ADVANCE(1691); END_STATE(); case 920: - if (lookahead == 'e') ADVANCE(1692); + if (lookahead == 'e') ADVANCE(1884); END_STATE(); case 921: - if (lookahead == 'e') ADVANCE(1885); + if (lookahead == 'e') ADVANCE(1884); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 922: - if (lookahead == 'e') ADVANCE(1885); - if (lookahead == 't') ADVANCE(391); + if (lookahead == 'e') ADVANCE(607); END_STATE(); case 923: - if (lookahead == 'e') ADVANCE(608); + if (lookahead == 'e') ADVANCE(970); END_STATE(); case 924: - if (lookahead == 'e') ADVANCE(971); + if (lookahead == 'e') ADVANCE(777); END_STATE(); case 925: - if (lookahead == 'e') ADVANCE(778); + if (lookahead == 'e') ADVANCE(713); END_STATE(); case 926: - if (lookahead == 'e') ADVANCE(714); + if (lookahead == 'e') ADVANCE(1788); END_STATE(); case 927: - if (lookahead == 'e') ADVANCE(1789); + if (lookahead == 'e') ADVANCE(1574); END_STATE(); case 928: - if (lookahead == 'e') ADVANCE(1575); + if (lookahead == 'e') ADVANCE(971); END_STATE(); case 929: - if (lookahead == 'e') ADVANCE(972); + if (lookahead == 'e') ADVANCE(1690); + if (lookahead == 'n') ADVANCE(320); END_STATE(); case 930: - if (lookahead == 'e') ADVANCE(1691); - if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'e') ADVANCE(715); END_STATE(); case 931: - if (lookahead == 'e') ADVANCE(716); + if (lookahead == 'e') ADVANCE(1442); END_STATE(); case 932: - if (lookahead == 'e') ADVANCE(1443); + if (lookahead == 'e') ADVANCE(972); END_STATE(); case 933: if (lookahead == 'e') ADVANCE(973); END_STATE(); case 934: - if (lookahead == 'e') ADVANCE(974); + if (lookahead == 'e') ADVANCE(1425); END_STATE(); case 935: - if (lookahead == 'e') ADVANCE(1426); + if (lookahead == 'e') ADVANCE(974); + if (lookahead == 'o') ADVANCE(1402); END_STATE(); case 936: - if (lookahead == 'e') ADVANCE(975); - if (lookahead == 'o') ADVANCE(1403); + if (lookahead == 'e') ADVANCE(1709); END_STATE(); case 937: - if (lookahead == 'e') ADVANCE(1710); + if (lookahead == 'e') ADVANCE(967); END_STATE(); case 938: - if (lookahead == 'e') ADVANCE(968); + if (lookahead == 'e') ADVANCE(1903); END_STATE(); case 939: - if (lookahead == 'e') ADVANCE(1904); + if (lookahead == 'e') ADVANCE(1756); END_STATE(); case 940: - if (lookahead == 'e') ADVANCE(1757); + if (lookahead == 'e') ADVANCE(1410); END_STATE(); case 941: - if (lookahead == 'e') ADVANCE(1411); + if (lookahead == 'e') ADVANCE(561); END_STATE(); case 942: - if (lookahead == 'e') ADVANCE(562); + if (lookahead == 'e') ADVANCE(1320); END_STATE(); case 943: - if (lookahead == 'e') ADVANCE(1321); + if (lookahead == 'e') ADVANCE(1018); END_STATE(); case 944: - if (lookahead == 'e') ADVANCE(1019); + if (lookahead == 'e') ADVANCE(1753); END_STATE(); case 945: - if (lookahead == 'e') ADVANCE(1754); + if (lookahead == 'e') ADVANCE(1890); END_STATE(); case 946: - if (lookahead == 'e') ADVANCE(1891); + if (lookahead == 'e') ADVANCE(1169); END_STATE(); case 947: - if (lookahead == 'e') ADVANCE(1170); + if (lookahead == 'e') ADVANCE(1736); END_STATE(); case 948: - if (lookahead == 'e') ADVANCE(1737); + if (lookahead == 'e') ADVANCE(781); END_STATE(); case 949: - if (lookahead == 'e') ADVANCE(782); + if (lookahead == 'e') ADVANCE(560); END_STATE(); case 950: - if (lookahead == 'e') ADVANCE(561); + if (lookahead == 'e') ADVANCE(1385); END_STATE(); case 951: - if (lookahead == 'e') ADVANCE(1386); + if (lookahead == 'e') ADVANCE(565); END_STATE(); case 952: - if (lookahead == 'e') ADVANCE(566); + if (lookahead == 'e') ADVANCE(733); END_STATE(); case 953: - if (lookahead == 'e') ADVANCE(734); + if (lookahead == 'e') ADVANCE(977); END_STATE(); case 954: - if (lookahead == 'e') ADVANCE(978); + if (lookahead == 'f') ADVANCE(19); END_STATE(); case 955: if (lookahead == 'f') ADVANCE(19); + if (lookahead == 'l') ADVANCE(1923); END_STATE(); case 956: if (lookahead == 'f') ADVANCE(19); - if (lookahead == 'l') ADVANCE(1924); + if (lookahead == 'r') ADVANCE(1482); END_STATE(); case 957: - if (lookahead == 'f') ADVANCE(19); - if (lookahead == 'r') ADVANCE(1483); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'i') ADVANCE(19); + if (lookahead == 'o') ADVANCE(1538); + if (lookahead == 's') ADVANCE(636); END_STATE(); case 958: - if (lookahead == 'f') ADVANCE(1609); - if (lookahead == 'i') ADVANCE(19); - if (lookahead == 'o') ADVANCE(1539); - if (lookahead == 's') ADVANCE(637); + if (lookahead == 'f') ADVANCE(1608); + if (lookahead == 'i') ADVANCE(1375); + if (lookahead == 'o') ADVANCE(1538); + if (lookahead == 'p') ADVANCE(1678); + if (lookahead == 's') ADVANCE(636); + if (lookahead == 'u') ADVANCE(460); END_STATE(); case 959: - if (lookahead == 'f') ADVANCE(1609); - if (lookahead == 'i') ADVANCE(1376); - if (lookahead == 'o') ADVANCE(1539); - if (lookahead == 'p') ADVANCE(1679); - if (lookahead == 's') ADVANCE(637); - if (lookahead == 'u') ADVANCE(461); + if (lookahead == 'f') ADVANCE(1816); END_STATE(); case 960: - if (lookahead == 'f') ADVANCE(1817); + if (lookahead == 'f') ADVANCE(965); END_STATE(); case 961: - if (lookahead == 'f') ADVANCE(966); + if (lookahead == 'f') ADVANCE(1819); + if (lookahead == 's') ADVANCE(1764); END_STATE(); case 962: - if (lookahead == 'f') ADVANCE(1820); - if (lookahead == 's') ADVANCE(1765); + if (lookahead == 'f') ADVANCE(1842); + if (lookahead == 'l') ADVANCE(89); + if (lookahead == 'p') ADVANCE(954); END_STATE(); case 963: - if (lookahead == 'f') ADVANCE(1843); - if (lookahead == 'l') ADVANCE(89); - if (lookahead == 'p') ADVANCE(955); + if (lookahead == 'f') ADVANCE(1783); + if (lookahead == 'p') ADVANCE(1041); END_STATE(); case 964: - if (lookahead == 'f') ADVANCE(1784); - if (lookahead == 'p') ADVANCE(1042); + if (lookahead == 'f') ADVANCE(1907); END_STATE(); case 965: - if (lookahead == 'f') ADVANCE(1908); + if (lookahead == 'f') ADVANCE(939); END_STATE(); case 966: - if (lookahead == 'f') ADVANCE(940); + if (lookahead == 'f') ADVANCE(1847); END_STATE(); case 967: - if (lookahead == 'f') ADVANCE(1848); + if (lookahead == 'f') ADVANCE(1861); END_STATE(); case 968: - if (lookahead == 'f') ADVANCE(1862); + if (lookahead == 'f') ADVANCE(1526); END_STATE(); case 969: - if (lookahead == 'f') ADVANCE(1527); + if (lookahead == 'f') ADVANCE(1850); + if (lookahead == 's') ADVANCE(1769); END_STATE(); case 970: - if (lookahead == 'f') ADVANCE(1851); - if (lookahead == 's') ADVANCE(1770); + if (lookahead == 'f') ADVANCE(1828); END_STATE(); case 971: - if (lookahead == 'f') ADVANCE(1829); + if (lookahead == 'f') ADVANCE(1830); END_STATE(); case 972: - if (lookahead == 'f') ADVANCE(1831); + if (lookahead == 'f') ADVANCE(1846); END_STATE(); case 973: - if (lookahead == 'f') ADVANCE(1847); + if (lookahead == 'f') ADVANCE(1886); END_STATE(); case 974: - if (lookahead == 'f') ADVANCE(1887); + if (lookahead == 'f') ADVANCE(1834); END_STATE(); case 975: - if (lookahead == 'f') ADVANCE(1835); + if (lookahead == 'f') ADVANCE(1486); END_STATE(); case 976: - if (lookahead == 'f') ADVANCE(1487); + if (lookahead == 'f') ADVANCE(1125); END_STATE(); case 977: - if (lookahead == 'f') ADVANCE(1126); + if (lookahead == 'f') ADVANCE(1906); END_STATE(); case 978: - if (lookahead == 'f') ADVANCE(1907); + if (lookahead == 'g') ADVANCE(19); END_STATE(); case 979: if (lookahead == 'g') ADVANCE(19); + if (lookahead == 's') ADVANCE(1535); END_STATE(); case 980: if (lookahead == 'g') ADVANCE(19); - if (lookahead == 's') ADVANCE(1536); + if (lookahead == 't') ADVANCE(225); END_STATE(); case 981: - if (lookahead == 'g') ADVANCE(19); - if (lookahead == 't') ADVANCE(225); + if (lookahead == 'g') ADVANCE(625); END_STATE(); case 982: - if (lookahead == 'g') ADVANCE(626); + if (lookahead == 'g') ADVANCE(107); END_STATE(); case 983: if (lookahead == 'g') ADVANCE(107); + if (lookahead == 'i') ADVANCE(1375); END_STATE(); case 984: - if (lookahead == 'g') ADVANCE(107); - if (lookahead == 'i') ADVANCE(1376); + if (lookahead == 'g') ADVANCE(353); END_STATE(); case 985: - if (lookahead == 'g') ADVANCE(353); + if (lookahead == 'g') ADVANCE(372); END_STATE(); case 986: - if (lookahead == 'g') ADVANCE(372); + if (lookahead == 'g') ADVANCE(111); END_STATE(); case 987: - if (lookahead == 'g') ADVANCE(111); + if (lookahead == 'g') ADVANCE(1319); END_STATE(); case 988: - if (lookahead == 'g') ADVANCE(1320); + if (lookahead == 'g') ADVANCE(170); END_STATE(); case 989: - if (lookahead == 'g') ADVANCE(170); + if (lookahead == 'g') ADVANCE(390); END_STATE(); case 990: - if (lookahead == 'g') ADVANCE(391); + if (lookahead == 'g') ADVANCE(1057); END_STATE(); case 991: - if (lookahead == 'g') ADVANCE(1058); + if (lookahead == 'g') ADVANCE(2012); END_STATE(); case 992: - if (lookahead == 'g') ADVANCE(2013); + if (lookahead == 'g') ADVANCE(1004); + if (lookahead == 'l') ADVANCE(853); + if (lookahead == 'r') ADVANCE(1608); + if (lookahead == 's') ADVANCE(1045); END_STATE(); case 993: - if (lookahead == 'g') ADVANCE(1005); - if (lookahead == 'l') ADVANCE(854); - if (lookahead == 'r') ADVANCE(1609); - if (lookahead == 's') ADVANCE(1046); + if (lookahead == 'g') ADVANCE(1004); + if (lookahead == 'r') ADVANCE(1608); END_STATE(); case 994: - if (lookahead == 'g') ADVANCE(1005); - if (lookahead == 'r') ADVANCE(1609); + if (lookahead == 'g') ADVANCE(1004); + if (lookahead == 'r') ADVANCE(1608); + if (lookahead == 's') ADVANCE(1047); END_STATE(); case 995: - if (lookahead == 'g') ADVANCE(1005); - if (lookahead == 'r') ADVANCE(1609); - if (lookahead == 's') ADVANCE(1048); + if (lookahead == 'g') ADVANCE(1448); END_STATE(); case 996: - if (lookahead == 'g') ADVANCE(1449); + if (lookahead == 'g') ADVANCE(1487); + if (lookahead == 'p') ADVANCE(954); END_STATE(); case 997: - if (lookahead == 'g') ADVANCE(1488); - if (lookahead == 'p') ADVANCE(955); + if (lookahead == 'g') ADVANCE(1487); + if (lookahead == 'p') ADVANCE(954); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 998: - if (lookahead == 'g') ADVANCE(1488); - if (lookahead == 'p') ADVANCE(955); - if (lookahead == 't') ADVANCE(391); + if (lookahead == 'g') ADVANCE(1328); END_STATE(); case 999: - if (lookahead == 'g') ADVANCE(1329); + if (lookahead == 'g') ADVANCE(1046); END_STATE(); case 1000: - if (lookahead == 'g') ADVANCE(1047); + if (lookahead == 'g') ADVANCE(1216); + if (lookahead == 'i') ADVANCE(1248); + if (lookahead == 'l') ADVANCE(978); + if (lookahead == 'r') ADVANCE(1189); END_STATE(); case 1001: - if (lookahead == 'g') ADVANCE(1217); - if (lookahead == 'i') ADVANCE(1249); - if (lookahead == 'l') ADVANCE(979); - if (lookahead == 'r') ADVANCE(1190); + if (lookahead == 'g') ADVANCE(534); + if (lookahead == 's') ADVANCE(1872); + if (lookahead == 'w') ADVANCE(351); END_STATE(); case 1002: - if (lookahead == 'g') ADVANCE(535); - if (lookahead == 's') ADVANCE(1873); - if (lookahead == 'w') ADVANCE(351); + if (lookahead == 'g') ADVANCE(1362); END_STATE(); case 1003: - if (lookahead == 'g') ADVANCE(1363); + if (lookahead == 'g') ADVANCE(784); END_STATE(); case 1004: - if (lookahead == 'g') ADVANCE(785); + if (lookahead == 'g') ADVANCE(816); END_STATE(); case 1005: - if (lookahead == 'g') ADVANCE(817); + if (lookahead == 'g') ADVANCE(820); END_STATE(); case 1006: - if (lookahead == 'g') ADVANCE(821); + if (lookahead == 'g') ADVANCE(1735); END_STATE(); case 1007: - if (lookahead == 'g') ADVANCE(1736); + if (lookahead == 'g') ADVANCE(1735); + if (lookahead == 'i') ADVANCE(1375); + if (lookahead == 't') ADVANCE(1516); END_STATE(); case 1008: - if (lookahead == 'g') ADVANCE(1736); - if (lookahead == 'i') ADVANCE(1376); - if (lookahead == 't') ADVANCE(1517); + if (lookahead == 'g') ADVANCE(1633); END_STATE(); case 1009: - if (lookahead == 'g') ADVANCE(1634); + if (lookahead == 'g') ADVANCE(1060); + if (lookahead == 'n') ADVANCE(978); + if (lookahead == 's') ADVANCE(1159); END_STATE(); case 1010: - if (lookahead == 'g') ADVANCE(1061); - if (lookahead == 'n') ADVANCE(979); - if (lookahead == 's') ADVANCE(1160); + if (lookahead == 'g') ADVANCE(778); END_STATE(); case 1011: - if (lookahead == 'g') ADVANCE(779); + if (lookahead == 'g') ADVANCE(1642); END_STATE(); case 1012: - if (lookahead == 'g') ADVANCE(1643); + if (lookahead == 'g') ADVANCE(1056); END_STATE(); case 1013: - if (lookahead == 'g') ADVANCE(1057); + if (lookahead == 'g') ADVANCE(1836); END_STATE(); case 1014: - if (lookahead == 'g') ADVANCE(1837); + if (lookahead == 'g') ADVANCE(1836); + if (lookahead == 'l') ADVANCE(830); END_STATE(); case 1015: - if (lookahead == 'g') ADVANCE(1837); - if (lookahead == 'l') ADVANCE(831); + if (lookahead == 'g') ADVANCE(1836); + if (lookahead == 'q') ADVANCE(1013); END_STATE(); case 1016: - if (lookahead == 'g') ADVANCE(1837); - if (lookahead == 'q') ADVANCE(1014); + if (lookahead == 'g') ADVANCE(1061); END_STATE(); case 1017: - if (lookahead == 'g') ADVANCE(1062); + if (lookahead == 'g') ADVANCE(1354); + if (lookahead == 'm') ADVANCE(108); END_STATE(); case 1018: - if (lookahead == 'g') ADVANCE(1355); - if (lookahead == 'm') ADVANCE(108); + if (lookahead == 'g') ADVANCE(1686); END_STATE(); case 1019: - if (lookahead == 'g') ADVANCE(1687); + if (lookahead == 'g') ADVANCE(1686); + if (lookahead == 'r') ADVANCE(1803); END_STATE(); case 1020: - if (lookahead == 'g') ADVANCE(1687); - if (lookahead == 'r') ADVANCE(1804); + if (lookahead == 'g') ADVANCE(1062); END_STATE(); case 1021: - if (lookahead == 'g') ADVANCE(1063); + if (lookahead == 'g') ADVANCE(1064); END_STATE(); case 1022: if (lookahead == 'g') ADVANCE(1065); @@ -11863,29 +12975,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'g') ADVANCE(1066); END_STATE(); case 1024: - if (lookahead == 'g') ADVANCE(1067); + if (lookahead == 'g') ADVANCE(1265); END_STATE(); case 1025: - if (lookahead == 'g') ADVANCE(1266); + if (lookahead == 'g') ADVANCE(1068); END_STATE(); case 1026: - if (lookahead == 'g') ADVANCE(1069); + if (lookahead == 'g') ADVANCE(898); + if (lookahead == 'r') ADVANCE(707); END_STATE(); case 1027: - if (lookahead == 'g') ADVANCE(899); - if (lookahead == 'r') ADVANCE(708); + if (lookahead == 'g') ADVANCE(1069); END_STATE(); case 1028: if (lookahead == 'g') ADVANCE(1070); END_STATE(); case 1029: - if (lookahead == 'g') ADVANCE(1071); + if (lookahead == 'g') ADVANCE(1287); END_STATE(); case 1030: - if (lookahead == 'g') ADVANCE(1288); + if (lookahead == 'g') ADVANCE(1059); END_STATE(); case 1031: - if (lookahead == 'g') ADVANCE(1060); + if (lookahead == 'g') ADVANCE(1289); END_STATE(); case 1032: if (lookahead == 'g') ADVANCE(1290); @@ -11894,478 +13006,478 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'g') ADVANCE(1291); END_STATE(); case 1034: - if (lookahead == 'g') ADVANCE(1292); + if (lookahead == 'g') ADVANCE(1304); END_STATE(); case 1035: - if (lookahead == 'g') ADVANCE(1305); + if (lookahead == 'g') ADVANCE(1292); END_STATE(); case 1036: if (lookahead == 'g') ADVANCE(1293); END_STATE(); case 1037: - if (lookahead == 'g') ADVANCE(1294); + if (lookahead == 'g') ADVANCE(352); END_STATE(); case 1038: - if (lookahead == 'g') ADVANCE(352); + if (lookahead == 'g') ADVANCE(552); END_STATE(); case 1039: - if (lookahead == 'g') ADVANCE(553); + if (lookahead == 'g') ADVANCE(1079); END_STATE(); case 1040: - if (lookahead == 'g') ADVANCE(1080); + if (lookahead == 'h') ADVANCE(739); END_STATE(); case 1041: - if (lookahead == 'h') ADVANCE(740); + if (lookahead == 'h') ADVANCE(19); END_STATE(); case 1042: - if (lookahead == 'h') ADVANCE(19); + if (lookahead == 'h') ADVANCE(164); END_STATE(); case 1043: - if (lookahead == 'h') ADVANCE(164); + if (lookahead == 'h') ADVANCE(372); END_STATE(); case 1044: - if (lookahead == 'h') ADVANCE(372); + if (lookahead == 'h') ADVANCE(390); END_STATE(); case 1045: - if (lookahead == 'h') ADVANCE(391); + if (lookahead == 'h') ADVANCE(225); END_STATE(); case 1046: - if (lookahead == 'h') ADVANCE(225); + if (lookahead == 'h') ADVANCE(1816); END_STATE(); case 1047: - if (lookahead == 'h') ADVANCE(1817); + if (lookahead == 'h') ADVANCE(1966); END_STATE(); case 1048: - if (lookahead == 'h') ADVANCE(1967); + if (lookahead == 'h') ADVANCE(612); + if (lookahead == 'y') ADVANCE(19); END_STATE(); case 1049: - if (lookahead == 'h') ADVANCE(613); - if (lookahead == 'y') ADVANCE(19); + if (lookahead == 'h') ADVANCE(1081); END_STATE(); case 1050: - if (lookahead == 'h') ADVANCE(1082); + if (lookahead == 'h') ADVANCE(1081); + if (lookahead == 'i') ADVANCE(19); + if (lookahead == 'r') ADVANCE(1515); END_STATE(); case 1051: - if (lookahead == 'h') ADVANCE(1082); - if (lookahead == 'i') ADVANCE(19); - if (lookahead == 'r') ADVANCE(1516); + if (lookahead == 'h') ADVANCE(404); END_STATE(); case 1052: - if (lookahead == 'h') ADVANCE(405); + if (lookahead == 'h') ADVANCE(1535); END_STATE(); case 1053: - if (lookahead == 'h') ADVANCE(1536); + if (lookahead == 'h') ADVANCE(1197); END_STATE(); case 1054: - if (lookahead == 'h') ADVANCE(1198); + if (lookahead == 'h') ADVANCE(1197); + if (lookahead == 'r') ADVANCE(183); END_STATE(); case 1055: - if (lookahead == 'h') ADVANCE(1198); - if (lookahead == 'r') ADVANCE(183); + if (lookahead == 'h') ADVANCE(784); END_STATE(); case 1056: - if (lookahead == 'h') ADVANCE(785); + if (lookahead == 'h') ADVANCE(1907); END_STATE(); case 1057: - if (lookahead == 'h') ADVANCE(1908); + if (lookahead == 'h') ADVANCE(1823); END_STATE(); case 1058: - if (lookahead == 'h') ADVANCE(1824); + if (lookahead == 'h') ADVANCE(414); END_STATE(); case 1059: - if (lookahead == 'h') ADVANCE(415); + if (lookahead == 'h') ADVANCE(1861); END_STATE(); case 1060: - if (lookahead == 'h') ADVANCE(1862); + if (lookahead == 'h') ADVANCE(1825); END_STATE(); case 1061: - if (lookahead == 'h') ADVANCE(1826); + if (lookahead == 'h') ADVANCE(1850); END_STATE(); case 1062: - if (lookahead == 'h') ADVANCE(1851); + if (lookahead == 'h') ADVANCE(1838); END_STATE(); case 1063: - if (lookahead == 'h') ADVANCE(1839); + if (lookahead == 'h') ADVANCE(1084); END_STATE(); case 1064: - if (lookahead == 'h') ADVANCE(1085); + if (lookahead == 'h') ADVANCE(1829); END_STATE(); case 1065: - if (lookahead == 'h') ADVANCE(1830); + if (lookahead == 'h') ADVANCE(1831); END_STATE(); case 1066: - if (lookahead == 'h') ADVANCE(1832); + if (lookahead == 'h') ADVANCE(1846); END_STATE(); case 1067: - if (lookahead == 'h') ADVANCE(1847); + if (lookahead == 'h') ADVANCE(850); + if (lookahead == 'r') ADVANCE(1192); END_STATE(); case 1068: - if (lookahead == 'h') ADVANCE(851); - if (lookahead == 'r') ADVANCE(1193); + if (lookahead == 'h') ADVANCE(1833); END_STATE(); case 1069: - if (lookahead == 'h') ADVANCE(1834); + if (lookahead == 'h') ADVANCE(1835); END_STATE(); case 1070: - if (lookahead == 'h') ADVANCE(1836); + if (lookahead == 'h') ADVANCE(1832); END_STATE(); case 1071: - if (lookahead == 'h') ADVANCE(1833); + if (lookahead == 'h') ADVANCE(926); END_STATE(); case 1072: - if (lookahead == 'h') ADVANCE(927); + if (lookahead == 'h') ADVANCE(1118); END_STATE(); case 1073: - if (lookahead == 'h') ADVANCE(1119); + if (lookahead == 'h') ADVANCE(858); END_STATE(); case 1074: - if (lookahead == 'h') ADVANCE(859); + if (lookahead == 'h') ADVANCE(975); END_STATE(); case 1075: - if (lookahead == 'h') ADVANCE(976); + if (lookahead == 'h') ADVANCE(1657); + if (lookahead == 'i') ADVANCE(1355); + if (lookahead == 'r') ADVANCE(1089); END_STATE(); case 1076: - if (lookahead == 'h') ADVANCE(1658); - if (lookahead == 'i') ADVANCE(1356); - if (lookahead == 'r') ADVANCE(1090); + if (lookahead == 'h') ADVANCE(880); END_STATE(); case 1077: - if (lookahead == 'h') ADVANCE(881); + if (lookahead == 'h') ADVANCE(1142); END_STATE(); case 1078: - if (lookahead == 'h') ADVANCE(1143); + if (lookahead == 'h') ADVANCE(1738); END_STATE(); case 1079: - if (lookahead == 'h') ADVANCE(1739); + if (lookahead == 'h') ADVANCE(1906); END_STATE(); case 1080: - if (lookahead == 'h') ADVANCE(1907); + if (lookahead == 'i') ADVANCE(739); END_STATE(); case 1081: - if (lookahead == 'i') ADVANCE(740); + if (lookahead == 'i') ADVANCE(19); END_STATE(); case 1082: - if (lookahead == 'i') ADVANCE(19); + if (lookahead == 'i') ADVANCE(164); END_STATE(); case 1083: - if (lookahead == 'i') ADVANCE(164); + if (lookahead == 'i') ADVANCE(147); END_STATE(); case 1084: - if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'i') ADVANCE(688); END_STATE(); case 1085: - if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'i') ADVANCE(1995); + if (lookahead == 'o') ADVANCE(1076); END_STATE(); case 1086: - if (lookahead == 'i') ADVANCE(1996); - if (lookahead == 'o') ADVANCE(1077); + if (lookahead == 'i') ADVANCE(2011); END_STATE(); case 1087: - if (lookahead == 'i') ADVANCE(2012); + if (lookahead == 'i') ADVANCE(141); END_STATE(); case 1088: - if (lookahead == 'i') ADVANCE(141); + if (lookahead == 'i') ADVANCE(169); END_STATE(); case 1089: - if (lookahead == 'i') ADVANCE(169); + if (lookahead == 'i') ADVANCE(166); END_STATE(); case 1090: - if (lookahead == 'i') ADVANCE(166); + if (lookahead == 'i') ADVANCE(152); END_STATE(); case 1091: - if (lookahead == 'i') ADVANCE(152); + if (lookahead == 'i') ADVANCE(1608); END_STATE(); case 1092: - if (lookahead == 'i') ADVANCE(1609); + if (lookahead == 'i') ADVANCE(1608); + if (lookahead == 'r') ADVANCE(1462); END_STATE(); case 1093: - if (lookahead == 'i') ADVANCE(1609); - if (lookahead == 'r') ADVANCE(1463); + if (lookahead == 'i') ADVANCE(1375); END_STATE(); case 1094: - if (lookahead == 'i') ADVANCE(1376); + if (lookahead == 'i') ADVANCE(1375); + if (lookahead == 'n') ADVANCE(1816); END_STATE(); case 1095: - if (lookahead == 'i') ADVANCE(1376); - if (lookahead == 'n') ADVANCE(1817); + if (lookahead == 'i') ADVANCE(225); + if (lookahead == 'm') ADVANCE(1353); + if (lookahead == 'o') ADVANCE(1396); END_STATE(); case 1096: - if (lookahead == 'i') ADVANCE(225); - if (lookahead == 'm') ADVANCE(1354); - if (lookahead == 'o') ADVANCE(1397); + if (lookahead == 'i') ADVANCE(998); + if (lookahead == 'u') ADVANCE(611); END_STATE(); case 1097: - if (lookahead == 'i') ADVANCE(999); - if (lookahead == 'u') ADVANCE(612); + if (lookahead == 'i') ADVANCE(1249); END_STATE(); case 1098: - if (lookahead == 'i') ADVANCE(1250); + if (lookahead == 'i') ADVANCE(168); END_STATE(); case 1099: - if (lookahead == 'i') ADVANCE(168); + if (lookahead == 'i') ADVANCE(1816); END_STATE(); case 1100: - if (lookahead == 'i') ADVANCE(1817); + if (lookahead == 'i') ADVANCE(1966); END_STATE(); case 1101: - if (lookahead == 'i') ADVANCE(1967); + if (lookahead == 'i') ADVANCE(734); END_STATE(); case 1102: - if (lookahead == 'i') ADVANCE(735); + if (lookahead == 'i') ADVANCE(734); + if (lookahead == 'o') ADVANCE(1950); END_STATE(); case 1103: - if (lookahead == 'i') ADVANCE(735); - if (lookahead == 'o') ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1363); END_STATE(); case 1104: - if (lookahead == 'i') ADVANCE(1364); + if (lookahead == 'i') ADVANCE(226); END_STATE(); case 1105: - if (lookahead == 'i') ADVANCE(226); + if (lookahead == 'i') ADVANCE(1810); END_STATE(); case 1106: - if (lookahead == 'i') ADVANCE(1811); + if (lookahead == 'i') ADVANCE(1810); + if (lookahead == 'p') ADVANCE(1490); END_STATE(); case 1107: - if (lookahead == 'i') ADVANCE(1811); - if (lookahead == 'p') ADVANCE(1491); + if (lookahead == 'i') ADVANCE(117); END_STATE(); case 1108: - if (lookahead == 'i') ADVANCE(117); + if (lookahead == 'i') ADVANCE(1245); END_STATE(); case 1109: - if (lookahead == 'i') ADVANCE(1246); + if (lookahead == 'i') ADVANCE(1535); END_STATE(); case 1110: - if (lookahead == 'i') ADVANCE(1536); + if (lookahead == 'i') ADVANCE(978); END_STATE(); case 1111: - if (lookahead == 'i') ADVANCE(979); + if (lookahead == 'i') ADVANCE(978); + if (lookahead == 'l') ADVANCE(1110); END_STATE(); case 1112: - if (lookahead == 'i') ADVANCE(979); - if (lookahead == 'l') ADVANCE(1111); + if (lookahead == 'i') ADVANCE(960); END_STATE(); case 1113: - if (lookahead == 'i') ADVANCE(961); + if (lookahead == 'i') ADVANCE(1321); END_STATE(); case 1114: - if (lookahead == 'i') ADVANCE(1322); + if (lookahead == 'i') ADVANCE(1321); + if (lookahead == 'l') ADVANCE(19); END_STATE(); case 1115: - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'l') ADVANCE(19); + if (lookahead == 'i') ADVANCE(1321); + if (lookahead == 'l') ADVANCE(532); END_STATE(); case 1116: - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'l') ADVANCE(533); + if (lookahead == 'i') ADVANCE(1487); END_STATE(); case 1117: - if (lookahead == 'i') ADVANCE(1488); + if (lookahead == 'i') ADVANCE(1761); END_STATE(); case 1118: - if (lookahead == 'i') ADVANCE(1762); + if (lookahead == 'i') ADVANCE(1383); END_STATE(); case 1119: - if (lookahead == 'i') ADVANCE(1384); + if (lookahead == 'i') ADVANCE(1786); + if (lookahead == 'l') ADVANCE(1496); + if (lookahead == 'r') ADVANCE(19); END_STATE(); case 1120: - if (lookahead == 'i') ADVANCE(1787); - if (lookahead == 'l') ADVANCE(1497); + if (lookahead == 'i') ADVANCE(1786); if (lookahead == 'r') ADVANCE(19); END_STATE(); case 1121: - if (lookahead == 'i') ADVANCE(1787); - if (lookahead == 'r') ADVANCE(19); + if (lookahead == 'i') ADVANCE(1216); END_STATE(); case 1122: - if (lookahead == 'i') ADVANCE(1217); + if (lookahead == 'i') ADVANCE(991); END_STATE(); case 1123: - if (lookahead == 'i') ADVANCE(992); + if (lookahead == 'i') ADVANCE(1002); END_STATE(); case 1124: - if (lookahead == 'i') ADVANCE(1003); + if (lookahead == 'i') ADVANCE(1927); END_STATE(); case 1125: - if (lookahead == 'i') ADVANCE(1928); + if (lookahead == 'i') ADVANCE(1362); END_STATE(); case 1126: - if (lookahead == 'i') ADVANCE(1363); + if (lookahead == 'i') ADVANCE(1246); END_STATE(); case 1127: - if (lookahead == 'i') ADVANCE(1247); + if (lookahead == 'i') ADVANCE(620); END_STATE(); case 1128: - if (lookahead == 'i') ADVANCE(621); + if (lookahead == 'i') ADVANCE(1638); + if (lookahead == 'y') ADVANCE(19); END_STATE(); case 1129: - if (lookahead == 'i') ADVANCE(1639); - if (lookahead == 'y') ADVANCE(19); + if (lookahead == 'i') ADVANCE(784); END_STATE(); case 1130: - if (lookahead == 'i') ADVANCE(785); + if (lookahead == 'i') ADVANCE(1396); END_STATE(); case 1131: - if (lookahead == 'i') ADVANCE(1397); + if (lookahead == 'i') ADVANCE(546); END_STATE(); case 1132: - if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'i') ADVANCE(769); END_STATE(); case 1133: - if (lookahead == 'i') ADVANCE(770); + if (lookahead == 'i') ADVANCE(1340); END_STATE(); case 1134: - if (lookahead == 'i') ADVANCE(1341); + if (lookahead == 'i') ADVANCE(1038); END_STATE(); case 1135: - if (lookahead == 'i') ADVANCE(1039); + if (lookahead == 'i') ADVANCE(1682); + if (lookahead == 'l') ADVANCE(954); + if (lookahead == 'm') ADVANCE(1137); + if (lookahead == 'r') ADVANCE(750); END_STATE(); case 1136: - if (lookahead == 'i') ADVANCE(1683); - if (lookahead == 'l') ADVANCE(955); - if (lookahead == 'm') ADVANCE(1138); - if (lookahead == 'r') ADVANCE(751); + if (lookahead == 'i') ADVANCE(1387); END_STATE(); case 1137: - if (lookahead == 'i') ADVANCE(1388); + if (lookahead == 'i') ADVANCE(1232); END_STATE(); case 1138: - if (lookahead == 'i') ADVANCE(1233); + if (lookahead == 'i') ADVANCE(851); END_STATE(); case 1139: - if (lookahead == 'i') ADVANCE(852); + if (lookahead == 'i') ADVANCE(1922); END_STATE(); case 1140: - if (lookahead == 'i') ADVANCE(1923); + if (lookahead == 'i') ADVANCE(1427); END_STATE(); case 1141: - if (lookahead == 'i') ADVANCE(1428); + if (lookahead == 'i') ADVANCE(1420); END_STATE(); case 1142: - if (lookahead == 'i') ADVANCE(1421); + if (lookahead == 'i') ADVANCE(1366); END_STATE(); case 1143: - if (lookahead == 'i') ADVANCE(1367); + if (lookahead == 'i') ADVANCE(1262); + if (lookahead == 'l') ADVANCE(1111); + if (lookahead == 'r') ADVANCE(19); END_STATE(); case 1144: - if (lookahead == 'i') ADVANCE(1263); - if (lookahead == 'l') ADVANCE(1112); - if (lookahead == 'r') ADVANCE(19); + if (lookahead == 'i') ADVANCE(999); END_STATE(); case 1145: - if (lookahead == 'i') ADVANCE(1000); + if (lookahead == 'i') ADVANCE(1250); END_STATE(); case 1146: - if (lookahead == 'i') ADVANCE(1251); + if (lookahead == 'i') ADVANCE(1398); + if (lookahead == 'p') ADVANCE(954); END_STATE(); case 1147: - if (lookahead == 'i') ADVANCE(1399); - if (lookahead == 'p') ADVANCE(955); + if (lookahead == 'i') ADVANCE(1675); END_STATE(); case 1148: - if (lookahead == 'i') ADVANCE(1676); + if (lookahead == 'i') ADVANCE(1675); + if (lookahead == 'o') ADVANCE(1246); END_STATE(); case 1149: - if (lookahead == 'i') ADVANCE(1676); - if (lookahead == 'o') ADVANCE(1247); + if (lookahead == 'i') ADVANCE(1675); + if (lookahead == 'y') ADVANCE(19); END_STATE(); case 1150: - if (lookahead == 'i') ADVANCE(1676); - if (lookahead == 'y') ADVANCE(19); + if (lookahead == 'i') ADVANCE(1248); END_STATE(); case 1151: - if (lookahead == 'i') ADVANCE(1249); + if (lookahead == 'i') ADVANCE(603); END_STATE(); case 1152: - if (lookahead == 'i') ADVANCE(604); + if (lookahead == 'i') ADVANCE(494); END_STATE(); case 1153: - if (lookahead == 'i') ADVANCE(495); + if (lookahead == 'i') ADVANCE(1801); END_STATE(); case 1154: - if (lookahead == 'i') ADVANCE(1802); + if (lookahead == 'i') ADVANCE(1972); END_STATE(); case 1155: - if (lookahead == 'i') ADVANCE(1973); + if (lookahead == 'i') ADVANCE(1581); END_STATE(); case 1156: - if (lookahead == 'i') ADVANCE(1582); + if (lookahead == 'i') ADVANCE(1406); + if (lookahead == 'p') ADVANCE(954); + if (lookahead == 'u') ADVANCE(1377); END_STATE(); case 1157: - if (lookahead == 'i') ADVANCE(1407); - if (lookahead == 'p') ADVANCE(955); - if (lookahead == 'u') ADVANCE(1378); + if (lookahead == 'i') ADVANCE(1267); END_STATE(); case 1158: - if (lookahead == 'i') ADVANCE(1268); + if (lookahead == 'i') ADVANCE(1345); END_STATE(); case 1159: - if (lookahead == 'i') ADVANCE(1346); + if (lookahead == 'i') ADVANCE(1400); END_STATE(); case 1160: - if (lookahead == 'i') ADVANCE(1401); + if (lookahead == 'i') ADVANCE(1805); END_STATE(); case 1161: - if (lookahead == 'i') ADVANCE(1806); + if (lookahead == 'i') ADVANCE(1800); END_STATE(); case 1162: - if (lookahead == 'i') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1355); END_STATE(); case 1163: - if (lookahead == 'i') ADVANCE(1356); + if (lookahead == 'i') ADVANCE(1341); END_STATE(); case 1164: - if (lookahead == 'i') ADVANCE(1342); + if (lookahead == 'i') ADVANCE(1881); END_STATE(); case 1165: - if (lookahead == 'i') ADVANCE(1882); + if (lookahead == 'i') ADVANCE(1278); END_STATE(); case 1166: - if (lookahead == 'i') ADVANCE(1279); + if (lookahead == 'i') ADVANCE(1404); END_STATE(); case 1167: - if (lookahead == 'i') ADVANCE(1405); + if (lookahead == 'i') ADVANCE(895); END_STATE(); case 1168: - if (lookahead == 'i') ADVANCE(896); + if (lookahead == 'i') ADVANCE(502); END_STATE(); case 1169: - if (lookahead == 'i') ADVANCE(503); + if (lookahead == 'i') ADVANCE(1297); END_STATE(); case 1170: - if (lookahead == 'i') ADVANCE(1298); + if (lookahead == 'i') ADVANCE(1265); END_STATE(); case 1171: - if (lookahead == 'i') ADVANCE(1266); + if (lookahead == 'i') ADVANCE(1504); END_STATE(); case 1172: - if (lookahead == 'i') ADVANCE(1505); + if (lookahead == 'i') ADVANCE(1483); END_STATE(); case 1173: - if (lookahead == 'i') ADVANCE(1484); + if (lookahead == 'i') ADVANCE(1421); END_STATE(); case 1174: - if (lookahead == 'i') ADVANCE(1422); + if (lookahead == 'i') ADVANCE(1421); + if (lookahead == 'n') ADVANCE(19); END_STATE(); case 1175: - if (lookahead == 'i') ADVANCE(1422); - if (lookahead == 'n') ADVANCE(19); + if (lookahead == 'i') ADVANCE(1012); END_STATE(); case 1176: - if (lookahead == 'i') ADVANCE(1013); + if (lookahead == 'i') ADVANCE(1298); END_STATE(); case 1177: - if (lookahead == 'i') ADVANCE(1299); + if (lookahead == 'i') ADVANCE(726); END_STATE(); case 1178: - if (lookahead == 'i') ADVANCE(727); + if (lookahead == 'i') ADVANCE(730); END_STATE(); case 1179: - if (lookahead == 'i') ADVANCE(731); + if (lookahead == 'i') ADVANCE(604); END_STATE(); case 1180: - if (lookahead == 'i') ADVANCE(605); + if (lookahead == 'i') ADVANCE(1020); END_STATE(); case 1181: if (lookahead == 'i') ADVANCE(1021); @@ -12377,28 +13489,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(1023); END_STATE(); case 1184: - if (lookahead == 'i') ADVANCE(1024); + if (lookahead == 'i') ADVANCE(1025); END_STATE(); case 1185: - if (lookahead == 'i') ADVANCE(1026); + if (lookahead == 'i') ADVANCE(1027); END_STATE(); case 1186: if (lookahead == 'i') ADVANCE(1028); END_STATE(); case 1187: - if (lookahead == 'i') ADVANCE(1029); + if (lookahead == 'i') ADVANCE(1030); END_STATE(); case 1188: - if (lookahead == 'i') ADVANCE(1031); + if (lookahead == 'i') ADVANCE(1749); END_STATE(); case 1189: - if (lookahead == 'i') ADVANCE(1750); + if (lookahead == 'i') ADVANCE(570); END_STATE(); case 1190: - if (lookahead == 'i') ADVANCE(571); + if (lookahead == 'i') ADVANCE(1039); END_STATE(); case 1191: - if (lookahead == 'i') ADVANCE(1040); + if (lookahead == 'i') ADVANCE(572); END_STATE(); case 1192: if (lookahead == 'i') ADVANCE(573); @@ -12410,316 +13522,316 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(575); END_STATE(); case 1195: - if (lookahead == 'i') ADVANCE(576); + if (lookahead == 'j') ADVANCE(19); END_STATE(); case 1196: if (lookahead == 'j') ADVANCE(19); + if (lookahead == 'n') ADVANCE(1195); END_STATE(); case 1197: - if (lookahead == 'j') ADVANCE(19); - if (lookahead == 'n') ADVANCE(1196); + if (lookahead == 'k') ADVANCE(19); END_STATE(); case 1198: - if (lookahead == 'k') ADVANCE(19); + if (lookahead == 'k') ADVANCE(372); END_STATE(); case 1199: - if (lookahead == 'k') ADVANCE(372); + if (lookahead == 'k') ADVANCE(728); END_STATE(); case 1200: - if (lookahead == 'k') ADVANCE(729); + if (lookahead == 'k') ADVANCE(1302); END_STATE(); case 1201: - if (lookahead == 'k') ADVANCE(1303); + if (lookahead == 'k') ADVANCE(1275); END_STATE(); case 1202: - if (lookahead == 'k') ADVANCE(1276); + if (lookahead == 'k') ADVANCE(175); END_STATE(); case 1203: - if (lookahead == 'k') ADVANCE(175); + if (lookahead == 'k') ADVANCE(151); END_STATE(); case 1204: - if (lookahead == 'k') ADVANCE(151); + if (lookahead == 'k') ADVANCE(612); END_STATE(); case 1205: - if (lookahead == 'k') ADVANCE(613); + if (lookahead == 'k') ADVANCE(612); + if (lookahead == 'm') ADVANCE(164); END_STATE(); case 1206: - if (lookahead == 'k') ADVANCE(613); - if (lookahead == 'm') ADVANCE(164); + if (lookahead == 'k') ADVANCE(1989); END_STATE(); case 1207: - if (lookahead == 'k') ADVANCE(1990); + if (lookahead == 'k') ADVANCE(217); END_STATE(); case 1208: - if (lookahead == 'k') ADVANCE(217); + if (lookahead == 'k') ADVANCE(1797); END_STATE(); case 1209: - if (lookahead == 'k') ADVANCE(1798); + if (lookahead == 'k') ADVANCE(816); END_STATE(); case 1210: - if (lookahead == 'k') ADVANCE(817); + if (lookahead == 'k') ADVANCE(820); END_STATE(); case 1211: - if (lookahead == 'k') ADVANCE(821); + if (lookahead == 'k') ADVANCE(529); END_STATE(); case 1212: - if (lookahead == 'k') ADVANCE(530); + if (lookahead == 'k') ADVANCE(536); END_STATE(); case 1213: - if (lookahead == 'k') ADVANCE(537); + if (lookahead == 'k') ADVANCE(536); + if (lookahead == 'l') ADVANCE(467); END_STATE(); case 1214: - if (lookahead == 'k') ADVANCE(537); - if (lookahead == 'l') ADVANCE(468); + if (lookahead == 'k') ADVANCE(1166); END_STATE(); case 1215: - if (lookahead == 'k') ADVANCE(1167); + if (lookahead == 'l') ADVANCE(739); END_STATE(); case 1216: - if (lookahead == 'l') ADVANCE(740); + if (lookahead == 'l') ADVANCE(19); END_STATE(); case 1217: - if (lookahead == 'l') ADVANCE(19); + if (lookahead == 'l') ADVANCE(214); END_STATE(); case 1218: - if (lookahead == 'l') ADVANCE(214); + if (lookahead == 'l') ADVANCE(351); END_STATE(); case 1219: - if (lookahead == 'l') ADVANCE(351); + if (lookahead == 'l') ADVANCE(320); END_STATE(); case 1220: - if (lookahead == 'l') ADVANCE(320); + if (lookahead == 'l') ADVANCE(88); END_STATE(); case 1221: - if (lookahead == 'l') ADVANCE(88); + if (lookahead == 'l') ADVANCE(158); END_STATE(); case 1222: - if (lookahead == 'l') ADVANCE(158); + if (lookahead == 'l') ADVANCE(2025); END_STATE(); case 1223: - if (lookahead == 'l') ADVANCE(2025); + if (lookahead == 'l') ADVANCE(286); END_STATE(); case 1224: - if (lookahead == 'l') ADVANCE(286); + if (lookahead == 'l') ADVANCE(273); END_STATE(); case 1225: - if (lookahead == 'l') ADVANCE(273); + if (lookahead == 'l') ADVANCE(52); END_STATE(); case 1226: - if (lookahead == 'l') ADVANCE(52); + if (lookahead == 'l') ADVANCE(390); END_STATE(); case 1227: - if (lookahead == 'l') ADVANCE(391); + if (lookahead == 'l') ADVANCE(2001); END_STATE(); case 1228: - if (lookahead == 'l') ADVANCE(2002); + if (lookahead == 'l') ADVANCE(915); END_STATE(); case 1229: - if (lookahead == 'l') ADVANCE(916); + if (lookahead == 'l') ADVANCE(915); + if (lookahead == 'q') ADVANCE(1940); END_STATE(); case 1230: - if (lookahead == 'l') ADVANCE(916); - if (lookahead == 'q') ADVANCE(1941); + if (lookahead == 'l') ADVANCE(915); + if (lookahead == 'q') ADVANCE(1939); + if (lookahead == 'x') ADVANCE(1105); END_STATE(); case 1231: - if (lookahead == 'l') ADVANCE(916); - if (lookahead == 'q') ADVANCE(1940); - if (lookahead == 'x') ADVANCE(1106); + if (lookahead == 'l') ADVANCE(336); END_STATE(); case 1232: - if (lookahead == 'l') ADVANCE(336); + if (lookahead == 'l') ADVANCE(1816); END_STATE(); case 1233: - if (lookahead == 'l') ADVANCE(1817); + if (lookahead == 'l') ADVANCE(57); END_STATE(); case 1234: - if (lookahead == 'l') ADVANCE(57); + if (lookahead == 'l') ADVANCE(329); END_STATE(); case 1235: - if (lookahead == 'l') ADVANCE(329); + if (lookahead == 'l') ADVANCE(293); END_STATE(); case 1236: - if (lookahead == 'l') ADVANCE(293); + if (lookahead == 'l') ADVANCE(597); END_STATE(); case 1237: - if (lookahead == 'l') ADVANCE(598); + if (lookahead == 'l') ADVANCE(285); END_STATE(); case 1238: - if (lookahead == 'l') ADVANCE(285); + if (lookahead == 'l') ADVANCE(374); END_STATE(); case 1239: - if (lookahead == 'l') ADVANCE(374); + if (lookahead == 'l') ADVANCE(404); END_STATE(); case 1240: - if (lookahead == 'l') ADVANCE(405); + if (lookahead == 'l') ADVANCE(304); END_STATE(); case 1241: - if (lookahead == 'l') ADVANCE(304); + if (lookahead == 'l') ADVANCE(201); END_STATE(); case 1242: - if (lookahead == 'l') ADVANCE(201); + if (lookahead == 'l') ADVANCE(437); END_STATE(); case 1243: - if (lookahead == 'l') ADVANCE(438); + if (lookahead == 'l') ADVANCE(122); END_STATE(); case 1244: - if (lookahead == 'l') ADVANCE(122); + if (lookahead == 'l') ADVANCE(314); END_STATE(); case 1245: - if (lookahead == 'l') ADVANCE(314); + if (lookahead == 'l') ADVANCE(767); END_STATE(); case 1246: - if (lookahead == 'l') ADVANCE(768); + if (lookahead == 'l') ADVANCE(1487); END_STATE(); case 1247: - if (lookahead == 'l') ADVANCE(1488); + if (lookahead == 'l') ADVANCE(1197); END_STATE(); case 1248: - if (lookahead == 'l') ADVANCE(1198); + if (lookahead == 'l') ADVANCE(754); END_STATE(); case 1249: - if (lookahead == 'l') ADVANCE(755); + if (lookahead == 'l') ADVANCE(754); + if (lookahead == 'm') ADVANCE(851); END_STATE(); case 1250: - if (lookahead == 'l') ADVANCE(755); - if (lookahead == 'm') ADVANCE(852); + if (lookahead == 'l') ADVANCE(754); + if (lookahead == 'm') ADVANCE(873); END_STATE(); case 1251: - if (lookahead == 'l') ADVANCE(755); - if (lookahead == 'm') ADVANCE(874); + if (lookahead == 'l') ADVANCE(833); END_STATE(); case 1252: - if (lookahead == 'l') ADVANCE(834); + if (lookahead == 'l') ADVANCE(1761); END_STATE(); case 1253: - if (lookahead == 'l') ADVANCE(1762); + if (lookahead == 'l') ADVANCE(706); END_STATE(); case 1254: - if (lookahead == 'l') ADVANCE(707); + if (lookahead == 'l') ADVANCE(1117); END_STATE(); case 1255: - if (lookahead == 'l') ADVANCE(1118); + if (lookahead == 'l') ADVANCE(2000); END_STATE(); case 1256: - if (lookahead == 'l') ADVANCE(2001); + if (lookahead == 'l') ADVANCE(1083); END_STATE(); case 1257: - if (lookahead == 'l') ADVANCE(1084); + if (lookahead == 'l') ADVANCE(854); END_STATE(); case 1258: - if (lookahead == 'l') ADVANCE(855); + if (lookahead == 'l') ADVANCE(1216); END_STATE(); case 1259: - if (lookahead == 'l') ADVANCE(1217); + if (lookahead == 'l') ADVANCE(2010); END_STATE(); case 1260: - if (lookahead == 'l') ADVANCE(2011); + if (lookahead == 'l') ADVANCE(1496); END_STATE(); case 1261: - if (lookahead == 'l') ADVANCE(1497); + if (lookahead == 'l') ADVANCE(1947); END_STATE(); case 1262: - if (lookahead == 'l') ADVANCE(1948); + if (lookahead == 'l') ADVANCE(1110); END_STATE(); case 1263: - if (lookahead == 'l') ADVANCE(1111); + if (lookahead == 'l') ADVANCE(1243); + if (lookahead == 'm') ADVANCE(1547); END_STATE(); case 1264: - if (lookahead == 'l') ADVANCE(1244); - if (lookahead == 'm') ADVANCE(1548); + if (lookahead == 'l') ADVANCE(1239); + if (lookahead == 'p') ADVANCE(954); + if (lookahead == 't') ADVANCE(121); + if (lookahead == 'u') ADVANCE(602); + if (lookahead == 'w') ADVANCE(1367); END_STATE(); case 1265: - if (lookahead == 'l') ADVANCE(1240); - if (lookahead == 'p') ADVANCE(955); - if (lookahead == 't') ADVANCE(121); - if (lookahead == 'u') ADVANCE(603); - if (lookahead == 'w') ADVANCE(1368); + if (lookahead == 'l') ADVANCE(784); END_STATE(); case 1266: - if (lookahead == 'l') ADVANCE(785); + if (lookahead == 'l') ADVANCE(842); END_STATE(); case 1267: - if (lookahead == 'l') ADVANCE(843); + if (lookahead == 'l') ADVANCE(1226); END_STATE(); case 1268: - if (lookahead == 'l') ADVANCE(1227); + if (lookahead == 'l') ADVANCE(1235); END_STATE(); case 1269: - if (lookahead == 'l') ADVANCE(1236); + if (lookahead == 'l') ADVANCE(855); END_STATE(); case 1270: - if (lookahead == 'l') ADVANCE(856); + if (lookahead == 'l') ADVANCE(1317); + if (lookahead == 's') ADVANCE(1052); END_STATE(); case 1271: - if (lookahead == 'l') ADVANCE(1318); - if (lookahead == 's') ADVANCE(1053); + if (lookahead == 'l') ADVANCE(1514); END_STATE(); case 1272: - if (lookahead == 'l') ADVANCE(1515); + if (lookahead == 'l') ADVANCE(1138); END_STATE(); case 1273: - if (lookahead == 'l') ADVANCE(1139); + if (lookahead == 'l') ADVANCE(1109); END_STATE(); case 1274: - if (lookahead == 'l') ADVANCE(1110); + if (lookahead == 'l') ADVANCE(1234); END_STATE(); case 1275: - if (lookahead == 'l') ADVANCE(1235); + if (lookahead == 'l') ADVANCE(1465); + if (lookahead == 's') ADVANCE(1605); + if (lookahead == 't') ADVANCE(1760); END_STATE(); case 1276: - if (lookahead == 'l') ADVANCE(1466); - if (lookahead == 's') ADVANCE(1606); - if (lookahead == 't') ADVANCE(1761); + if (lookahead == 'l') ADVANCE(830); END_STATE(); case 1277: - if (lookahead == 'l') ADVANCE(831); + if (lookahead == 'l') ADVANCE(830); + if (lookahead == 'q') ADVANCE(1276); END_STATE(); case 1278: - if (lookahead == 'l') ADVANCE(831); - if (lookahead == 'q') ADVANCE(1277); + if (lookahead == 'l') ADVANCE(1151); END_STATE(); case 1279: - if (lookahead == 'l') ADVANCE(1152); + if (lookahead == 'l') ADVANCE(453); END_STATE(); case 1280: - if (lookahead == 'l') ADVANCE(454); + if (lookahead == 'l') ADVANCE(1238); END_STATE(); case 1281: - if (lookahead == 'l') ADVANCE(1239); + if (lookahead == 'l') ADVANCE(802); END_STATE(); case 1282: if (lookahead == 'l') ADVANCE(803); END_STATE(); case 1283: - if (lookahead == 'l') ADVANCE(804); + if (lookahead == 'l') ADVANCE(1499); END_STATE(); case 1284: - if (lookahead == 'l') ADVANCE(1500); + if (lookahead == 'l') ADVANCE(791); END_STATE(); case 1285: - if (lookahead == 'l') ADVANCE(792); + if (lookahead == 'l') ADVANCE(922); END_STATE(); case 1286: - if (lookahead == 'l') ADVANCE(923); + if (lookahead == 'l') ADVANCE(844); + if (lookahead == 'r') ADVANCE(1144); END_STATE(); case 1287: - if (lookahead == 'l') ADVANCE(845); - if (lookahead == 'r') ADVANCE(1145); + if (lookahead == 'l') ADVANCE(810); END_STATE(); case 1288: if (lookahead == 'l') ADVANCE(811); END_STATE(); case 1289: - if (lookahead == 'l') ADVANCE(812); + if (lookahead == 'l') ADVANCE(822); END_STATE(); case 1290: - if (lookahead == 'l') ADVANCE(823); + if (lookahead == 'l') ADVANCE(942); END_STATE(); case 1291: - if (lookahead == 'l') ADVANCE(943); + if (lookahead == 'l') ADVANCE(834); END_STATE(); case 1292: - if (lookahead == 'l') ADVANCE(835); + if (lookahead == 'l') ADVANCE(813); END_STATE(); case 1293: if (lookahead == 'l') ADVANCE(814); @@ -12728,461 +13840,461 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(815); END_STATE(); case 1295: - if (lookahead == 'l') ADVANCE(816); + if (lookahead == 'l') ADVANCE(831); END_STATE(); case 1296: - if (lookahead == 'l') ADVANCE(832); + if (lookahead == 'l') ADVANCE(467); END_STATE(); case 1297: - if (lookahead == 'l') ADVANCE(468); + if (lookahead == 'l') ADVANCE(1118); END_STATE(); case 1298: - if (lookahead == 'l') ADVANCE(1119); + if (lookahead == 'l') ADVANCE(761); END_STATE(); case 1299: - if (lookahead == 'l') ADVANCE(762); + if (lookahead == 'l') ADVANCE(761); + if (lookahead == 'm') ADVANCE(845); + if (lookahead == 'n') ADVANCE(1816); END_STATE(); case 1300: - if (lookahead == 'l') ADVANCE(762); - if (lookahead == 'm') ADVANCE(846); - if (lookahead == 'n') ADVANCE(1817); + if (lookahead == 'l') ADVANCE(1489); + if (lookahead == 'n') ADVANCE(1007); + if (lookahead == 'p') ADVANCE(956); + if (lookahead == 'u') ADVANCE(1428); END_STATE(); case 1301: - if (lookahead == 'l') ADVANCE(1490); - if (lookahead == 'n') ADVANCE(1008); - if (lookahead == 'p') ADVANCE(957); - if (lookahead == 'u') ADVANCE(1429); + if (lookahead == 'l') ADVANCE(409); END_STATE(); case 1302: - if (lookahead == 'l') ADVANCE(410); + if (lookahead == 'l') ADVANCE(826); + if (lookahead == 'r') ADVANCE(1175); END_STATE(); case 1303: - if (lookahead == 'l') ADVANCE(827); - if (lookahead == 'r') ADVANCE(1176); + if (lookahead == 'l') ADVANCE(907); END_STATE(); case 1304: - if (lookahead == 'l') ADVANCE(908); + if (lookahead == 'l') ADVANCE(906); END_STATE(); case 1305: - if (lookahead == 'l') ADVANCE(907); + if (lookahead == 'l') ADVANCE(522); END_STATE(); case 1306: - if (lookahead == 'l') ADVANCE(523); + if (lookahead == 'l') ADVANCE(1923); END_STATE(); case 1307: - if (lookahead == 'l') ADVANCE(1924); + if (lookahead == 'l') ADVANCE(1269); END_STATE(); case 1308: - if (lookahead == 'l') ADVANCE(1270); + if (lookahead == 'l') ADVANCE(468); END_STATE(); case 1309: - if (lookahead == 'l') ADVANCE(469); + if (lookahead == 'l') ADVANCE(1159); END_STATE(); case 1310: - if (lookahead == 'l') ADVANCE(1160); + if (lookahead == 'l') ADVANCE(1494); + if (lookahead == 'm') ADVANCE(1350); + if (lookahead == 'n') ADVANCE(983); + if (lookahead == 'p') ADVANCE(142); END_STATE(); case 1311: - if (lookahead == 'l') ADVANCE(1495); - if (lookahead == 'm') ADVANCE(1351); - if (lookahead == 'n') ADVANCE(984); - if (lookahead == 'p') ADVANCE(142); + if (lookahead == 'l') ADVANCE(1707); END_STATE(); case 1312: - if (lookahead == 'l') ADVANCE(1708); + if (lookahead == 'l') ADVANCE(1093); END_STATE(); case 1313: - if (lookahead == 'l') ADVANCE(1094); + if (lookahead == 'l') ADVANCE(1254); END_STATE(); case 1314: - if (lookahead == 'l') ADVANCE(1255); + if (lookahead == 'l') ADVANCE(1141); END_STATE(); case 1315: - if (lookahead == 'l') ADVANCE(1142); + if (lookahead == 'l') ADVANCE(1257); END_STATE(); case 1316: - if (lookahead == 'l') ADVANCE(1258); + if (lookahead == 'l') ADVANCE(544); END_STATE(); case 1317: - if (lookahead == 'l') ADVANCE(545); + if (lookahead == 'l') ADVANCE(1813); END_STATE(); case 1318: - if (lookahead == 'l') ADVANCE(1814); + if (lookahead == 'l') ADVANCE(1309); END_STATE(); case 1319: - if (lookahead == 'l') ADVANCE(1310); + if (lookahead == 'l') ADVANCE(910); + if (lookahead == 'm') ADVANCE(489); + if (lookahead == 'r') ADVANCE(1175); END_STATE(); case 1320: - if (lookahead == 'l') ADVANCE(911); - if (lookahead == 'm') ADVANCE(490); - if (lookahead == 'r') ADVANCE(1176); + if (lookahead == 'l') ADVANCE(937); + if (lookahead == 'r') ADVANCE(1187); END_STATE(); case 1321: - if (lookahead == 'l') ADVANCE(938); - if (lookahead == 'r') ADVANCE(1188); + if (lookahead == 'm') ADVANCE(19); END_STATE(); case 1322: - if (lookahead == 'm') ADVANCE(19); + if (lookahead == 'm') ADVANCE(164); END_STATE(); case 1323: if (lookahead == 'm') ADVANCE(164); + if (lookahead == 'r') ADVANCE(1446); END_STATE(); case 1324: - if (lookahead == 'm') ADVANCE(164); - if (lookahead == 'r') ADVANCE(1447); + if (lookahead == 'm') ADVANCE(372); END_STATE(); case 1325: - if (lookahead == 'm') ADVANCE(372); + if (lookahead == 'm') ADVANCE(187); END_STATE(); case 1326: - if (lookahead == 'm') ADVANCE(187); + if (lookahead == 'm') ADVANCE(233); END_STATE(); case 1327: - if (lookahead == 'm') ADVANCE(233); + if (lookahead == 'm') ADVANCE(232); END_STATE(); case 1328: - if (lookahead == 'm') ADVANCE(232); + if (lookahead == 'm') ADVANCE(390); END_STATE(); case 1329: - if (lookahead == 'm') ADVANCE(391); + if (lookahead == 'm') ADVANCE(1174); END_STATE(); case 1330: - if (lookahead == 'm') ADVANCE(1175); + if (lookahead == 'm') ADVANCE(1081); END_STATE(); case 1331: - if (lookahead == 'm') ADVANCE(1082); + if (lookahead == 'm') ADVANCE(117); END_STATE(); case 1332: - if (lookahead == 'm') ADVANCE(117); + if (lookahead == 'm') ADVANCE(1535); END_STATE(); case 1333: - if (lookahead == 'm') ADVANCE(1536); + if (lookahead == 'm') ADVANCE(1565); END_STATE(); case 1334: - if (lookahead == 'm') ADVANCE(1566); + if (lookahead == 'm') ADVANCE(1546); END_STATE(); case 1335: - if (lookahead == 'm') ADVANCE(1547); + if (lookahead == 'm') ADVANCE(1080); END_STATE(); case 1336: - if (lookahead == 'm') ADVANCE(1081); + if (lookahead == 'm') ADVANCE(1080); + if (lookahead == 'p') ADVANCE(541); END_STATE(); case 1337: - if (lookahead == 'm') ADVANCE(1081); - if (lookahead == 'p') ADVANCE(542); + if (lookahead == 'm') ADVANCE(1328); END_STATE(); case 1338: - if (lookahead == 'm') ADVANCE(1329); + if (lookahead == 'm') ADVANCE(125); END_STATE(); case 1339: - if (lookahead == 'm') ADVANCE(125); + if (lookahead == 'm') ADVANCE(1569); END_STATE(); case 1340: - if (lookahead == 'm') ADVANCE(1570); + if (lookahead == 'm') ADVANCE(126); END_STATE(); case 1341: - if (lookahead == 'm') ADVANCE(126); + if (lookahead == 'm') ADVANCE(430); END_STATE(); case 1342: - if (lookahead == 'm') ADVANCE(431); + if (lookahead == 'm') ADVANCE(854); END_STATE(); case 1343: - if (lookahead == 'm') ADVANCE(855); + if (lookahead == 'm') ADVANCE(1216); END_STATE(); case 1344: - if (lookahead == 'm') ADVANCE(1217); + if (lookahead == 'm') ADVANCE(1362); END_STATE(); case 1345: - if (lookahead == 'm') ADVANCE(1363); + if (lookahead == 'm') ADVANCE(784); END_STATE(); case 1346: - if (lookahead == 'm') ADVANCE(785); + if (lookahead == 'm') ADVANCE(1561); END_STATE(); case 1347: - if (lookahead == 'm') ADVANCE(1562); + if (lookahead == 'm') ADVANCE(1556); END_STATE(); case 1348: - if (lookahead == 'm') ADVANCE(1557); + if (lookahead == 'm') ADVANCE(546); END_STATE(); case 1349: - if (lookahead == 'm') ADVANCE(547); + if (lookahead == 'm') ADVANCE(418); END_STATE(); case 1350: - if (lookahead == 'm') ADVANCE(419); + if (lookahead == 'm') ADVANCE(425); + if (lookahead == 'p') ADVANCE(145); END_STATE(); case 1351: - if (lookahead == 'm') ADVANCE(426); - if (lookahead == 'p') ADVANCE(145); + if (lookahead == 'm') ADVANCE(818); END_STATE(); case 1352: - if (lookahead == 'm') ADVANCE(819); + if (lookahead == 'm') ADVANCE(818); + if (lookahead == 'x') ADVANCE(851); END_STATE(); case 1353: - if (lookahead == 'm') ADVANCE(819); - if (lookahead == 'x') ADVANCE(852); + if (lookahead == 'm') ADVANCE(414); END_STATE(); case 1354: - if (lookahead == 'm') ADVANCE(415); + if (lookahead == 'm') ADVANCE(398); END_STATE(); case 1355: - if (lookahead == 'm') ADVANCE(399); + if (lookahead == 'm') ADVANCE(851); END_STATE(); case 1356: - if (lookahead == 'm') ADVANCE(852); + if (lookahead == 'm') ADVANCE(1577); END_STATE(); case 1357: - if (lookahead == 'm') ADVANCE(1578); + if (lookahead == 'm') ADVANCE(838); END_STATE(); case 1358: - if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'm') ADVANCE(1349); END_STATE(); case 1359: - if (lookahead == 'm') ADVANCE(1350); + if (lookahead == 'm') ADVANCE(1173); END_STATE(); case 1360: - if (lookahead == 'm') ADVANCE(1174); + if (lookahead == 'm') ADVANCE(540); END_STATE(); case 1361: - if (lookahead == 'm') ADVANCE(541); + if (lookahead == 'n') ADVANCE(739); END_STATE(); case 1362: - if (lookahead == 'n') ADVANCE(740); + if (lookahead == 'n') ADVANCE(19); END_STATE(); case 1363: - if (lookahead == 'n') ADVANCE(19); + if (lookahead == 'n') ADVANCE(147); END_STATE(); case 1364: - if (lookahead == 'n') ADVANCE(147); + if (lookahead == 'n') ADVANCE(282); END_STATE(); case 1365: - if (lookahead == 'n') ADVANCE(282); + if (lookahead == 'n') ADVANCE(295); END_STATE(); case 1366: - if (lookahead == 'n') ADVANCE(295); + if (lookahead == 'n') ADVANCE(372); END_STATE(); case 1367: - if (lookahead == 'n') ADVANCE(372); + if (lookahead == 'n') ADVANCE(554); END_STATE(); case 1368: - if (lookahead == 'n') ADVANCE(555); + if (lookahead == 'n') ADVANCE(109); END_STATE(); case 1369: - if (lookahead == 'n') ADVANCE(109); + if (lookahead == 'n') ADVANCE(698); END_STATE(); case 1370: - if (lookahead == 'n') ADVANCE(699); + if (lookahead == 'n') ADVANCE(2021); END_STATE(); case 1371: - if (lookahead == 'n') ADVANCE(2021); + if (lookahead == 'n') ADVANCE(37); END_STATE(); case 1372: - if (lookahead == 'n') ADVANCE(37); + if (lookahead == 'n') ADVANCE(378); END_STATE(); case 1373: - if (lookahead == 'n') ADVANCE(378); + if (lookahead == 'n') ADVANCE(382); END_STATE(); case 1374: - if (lookahead == 'n') ADVANCE(382); + if (lookahead == 'n') ADVANCE(55); END_STATE(); case 1375: - if (lookahead == 'n') ADVANCE(55); + if (lookahead == 'n') ADVANCE(1816); END_STATE(); case 1376: - if (lookahead == 'n') ADVANCE(1817); + if (lookahead == 'n') ADVANCE(345); END_STATE(); case 1377: - if (lookahead == 'n') ADVANCE(345); + if (lookahead == 'n') ADVANCE(110); END_STATE(); case 1378: - if (lookahead == 'n') ADVANCE(110); + if (lookahead == 'n') ADVANCE(276); END_STATE(); case 1379: - if (lookahead == 'n') ADVANCE(276); + if (lookahead == 'n') ADVANCE(1994); END_STATE(); case 1380: - if (lookahead == 'n') ADVANCE(1995); + if (lookahead == 'n') ADVANCE(976); END_STATE(); case 1381: - if (lookahead == 'n') ADVANCE(977); + if (lookahead == 'n') ADVANCE(774); END_STATE(); case 1382: - if (lookahead == 'n') ADVANCE(775); + if (lookahead == 'n') ADVANCE(117); END_STATE(); case 1383: - if (lookahead == 'n') ADVANCE(117); + if (lookahead == 'n') ADVANCE(978); END_STATE(); case 1384: - if (lookahead == 'n') ADVANCE(979); + if (lookahead == 'n') ADVANCE(978); + if (lookahead == 'r') ADVANCE(1608); END_STATE(); case 1385: - if (lookahead == 'n') ADVANCE(979); - if (lookahead == 'r') ADVANCE(1609); + if (lookahead == 'n') ADVANCE(1876); END_STATE(); case 1386: - if (lookahead == 'n') ADVANCE(1877); + if (lookahead == 'n') ADVANCE(984); + if (lookahead == 'p') ADVANCE(954); + if (lookahead == 'w') ADVANCE(885); END_STATE(); case 1387: - if (lookahead == 'n') ADVANCE(985); - if (lookahead == 'p') ADVANCE(955); - if (lookahead == 'w') ADVANCE(886); + if (lookahead == 'n') ADVANCE(222); END_STATE(); case 1388: - if (lookahead == 'n') ADVANCE(222); + if (lookahead == 'n') ADVANCE(1197); END_STATE(); case 1389: - if (lookahead == 'n') ADVANCE(1198); + if (lookahead == 'n') ADVANCE(125); END_STATE(); case 1390: - if (lookahead == 'n') ADVANCE(125); + if (lookahead == 'n') ADVANCE(1761); END_STATE(); case 1391: - if (lookahead == 'n') ADVANCE(1762); + if (lookahead == 'n') ADVANCE(747); END_STATE(); case 1392: - if (lookahead == 'n') ADVANCE(748); + if (lookahead == 'n') ADVANCE(120); END_STATE(); case 1393: - if (lookahead == 'n') ADVANCE(120); + if (lookahead == 'n') ADVANCE(1008); + if (lookahead == 'r') ADVANCE(865); END_STATE(); case 1394: - if (lookahead == 'n') ADVANCE(1009); - if (lookahead == 'r') ADVANCE(866); + if (lookahead == 'n') ADVANCE(704); END_STATE(); case 1395: - if (lookahead == 'n') ADVANCE(705); + if (lookahead == 'n') ADVANCE(1024); END_STATE(); case 1396: - if (lookahead == 'n') ADVANCE(1025); + if (lookahead == 'n') ADVANCE(784); END_STATE(); case 1397: - if (lookahead == 'n') ADVANCE(785); + if (lookahead == 'n') ADVANCE(982); END_STATE(); case 1398: - if (lookahead == 'n') ADVANCE(983); + if (lookahead == 'n') ADVANCE(732); END_STATE(); case 1399: - if (lookahead == 'n') ADVANCE(733); + if (lookahead == 'n') ADVANCE(1492); END_STATE(); case 1400: - if (lookahead == 'n') ADVANCE(1493); + if (lookahead == 'n') ADVANCE(1010); END_STATE(); case 1401: - if (lookahead == 'n') ADVANCE(1011); + if (lookahead == 'n') ADVANCE(757); END_STATE(); case 1402: - if (lookahead == 'n') ADVANCE(758); + if (lookahead == 'n') ADVANCE(1037); END_STATE(); case 1403: - if (lookahead == 'n') ADVANCE(1038); + if (lookahead == 'n') ADVANCE(816); END_STATE(); case 1404: - if (lookahead == 'n') ADVANCE(817); + if (lookahead == 'n') ADVANCE(985); END_STATE(); case 1405: - if (lookahead == 'n') ADVANCE(986); + if (lookahead == 'n') ADVANCE(727); END_STATE(); case 1406: - if (lookahead == 'n') ADVANCE(728); + if (lookahead == 'n') ADVANCE(1894); END_STATE(); case 1407: - if (lookahead == 'n') ADVANCE(1895); + if (lookahead == 'n') ADVANCE(1827); END_STATE(); case 1408: - if (lookahead == 'n') ADVANCE(1828); + if (lookahead == 'n') ADVANCE(1841); END_STATE(); case 1409: - if (lookahead == 'n') ADVANCE(1842); + if (lookahead == 'n') ADVANCE(1866); END_STATE(); case 1410: - if (lookahead == 'n') ADVANCE(1867); + if (lookahead == 'n') ADVANCE(1868); END_STATE(); case 1411: - if (lookahead == 'n') ADVANCE(1869); + if (lookahead == 'n') ADVANCE(846); END_STATE(); case 1412: - if (lookahead == 'n') ADVANCE(847); + if (lookahead == 'n') ADVANCE(849); END_STATE(); case 1413: - if (lookahead == 'n') ADVANCE(850); + if (lookahead == 'n') ADVANCE(1286); END_STATE(); case 1414: - if (lookahead == 'n') ADVANCE(1287); + if (lookahead == 'n') ADVANCE(1925); END_STATE(); case 1415: - if (lookahead == 'n') ADVANCE(1926); + if (lookahead == 'n') ADVANCE(74); END_STATE(); case 1416: - if (lookahead == 'n') ADVANCE(74); + if (lookahead == 'n') ADVANCE(1003); END_STATE(); case 1417: - if (lookahead == 'n') ADVANCE(1004); + if (lookahead == 'n') ADVANCE(1006); END_STATE(); case 1418: - if (lookahead == 'n') ADVANCE(1007); + if (lookahead == 'n') ADVANCE(931); END_STATE(); case 1419: - if (lookahead == 'n') ADVANCE(932); + if (lookahead == 'n') ADVANCE(1116); END_STATE(); case 1420: - if (lookahead == 'n') ADVANCE(1117); + if (lookahead == 'n') ADVANCE(1884); END_STATE(); case 1421: - if (lookahead == 'n') ADVANCE(1885); + if (lookahead == 'n') ADVANCE(1923); END_STATE(); case 1422: - if (lookahead == 'n') ADVANCE(1924); + if (lookahead == 'n') ADVANCE(1497); END_STATE(); case 1423: - if (lookahead == 'n') ADVANCE(1498); + if (lookahead == 'n') ADVANCE(1885); END_STATE(); case 1424: - if (lookahead == 'n') ADVANCE(1886); + if (lookahead == 'n') ADVANCE(1093); END_STATE(); case 1425: - if (lookahead == 'n') ADVANCE(1094); + if (lookahead == 'n') ADVANCE(1883); END_STATE(); case 1426: - if (lookahead == 'n') ADVANCE(1884); + if (lookahead == 'n') ADVANCE(1903); END_STATE(); case 1427: - if (lookahead == 'n') ADVANCE(1904); + if (lookahead == 'n') ADVANCE(514); END_STATE(); case 1428: - if (lookahead == 'n') ADVANCE(515); + if (lookahead == 'n') ADVANCE(1895); END_STATE(); case 1429: - if (lookahead == 'n') ADVANCE(1896); + if (lookahead == 'n') ADVANCE(1029); END_STATE(); case 1430: - if (lookahead == 'n') ADVANCE(1030); + if (lookahead == 'n') ADVANCE(1893); END_STATE(); case 1431: - if (lookahead == 'n') ADVANCE(1894); + if (lookahead == 'n') ADVANCE(1172); END_STATE(); case 1432: - if (lookahead == 'n') ADVANCE(1173); + if (lookahead == 'n') ADVANCE(934); END_STATE(); case 1433: - if (lookahead == 'n') ADVANCE(935); + if (lookahead == 'n') ADVANCE(1031); + if (lookahead == 'r') ADVANCE(1711); END_STATE(); case 1434: - if (lookahead == 'n') ADVANCE(1032); - if (lookahead == 'r') ADVANCE(1712); + if (lookahead == 'n') ADVANCE(1031); + if (lookahead == 'r') ADVANCE(1715); END_STATE(); case 1435: - if (lookahead == 'n') ADVANCE(1032); - if (lookahead == 'r') ADVANCE(1716); + if (lookahead == 'n') ADVANCE(1897); END_STATE(); case 1436: - if (lookahead == 'n') ADVANCE(1898); + if (lookahead == 'n') ADVANCE(1032); END_STATE(); case 1437: if (lookahead == 'n') ADVANCE(1033); END_STATE(); case 1438: - if (lookahead == 'n') ADVANCE(1034); + if (lookahead == 'n') ADVANCE(1899); END_STATE(); case 1439: - if (lookahead == 'n') ADVANCE(1900); + if (lookahead == 'n') ADVANCE(1034); END_STATE(); case 1440: if (lookahead == 'n') ADVANCE(1035); @@ -13191,853 +14303,853 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(1036); END_STATE(); case 1442: - if (lookahead == 'n') ADVANCE(1037); + if (lookahead == 'n') ADVANCE(1904); END_STATE(); case 1443: - if (lookahead == 'n') ADVANCE(1905); + if (lookahead == 'n') ADVANCE(563); END_STATE(); case 1444: - if (lookahead == 'n') ADVANCE(564); + if (lookahead == 'n') ADVANCE(552); END_STATE(); case 1445: - if (lookahead == 'n') ADVANCE(553); + if (lookahead == 'o') ADVANCE(739); END_STATE(); case 1446: - if (lookahead == 'o') ADVANCE(740); + if (lookahead == 'o') ADVANCE(19); END_STATE(); case 1447: - if (lookahead == 'o') ADVANCE(19); + if (lookahead == 'o') ADVANCE(197); END_STATE(); case 1448: - if (lookahead == 'o') ADVANCE(197); + if (lookahead == 'o') ADVANCE(954); END_STATE(); case 1449: - if (lookahead == 'o') ADVANCE(955); + if (lookahead == 'o') ADVANCE(1985); END_STATE(); case 1450: - if (lookahead == 'o') ADVANCE(1986); + if (lookahead == 'o') ADVANCE(383); END_STATE(); case 1451: - if (lookahead == 'o') ADVANCE(383); + if (lookahead == 'o') ADVANCE(1964); END_STATE(); case 1452: - if (lookahead == 'o') ADVANCE(1965); + if (lookahead == 'o') ADVANCE(114); END_STATE(); case 1453: - if (lookahead == 'o') ADVANCE(114); + if (lookahead == 'o') ADVANCE(1818); END_STATE(); case 1454: - if (lookahead == 'o') ADVANCE(1819); + if (lookahead == 'o') ADVANCE(1817); END_STATE(); case 1455: - if (lookahead == 'o') ADVANCE(1818); + if (lookahead == 'o') ADVANCE(1608); END_STATE(); case 1456: - if (lookahead == 'o') ADVANCE(1609); + if (lookahead == 'o') ADVANCE(1816); END_STATE(); case 1457: - if (lookahead == 'o') ADVANCE(1817); + if (lookahead == 'o') ADVANCE(1816); + if (lookahead == 's') ADVANCE(1917); END_STATE(); case 1458: - if (lookahead == 'o') ADVANCE(1817); - if (lookahead == 's') ADVANCE(1918); + if (lookahead == 'o') ADVANCE(177); END_STATE(); case 1459: - if (lookahead == 'o') ADVANCE(177); + if (lookahead == 'o') ADVANCE(1996); END_STATE(); case 1460: - if (lookahead == 'o') ADVANCE(1997); + if (lookahead == 'o') ADVANCE(687); END_STATE(); case 1461: - if (lookahead == 'o') ADVANCE(688); + if (lookahead == 'o') ADVANCE(1994); END_STATE(); case 1462: - if (lookahead == 'o') ADVANCE(1995); + if (lookahead == 'o') ADVANCE(1787); END_STATE(); case 1463: - if (lookahead == 'o') ADVANCE(1788); + if (lookahead == 'o') ADVANCE(213); END_STATE(); case 1464: - if (lookahead == 'o') ADVANCE(213); + if (lookahead == 'o') ADVANCE(1974); END_STATE(); case 1465: - if (lookahead == 'o') ADVANCE(1975); + if (lookahead == 'o') ADVANCE(2014); END_STATE(); case 1466: - if (lookahead == 'o') ADVANCE(2015); + if (lookahead == 'o') ADVANCE(1535); END_STATE(); case 1467: - if (lookahead == 'o') ADVANCE(1536); + if (lookahead == 'o') ADVANCE(1424); END_STATE(); case 1468: - if (lookahead == 'o') ADVANCE(1425); + if (lookahead == 'o') ADVANCE(1975); END_STATE(); case 1469: if (lookahead == 'o') ADVANCE(1976); END_STATE(); case 1470: - if (lookahead == 'o') ADVANCE(1977); + if (lookahead == 'o') ADVANCE(1321); END_STATE(); case 1471: - if (lookahead == 'o') ADVANCE(1322); + if (lookahead == 'o') ADVANCE(1197); END_STATE(); case 1472: - if (lookahead == 'o') ADVANCE(1198); + if (lookahead == 'o') ADVANCE(1871); END_STATE(); case 1473: - if (lookahead == 'o') ADVANCE(1872); + if (lookahead == 'o') ADVANCE(1977); END_STATE(); case 1474: - if (lookahead == 'o') ADVANCE(1978); + if (lookahead == 'o') ADVANCE(1990); END_STATE(); case 1475: - if (lookahead == 'o') ADVANCE(1991); + if (lookahead == 'o') ADVANCE(1761); END_STATE(); case 1476: - if (lookahead == 'o') ADVANCE(1762); + if (lookahead == 'o') ADVANCE(1383); END_STATE(); case 1477: - if (lookahead == 'o') ADVANCE(1384); + if (lookahead == 'o') ADVANCE(1383); + if (lookahead == 'y') ADVANCE(19); END_STATE(); case 1478: - if (lookahead == 'o') ADVANCE(1384); - if (lookahead == 'y') ADVANCE(19); + if (lookahead == 'o') ADVANCE(1991); END_STATE(); case 1479: - if (lookahead == 'o') ADVANCE(1992); + if (lookahead == 'o') ADVANCE(1983); END_STATE(); case 1480: - if (lookahead == 'o') ADVANCE(1984); + if (lookahead == 'o') ADVANCE(1978); END_STATE(); case 1481: - if (lookahead == 'o') ADVANCE(1979); + if (lookahead == 'o') ADVANCE(1216); + if (lookahead == 'u') ADVANCE(576); END_STATE(); case 1482: - if (lookahead == 'o') ADVANCE(1217); - if (lookahead == 'u') ADVANCE(577); + if (lookahead == 'o') ADVANCE(762); END_STATE(); case 1483: - if (lookahead == 'o') ADVANCE(763); + if (lookahead == 'o') ADVANCE(1390); END_STATE(); case 1484: - if (lookahead == 'o') ADVANCE(1391); + if (lookahead == 'o') ADVANCE(1981); END_STATE(); case 1485: - if (lookahead == 'o') ADVANCE(1982); + if (lookahead == 'o') ADVANCE(1822); END_STATE(); case 1486: - if (lookahead == 'o') ADVANCE(1823); + if (lookahead == 'o') ADVANCE(1662); END_STATE(); case 1487: - if (lookahead == 'o') ADVANCE(1663); + if (lookahead == 'o') ADVANCE(1362); END_STATE(); case 1488: - if (lookahead == 'o') ADVANCE(1363); + if (lookahead == 'o') ADVANCE(1362); + if (lookahead == 'r') ADVANCE(422); + if (lookahead == 't') ADVANCE(19); END_STATE(); case 1489: - if (lookahead == 'o') ADVANCE(1363); - if (lookahead == 'r') ADVANCE(423); - if (lookahead == 't') ADVANCE(19); + if (lookahead == 'o') ADVANCE(1382); END_STATE(); case 1490: - if (lookahead == 'o') ADVANCE(1383); + if (lookahead == 'o') ADVANCE(1418); END_STATE(); case 1491: - if (lookahead == 'o') ADVANCE(1419); + if (lookahead == 'o') ADVANCE(1374); END_STATE(); case 1492: - if (lookahead == 'o') ADVANCE(1375); + if (lookahead == 'o') ADVANCE(1960); END_STATE(); case 1493: - if (lookahead == 'o') ADVANCE(1961); + if (lookahead == 'o') ADVANCE(1361); END_STATE(); case 1494: - if (lookahead == 'o') ADVANCE(1362); + if (lookahead == 'o') ADVANCE(1389); END_STATE(); case 1495: - if (lookahead == 'o') ADVANCE(1390); + if (lookahead == 'o') ADVANCE(1962); END_STATE(); case 1496: - if (lookahead == 'o') ADVANCE(1963); + if (lookahead == 'o') ADVANCE(1455); END_STATE(); case 1497: - if (lookahead == 'o') ADVANCE(1456); + if (lookahead == 'o') ADVANCE(1908); END_STATE(); case 1498: - if (lookahead == 'o') ADVANCE(1909); + if (lookahead == 'o') ADVANCE(1215); END_STATE(); case 1499: - if (lookahead == 'o') ADVANCE(1216); + if (lookahead == 'o') ADVANCE(686); END_STATE(); case 1500: - if (lookahead == 'o') ADVANCE(687); + if (lookahead == 'o') ADVANCE(1857); END_STATE(); case 1501: - if (lookahead == 'o') ADVANCE(1858); + if (lookahead == 'o') ADVANCE(1859); END_STATE(); case 1502: - if (lookahead == 'o') ADVANCE(1860); + if (lookahead == 'o') ADVANCE(1901); END_STATE(); case 1503: - if (lookahead == 'o') ADVANCE(1902); + if (lookahead == 'o') ADVANCE(1413); END_STATE(); case 1504: - if (lookahead == 'o') ADVANCE(1414); + if (lookahead == 'o') ADVANCE(1415); END_STATE(); case 1505: - if (lookahead == 'o') ADVANCE(1416); + if (lookahead == 'o') ADVANCE(1381); END_STATE(); case 1506: - if (lookahead == 'o') ADVANCE(1382); + if (lookahead == 'o') ADVANCE(1674); + if (lookahead == 'r') ADVANCE(1466); END_STATE(); case 1507: - if (lookahead == 'o') ADVANCE(1675); - if (lookahead == 'r') ADVANCE(1467); + if (lookahead == 'o') ADVANCE(1699); END_STATE(); case 1508: - if (lookahead == 'o') ADVANCE(1700); + if (lookahead == 'o') ADVANCE(1701); + if (lookahead == 'r') ADVANCE(1466); END_STATE(); case 1509: - if (lookahead == 'o') ADVANCE(1702); - if (lookahead == 'r') ADVANCE(1467); + if (lookahead == 'o') ADVANCE(1625); END_STATE(); case 1510: - if (lookahead == 'o') ADVANCE(1626); + if (lookahead == 'o') ADVANCE(1986); END_STATE(); case 1511: - if (lookahead == 'o') ADVANCE(1987); + if (lookahead == 'o') ADVANCE(1337); END_STATE(); case 1512: - if (lookahead == 'o') ADVANCE(1338); + if (lookahead == 'o') ADVANCE(1337); + if (lookahead == 'y') ADVANCE(19); END_STATE(); case 1513: - if (lookahead == 'o') ADVANCE(1338); - if (lookahead == 'y') ADVANCE(19); + if (lookahead == 'o') ADVANCE(1680); END_STATE(); case 1514: - if (lookahead == 'o') ADVANCE(1681); + if (lookahead == 'o') ADVANCE(1564); END_STATE(); case 1515: - if (lookahead == 'o') ADVANCE(1565); + if (lookahead == 'o') ADVANCE(1575); END_STATE(); case 1516: - if (lookahead == 'o') ADVANCE(1576); + if (lookahead == 'o') ADVANCE(1944); END_STATE(); case 1517: - if (lookahead == 'o') ADVANCE(1945); + if (lookahead == 'o') ADVANCE(1992); END_STATE(); case 1518: - if (lookahead == 'o') ADVANCE(1993); + if (lookahead == 'o') ADVANCE(1987); END_STATE(); case 1519: - if (lookahead == 'o') ADVANCE(1988); + if (lookahead == 'o') ADVANCE(1950); END_STATE(); case 1520: - if (lookahead == 'o') ADVANCE(1951); + if (lookahead == 'o') ADVANCE(1865); END_STATE(); case 1521: - if (lookahead == 'o') ADVANCE(1866); + if (lookahead == 'o') ADVANCE(1417); + if (lookahead == 'u') ADVANCE(1555); END_STATE(); case 1522: - if (lookahead == 'o') ADVANCE(1418); - if (lookahead == 'u') ADVANCE(1556); + if (lookahead == 'o') ADVANCE(1988); END_STATE(); case 1523: - if (lookahead == 'o') ADVANCE(1989); + if (lookahead == 'o') ADVANCE(1430); END_STATE(); case 1524: - if (lookahead == 'o') ADVANCE(1431); + if (lookahead == 'o') ADVANCE(1695); END_STATE(); case 1525: - if (lookahead == 'o') ADVANCE(1696); + if (lookahead == 'o') ADVANCE(1503); END_STATE(); case 1526: - if (lookahead == 'o') ADVANCE(1504); + if (lookahead == 'o') ADVANCE(1676); END_STATE(); case 1527: - if (lookahead == 'o') ADVANCE(1677); + if (lookahead == 'o') ADVANCE(1409); END_STATE(); case 1528: - if (lookahead == 'o') ADVANCE(1410); + if (lookahead == 'o') ADVANCE(1483); END_STATE(); case 1529: - if (lookahead == 'o') ADVANCE(1484); + if (lookahead == 'o') ADVANCE(1505); END_STATE(); case 1530: - if (lookahead == 'o') ADVANCE(1506); + if (lookahead == 'o') ADVANCE(1741); END_STATE(); case 1531: - if (lookahead == 'o') ADVANCE(1742); + if (lookahead == 'o') ADVANCE(1312); END_STATE(); case 1532: - if (lookahead == 'o') ADVANCE(1313); + if (lookahead == 'o') ADVANCE(1965); END_STATE(); case 1533: - if (lookahead == 'o') ADVANCE(1966); + if (lookahead == 'o') ADVANCE(1993); END_STATE(); case 1534: - if (lookahead == 'o') ADVANCE(1994); + if (lookahead == 'p') ADVANCE(1812); END_STATE(); case 1535: - if (lookahead == 'p') ADVANCE(1813); + if (lookahead == 'p') ADVANCE(19); END_STATE(); case 1536: if (lookahead == 'p') ADVANCE(19); + if (lookahead == 'r') ADVANCE(1487); END_STATE(); case 1537: - if (lookahead == 'p') ADVANCE(19); - if (lookahead == 'r') ADVANCE(1488); + if (lookahead == 'p') ADVANCE(1044); END_STATE(); case 1538: - if (lookahead == 'p') ADVANCE(1045); + if (lookahead == 'p') ADVANCE(954); END_STATE(); case 1539: - if (lookahead == 'p') ADVANCE(955); + if (lookahead == 'p') ADVANCE(954); + if (lookahead == 'r') ADVANCE(533); END_STATE(); case 1540: - if (lookahead == 'p') ADVANCE(955); - if (lookahead == 'r') ADVANCE(534); + if (lookahead == 'p') ADVANCE(954); + if (lookahead == 'r') ADVANCE(274); + if (lookahead == 'u') ADVANCE(1692); END_STATE(); case 1541: - if (lookahead == 'p') ADVANCE(955); - if (lookahead == 'r') ADVANCE(274); - if (lookahead == 'u') ADVANCE(1693); + if (lookahead == 'p') ADVANCE(954); + if (lookahead == 'r') ADVANCE(1086); END_STATE(); case 1542: - if (lookahead == 'p') ADVANCE(955); - if (lookahead == 'r') ADVANCE(1087); - END_STATE(); - case 1543: - if (lookahead == 'p') ADVANCE(955); + if (lookahead == 'p') ADVANCE(954); if (lookahead == 't') ADVANCE(32); - if (lookahead == 'u') ADVANCE(602); - if (lookahead == 'w') ADVANCE(1365); + if (lookahead == 'u') ADVANCE(601); + if (lookahead == 'w') ADVANCE(1364); END_STATE(); - case 1544: - if (lookahead == 'p') ADVANCE(955); + case 1543: + if (lookahead == 'p') ADVANCE(954); if (lookahead == 't') ADVANCE(221); - if (lookahead == 'w') ADVANCE(1878); + if (lookahead == 'w') ADVANCE(1877); if (lookahead == 'x') ADVANCE(308); END_STATE(); + case 1544: + if (lookahead == 'p') ADVANCE(954); + if (lookahead == 'u') ADVANCE(1391); + END_STATE(); case 1545: - if (lookahead == 'p') ADVANCE(955); - if (lookahead == 'u') ADVANCE(1392); + if (lookahead == 'p') ADVANCE(31); END_STATE(); case 1546: - if (lookahead == 'p') ADVANCE(31); + if (lookahead == 'p') ADVANCE(316); END_STATE(); case 1547: - if (lookahead == 'p') ADVANCE(316); + if (lookahead == 'p') ADVANCE(38); END_STATE(); case 1548: - if (lookahead == 'p') ADVANCE(38); + if (lookahead == 'p') ADVANCE(13); END_STATE(); case 1549: - if (lookahead == 'p') ADVANCE(13); + if (lookahead == 'p') ADVANCE(317); END_STATE(); case 1550: - if (lookahead == 'p') ADVANCE(317); + if (lookahead == 'p') ADVANCE(277); END_STATE(); case 1551: - if (lookahead == 'p') ADVANCE(277); + if (lookahead == 'p') ADVANCE(1608); + if (lookahead == 's') ADVANCE(620); END_STATE(); case 1552: - if (lookahead == 'p') ADVANCE(1609); - if (lookahead == 's') ADVANCE(621); + if (lookahead == 'p') ADVANCE(390); END_STATE(); case 1553: - if (lookahead == 'p') ADVANCE(391); + if (lookahead == 'p') ADVANCE(191); END_STATE(); case 1554: - if (lookahead == 'p') ADVANCE(191); + if (lookahead == 'p') ADVANCE(276); END_STATE(); case 1555: - if (lookahead == 'p') ADVANCE(276); + if (lookahead == 'p') ADVANCE(291); END_STATE(); case 1556: - if (lookahead == 'p') ADVANCE(291); + if (lookahead == 'p') ADVANCE(117); END_STATE(); case 1557: - if (lookahead == 'p') ADVANCE(117); + if (lookahead == 'p') ADVANCE(201); END_STATE(); case 1558: - if (lookahead == 'p') ADVANCE(201); + if (lookahead == 'p') ADVANCE(1041); + if (lookahead == 't') ADVANCE(19); END_STATE(); case 1559: - if (lookahead == 'p') ADVANCE(1042); - if (lookahead == 't') ADVANCE(19); + if (lookahead == 'p') ADVANCE(1552); END_STATE(); case 1560: - if (lookahead == 'p') ADVANCE(1553); + if (lookahead == 'p') ADVANCE(1761); + if (lookahead == 'r') ADVANCE(1487); END_STATE(); case 1561: - if (lookahead == 'p') ADVANCE(1762); - if (lookahead == 'r') ADVANCE(1488); + if (lookahead == 'p') ADVANCE(126); END_STATE(); case 1562: - if (lookahead == 'p') ADVANCE(126); + if (lookahead == 'p') ADVANCE(1227); END_STATE(); case 1563: - if (lookahead == 'p') ADVANCE(1228); + if (lookahead == 'p') ADVANCE(1572); END_STATE(); case 1564: - if (lookahead == 'p') ADVANCE(1573); + if (lookahead == 'p') ADVANCE(784); END_STATE(); case 1565: - if (lookahead == 'p') ADVANCE(785); + if (lookahead == 'p') ADVANCE(832); END_STATE(); case 1566: - if (lookahead == 'p') ADVANCE(833); + if (lookahead == 'p') ADVANCE(1306); END_STATE(); case 1567: - if (lookahead == 'p') ADVANCE(1307); + if (lookahead == 'p') ADVANCE(1306); + if (lookahead == 't') ADVANCE(1643); END_STATE(); case 1568: - if (lookahead == 'p') ADVANCE(1307); - if (lookahead == 't') ADVANCE(1644); + if (lookahead == 'p') ADVANCE(1784); END_STATE(); case 1569: - if (lookahead == 'p') ADVANCE(1785); + if (lookahead == 'p') ADVANCE(1856); END_STATE(); case 1570: - if (lookahead == 'p') ADVANCE(1857); + if (lookahead == 'p') ADVANCE(1582); END_STATE(); case 1571: - if (lookahead == 'p') ADVANCE(1583); + if (lookahead == 'p') ADVANCE(1582); + if (lookahead == 'r') ADVANCE(1608); END_STATE(); case 1572: - if (lookahead == 'p') ADVANCE(1583); - if (lookahead == 'r') ADVANCE(1609); + if (lookahead == 'p') ADVANCE(410); END_STATE(); case 1573: - if (lookahead == 'p') ADVANCE(411); + if (lookahead == 'p') ADVANCE(1525); END_STATE(); case 1574: - if (lookahead == 'p') ADVANCE(1526); + if (lookahead == 'p') ADVANCE(1308); END_STATE(); case 1575: - if (lookahead == 'p') ADVANCE(1309); + if (lookahead == 'p') ADVANCE(1848); END_STATE(); case 1576: - if (lookahead == 'p') ADVANCE(1849); + if (lookahead == 'p') ADVANCE(1475); END_STATE(); case 1577: - if (lookahead == 'p') ADVANCE(1476); + if (lookahead == 'p') ADVANCE(1272); END_STATE(); case 1578: - if (lookahead == 'p') ADVANCE(1273); + if (lookahead == 'p') ADVANCE(530); END_STATE(); case 1579: - if (lookahead == 'p') ADVANCE(531); + if (lookahead == 'p') ADVANCE(1802); END_STATE(); case 1580: - if (lookahead == 'p') ADVANCE(1803); + if (lookahead == 'p') ADVANCE(1707); + if (lookahead == 's') ADVANCE(1935); END_STATE(); case 1581: - if (lookahead == 'p') ADVANCE(1708); - if (lookahead == 's') ADVANCE(1936); + if (lookahead == 'p') ADVANCE(1284); END_STATE(); case 1582: - if (lookahead == 'p') ADVANCE(1285); + if (lookahead == 'p') ADVANCE(1687); END_STATE(); case 1583: - if (lookahead == 'p') ADVANCE(1688); + if (lookahead == 'p') ADVANCE(512); END_STATE(); case 1584: - if (lookahead == 'p') ADVANCE(513); + if (lookahead == 'p') ADVANCE(561); END_STATE(); case 1585: - if (lookahead == 'p') ADVANCE(562); + if (lookahead == 'p') ADVANCE(328); END_STATE(); case 1586: - if (lookahead == 'p') ADVANCE(328); + if (lookahead == 'p') ADVANCE(1529); END_STATE(); case 1587: - if (lookahead == 'p') ADVANCE(1530); + if (lookahead == 'p') ADVANCE(545); END_STATE(); case 1588: - if (lookahead == 'p') ADVANCE(546); + if (lookahead == 'p') ADVANCE(1528); END_STATE(); case 1589: - if (lookahead == 'p') ADVANCE(1529); + if (lookahead == 'p') ADVANCE(563); END_STATE(); case 1590: - if (lookahead == 'p') ADVANCE(564); + if (lookahead == 'q') ADVANCE(19); END_STATE(); case 1591: - if (lookahead == 'q') ADVANCE(19); + if (lookahead == 'q') ADVANCE(107); END_STATE(); case 1592: - if (lookahead == 'q') ADVANCE(107); + if (lookahead == 'q') ADVANCE(1277); END_STATE(); case 1593: - if (lookahead == 'q') ADVANCE(1278); + if (lookahead == 'q') ADVANCE(1015); END_STATE(); case 1594: - if (lookahead == 'q') ADVANCE(1016); + if (lookahead == 'q') ADVANCE(1580); END_STATE(); case 1595: - if (lookahead == 'q') ADVANCE(1581); + if (lookahead == 'q') ADVANCE(192); END_STATE(); case 1596: - if (lookahead == 'q') ADVANCE(192); + if (lookahead == 'q') ADVANCE(1590); END_STATE(); case 1597: - if (lookahead == 'q') ADVANCE(1591); + if (lookahead == 'q') ADVANCE(1911); END_STATE(); case 1598: - if (lookahead == 'q') ADVANCE(1912); + if (lookahead == 'q') ADVANCE(1930); END_STATE(); case 1599: - if (lookahead == 'q') ADVANCE(1931); + if (lookahead == 'q') ADVANCE(1963); + if (lookahead == 'u') ADVANCE(599); END_STATE(); case 1600: - if (lookahead == 'q') ADVANCE(1964); - if (lookahead == 'u') ADVANCE(600); + if (lookahead == 'q') ADVANCE(1951); END_STATE(); case 1601: - if (lookahead == 'q') ADVANCE(1952); + if (lookahead == 'q') ADVANCE(1940); END_STATE(); case 1602: - if (lookahead == 'q') ADVANCE(1941); + if (lookahead == 'q') ADVANCE(705); + if (lookahead == 't') ADVANCE(404); END_STATE(); case 1603: - if (lookahead == 'q') ADVANCE(706); - if (lookahead == 't') ADVANCE(405); + if (lookahead == 'q') ADVANCE(1954); END_STATE(); case 1604: - if (lookahead == 'q') ADVANCE(1955); + if (lookahead == 'q') ADVANCE(1958); END_STATE(); case 1605: - if (lookahead == 'q') ADVANCE(1959); + if (lookahead == 'q') ADVANCE(1961); END_STATE(); case 1606: - if (lookahead == 'q') ADVANCE(1962); + if (lookahead == 'r') ADVANCE(739); END_STATE(); case 1607: - if (lookahead == 'r') ADVANCE(740); + if (lookahead == 'r') ADVANCE(793); END_STATE(); case 1608: - if (lookahead == 'r') ADVANCE(794); + if (lookahead == 'r') ADVANCE(19); END_STATE(); case 1609: - if (lookahead == 'r') ADVANCE(19); + if (lookahead == 'r') ADVANCE(298); END_STATE(); case 1610: - if (lookahead == 'r') ADVANCE(298); + if (lookahead == 'r') ADVANCE(176); END_STATE(); case 1611: - if (lookahead == 'r') ADVANCE(176); + if (lookahead == 'r') ADVANCE(954); END_STATE(); case 1612: - if (lookahead == 'r') ADVANCE(955); + if (lookahead == 'r') ADVANCE(95); END_STATE(); case 1613: - if (lookahead == 'r') ADVANCE(95); + if (lookahead == 'r') ADVANCE(189); END_STATE(); case 1614: - if (lookahead == 'r') ADVANCE(189); + if (lookahead == 'r') ADVANCE(66); END_STATE(); case 1615: - if (lookahead == 'r') ADVANCE(66); + if (lookahead == 'r') ADVANCE(663); END_STATE(); case 1616: - if (lookahead == 'r') ADVANCE(664); + if (lookahead == 'r') ADVANCE(283); END_STATE(); case 1617: - if (lookahead == 'r') ADVANCE(283); + if (lookahead == 'r') ADVANCE(2029); END_STATE(); case 1618: - if (lookahead == 'r') ADVANCE(2029); + if (lookahead == 'r') ADVANCE(141); END_STATE(); case 1619: - if (lookahead == 'r') ADVANCE(141); + if (lookahead == 'r') ADVANCE(91); END_STATE(); case 1620: - if (lookahead == 'r') ADVANCE(91); + if (lookahead == 'r') ADVANCE(1054); END_STATE(); case 1621: - if (lookahead == 'r') ADVANCE(1055); + if (lookahead == 'r') ADVANCE(67); END_STATE(); case 1622: - if (lookahead == 'r') ADVANCE(67); + if (lookahead == 'r') ADVANCE(354); END_STATE(); case 1623: - if (lookahead == 'r') ADVANCE(354); + if (lookahead == 'r') ADVANCE(231); END_STATE(); case 1624: - if (lookahead == 'r') ADVANCE(231); + if (lookahead == 'r') ADVANCE(2033); END_STATE(); case 1625: - if (lookahead == 'r') ADVANCE(2033); + if (lookahead == 'r') ADVANCE(24); END_STATE(); case 1626: - if (lookahead == 'r') ADVANCE(24); + if (lookahead == 'r') ADVANCE(42); END_STATE(); case 1627: - if (lookahead == 'r') ADVANCE(42); + if (lookahead == 'r') ADVANCE(1608); END_STATE(); case 1628: - if (lookahead == 'r') ADVANCE(1609); + if (lookahead == 'r') ADVANCE(182); END_STATE(); case 1629: - if (lookahead == 'r') ADVANCE(182); + if (lookahead == 'r') ADVANCE(336); END_STATE(); case 1630: - if (lookahead == 'r') ADVANCE(336); + if (lookahead == 'r') ADVANCE(613); END_STATE(); case 1631: - if (lookahead == 'r') ADVANCE(614); + if (lookahead == 'r') ADVANCE(225); END_STATE(); case 1632: - if (lookahead == 'r') ADVANCE(225); + if (lookahead == 'r') ADVANCE(149); END_STATE(); case 1633: - if (lookahead == 'r') ADVANCE(149); + if (lookahead == 'r') ADVANCE(1816); END_STATE(); case 1634: - if (lookahead == 'r') ADVANCE(1817); + if (lookahead == 'r') ADVANCE(1816); + if (lookahead == 'u') ADVANCE(547); END_STATE(); case 1635: - if (lookahead == 'r') ADVANCE(1817); - if (lookahead == 'u') ADVANCE(548); + if (lookahead == 'r') ADVANCE(110); END_STATE(); case 1636: - if (lookahead == 'r') ADVANCE(110); + if (lookahead == 'r') ADVANCE(766); END_STATE(); case 1637: - if (lookahead == 'r') ADVANCE(767); + if (lookahead == 'r') ADVANCE(85); END_STATE(); case 1638: - if (lookahead == 'r') ADVANCE(85); + if (lookahead == 'r') ADVANCE(94); END_STATE(); case 1639: - if (lookahead == 'r') ADVANCE(94); + if (lookahead == 'r') ADVANCE(81); END_STATE(); case 1640: - if (lookahead == 'r') ADVANCE(81); + if (lookahead == 'r') ADVANCE(348); END_STATE(); case 1641: - if (lookahead == 'r') ADVANCE(348); + if (lookahead == 'r') ADVANCE(612); END_STATE(); case 1642: - if (lookahead == 'r') ADVANCE(613); + if (lookahead == 'r') ADVANCE(441); END_STATE(); case 1643: - if (lookahead == 'r') ADVANCE(442); + if (lookahead == 'r') ADVANCE(1081); END_STATE(); case 1644: - if (lookahead == 'r') ADVANCE(1082); + if (lookahead == 'r') ADVANCE(184); END_STATE(); case 1645: - if (lookahead == 'r') ADVANCE(184); + if (lookahead == 'r') ADVANCE(167); END_STATE(); case 1646: - if (lookahead == 'r') ADVANCE(167); + if (lookahead == 'r') ADVANCE(173); END_STATE(); case 1647: - if (lookahead == 'r') ADVANCE(173); + if (lookahead == 'r') ADVANCE(742); END_STATE(); case 1648: - if (lookahead == 'r') ADVANCE(743); + if (lookahead == 'r') ADVANCE(734); END_STATE(); case 1649: - if (lookahead == 'r') ADVANCE(735); + if (lookahead == 'r') ADVANCE(1446); END_STATE(); case 1650: - if (lookahead == 'r') ADVANCE(1447); + if (lookahead == 'r') ADVANCE(178); END_STATE(); case 1651: - if (lookahead == 'r') ADVANCE(178); + if (lookahead == 'r') ADVANCE(1207); END_STATE(); case 1652: - if (lookahead == 'r') ADVANCE(1208); + if (lookahead == 'r') ADVANCE(207); END_STATE(); case 1653: - if (lookahead == 'r') ADVANCE(207); + if (lookahead == 'r') ADVANCE(294); END_STATE(); case 1654: - if (lookahead == 'r') ADVANCE(294); + if (lookahead == 'r') ADVANCE(218); END_STATE(); case 1655: - if (lookahead == 'r') ADVANCE(218); + if (lookahead == 'r') ADVANCE(724); END_STATE(); case 1656: - if (lookahead == 'r') ADVANCE(725); + if (lookahead == 'r') ADVANCE(1535); END_STATE(); case 1657: - if (lookahead == 'r') ADVANCE(1536); + if (lookahead == 'r') ADVANCE(861); END_STATE(); case 1658: - if (lookahead == 'r') ADVANCE(862); + if (lookahead == 'r') ADVANCE(1876); END_STATE(); case 1659: - if (lookahead == 'r') ADVANCE(1877); + if (lookahead == 'r') ADVANCE(181); END_STATE(); case 1660: - if (lookahead == 'r') ADVANCE(181); + if (lookahead == 'r') ADVANCE(395); END_STATE(); case 1661: - if (lookahead == 'r') ADVANCE(396); + if (lookahead == 'r') ADVANCE(1487); END_STATE(); case 1662: - if (lookahead == 'r') ADVANCE(1488); + if (lookahead == 'r') ADVANCE(1197); END_STATE(); case 1663: - if (lookahead == 'r') ADVANCE(1198); + if (lookahead == 'r') ADVANCE(2004); END_STATE(); case 1664: - if (lookahead == 'r') ADVANCE(2005); + if (lookahead == 'r') ADVANCE(2006); END_STATE(); case 1665: - if (lookahead == 'r') ADVANCE(2007); + if (lookahead == 'r') ADVANCE(1450); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 1666: - if (lookahead == 'r') ADVANCE(1451); - if (lookahead == 't') ADVANCE(391); + if (lookahead == 'r') ADVANCE(1761); END_STATE(); case 1667: - if (lookahead == 'r') ADVANCE(1762); + if (lookahead == 'r') ADVANCE(854); END_STATE(); case 1668: - if (lookahead == 'r') ADVANCE(855); + if (lookahead == 'r') ADVANCE(1445); END_STATE(); case 1669: - if (lookahead == 'r') ADVANCE(1446); + if (lookahead == 'r') ADVANCE(422); END_STATE(); case 1670: - if (lookahead == 'r') ADVANCE(423); + if (lookahead == 'r') ADVANCE(1982); END_STATE(); case 1671: - if (lookahead == 'r') ADVANCE(1983); + if (lookahead == 'r') ADVANCE(2005); END_STATE(); case 1672: - if (lookahead == 'r') ADVANCE(2006); + if (lookahead == 'r') ADVANCE(912); END_STATE(); case 1673: - if (lookahead == 'r') ADVANCE(913); + if (lookahead == 'r') ADVANCE(1053); END_STATE(); case 1674: - if (lookahead == 'r') ADVANCE(1054); + if (lookahead == 'r') ADVANCE(1362); END_STATE(); case 1675: - if (lookahead == 'r') ADVANCE(1363); + if (lookahead == 'r') ADVANCE(620); END_STATE(); case 1676: - if (lookahead == 'r') ADVANCE(621); + if (lookahead == 'r') ADVANCE(784); END_STATE(); case 1677: - if (lookahead == 'r') ADVANCE(785); + if (lookahead == 'r') ADVANCE(1466); END_STATE(); case 1678: - if (lookahead == 'r') ADVANCE(1467); + if (lookahead == 'r') ADVANCE(1158); END_STATE(); case 1679: - if (lookahead == 'r') ADVANCE(1159); + if (lookahead == 'r') ADVANCE(1471); END_STATE(); case 1680: - if (lookahead == 'r') ADVANCE(1472); + if (lookahead == 'r') ADVANCE(1824); END_STATE(); case 1681: - if (lookahead == 'r') ADVANCE(1825); + if (lookahead == 'r') ADVANCE(1459); END_STATE(); case 1682: - if (lookahead == 'r') ADVANCE(1460); + if (lookahead == 'r') ADVANCE(1781); END_STATE(); case 1683: - if (lookahead == 'r') ADVANCE(1782); + if (lookahead == 'r') ADVANCE(693); END_STATE(); case 1684: - if (lookahead == 'r') ADVANCE(694); + if (lookahead == 'r') ADVANCE(1464); END_STATE(); case 1685: - if (lookahead == 'r') ADVANCE(1465); + if (lookahead == 'r') ADVANCE(1617); END_STATE(); case 1686: - if (lookahead == 'r') ADVANCE(1618); + if (lookahead == 'r') ADVANCE(458); END_STATE(); case 1687: - if (lookahead == 'r') ADVANCE(459); + if (lookahead == 'r') ADVANCE(1461); END_STATE(); case 1688: - if (lookahead == 'r') ADVANCE(1462); + if (lookahead == 'r') ADVANCE(1894); END_STATE(); case 1689: - if (lookahead == 'r') ADVANCE(1895); + if (lookahead == 'r') ADVANCE(1573); END_STATE(); case 1690: - if (lookahead == 'r') ADVANCE(1574); + if (lookahead == 'r') ADVANCE(1887); END_STATE(); case 1691: - if (lookahead == 'r') ADVANCE(1888); + if (lookahead == 'r') ADVANCE(1803); END_STATE(); case 1692: - if (lookahead == 'r') ADVANCE(1804); + if (lookahead == 'r') ADVANCE(1167); END_STATE(); case 1693: - if (lookahead == 'r') ADVANCE(1168); + if (lookahead == 'r') ADVANCE(1811); END_STATE(); case 1694: - if (lookahead == 'r') ADVANCE(1812); + if (lookahead == 'r') ADVANCE(837); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 1695: - if (lookahead == 'r') ADVANCE(838); - if (lookahead == 't') ADVANCE(391); + if (lookahead == 'r') ADVANCE(1840); END_STATE(); case 1696: - if (lookahead == 'r') ADVANCE(1841); + if (lookahead == 'r') ADVANCE(461); END_STATE(); case 1697: - if (lookahead == 'r') ADVANCE(462); + if (lookahead == 'r') ADVANCE(1129); END_STATE(); case 1698: - if (lookahead == 'r') ADVANCE(1130); + if (lookahead == 'r') ADVANCE(1468); END_STATE(); case 1699: - if (lookahead == 'r') ADVANCE(1469); + if (lookahead == 'r') ADVANCE(1403); END_STATE(); case 1700: - if (lookahead == 'r') ADVANCE(1404); + if (lookahead == 'r') ADVANCE(1789); END_STATE(); case 1701: - if (lookahead == 'r') ADVANCE(1790); + if (lookahead == 'r') ADVANCE(1392); END_STATE(); case 1702: - if (lookahead == 'r') ADVANCE(1393); + if (lookahead == 'r') ADVANCE(1107); END_STATE(); case 1703: - if (lookahead == 'r') ADVANCE(1108); + if (lookahead == 'r') ADVANCE(1431); END_STATE(); case 1704: - if (lookahead == 'r') ADVANCE(1432); + if (lookahead == 'r') ADVANCE(1255); END_STATE(); case 1705: - if (lookahead == 'r') ADVANCE(1256); + if (lookahead == 'r') ADVANCE(1164); END_STATE(); case 1706: - if (lookahead == 'r') ADVANCE(1165); + if (lookahead == 'r') ADVANCE(1259); END_STATE(); case 1707: - if (lookahead == 'r') ADVANCE(1260); + if (lookahead == 'r') ADVANCE(859); END_STATE(); case 1708: - if (lookahead == 'r') ADVANCE(860); + if (lookahead == 'r') ADVANCE(1469); END_STATE(); case 1709: - if (lookahead == 'r') ADVANCE(1470); + if (lookahead == 'r') ADVANCE(1820); END_STATE(); case 1710: - if (lookahead == 'r') ADVANCE(1821); + if (lookahead == 'r') ADVANCE(801); + if (lookahead == 't') ADVANCE(421); END_STATE(); case 1711: - if (lookahead == 'r') ADVANCE(802); - if (lookahead == 't') ADVANCE(422); + if (lookahead == 'r') ADVANCE(1473); END_STATE(); case 1712: if (lookahead == 'r') ADVANCE(1474); END_STATE(); case 1713: - if (lookahead == 'r') ADVANCE(1475); + if (lookahead == 'r') ADVANCE(1478); END_STATE(); case 1714: if (lookahead == 'r') ADVANCE(1479); @@ -14046,92 +15158,92 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(1480); END_STATE(); case 1716: - if (lookahead == 'r') ADVANCE(1481); + if (lookahead == 'r') ADVANCE(952); END_STATE(); case 1717: - if (lookahead == 'r') ADVANCE(953); + if (lookahead == 'r') ADVANCE(804); END_STATE(); case 1718: - if (lookahead == 'r') ADVANCE(805); + if (lookahead == 'r') ADVANCE(1484); END_STATE(); case 1719: - if (lookahead == 'r') ADVANCE(1485); + if (lookahead == 'r') ADVANCE(1623); END_STATE(); case 1720: - if (lookahead == 'r') ADVANCE(1624); + if (lookahead == 'r') ADVANCE(908); END_STATE(); case 1721: - if (lookahead == 'r') ADVANCE(909); + if (lookahead == 'r') ADVANCE(1613); END_STATE(); case 1722: - if (lookahead == 'r') ADVANCE(1614); + if (lookahead == 'r') ADVANCE(1646); END_STATE(); case 1723: - if (lookahead == 'r') ADVANCE(1647); + if (lookahead == 'r') ADVANCE(927); END_STATE(); case 1724: - if (lookahead == 'r') ADVANCE(928); + if (lookahead == 'r') ADVANCE(829); END_STATE(); case 1725: - if (lookahead == 'r') ADVANCE(830); + if (lookahead == 'r') ADVANCE(551); END_STATE(); case 1726: - if (lookahead == 'r') ADVANCE(552); + if (lookahead == 'r') ADVANCE(466); END_STATE(); case 1727: - if (lookahead == 'r') ADVANCE(467); + if (lookahead == 'r') ADVANCE(511); END_STATE(); case 1728: - if (lookahead == 'r') ADVANCE(512); + if (lookahead == 'r') ADVANCE(1139); END_STATE(); case 1729: - if (lookahead == 'r') ADVANCE(1140); + if (lookahead == 'r') ADVANCE(1804); END_STATE(); case 1730: - if (lookahead == 'r') ADVANCE(1805); + if (lookahead == 'r') ADVANCE(705); END_STATE(); case 1731: - if (lookahead == 'r') ADVANCE(706); + if (lookahead == 'r') ADVANCE(1884); END_STATE(); case 1732: - if (lookahead == 'r') ADVANCE(1885); + if (lookahead == 'r') ADVANCE(875); END_STATE(); case 1733: - if (lookahead == 'r') ADVANCE(876); + if (lookahead == 'r') ADVANCE(1005); + if (lookahead == 'u') ADVANCE(19); END_STATE(); case 1734: - if (lookahead == 'r') ADVANCE(1006); - if (lookahead == 'u') ADVANCE(19); + if (lookahead == 'r') ADVANCE(1867); END_STATE(); case 1735: - if (lookahead == 'r') ADVANCE(1868); + if (lookahead == 'r') ADVANCE(1929); END_STATE(); case 1736: - if (lookahead == 'r') ADVANCE(1930); + if (lookahead == 'r') ADVANCE(1806); END_STATE(); case 1737: - if (lookahead == 'r') ADVANCE(1807); + if (lookahead == 'r') ADVANCE(882); END_STATE(); case 1738: - if (lookahead == 'r') ADVANCE(883); + if (lookahead == 'r') ADVANCE(899); END_STATE(); case 1739: - if (lookahead == 'r') ADVANCE(900); + if (lookahead == 'r') ADVANCE(1684); END_STATE(); case 1740: - if (lookahead == 'r') ADVANCE(1685); + if (lookahead == 'r') ADVANCE(490); END_STATE(); case 1741: - if (lookahead == 'r') ADVANCE(491); + if (lookahead == 'r') ADVANCE(1882); END_STATE(); case 1742: - if (lookahead == 'r') ADVANCE(1883); + if (lookahead == 'r') ADVANCE(1698); END_STATE(); case 1743: - if (lookahead == 'r') ADVANCE(1699); + if (lookahead == 'r') ADVANCE(1708); END_STATE(); case 1744: - if (lookahead == 'r') ADVANCE(1709); + if (lookahead == 'r') ADVANCE(1712); END_STATE(); case 1745: if (lookahead == 'r') ADVANCE(1713); @@ -14140,31 +15252,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(1714); END_STATE(); case 1747: - if (lookahead == 'r') ADVANCE(1715); + if (lookahead == 'r') ADVANCE(1718); END_STATE(); case 1748: - if (lookahead == 'r') ADVANCE(1719); + if (lookahead == 'r') ADVANCE(917); END_STATE(); case 1749: - if (lookahead == 'r') ADVANCE(918); + if (lookahead == 'r') ADVANCE(729); END_STATE(); case 1750: - if (lookahead == 'r') ADVANCE(730); + if (lookahead == 'r') ADVANCE(940); END_STATE(); case 1751: - if (lookahead == 'r') ADVANCE(941); + if (lookahead == 'r') ADVANCE(331); END_STATE(); case 1752: - if (lookahead == 'r') ADVANCE(331); + if (lookahead == 'r') ADVANCE(1586); END_STATE(); case 1753: - if (lookahead == 'r') ADVANCE(1587); + if (lookahead == 'r') ADVANCE(1905); END_STATE(); case 1754: - if (lookahead == 'r') ADVANCE(1906); + if (lookahead == 'r') ADVANCE(1588); END_STATE(); case 1755: - if (lookahead == 'r') ADVANCE(1589); + if (lookahead == 'r') ADVANCE(949); END_STATE(); case 1756: if (lookahead == 'r') ADVANCE(950); @@ -14173,799 +15285,799 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(951); END_STATE(); case 1758: - if (lookahead == 'r') ADVANCE(952); + if (lookahead == 'r') ADVANCE(1191); END_STATE(); case 1759: - if (lookahead == 'r') ADVANCE(1192); + if (lookahead == 'r') ADVANCE(1193); END_STATE(); case 1760: if (lookahead == 'r') ADVANCE(1194); END_STATE(); case 1761: - if (lookahead == 'r') ADVANCE(1195); + if (lookahead == 's') ADVANCE(19); END_STATE(); case 1762: - if (lookahead == 's') ADVANCE(19); + if (lookahead == 's') ADVANCE(909); END_STATE(); case 1763: - if (lookahead == 's') ADVANCE(910); + if (lookahead == 's') ADVANCE(189); + if (lookahead == 'u') ADVANCE(1347); END_STATE(); case 1764: - if (lookahead == 's') ADVANCE(189); - if (lookahead == 'u') ADVANCE(1348); + if (lookahead == 's') ADVANCE(330); END_STATE(); case 1765: - if (lookahead == 's') ADVANCE(330); + if (lookahead == 's') ADVANCE(356); END_STATE(); case 1766: - if (lookahead == 's') ADVANCE(356); + if (lookahead == 's') ADVANCE(68); END_STATE(); case 1767: - if (lookahead == 's') ADVANCE(68); + if (lookahead == 's') ADVANCE(224); END_STATE(); case 1768: - if (lookahead == 's') ADVANCE(224); + if (lookahead == 's') ADVANCE(87); END_STATE(); case 1769: - if (lookahead == 's') ADVANCE(87); + if (lookahead == 's') ADVANCE(44); END_STATE(); case 1770: - if (lookahead == 's') ADVANCE(44); + if (lookahead == 's') ADVANCE(46); END_STATE(); case 1771: - if (lookahead == 's') ADVANCE(46); + if (lookahead == 's') ADVANCE(45); END_STATE(); case 1772: - if (lookahead == 's') ADVANCE(45); + if (lookahead == 's') ADVANCE(1816); END_STATE(); case 1773: - if (lookahead == 's') ADVANCE(1817); + if (lookahead == 's') ADVANCE(350); END_STATE(); case 1774: - if (lookahead == 's') ADVANCE(350); + if (lookahead == 's') ADVANCE(1481); END_STATE(); case 1775: - if (lookahead == 's') ADVANCE(1482); + if (lookahead == 's') ADVANCE(151); END_STATE(); case 1776: - if (lookahead == 's') ADVANCE(151); + if (lookahead == 's') ADVANCE(1081); END_STATE(); case 1777: - if (lookahead == 's') ADVANCE(1082); + if (lookahead == 's') ADVANCE(364); END_STATE(); case 1778: - if (lookahead == 's') ADVANCE(364); + if (lookahead == 's') ADVANCE(213); END_STATE(); case 1779: - if (lookahead == 's') ADVANCE(213); + if (lookahead == 's') ADVANCE(117); END_STATE(); case 1780: - if (lookahead == 's') ADVANCE(117); + if (lookahead == 's') ADVANCE(72); END_STATE(); case 1781: - if (lookahead == 's') ADVANCE(72); + if (lookahead == 's') ADVANCE(1535); END_STATE(); case 1782: - if (lookahead == 's') ADVANCE(1536); + if (lookahead == 's') ADVANCE(1041); END_STATE(); case 1783: - if (lookahead == 's') ADVANCE(1042); + if (lookahead == 's') ADVANCE(2007); END_STATE(); case 1784: - if (lookahead == 's') ADVANCE(2008); + if (lookahead == 's') ADVANCE(206); END_STATE(); case 1785: - if (lookahead == 's') ADVANCE(206); + if (lookahead == 's') ADVANCE(1042); END_STATE(); case 1786: - if (lookahead == 's') ADVANCE(1043); + if (lookahead == 's') ADVANCE(1046); END_STATE(); case 1787: - if (lookahead == 's') ADVANCE(1047); + if (lookahead == 's') ADVANCE(1761); END_STATE(); case 1788: - if (lookahead == 's') ADVANCE(1762); + if (lookahead == 's') ADVANCE(1117); END_STATE(); case 1789: - if (lookahead == 's') ADVANCE(1118); + if (lookahead == 's') ADVANCE(1216); END_STATE(); case 1790: - if (lookahead == 's') ADVANCE(1217); + if (lookahead == 's') ADVANCE(1910); END_STATE(); case 1791: - if (lookahead == 's') ADVANCE(1911); + if (lookahead == 's') ADVANCE(752); END_STATE(); case 1792: - if (lookahead == 's') ADVANCE(753); + if (lookahead == 's') ADVANCE(784); END_STATE(); case 1793: - if (lookahead == 's') ADVANCE(785); + if (lookahead == 's') ADVANCE(832); END_STATE(); case 1794: - if (lookahead == 's') ADVANCE(833); + if (lookahead == 's') ADVANCE(1959); END_STATE(); case 1795: - if (lookahead == 's') ADVANCE(1960); + if (lookahead == 's') ADVANCE(1915); END_STATE(); case 1796: - if (lookahead == 's') ADVANCE(1916); + if (lookahead == 's') ADVANCE(1861); END_STATE(); case 1797: - if (lookahead == 's') ADVANCE(1862); + if (lookahead == 's') ADVANCE(1242); END_STATE(); case 1798: - if (lookahead == 's') ADVANCE(1243); + if (lookahead == 's') ADVANCE(1773); END_STATE(); case 1799: - if (lookahead == 's') ADVANCE(1774); + if (lookahead == 's') ADVANCE(1851); END_STATE(); case 1800: - if (lookahead == 's') ADVANCE(1852); + if (lookahead == 's') ADVANCE(1854); END_STATE(); case 1801: - if (lookahead == 's') ADVANCE(1855); + if (lookahead == 's') ADVANCE(1179); END_STATE(); case 1802: - if (lookahead == 's') ADVANCE(1180); + if (lookahead == 's') ADVANCE(1848); END_STATE(); case 1803: - if (lookahead == 's') ADVANCE(1849); + if (lookahead == 's') ADVANCE(869); END_STATE(); case 1804: - if (lookahead == 's') ADVANCE(870); + if (lookahead == 's') ADVANCE(808); END_STATE(); case 1805: - if (lookahead == 's') ADVANCE(809); + if (lookahead == 's') ADVANCE(839); END_STATE(); case 1806: - if (lookahead == 's') ADVANCE(840); + if (lookahead == 's') ADVANCE(828); END_STATE(); case 1807: - if (lookahead == 's') ADVANCE(829); + if (lookahead == 's') ADVANCE(1051); END_STATE(); case 1808: - if (lookahead == 's') ADVANCE(1052); + if (lookahead == 's') ADVANCE(1917); END_STATE(); case 1809: - if (lookahead == 's') ADVANCE(1918); + if (lookahead == 's') ADVANCE(1872); END_STATE(); case 1810: - if (lookahead == 's') ADVANCE(1873); + if (lookahead == 's') ADVANCE(1860); END_STATE(); case 1811: - if (lookahead == 's') ADVANCE(1861); + if (lookahead == 's') ADVANCE(874); END_STATE(); case 1812: - if (lookahead == 's') ADVANCE(875); + if (lookahead == 's') ADVANCE(1126); END_STATE(); case 1813: - if (lookahead == 's') ADVANCE(1127); + if (lookahead == 's') ADVANCE(889); END_STATE(); case 1814: - if (lookahead == 's') ADVANCE(890); + if (lookahead == 's') ADVANCE(945); END_STATE(); case 1815: - if (lookahead == 's') ADVANCE(946); + if (lookahead == 't') ADVANCE(1997); END_STATE(); case 1816: - if (lookahead == 't') ADVANCE(1998); + if (lookahead == 't') ADVANCE(19); END_STATE(); case 1817: if (lookahead == 't') ADVANCE(19); + if (lookahead == 'u') ADVANCE(609); END_STATE(); case 1818: if (lookahead == 't') ADVANCE(19); - if (lookahead == 'u') ADVANCE(610); + if (lookahead == 'w') ADVANCE(1378); END_STATE(); case 1819: - if (lookahead == 't') ADVANCE(19); - if (lookahead == 'w') ADVANCE(1379); + if (lookahead == 't') ADVANCE(257); END_STATE(); case 1820: - if (lookahead == 't') ADVANCE(257); + if (lookahead == 't') ADVANCE(372); END_STATE(); case 1821: - if (lookahead == 't') ADVANCE(372); + if (lookahead == 't') ADVANCE(559); END_STATE(); case 1822: - if (lookahead == 't') ADVANCE(560); + if (lookahead == 't') ADVANCE(230); END_STATE(); case 1823: - if (lookahead == 't') ADVANCE(230); + if (lookahead == 't') ADVANCE(275); END_STATE(); case 1824: - if (lookahead == 't') ADVANCE(275); + if (lookahead == 't') ADVANCE(313); END_STATE(); case 1825: - if (lookahead == 't') ADVANCE(313); + if (lookahead == 't') ADVANCE(558); END_STATE(); case 1826: - if (lookahead == 't') ADVANCE(559); + if (lookahead == 't') ADVANCE(132); END_STATE(); case 1827: - if (lookahead == 't') ADVANCE(132); + if (lookahead == 't') ADVANCE(1014); END_STATE(); case 1828: - if (lookahead == 't') ADVANCE(1015); + if (lookahead == 't') ADVANCE(368); END_STATE(); case 1829: - if (lookahead == 't') ADVANCE(368); + if (lookahead == 't') ADVANCE(378); END_STATE(); case 1830: - if (lookahead == 't') ADVANCE(378); + if (lookahead == 't') ADVANCE(278); END_STATE(); case 1831: - if (lookahead == 't') ADVANCE(278); + if (lookahead == 't') ADVANCE(281); END_STATE(); case 1832: - if (lookahead == 't') ADVANCE(281); + if (lookahead == 't') ADVANCE(382); END_STATE(); case 1833: - if (lookahead == 't') ADVANCE(382); + if (lookahead == 't') ADVANCE(566); END_STATE(); case 1834: - if (lookahead == 't') ADVANCE(567); + if (lookahead == 't') ADVANCE(279); END_STATE(); case 1835: - if (lookahead == 't') ADVANCE(279); + if (lookahead == 't') ADVANCE(280); END_STATE(); case 1836: - if (lookahead == 't') ADVANCE(280); + if (lookahead == 't') ADVANCE(1608); END_STATE(); case 1837: - if (lookahead == 't') ADVANCE(1609); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 1838: - if (lookahead == 't') ADVANCE(391); + if (lookahead == 't') ADVANCE(866); END_STATE(); case 1839: - if (lookahead == 't') ADVANCE(867); + if (lookahead == 't') ADVANCE(41); END_STATE(); case 1840: - if (lookahead == 't') ADVANCE(41); + if (lookahead == 't') ADVANCE(1336); END_STATE(); case 1841: - if (lookahead == 't') ADVANCE(1337); + if (lookahead == 't') ADVANCE(329); END_STATE(); case 1842: - if (lookahead == 't') ADVANCE(329); + if (lookahead == 't') ADVANCE(612); END_STATE(); case 1843: - if (lookahead == 't') ADVANCE(613); + if (lookahead == 't') ADVANCE(1998); END_STATE(); case 1844: - if (lookahead == 't') ADVANCE(1999); + if (lookahead == 't') ADVANCE(123); + if (lookahead == 'v') ADVANCE(1153); END_STATE(); case 1845: - if (lookahead == 't') ADVANCE(123); - if (lookahead == 'v') ADVANCE(1154); + if (lookahead == 't') ADVANCE(227); END_STATE(); case 1846: - if (lookahead == 't') ADVANCE(227); + if (lookahead == 't') ADVANCE(276); END_STATE(); case 1847: - if (lookahead == 't') ADVANCE(276); + if (lookahead == 't') ADVANCE(555); END_STATE(); case 1848: - if (lookahead == 't') ADVANCE(556); + if (lookahead == 't') ADVANCE(1446); END_STATE(); case 1849: - if (lookahead == 't') ADVANCE(1447); + if (lookahead == 't') ADVANCE(893); END_STATE(); case 1850: - if (lookahead == 't') ADVANCE(894); + if (lookahead == 't') ADVANCE(379); END_STATE(); case 1851: - if (lookahead == 't') ADVANCE(379); + if (lookahead == 't') ADVANCE(79); END_STATE(); case 1852: - if (lookahead == 't') ADVANCE(79); + if (lookahead == 't') ADVANCE(2002); END_STATE(); case 1853: - if (lookahead == 't') ADVANCE(2003); + if (lookahead == 't') ADVANCE(117); END_STATE(); case 1854: - if (lookahead == 't') ADVANCE(117); + if (lookahead == 't') ADVANCE(201); END_STATE(); case 1855: - if (lookahead == 't') ADVANCE(201); + if (lookahead == 't') ADVANCE(1041); END_STATE(); case 1856: - if (lookahead == 't') ADVANCE(1042); + if (lookahead == 't') ADVANCE(2003); END_STATE(); case 1857: - if (lookahead == 't') ADVANCE(2004); + if (lookahead == 't') ADVANCE(180); END_STATE(); case 1858: - if (lookahead == 't') ADVANCE(180); + if (lookahead == 't') ADVANCE(1046); END_STATE(); case 1859: - if (lookahead == 't') ADVANCE(1047); + if (lookahead == 't') ADVANCE(179); END_STATE(); case 1860: - if (lookahead == 't') ADVANCE(179); + if (lookahead == 't') ADVANCE(1761); END_STATE(); case 1861: - if (lookahead == 't') ADVANCE(1762); + if (lookahead == 't') ADVANCE(126); END_STATE(); case 1862: - if (lookahead == 't') ADVANCE(126); + if (lookahead == 't') ADVANCE(131); END_STATE(); case 1863: - if (lookahead == 't') ADVANCE(131); + if (lookahead == 't') ADVANCE(1043); END_STATE(); case 1864: - if (lookahead == 't') ADVANCE(1044); + if (lookahead == 't') ADVANCE(1344); END_STATE(); case 1865: - if (lookahead == 't') ADVANCE(1345); + if (lookahead == 't') ADVANCE(784); END_STATE(); case 1866: - if (lookahead == 't') ADVANCE(785); + if (lookahead == 't') ADVANCE(1516); END_STATE(); case 1867: - if (lookahead == 't') ADVANCE(1517); + if (lookahead == 't') ADVANCE(1767); END_STATE(); case 1868: - if (lookahead == 't') ADVANCE(1768); + if (lookahead == 't') ADVANCE(1071); END_STATE(); case 1869: - if (lookahead == 't') ADVANCE(1072); + if (lookahead == 't') ADVANCE(1359); END_STATE(); case 1870: - if (lookahead == 't') ADVANCE(1360); + if (lookahead == 't') ADVANCE(816); END_STATE(); case 1871: - if (lookahead == 't') ADVANCE(817); + if (lookahead == 't') ADVANCE(1793); END_STATE(); case 1872: - if (lookahead == 't') ADVANCE(1794); + if (lookahead == 't') ADVANCE(857); END_STATE(); case 1873: - if (lookahead == 't') ADVANCE(858); + if (lookahead == 't') ADVANCE(1455); END_STATE(); case 1874: - if (lookahead == 't') ADVANCE(1456); + if (lookahead == 't') ADVANCE(1643); END_STATE(); case 1875: - if (lookahead == 't') ADVANCE(1644); + if (lookahead == 't') ADVANCE(492); END_STATE(); case 1876: - if (lookahead == 't') ADVANCE(493); + if (lookahead == 't') ADVANCE(1152); END_STATE(); case 1877: - if (lookahead == 't') ADVANCE(1153); + if (lookahead == 't') ADVANCE(1129); END_STATE(); case 1878: - if (lookahead == 't') ADVANCE(1130); + if (lookahead == 't') ADVANCE(1163); END_STATE(); case 1879: - if (lookahead == 't') ADVANCE(1164); + if (lookahead == 't') ADVANCE(1452); END_STATE(); case 1880: - if (lookahead == 't') ADVANCE(1453); + if (lookahead == 't') ADVANCE(1154); END_STATE(); case 1881: - if (lookahead == 't') ADVANCE(1155); + if (lookahead == 't') ADVANCE(1177); END_STATE(); case 1882: - if (lookahead == 't') ADVANCE(1178); + if (lookahead == 't') ADVANCE(1171); END_STATE(); case 1883: - if (lookahead == 't') ADVANCE(1172); + if (lookahead == 't') ADVANCE(1131); END_STATE(); case 1884: - if (lookahead == 't') ADVANCE(1132); + if (lookahead == 't') ADVANCE(1611); END_STATE(); case 1885: - if (lookahead == 't') ADVANCE(1612); + if (lookahead == 't') ADVANCE(943); END_STATE(); case 1886: - if (lookahead == 't') ADVANCE(944); + if (lookahead == 't') ADVANCE(564); END_STATE(); case 1887: - if (lookahead == 't') ADVANCE(565); + if (lookahead == 't') ADVANCE(1411); END_STATE(); case 1888: - if (lookahead == 't') ADVANCE(1412); + if (lookahead == 't') ADVANCE(1116); END_STATE(); case 1889: - if (lookahead == 't') ADVANCE(1117); + if (lookahead == 't') ADVANCE(1509); END_STATE(); case 1890: - if (lookahead == 't') ADVANCE(1510); + if (lookahead == 't') ADVANCE(1412); END_STATE(); case 1891: - if (lookahead == 't') ADVANCE(1413); + if (lookahead == 't') ADVANCE(1696); END_STATE(); case 1892: - if (lookahead == 't') ADVANCE(1697); + if (lookahead == 't') ADVANCE(892); END_STATE(); case 1893: - if (lookahead == 't') ADVANCE(893); + if (lookahead == 't') ADVANCE(500); END_STATE(); case 1894: - if (lookahead == 't') ADVANCE(501); + if (lookahead == 't') ADVANCE(1093); END_STATE(); case 1895: - if (lookahead == 't') ADVANCE(1094); + if (lookahead == 't') ADVANCE(894); END_STATE(); case 1896: - if (lookahead == 't') ADVANCE(895); + if (lookahead == 't') ADVANCE(896); END_STATE(); case 1897: - if (lookahead == 't') ADVANCE(897); + if (lookahead == 't') ADVANCE(898); END_STATE(); case 1898: - if (lookahead == 't') ADVANCE(899); + if (lookahead == 't') ADVANCE(901); END_STATE(); case 1899: - if (lookahead == 't') ADVANCE(902); + if (lookahead == 't') ADVANCE(919); END_STATE(); case 1900: - if (lookahead == 't') ADVANCE(920); + if (lookahead == 't') ADVANCE(903); END_STATE(); case 1901: - if (lookahead == 't') ADVANCE(904); + if (lookahead == 't') ADVANCE(1072); END_STATE(); case 1902: - if (lookahead == 't') ADVANCE(1073); + if (lookahead == 't') ADVANCE(543); END_STATE(); case 1903: - if (lookahead == 't') ADVANCE(544); + if (lookahead == 't') ADVANCE(1162); END_STATE(); case 1904: - if (lookahead == 't') ADVANCE(1163); + if (lookahead == 't') ADVANCE(1168); END_STATE(); case 1905: - if (lookahead == 't') ADVANCE(1169); + if (lookahead == 't') ADVANCE(1178); END_STATE(); case 1906: - if (lookahead == 't') ADVANCE(1179); + if (lookahead == 't') ADVANCE(563); END_STATE(); case 1907: - if (lookahead == 't') ADVANCE(564); + if (lookahead == 't') ADVANCE(552); END_STATE(); case 1908: - if (lookahead == 't') ADVANCE(553); + if (lookahead == 'u') ADVANCE(19); END_STATE(); case 1909: - if (lookahead == 'u') ADVANCE(19); + if (lookahead == 'u') ADVANCE(480); END_STATE(); case 1910: - if (lookahead == 'u') ADVANCE(481); + if (lookahead == 'u') ADVANCE(2023); END_STATE(); case 1911: - if (lookahead == 'u') ADVANCE(2023); + if (lookahead == 'u') ADVANCE(1446); END_STATE(); case 1912: - if (lookahead == 'u') ADVANCE(1447); + if (lookahead == 'u') ADVANCE(178); END_STATE(); case 1913: - if (lookahead == 'u') ADVANCE(178); + if (lookahead == 'u') ADVANCE(582); END_STATE(); case 1914: - if (lookahead == 'u') ADVANCE(583); + if (lookahead == 'u') ADVANCE(595); END_STATE(); case 1915: - if (lookahead == 'u') ADVANCE(596); + if (lookahead == 'u') ADVANCE(593); END_STATE(); case 1916: - if (lookahead == 'u') ADVANCE(594); + if (lookahead == 'u') ADVANCE(1535); END_STATE(); case 1917: - if (lookahead == 'u') ADVANCE(1536); + if (lookahead == 'u') ADVANCE(576); END_STATE(); case 1918: - if (lookahead == 'u') ADVANCE(577); + if (lookahead == 'u') ADVANCE(1765); END_STATE(); case 1919: - if (lookahead == 'u') ADVANCE(1766); + if (lookahead == 'u') ADVANCE(600); END_STATE(); case 1920: - if (lookahead == 'u') ADVANCE(601); + if (lookahead == 'u') ADVANCE(1853); END_STATE(); case 1921: - if (lookahead == 'u') ADVANCE(1854); + if (lookahead == 'u') ADVANCE(1853); + if (lookahead == 'y') ADVANCE(19); END_STATE(); case 1922: - if (lookahead == 'u') ADVANCE(1854); - if (lookahead == 'y') ADVANCE(19); + if (lookahead == 'u') ADVANCE(1321); END_STATE(); case 1923: - if (lookahead == 'u') ADVANCE(1322); + if (lookahead == 'u') ADVANCE(1761); END_STATE(); case 1924: - if (lookahead == 'u') ADVANCE(1762); + if (lookahead == 'u') ADVANCE(867); END_STATE(); case 1925: - if (lookahead == 'u') ADVANCE(868); + if (lookahead == 'u') ADVANCE(1777); END_STATE(); case 1926: - if (lookahead == 'u') ADVANCE(1778); + if (lookahead == 'u') ADVANCE(784); END_STATE(); case 1927: - if (lookahead == 'u') ADVANCE(785); + if (lookahead == 'u') ADVANCE(1324); END_STATE(); case 1928: - if (lookahead == 'u') ADVANCE(1325); + if (lookahead == 'u') ADVANCE(665); END_STATE(); case 1929: - if (lookahead == 'u') ADVANCE(666); + if (lookahead == 'u') ADVANCE(818); END_STATE(); case 1930: - if (lookahead == 'u') ADVANCE(819); + if (lookahead == 'u') ADVANCE(458); END_STATE(); case 1931: - if (lookahead == 'u') ADVANCE(459); + if (lookahead == 'u') ADVANCE(1768); END_STATE(); case 1932: - if (lookahead == 'u') ADVANCE(1769); + if (lookahead == 'u') ADVANCE(1447); END_STATE(); case 1933: - if (lookahead == 'u') ADVANCE(1448); + if (lookahead == 'u') ADVANCE(1232); END_STATE(); case 1934: - if (lookahead == 'u') ADVANCE(1233); + if (lookahead == 'u') ADVANCE(1792); END_STATE(); case 1935: - if (lookahead == 'u') ADVANCE(1793); + if (lookahead == 'u') ADVANCE(699); END_STATE(); case 1936: - if (lookahead == 'u') ADVANCE(700); + if (lookahead == 'u') ADVANCE(1779); END_STATE(); case 1937: - if (lookahead == 'u') ADVANCE(1780); + if (lookahead == 'u') ADVANCE(1100); END_STATE(); case 1938: - if (lookahead == 'u') ADVANCE(1101); + if (lookahead == 'u') ADVANCE(852); END_STATE(); case 1939: - if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'u') ADVANCE(479); END_STATE(); case 1940: - if (lookahead == 'u') ADVANCE(480); + if (lookahead == 'u') ADVANCE(1165); END_STATE(); case 1941: - if (lookahead == 'u') ADVANCE(1166); + if (lookahead == 'u') ADVANCE(1099); END_STATE(); case 1942: - if (lookahead == 'u') ADVANCE(1100); + if (lookahead == 'u') ADVANCE(1639); END_STATE(); case 1943: - if (lookahead == 'u') ADVANCE(1640); + if (lookahead == 'u') ADVANCE(1611); END_STATE(); case 1944: - if (lookahead == 'u') ADVANCE(1612); + if (lookahead == 'u') ADVANCE(1640); END_STATE(); case 1945: - if (lookahead == 'u') ADVANCE(1641); + if (lookahead == 'u') ADVANCE(1704); END_STATE(); case 1946: - if (lookahead == 'u') ADVANCE(1705); + if (lookahead == 'u') ADVANCE(1706); END_STATE(); case 1947: - if (lookahead == 'u') ADVANCE(1707); + if (lookahead == 'u') ADVANCE(1051); END_STATE(); case 1948: - if (lookahead == 'u') ADVANCE(1052); + if (lookahead == 'u') ADVANCE(1334); END_STATE(); case 1949: - if (lookahead == 'u') ADVANCE(1335); + if (lookahead == 'u') ADVANCE(1405); END_STATE(); case 1950: - if (lookahead == 'u') ADVANCE(1406); + if (lookahead == 'u') ADVANCE(1799); END_STATE(); case 1951: - if (lookahead == 'u') ADVANCE(1800); + if (lookahead == 'u') ADVANCE(1134); END_STATE(); case 1952: - if (lookahead == 'u') ADVANCE(1135); + if (lookahead == 'u') ADVANCE(1258); END_STATE(); case 1953: - if (lookahead == 'u') ADVANCE(1259); + if (lookahead == 'u') ADVANCE(1865); END_STATE(); case 1954: - if (lookahead == 'u') ADVANCE(1866); + if (lookahead == 'u') ADVANCE(499); END_STATE(); case 1955: - if (lookahead == 'u') ADVANCE(500); + if (lookahead == 'u') ADVANCE(1274); END_STATE(); case 1956: - if (lookahead == 'u') ADVANCE(1275); + if (lookahead == 'u') ADVANCE(1520); END_STATE(); case 1957: - if (lookahead == 'u') ADVANCE(1521); + if (lookahead == 'u') ADVANCE(1332); END_STATE(); case 1958: - if (lookahead == 'u') ADVANCE(1333); + if (lookahead == 'u') ADVANCE(505); END_STATE(); case 1959: - if (lookahead == 'u') ADVANCE(506); + if (lookahead == 'u') ADVANCE(1720); END_STATE(); case 1960: - if (lookahead == 'u') ADVANCE(1721); + if (lookahead == 'u') ADVANCE(1313); END_STATE(); case 1961: - if (lookahead == 'u') ADVANCE(1314); + if (lookahead == 'u') ADVANCE(548); END_STATE(); case 1962: - if (lookahead == 'u') ADVANCE(549); + if (lookahead == 'u') ADVANCE(606); END_STATE(); case 1963: - if (lookahead == 'u') ADVANCE(607); + if (lookahead == 'u') ADVANCE(550); END_STATE(); case 1964: - if (lookahead == 'u') ADVANCE(551); + if (lookahead == 'u') ADVANCE(605); + if (lookahead == 'w') ADVANCE(1372); END_STATE(); case 1965: - if (lookahead == 'u') ADVANCE(606); - if (lookahead == 'w') ADVANCE(1373); + if (lookahead == 'u') ADVANCE(608); END_STATE(); case 1966: - if (lookahead == 'u') ADVANCE(609); + if (lookahead == 'v') ADVANCE(19); END_STATE(); case 1967: if (lookahead == 'v') ADVANCE(19); + if (lookahead == 'w') ADVANCE(783); END_STATE(); case 1968: - if (lookahead == 'v') ADVANCE(19); - if (lookahead == 'w') ADVANCE(784); + if (lookahead == 'v') ADVANCE(33); END_STATE(); case 1969: - if (lookahead == 'v') ADVANCE(33); + if (lookahead == 'v') ADVANCE(117); END_STATE(); case 1970: - if (lookahead == 'v') ADVANCE(117); + if (lookahead == 'v') ADVANCE(861); + if (lookahead == 'w') ADVANCE(860); END_STATE(); case 1971: - if (lookahead == 'v') ADVANCE(862); - if (lookahead == 'w') ADVANCE(861); + if (lookahead == 'v') ADVANCE(784); END_STATE(); case 1972: - if (lookahead == 'v') ADVANCE(785); + if (lookahead == 'v') ADVANCE(809); END_STATE(); case 1973: - if (lookahead == 'v') ADVANCE(810); + if (lookahead == 'v') ADVANCE(947); END_STATE(); case 1974: - if (lookahead == 'v') ADVANCE(948); + if (lookahead == 'w') ADVANCE(19); END_STATE(); case 1975: - if (lookahead == 'w') ADVANCE(19); + if (lookahead == 'w') ADVANCE(25); END_STATE(); case 1976: - if (lookahead == 'w') ADVANCE(25); + if (lookahead == 'w') ADVANCE(29); END_STATE(); case 1977: - if (lookahead == 'w') ADVANCE(29); + if (lookahead == 'w') ADVANCE(28); END_STATE(); case 1978: - if (lookahead == 'w') ADVANCE(28); + if (lookahead == 'w') ADVANCE(27); END_STATE(); case 1979: - if (lookahead == 'w') ADVANCE(27); + if (lookahead == 'w') ADVANCE(1446); END_STATE(); case 1980: - if (lookahead == 'w') ADVANCE(1447); + if (lookahead == 'w') ADVANCE(404); END_STATE(); case 1981: - if (lookahead == 'w') ADVANCE(405); + if (lookahead == 'w') ADVANCE(201); END_STATE(); case 1982: - if (lookahead == 'w') ADVANCE(201); + if (lookahead == 'w') ADVANCE(824); END_STATE(); case 1983: - if (lookahead == 'w') ADVANCE(825); + if (lookahead == 'w') ADVANCE(1761); END_STATE(); case 1984: - if (lookahead == 'w') ADVANCE(1762); - END_STATE(); - case 1985: - if (lookahead == 'w') ADVANCE(913); + if (lookahead == 'w') ADVANCE(912); if (lookahead == 'a' || lookahead == 'h') ADVANCE(19); END_STATE(); + case 1985: + if (lookahead == 'w') ADVANCE(1362); + END_STATE(); case 1986: - if (lookahead == 'w') ADVANCE(1363); + if (lookahead == 'w') ADVANCE(1378); END_STATE(); case 1987: - if (lookahead == 'w') ADVANCE(1379); + if (lookahead == 'w') ADVANCE(1376); END_STATE(); case 1988: - if (lookahead == 'w') ADVANCE(1377); + if (lookahead == 'w') ADVANCE(1373); END_STATE(); case 1989: - if (lookahead == 'w') ADVANCE(1374); + if (lookahead == 'w') ADVANCE(1160); END_STATE(); case 1990: - if (lookahead == 'w') ADVANCE(1161); + if (lookahead == 'w') ADVANCE(220); END_STATE(); case 1991: - if (lookahead == 'w') ADVANCE(220); + if (lookahead == 'w') ADVANCE(1286); END_STATE(); case 1992: - if (lookahead == 'w') ADVANCE(1287); + if (lookahead == 'w') ADVANCE(1444); END_STATE(); case 1993: - if (lookahead == 'w') ADVANCE(1445); + if (lookahead == 'w') ADVANCE(1443); END_STATE(); case 1994: - if (lookahead == 'w') ADVANCE(1444); + if (lookahead == 'x') ADVANCE(19); END_STATE(); case 1995: - if (lookahead == 'x') ADVANCE(19); + if (lookahead == 'x') ADVANCE(1816); END_STATE(); case 1996: - if (lookahead == 'x') ADVANCE(1817); + if (lookahead == 'x') ADVANCE(126); END_STATE(); case 1997: - if (lookahead == 'x') ADVANCE(126); + if (lookahead == 'y') ADVANCE(19); END_STATE(); case 1998: - if (lookahead == 'y') ADVANCE(19); + if (lookahead == 'y') ADVANCE(371); END_STATE(); case 1999: - if (lookahead == 'y') ADVANCE(371); + if (lookahead == 'y') ADVANCE(843); END_STATE(); case 2000: - if (lookahead == 'y') ADVANCE(844); + if (lookahead == 'y') ADVANCE(318); END_STATE(); case 2001: - if (lookahead == 'y') ADVANCE(318); + if (lookahead == 'y') ADVANCE(333); END_STATE(); case 2002: - if (lookahead == 'y') ADVANCE(333); + if (lookahead == 'y') ADVANCE(209); END_STATE(); case 2003: - if (lookahead == 'y') ADVANCE(209); + if (lookahead == 'y') ADVANCE(1966); END_STATE(); case 2004: - if (lookahead == 'y') ADVANCE(1967); + if (lookahead == 'y') ADVANCE(370); END_STATE(); case 2005: - if (lookahead == 'y') ADVANCE(370); + if (lookahead == 'y') ADVANCE(376); END_STATE(); case 2006: - if (lookahead == 'y') ADVANCE(376); + if (lookahead == 'y') ADVANCE(346); END_STATE(); case 2007: - if (lookahead == 'y') ADVANCE(346); + if (lookahead == 'y') ADVANCE(1321); END_STATE(); case 2008: - if (lookahead == 'y') ADVANCE(1322); + if (lookahead == 'y') ADVANCE(783); END_STATE(); case 2009: - if (lookahead == 'y') ADVANCE(784); + if (lookahead == 'y') ADVANCE(1761); END_STATE(); case 2010: - if (lookahead == 'y') ADVANCE(1762); + if (lookahead == 'y') ADVANCE(832); END_STATE(); case 2011: - if (lookahead == 'y') ADVANCE(833); + if (lookahead == 'z') ADVANCE(1523); END_STATE(); case 2012: - if (lookahead == 'z') ADVANCE(1524); + if (lookahead == 'z') ADVANCE(435); END_STATE(); case 2013: - if (lookahead == 'z') ADVANCE(436); + if (lookahead == 'z') ADVANCE(1139); END_STATE(); case 2014: - if (lookahead == 'z') ADVANCE(1140); + if (lookahead == 'z') ADVANCE(870); END_STATE(); case 2015: - if (lookahead == 'z') ADVANCE(871); - END_STATE(); - case 2016: if (lookahead == '{') ADVANCE(2074); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2128); + lookahead == ' ') ADVANCE(2129); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2082); END_STATE(); + case 2016: + if (lookahead == 0x20e3) ADVANCE(2115); + END_STATE(); case 2017: if (lookahead == '\t' || lookahead == ' ') ADVANCE(2017); @@ -15068,7 +16180,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2112); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2113); END_STATE(); case 2041: if (lookahead == '-' || @@ -15079,16 +16191,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2076); END_STATE(); case 2042: - if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2120); + if (set_contains(aux_sym_pandoc_str_token1_character_set_6, 78, lookahead)) ADVANCE(2122); END_STATE(); case 2043: - if (set_contains(aux_sym_pandoc_str_token1_character_set_5, 770, lookahead)) ADVANCE(2118); + if (set_contains(aux_sym_pandoc_str_token1_character_set_5, 770, lookahead)) ADVANCE(2119); END_STATE(); case 2044: if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(2111); + lookahead != '}') ADVANCE(2112); END_STATE(); case 2045: if (lookahead != 0 && @@ -15099,7 +16211,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2046: if (lookahead != 0 && - lookahead != '\n') ADVANCE(2114); + lookahead != '\n') ADVANCE(2115); END_STATE(); case 2047: if (lookahead != 0 && @@ -15107,7 +16219,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2048: if (lookahead != 0 && - lookahead != '\n') ADVANCE(2124); + lookahead != '\n') ADVANCE(2125); END_STATE(); case 2049: if (lookahead != 0 && @@ -15116,50 +16228,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2050: if (eof) ADVANCE(2051); ADVANCE_MAP( - '!', 2122, + '!', 2120, '"', 2091, + '#', 2123, '$', 2065, - '&', 2115, + '&', 2116, '\'', 2084, + '-', 2119, ':', 2052, '[', 2056, '\\', 2046, '{', 2074, - '|', 2121, + '|', 2124, '}', 2075, - 0x3030, 2120, - '\t', 2128, - ' ', 2128, - '+', 2118, - '-', 2118, - ',', 2123, - '.', 2123, - ';', 2123, - '?', 2123, + 0x2139, 2117, + '\t', 2129, + ' ', 2129, ); - if (('#' <= lookahead && lookahead <= ')') || - lookahead == '/' || - lookahead == 0x58a || - lookahead == 0x5be || - lookahead == 0x1400 || - lookahead == 0x1806 || - (0x2010 <= lookahead && lookahead <= 0x2015) || - lookahead == 0x2026 || - lookahead == 0x2e17 || - lookahead == 0x2e1a || - lookahead == 0x2e3a || - lookahead == 0x2e3b || - lookahead == 0x2e40 || - lookahead == 0x2e5d || - lookahead == 0x301c || - lookahead == 0x30a0 || - lookahead == 0xfe31 || - lookahead == 0xfe32 || - lookahead == 0xfe58 || - lookahead == 0xfe63 || - lookahead == 0xff0d || - lookahead == 0x10d6e || - lookahead == 0x10ead) ADVANCE(2114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2118); if (lookahead == 0x203c || lookahead == 0x2049 || lookahead == 0x303d || @@ -15201,9 +16287,253 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x1fade || (0x1faea <= lookahead && lookahead <= 0x1faef) || (0x1faf9 <= lookahead && lookahead <= 0x1faff) || - (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2120); - if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2116); - if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 809, lookahead)) ADVANCE(2118); + (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2122); + if (set_contains(aux_sym_pandoc_str_token1_character_set_6, 78, lookahead)) ADVANCE(2122); + if (('%' <= lookahead && lookahead <= ')') || + ('+' <= lookahead && lookahead <= ';') || + ('=' <= lookahead && lookahead <= '?') || + (0xa2 <= lookahead && lookahead <= 0xa6) || + lookahead == 0xa8 || + lookahead == 0xac || + (0xaf <= lookahead && lookahead <= 0xb1) || + lookahead == 0xb4 || + lookahead == 0xb8 || + lookahead == 0xd7 || + lookahead == 0xf7 || + (0x2c2 <= lookahead && lookahead <= 0x2c5) || + (0x2d2 <= lookahead && lookahead <= 0x2df) || + (0x2e5 <= lookahead && lookahead <= 0x2eb) || + lookahead == 0x2ed || + (0x2ef <= lookahead && lookahead <= 0x2ff) || + lookahead == 0x375 || + lookahead == 0x384 || + lookahead == 0x385 || + lookahead == 0x3f6 || + lookahead == 0x482 || + lookahead == 0x58a || + (0x58d <= lookahead && lookahead <= 0x58f) || + lookahead == 0x5be || + (0x606 <= lookahead && lookahead <= 0x608) || + lookahead == 0x60b || + lookahead == 0x60e || + lookahead == 0x60f || + lookahead == 0x6de || + lookahead == 0x6e9 || + lookahead == 0x6fd || + lookahead == 0x6fe || + lookahead == 0x7f6 || + lookahead == 0x7fe || + lookahead == 0x7ff || + lookahead == 0x888 || + lookahead == 0x9f2 || + lookahead == 0x9f3 || + lookahead == 0x9fa || + lookahead == 0x9fb || + lookahead == 0xaf1 || + lookahead == 0xb70 || + (0xbf3 <= lookahead && lookahead <= 0xbfa) || + lookahead == 0xc7f || + lookahead == 0xd4f || + lookahead == 0xd79 || + lookahead == 0xe3f || + (0xf01 <= lookahead && lookahead <= 0xf03) || + lookahead == 0xf13 || + (0xf15 <= lookahead && lookahead <= 0xf17) || + (0xf1a <= lookahead && lookahead <= 0xf1f) || + lookahead == 0xf34 || + lookahead == 0xf36 || + lookahead == 0xf38 || + (0xfbe <= lookahead && lookahead <= 0xfc5) || + (0xfc7 <= lookahead && lookahead <= 0xfcc) || + lookahead == 0xfce || + lookahead == 0xfcf || + (0xfd5 <= lookahead && lookahead <= 0xfd8) || + lookahead == 0x109e || + lookahead == 0x109f || + (0x1390 <= lookahead && lookahead <= 0x1399) || + lookahead == 0x1400 || + lookahead == 0x166d || + lookahead == 0x17db || + lookahead == 0x1806 || + lookahead == 0x1940 || + (0x19de <= lookahead && lookahead <= 0x19ff) || + (0x1b61 <= lookahead && lookahead <= 0x1b6a) || + (0x1b74 <= lookahead && lookahead <= 0x1b7c) || + lookahead == 0x1fbd || + (0x1fbf <= lookahead && lookahead <= 0x1fc1) || + (0x1fcd <= lookahead && lookahead <= 0x1fcf) || + (0x1fdd <= lookahead && lookahead <= 0x1fdf) || + (0x1fed <= lookahead && lookahead <= 0x1fef) || + lookahead == 0x1ffd || + lookahead == 0x1ffe || + (0x2010 <= lookahead && lookahead <= 0x2015) || + lookahead == 0x2026 || + lookahead == 0x2044 || + lookahead == 0x2052 || + (0x207a <= lookahead && lookahead <= 0x207c) || + (0x208a <= lookahead && lookahead <= 0x208c) || + (0x20a0 <= lookahead && lookahead <= 0x20af) || + (0x20b1 <= lookahead && lookahead <= 0x20c0) || + lookahead == 0x2100 || + lookahead == 0x2101 || + (0x2103 <= lookahead && lookahead <= 0x2106) || + lookahead == 0x2108 || + lookahead == 0x2109 || + lookahead == 0x2114 || + (0x2116 <= lookahead && lookahead <= 0x2118) || + (0x211e <= lookahead && lookahead <= 0x2123) || + lookahead == 0x2125 || + lookahead == 0x2127 || + lookahead == 0x2129 || + lookahead == 0x212e || + lookahead == 0x213a || + lookahead == 0x213b || + (0x2140 <= lookahead && lookahead <= 0x2144) || + (0x214a <= lookahead && lookahead <= 0x214d) || + lookahead == 0x214f || + lookahead == 0x218a || + lookahead == 0x218b || + (0x2190 <= lookahead && lookahead <= 0x2307) || + (0x230c <= lookahead && lookahead <= 0x2327) || + (0x232b <= lookahead && lookahead <= 0x2429) || + (0x2440 <= lookahead && lookahead <= 0x244a) || + (0x249c <= lookahead && lookahead <= 0x24e9) || + (0x2500 <= lookahead && lookahead <= 0x2762) || + (0x2794 <= lookahead && lookahead <= 0x27c4) || + (0x27c7 <= lookahead && lookahead <= 0x27e5) || + (0x27f0 <= lookahead && lookahead <= 0x2982) || + (0x2999 <= lookahead && lookahead <= 0x29d7) || + (0x29dc <= lookahead && lookahead <= 0x29fb) || + (0x29fe <= lookahead && lookahead <= 0x2b73) || + (0x2b76 <= lookahead && lookahead <= 0x2b95) || + (0x2b97 <= lookahead && lookahead <= 0x2bff) || + (0x2ce5 <= lookahead && lookahead <= 0x2cea) || + lookahead == 0x2e17 || + lookahead == 0x2e1a || + lookahead == 0x2e3a || + lookahead == 0x2e3b || + lookahead == 0x2e40 || + lookahead == 0x2e50 || + lookahead == 0x2e51 || + lookahead == 0x2e5d || + (0x2e80 <= lookahead && lookahead <= 0x2e99) || + (0x2e9b <= lookahead && lookahead <= 0x2ef3) || + (0x2f00 <= lookahead && lookahead <= 0x2fd5) || + (0x2ff0 <= lookahead && lookahead <= 0x2fff) || + lookahead == 0x3004 || + lookahead == 0x3012 || + lookahead == 0x3013 || + lookahead == 0x301c || + lookahead == 0x3020 || + lookahead == 0x3036 || + lookahead == 0x3037 || + lookahead == 0x303e || + lookahead == 0x303f || + lookahead == 0x309b || + lookahead == 0x309c || + lookahead == 0x30a0 || + lookahead == 0x3190 || + lookahead == 0x3191 || + (0x3196 <= lookahead && lookahead <= 0x319f) || + (0x31c0 <= lookahead && lookahead <= 0x31e5) || + lookahead == 0x31ef || + (0x3200 <= lookahead && lookahead <= 0x321e) || + (0x322a <= lookahead && lookahead <= 0x3247) || + lookahead == 0x3250 || + (0x3260 <= lookahead && lookahead <= 0x327f) || + (0x328a <= lookahead && lookahead <= 0x32b0) || + (0x32c0 <= lookahead && lookahead <= 0x33ff) || + (0x4dc0 <= lookahead && lookahead <= 0x4dff) || + (0xa490 <= lookahead && lookahead <= 0xa4c6) || + (0xa700 <= lookahead && lookahead <= 0xa716) || + lookahead == 0xa720 || + lookahead == 0xa721 || + lookahead == 0xa789 || + lookahead == 0xa78a || + (0xa828 <= lookahead && lookahead <= 0xa82b) || + (0xa836 <= lookahead && lookahead <= 0xa839) || + (0xaa77 <= lookahead && lookahead <= 0xaa79) || + lookahead == 0xab5b || + lookahead == 0xab6a || + lookahead == 0xab6b || + lookahead == 0xfb29 || + (0xfbb2 <= lookahead && lookahead <= 0xfbc2) || + (0xfd40 <= lookahead && lookahead <= 0xfd4f) || + lookahead == 0xfdcf || + (0xfdfc <= lookahead && lookahead <= 0xfdff) || + lookahead == 0xfe31 || + lookahead == 0xfe32 || + lookahead == 0xfe58 || + (0xfe62 <= lookahead && lookahead <= 0xfe66) || + lookahead == 0xfe69 || + lookahead == 0xff04 || + lookahead == 0xff0b || + lookahead == 0xff0d || + (0xff1c <= lookahead && lookahead <= 0xff1e) || + lookahead == 0xff3e || + lookahead == 0xff40 || + lookahead == 0xff5c || + lookahead == 0xff5e || + (0xffe0 <= lookahead && lookahead <= 0xffe6) || + (0xffe8 <= lookahead && lookahead <= 0xffee) || + lookahead == 0xfffc || + lookahead == 0xfffd || + (0x10137 <= lookahead && lookahead <= 0x1013f) || + (0x10179 <= lookahead && lookahead <= 0x10189) || + (0x1018c <= lookahead && lookahead <= 0x1018e) || + (0x10190 <= lookahead && lookahead <= 0x1019c) || + lookahead == 0x101a0 || + (0x101d0 <= lookahead && lookahead <= 0x101fc) || + lookahead == 0x10877 || + lookahead == 0x10878 || + lookahead == 0x10ac8 || + lookahead == 0x10d6e || + lookahead == 0x10ead || + lookahead == 0x1173f || + (0x11fd5 <= lookahead && lookahead <= 0x11ff1) || + (0x16b3c <= lookahead && lookahead <= 0x16b3f) || + lookahead == 0x16b45 || + lookahead == 0x1bc9c || + (0x1cc00 <= lookahead && lookahead <= 0x1ccef) || + (0x1cd00 <= lookahead && lookahead <= 0x1ceb3) || + (0x1cf50 <= lookahead && lookahead <= 0x1cfc3) || + (0x1d000 <= lookahead && lookahead <= 0x1d0f5) || + (0x1d100 <= lookahead && lookahead <= 0x1d126) || + (0x1d129 <= lookahead && lookahead <= 0x1d164) || + (0x1d16a <= lookahead && lookahead <= 0x1d16c) || + lookahead == 0x1d183 || + lookahead == 0x1d184 || + (0x1d18c <= lookahead && lookahead <= 0x1d1a9) || + (0x1d1ae <= lookahead && lookahead <= 0x1d1ea) || + (0x1d200 <= lookahead && lookahead <= 0x1d241) || + lookahead == 0x1d245 || + (0x1d300 <= lookahead && lookahead <= 0x1d356) || + lookahead == 0x1d6c1 || + lookahead == 0x1d6db || + lookahead == 0x1d6fb || + lookahead == 0x1d715 || + lookahead == 0x1d735 || + lookahead == 0x1d74f || + lookahead == 0x1d76f || + lookahead == 0x1d789 || + lookahead == 0x1d7a9 || + lookahead == 0x1d7c3 || + (0x1d800 <= lookahead && lookahead <= 0x1d9ff) || + (0x1da37 <= lookahead && lookahead <= 0x1da3a) || + (0x1da6d <= lookahead && lookahead <= 0x1da74) || + (0x1da76 <= lookahead && lookahead <= 0x1da83) || + lookahead == 0x1da85 || + lookahead == 0x1da86 || + lookahead == 0x1e14f || + lookahead == 0x1e2ff || + lookahead == 0x1ecac || + lookahead == 0x1ecb0 || + lookahead == 0x1ed2e || + lookahead == 0x1eef0 || + lookahead == 0x1eef1 || + (0x1f110 <= lookahead && lookahead <= 0x1fb92) || + (0x1fb94 <= lookahead && lookahead <= 0x1fbef)) ADVANCE(2115); + if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 808, lookahead)) ADVANCE(2119); END_STATE(); case 2051: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -15400,13 +16730,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2097: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == '?') ADVANCE(2100); + if (lookahead == '?') ADVANCE(2101); 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(2104); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2105); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15419,89 +16749,97 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '0' || '9' < lookahead) && (lookahead < 'A' || 'Z' < lookahead) && lookahead != '_' && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2105); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2106); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2098); END_STATE(); case 2099: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '0') ADVANCE(2107); - if (lookahead == '?') ADVANCE(2100); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2108); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2104); + ACCEPT_TOKEN(sym_shortcode_name); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2099); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '=') ADVANCE(2106); - if (lookahead == '?') ADVANCE(2100); - if (set_contains(aux_sym_shortcode_naked_string_token2_character_set_1, 10, lookahead)) ADVANCE(2100); + if (lookahead == '0') ADVANCE(2108); + if (lookahead == '?') ADVANCE(2101); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2109); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2105); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '?') ADVANCE(2100); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2110); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2104); + if (lookahead == '=') ADVANCE(2107); + if (lookahead == '?') ADVANCE(2101); + if (set_contains(aux_sym_shortcode_naked_string_token2_character_set_1, 10, lookahead)) ADVANCE(2101); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '?') ADVANCE(2100); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2109); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2104); + if (lookahead == '?') ADVANCE(2101); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2111); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2105); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '?') ADVANCE(2100); + if (lookahead == '?') ADVANCE(2101); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2110); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2104); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2105); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '?') ADVANCE(2100); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2104); + if (lookahead == '?') ADVANCE(2101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2111); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2105); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (lookahead == '?') ADVANCE(2101); if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2105); END_STATE(); case 2106: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token2); - if (set_contains(aux_sym_shortcode_naked_string_token2_character_set_1, 10, lookahead)) ADVANCE(2106); + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2106); END_STATE(); case 2107: - ACCEPT_TOKEN(sym_shortcode_number); - if (lookahead == '.') ADVANCE(2102); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2101); + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token2); + if (set_contains(aux_sym_shortcode_naked_string_token2_character_set_1, 10, lookahead)) ADVANCE(2107); END_STATE(); case 2108: ACCEPT_TOKEN(sym_shortcode_number); - if (lookahead == '.') ADVANCE(2102); + if (lookahead == '.') ADVANCE(2103); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2108); + lookahead == 'e') ADVANCE(2102); END_STATE(); case 2109: ACCEPT_TOKEN(sym_shortcode_number); + if (lookahead == '.') ADVANCE(2103); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2101); + lookahead == 'e') ADVANCE(2102); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2109); END_STATE(); case 2110: ACCEPT_TOKEN(sym_shortcode_number); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2102); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2110); END_STATE(); case 2111: + ACCEPT_TOKEN(sym_shortcode_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2111); + END_STATE(); + case 2112: ACCEPT_TOKEN(aux_sym_citation_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(2111); + lookahead != '}') ADVANCE(2112); END_STATE(); - case 2112: + case 2113: ACCEPT_TOKEN(aux_sym_citation_token2); if (('#' <= lookahead && lookahead <= '&') || lookahead == '+' || @@ -15514,158 +16852,151 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2112); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2113); END_STATE(); - case 2113: + case 2114: ACCEPT_TOKEN(aux_sym_inline_note_token1); END_STATE(); - case 2114: + case 2115: ACCEPT_TOKEN(aux_sym_pandoc_str_token1); END_STATE(); - case 2115: + case 2116: ACCEPT_TOKEN(aux_sym_pandoc_str_token1); ADVANCE_MAP( '#', 2022, 'A', 319, - 'B', 390, + 'B', 389, 'C', 342, 'D', 303, 'E', 358, - 'F', 616, + 'F', 615, 'G', 51, 'H', 253, 'I', 325, - 'J', 718, + 'J', 717, 'K', 341, 'L', 50, - 'M', 432, + 'M', 431, 'N', 349, 'O', 327, - 'P', 428, + 'P', 427, 'Q', 380, 'R', 284, 'S', 338, 'T', 339, - 'U', 409, + 'U', 408, 'V', 311, - 'W', 670, - 'X', 958, + 'W', 669, + 'X', 957, 'Y', 255, 'Z', 343, - 'a', 388, + 'a', 387, 'b', 357, - 'c', 395, + 'c', 394, 'd', 260, 'e', 305, - 'f', 437, + 'f', 436, 'g', 40, 'h', 262, - 'i', 389, - 'j', 717, - 'k', 522, + 'i', 388, + 'j', 716, + 'k', 521, 'l', 20, 'm', 306, 'n', 335, 'o', 369, - 'p', 460, - 'q', 959, + 'p', 459, + 'q', 958, 'r', 254, - 's', 517, - 't', 412, + 's', 516, + 't', 411, 'u', 261, 'v', 258, - 'w', 669, - 'x', 625, - 'y', 427, - 'z', 518, + 'w', 668, + 'x', 624, + 'y', 426, + 'z', 517, ); END_STATE(); - case 2116: - ACCEPT_TOKEN(aux_sym_pandoc_str_token1); - if (lookahead == '\'') ADVANCE(2043); - if (lookahead == '_') ADVANCE(2043); - if (lookahead == 0x200d) ADVANCE(2042); - if (lookahead == 0xfe0f) ADVANCE(2119); - if (lookahead == 0x2018 || - lookahead == 0x2019) ADVANCE(2118); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(2117); - if (set_contains(aux_sym_pandoc_str_token1_character_set_6, 829, lookahead)) ADVANCE(2118); - END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym_pandoc_str_token1); if (lookahead == '\'') ADVANCE(2043); if (lookahead == '_') ADVANCE(2043); if (lookahead == 0x200d) ADVANCE(2042); if (lookahead == 0x2018 || - lookahead == 0x2019) ADVANCE(2118); - if (set_contains(aux_sym_pandoc_str_token1_character_set_6, 829, lookahead)) ADVANCE(2118); + lookahead == 0x2019) ADVANCE(2119); + if (lookahead == 0xfe0f || + (0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(2121); + if (set_contains(aux_sym_pandoc_str_token1_character_set_3, 781, lookahead)) ADVANCE(2119); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym_pandoc_str_token1); if (lookahead == '\'') ADVANCE(2043); if (lookahead == '_') ADVANCE(2043); + if (lookahead == 0x20e3) ADVANCE(2115); + if (lookahead == 0xfe0f) ADVANCE(2016); if (lookahead == 0x2018 || - lookahead == 0x2019) ADVANCE(2118); - if (set_contains(aux_sym_pandoc_str_token1_character_set_2, 828, lookahead)) ADVANCE(2118); + lookahead == 0x2019) ADVANCE(2119); + if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 780, lookahead)) ADVANCE(2119); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym_pandoc_str_token1); - if (lookahead == 0x200d) ADVANCE(2042); + if (lookahead == '\'') ADVANCE(2043); + if (lookahead == '_') ADVANCE(2043); + if (lookahead == 0x2018 || + lookahead == 0x2019) ADVANCE(2119); + if (set_contains(aux_sym_pandoc_str_token1_character_set_2, 778, lookahead)) ADVANCE(2119); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym_pandoc_str_token1); - if (lookahead == 0x200d) ADVANCE(2042); - if (lookahead == 0xfe0f || - (0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(2119); + if (lookahead == '[') ADVANCE(2058); END_STATE(); case 2121: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(aux_sym_pandoc_str_token1); + if (lookahead == 0x200d) ADVANCE(2042); END_STATE(); case 2122: - ACCEPT_TOKEN(aux_sym__prose_punctuation_token1); - if (lookahead == '[') ADVANCE(2058); - if (lookahead == '!' || - lookahead == ',' || - lookahead == '.' || - lookahead == ';' || - lookahead == '?') ADVANCE(2123); + ACCEPT_TOKEN(aux_sym_pandoc_str_token1); + if (lookahead == 0x200d) ADVANCE(2042); + if (lookahead == 0xfe0f || + (0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(2121); END_STATE(); case 2123: - ACCEPT_TOKEN(aux_sym__prose_punctuation_token1); - if (lookahead == '!' || - lookahead == ',' || - lookahead == '.' || - lookahead == ';' || - lookahead == '?') ADVANCE(2123); + ACCEPT_TOKEN(aux_sym_pandoc_str_token1); + if (lookahead == 0x20e3) ADVANCE(2115); + if (lookahead == 0xfe0f) ADVANCE(2016); END_STATE(); case 2124: - ACCEPT_TOKEN(sym__code_line); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(2124); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 2125: - ACCEPT_TOKEN(sym__whitespace); - if (lookahead == '\t') ADVANCE(2128); - if (lookahead == ' ') ADVANCE(2125); - if (lookahead == ']') ADVANCE(2073); + ACCEPT_TOKEN(sym__code_line); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(2125); END_STATE(); case 2126: ACCEPT_TOKEN(sym__whitespace); - if (lookahead == ']') ADVANCE(2057); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2126); + if (lookahead == '\t') ADVANCE(2129); + if (lookahead == ' ') ADVANCE(2126); + if (lookahead == ']') ADVANCE(2073); END_STATE(); case 2127: ACCEPT_TOKEN(sym__whitespace); - if (lookahead == ']') ADVANCE(2113); + if (lookahead == ']') ADVANCE(2057); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2127); END_STATE(); case 2128: ACCEPT_TOKEN(sym__whitespace); + if (lookahead == ']') ADVANCE(2114); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2128); END_STATE(); + case 2129: + ACCEPT_TOKEN(sym__whitespace); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2129); + END_STATE(); default: return false; } @@ -15711,89 +17042,89 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [36] = {.lex_state = 2050, .external_lex_state = 4}, [37] = {.lex_state = 2050, .external_lex_state = 4}, [38] = {.lex_state = 2050, .external_lex_state = 5}, - [39] = {.lex_state = 2050, .external_lex_state = 5}, + [39] = {.lex_state = 2050, .external_lex_state = 6}, [40] = {.lex_state = 2050, .external_lex_state = 6}, [41] = {.lex_state = 2050, .external_lex_state = 6}, - [42] = {.lex_state = 2050, .external_lex_state = 5}, - [43] = {.lex_state = 2050, .external_lex_state = 5}, - [44] = {.lex_state = 2050, .external_lex_state = 5}, - [45] = {.lex_state = 2050, .external_lex_state = 5}, - [46] = {.lex_state = 2050, .external_lex_state = 5}, + [42] = {.lex_state = 2050, .external_lex_state = 6}, + [43] = {.lex_state = 2050, .external_lex_state = 6}, + [44] = {.lex_state = 2050, .external_lex_state = 6}, + [45] = {.lex_state = 2050, .external_lex_state = 6}, + [46] = {.lex_state = 2050, .external_lex_state = 6}, [47] = {.lex_state = 2050, .external_lex_state = 5}, [48] = {.lex_state = 2050, .external_lex_state = 6}, - [49] = {.lex_state = 2050, .external_lex_state = 5}, - [50] = {.lex_state = 2050, .external_lex_state = 5}, - [51] = {.lex_state = 2050, .external_lex_state = 5}, - [52] = {.lex_state = 2050, .external_lex_state = 5}, - [53] = {.lex_state = 2050, .external_lex_state = 5}, + [49] = {.lex_state = 2050, .external_lex_state = 6}, + [50] = {.lex_state = 2050, .external_lex_state = 6}, + [51] = {.lex_state = 2050, .external_lex_state = 6}, + [52] = {.lex_state = 2050, .external_lex_state = 6}, + [53] = {.lex_state = 2050, .external_lex_state = 6}, [54] = {.lex_state = 2050, .external_lex_state = 5}, - [55] = {.lex_state = 2050, .external_lex_state = 5}, - [56] = {.lex_state = 2050, .external_lex_state = 5}, - [57] = {.lex_state = 2050, .external_lex_state = 5}, - [58] = {.lex_state = 2050, .external_lex_state = 5}, - [59] = {.lex_state = 2050, .external_lex_state = 5}, + [55] = {.lex_state = 2050, .external_lex_state = 6}, + [56] = {.lex_state = 2050, .external_lex_state = 6}, + [57] = {.lex_state = 2050, .external_lex_state = 6}, + [58] = {.lex_state = 2050, .external_lex_state = 6}, + [59] = {.lex_state = 2050, .external_lex_state = 6}, [60] = {.lex_state = 2050, .external_lex_state = 7}, - [61] = {.lex_state = 2050, .external_lex_state = 7}, + [61] = {.lex_state = 2050, .external_lex_state = 2}, [62] = {.lex_state = 2050, .external_lex_state = 2}, [63] = {.lex_state = 2050, .external_lex_state = 7}, - [64] = {.lex_state = 2050, .external_lex_state = 2}, + [64] = {.lex_state = 2050, .external_lex_state = 7}, [65] = {.lex_state = 2050, .external_lex_state = 7}, [66] = {.lex_state = 2050, .external_lex_state = 7}, [67] = {.lex_state = 2050, .external_lex_state = 7}, [68] = {.lex_state = 2050, .external_lex_state = 7}, - [69] = {.lex_state = 2050, .external_lex_state = 2}, + [69] = {.lex_state = 2050, .external_lex_state = 7}, [70] = {.lex_state = 2050, .external_lex_state = 7}, - [71] = {.lex_state = 2050, .external_lex_state = 7}, + [71] = {.lex_state = 2050, .external_lex_state = 2}, [72] = {.lex_state = 2050, .external_lex_state = 7}, [73] = {.lex_state = 2050, .external_lex_state = 7}, - [74] = {.lex_state = 2050, .external_lex_state = 5}, - [75] = {.lex_state = 2050, .external_lex_state = 5}, - [76] = {.lex_state = 2050, .external_lex_state = 5}, - [77] = {.lex_state = 2050, .external_lex_state = 7}, + [74] = {.lex_state = 2050, .external_lex_state = 6}, + [75] = {.lex_state = 2050, .external_lex_state = 6}, + [76] = {.lex_state = 2050, .external_lex_state = 6}, + [77] = {.lex_state = 2050, .external_lex_state = 2}, [78] = {.lex_state = 2050, .external_lex_state = 7}, - [79] = {.lex_state = 2050, .external_lex_state = 2}, - [80] = {.lex_state = 2050, .external_lex_state = 7}, - [81] = {.lex_state = 2050, .external_lex_state = 2}, + [79] = {.lex_state = 2050, .external_lex_state = 7}, + [80] = {.lex_state = 2050, .external_lex_state = 2}, + [81] = {.lex_state = 2050, .external_lex_state = 7}, [82] = {.lex_state = 2050, .external_lex_state = 2}, - [83] = {.lex_state = 2050, .external_lex_state = 5}, - [84] = {.lex_state = 2050, .external_lex_state = 5}, - [85] = {.lex_state = 2050, .external_lex_state = 5}, + [83] = {.lex_state = 2050, .external_lex_state = 6}, + [84] = {.lex_state = 2050, .external_lex_state = 6}, + [85] = {.lex_state = 2050, .external_lex_state = 6}, [86] = {.lex_state = 2050, .external_lex_state = 7}, [87] = {.lex_state = 2050, .external_lex_state = 7}, [88] = {.lex_state = 2050, .external_lex_state = 2}, - [89] = {.lex_state = 2050, .external_lex_state = 2}, + [89] = {.lex_state = 2050, .external_lex_state = 7}, [90] = {.lex_state = 2050, .external_lex_state = 2}, - [91] = {.lex_state = 2050, .external_lex_state = 7}, - [92] = {.lex_state = 2050, .external_lex_state = 5}, - [93] = {.lex_state = 2050, .external_lex_state = 5}, - [94] = {.lex_state = 2050, .external_lex_state = 5}, + [91] = {.lex_state = 2050, .external_lex_state = 2}, + [92] = {.lex_state = 2050, .external_lex_state = 6}, + [93] = {.lex_state = 2050, .external_lex_state = 6}, + [94] = {.lex_state = 2050, .external_lex_state = 6}, [95] = {.lex_state = 2050, .external_lex_state = 7}, - [96] = {.lex_state = 2050, .external_lex_state = 7}, - [97] = {.lex_state = 2050, .external_lex_state = 2}, - [98] = {.lex_state = 2050, .external_lex_state = 2}, + [96] = {.lex_state = 2050, .external_lex_state = 2}, + [97] = {.lex_state = 2050, .external_lex_state = 7}, + [98] = {.lex_state = 2050, .external_lex_state = 7}, [99] = {.lex_state = 2050, .external_lex_state = 2}, - [100] = {.lex_state = 2050, .external_lex_state = 7}, - [101] = {.lex_state = 2050, .external_lex_state = 5}, - [102] = {.lex_state = 2050, .external_lex_state = 5}, - [103] = {.lex_state = 2050, .external_lex_state = 5}, - [104] = {.lex_state = 2050, .external_lex_state = 7}, - [105] = {.lex_state = 2050, .external_lex_state = 7}, + [100] = {.lex_state = 2050, .external_lex_state = 2}, + [101] = {.lex_state = 2050, .external_lex_state = 6}, + [102] = {.lex_state = 2050, .external_lex_state = 6}, + [103] = {.lex_state = 2050, .external_lex_state = 6}, + [104] = {.lex_state = 2050, .external_lex_state = 2}, + [105] = {.lex_state = 2050, .external_lex_state = 2}, [106] = {.lex_state = 2050, .external_lex_state = 2}, - [107] = {.lex_state = 2050, .external_lex_state = 2}, - [108] = {.lex_state = 2050, .external_lex_state = 2}, + [107] = {.lex_state = 2050, .external_lex_state = 7}, + [108] = {.lex_state = 2050, .external_lex_state = 7}, [109] = {.lex_state = 2050, .external_lex_state = 7}, - [110] = {.lex_state = 2050, .external_lex_state = 5}, - [111] = {.lex_state = 2050, .external_lex_state = 5}, - [112] = {.lex_state = 2050, .external_lex_state = 5}, - [113] = {.lex_state = 2050, .external_lex_state = 7}, + [110] = {.lex_state = 2050, .external_lex_state = 6}, + [111] = {.lex_state = 2050, .external_lex_state = 6}, + [112] = {.lex_state = 2050, .external_lex_state = 6}, + [113] = {.lex_state = 2050, .external_lex_state = 2}, [114] = {.lex_state = 2050, .external_lex_state = 2}, - [115] = {.lex_state = 2050, .external_lex_state = 2}, - [116] = {.lex_state = 2050, .external_lex_state = 7}, - [117] = {.lex_state = 2050, .external_lex_state = 2}, + [115] = {.lex_state = 2050, .external_lex_state = 7}, + [116] = {.lex_state = 2050, .external_lex_state = 2}, + [117] = {.lex_state = 2050, .external_lex_state = 7}, [118] = {.lex_state = 2050, .external_lex_state = 7}, - [119] = {.lex_state = 2050, .external_lex_state = 5}, - [120] = {.lex_state = 2050, .external_lex_state = 5}, - [121] = {.lex_state = 2050, .external_lex_state = 5}, + [119] = {.lex_state = 2050, .external_lex_state = 6}, + [120] = {.lex_state = 2050, .external_lex_state = 6}, + [121] = {.lex_state = 2050, .external_lex_state = 6}, [122] = {.lex_state = 2050, .external_lex_state = 7}, [123] = {.lex_state = 2050, .external_lex_state = 2}, [124] = {.lex_state = 2050, .external_lex_state = 2}, @@ -15806,623 +17137,623 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [131] = {.lex_state = 2050, .external_lex_state = 8}, [132] = {.lex_state = 2050, .external_lex_state = 8}, [133] = {.lex_state = 2050, .external_lex_state = 8}, - [134] = {.lex_state = 4, .external_lex_state = 8}, - [135] = {.lex_state = 2, .external_lex_state = 9}, - [136] = {.lex_state = 2050, .external_lex_state = 5}, - [137] = {.lex_state = 2050, .external_lex_state = 5}, - [138] = {.lex_state = 2050, .external_lex_state = 5}, - [139] = {.lex_state = 2, .external_lex_state = 9}, - [140] = {.lex_state = 2, .external_lex_state = 9}, - [141] = {.lex_state = 2050, .external_lex_state = 5}, - [142] = {.lex_state = 2050, .external_lex_state = 5}, - [143] = {.lex_state = 2050, .external_lex_state = 5}, - [144] = {.lex_state = 2050, .external_lex_state = 5}, - [145] = {.lex_state = 2, .external_lex_state = 9}, - [146] = {.lex_state = 2, .external_lex_state = 9}, - [147] = {.lex_state = 2, .external_lex_state = 9}, - [148] = {.lex_state = 2, .external_lex_state = 9}, - [149] = {.lex_state = 2, .external_lex_state = 9}, - [150] = {.lex_state = 2, .external_lex_state = 9}, - [151] = {.lex_state = 2, .external_lex_state = 9}, - [152] = {.lex_state = 2, .external_lex_state = 9}, - [153] = {.lex_state = 2, .external_lex_state = 9}, - [154] = {.lex_state = 2, .external_lex_state = 9}, - [155] = {.lex_state = 2, .external_lex_state = 9}, - [156] = {.lex_state = 2, .external_lex_state = 9}, - [157] = {.lex_state = 2, .external_lex_state = 9}, - [158] = {.lex_state = 2, .external_lex_state = 9}, - [159] = {.lex_state = 2, .external_lex_state = 9}, - [160] = {.lex_state = 2, .external_lex_state = 9}, - [161] = {.lex_state = 2, .external_lex_state = 9}, - [162] = {.lex_state = 2, .external_lex_state = 9}, - [163] = {.lex_state = 2, .external_lex_state = 9}, - [164] = {.lex_state = 2, .external_lex_state = 9}, - [165] = {.lex_state = 2, .external_lex_state = 9}, - [166] = {.lex_state = 2, .external_lex_state = 9}, - [167] = {.lex_state = 2, .external_lex_state = 9}, - [168] = {.lex_state = 2, .external_lex_state = 9}, - [169] = {.lex_state = 2, .external_lex_state = 9}, - [170] = {.lex_state = 2, .external_lex_state = 9}, - [171] = {.lex_state = 2050, .external_lex_state = 5}, - [172] = {.lex_state = 2050, .external_lex_state = 5}, - [173] = {.lex_state = 2050, .external_lex_state = 5}, - [174] = {.lex_state = 2050, .external_lex_state = 5}, + [134] = {.lex_state = 2050, .external_lex_state = 6}, + [135] = {.lex_state = 2050, .external_lex_state = 6}, + [136] = {.lex_state = 2050, .external_lex_state = 6}, + [137] = {.lex_state = 2050, .external_lex_state = 6}, + [138] = {.lex_state = 2050, .external_lex_state = 6}, + [139] = {.lex_state = 2050, .external_lex_state = 6}, + [140] = {.lex_state = 2050, .external_lex_state = 6}, + [141] = {.lex_state = 2050, .external_lex_state = 6}, + [142] = {.lex_state = 2050, .external_lex_state = 6}, + [143] = {.lex_state = 2050, .external_lex_state = 6}, + [144] = {.lex_state = 2050, .external_lex_state = 6}, + [145] = {.lex_state = 2050, .external_lex_state = 6}, + [146] = {.lex_state = 2050, .external_lex_state = 2}, + [147] = {.lex_state = 2050, .external_lex_state = 7}, + [148] = {.lex_state = 2050, .external_lex_state = 7}, + [149] = {.lex_state = 2050, .external_lex_state = 7}, + [150] = {.lex_state = 2050, .external_lex_state = 7}, + [151] = {.lex_state = 2050, .external_lex_state = 7}, + [152] = {.lex_state = 4, .external_lex_state = 8}, + [153] = {.lex_state = 2050, .external_lex_state = 2}, + [154] = {.lex_state = 2050, .external_lex_state = 2}, + [155] = {.lex_state = 2050, .external_lex_state = 2}, + [156] = {.lex_state = 2050, .external_lex_state = 2}, + [157] = {.lex_state = 2050, .external_lex_state = 2}, + [158] = {.lex_state = 2050, .external_lex_state = 2}, + [159] = {.lex_state = 2050, .external_lex_state = 7}, + [160] = {.lex_state = 2050, .external_lex_state = 7}, + [161] = {.lex_state = 2050, .external_lex_state = 7}, + [162] = {.lex_state = 2050, .external_lex_state = 7}, + [163] = {.lex_state = 2050, .external_lex_state = 2}, + [164] = {.lex_state = 2050, .external_lex_state = 2}, + [165] = {.lex_state = 2050, .external_lex_state = 2}, + [166] = {.lex_state = 2050, .external_lex_state = 2}, + [167] = {.lex_state = 2050, .external_lex_state = 2}, + [168] = {.lex_state = 2050, .external_lex_state = 7}, + [169] = {.lex_state = 2050, .external_lex_state = 7}, + [170] = {.lex_state = 2050, .external_lex_state = 7}, + [171] = {.lex_state = 2, .external_lex_state = 9}, + [172] = {.lex_state = 2, .external_lex_state = 9}, + [173] = {.lex_state = 2, .external_lex_state = 9}, + [174] = {.lex_state = 2, .external_lex_state = 9}, [175] = {.lex_state = 2, .external_lex_state = 9}, - [176] = {.lex_state = 2050, .external_lex_state = 5}, + [176] = {.lex_state = 2, .external_lex_state = 9}, [177] = {.lex_state = 2, .external_lex_state = 9}, [178] = {.lex_state = 2, .external_lex_state = 9}, - [179] = {.lex_state = 2050, .external_lex_state = 2}, - [180] = {.lex_state = 2050, .external_lex_state = 2}, - [181] = {.lex_state = 2050, .external_lex_state = 2}, - [182] = {.lex_state = 2050, .external_lex_state = 2}, - [183] = {.lex_state = 4, .external_lex_state = 8}, - [184] = {.lex_state = 4, .external_lex_state = 10}, - [185] = {.lex_state = 4, .external_lex_state = 10}, - [186] = {.lex_state = 2050, .external_lex_state = 2}, - [187] = {.lex_state = 4, .external_lex_state = 10}, - [188] = {.lex_state = 2050, .external_lex_state = 7}, - [189] = {.lex_state = 2050, .external_lex_state = 7}, - [190] = {.lex_state = 2050, .external_lex_state = 7}, - [191] = {.lex_state = 2050, .external_lex_state = 7}, - [192] = {.lex_state = 2050, .external_lex_state = 7}, - [193] = {.lex_state = 2050, .external_lex_state = 2}, - [194] = {.lex_state = 4, .external_lex_state = 8}, - [195] = {.lex_state = 2050, .external_lex_state = 2}, - [196] = {.lex_state = 4, .external_lex_state = 8}, - [197] = {.lex_state = 4, .external_lex_state = 10}, - [198] = {.lex_state = 4, .external_lex_state = 8}, - [199] = {.lex_state = 2050, .external_lex_state = 7}, - [200] = {.lex_state = 2050, .external_lex_state = 7}, - [201] = {.lex_state = 2050, .external_lex_state = 2}, - [202] = {.lex_state = 2050, .external_lex_state = 2}, - [203] = {.lex_state = 2050, .external_lex_state = 7}, - [204] = {.lex_state = 2050, .external_lex_state = 2}, - [205] = {.lex_state = 4, .external_lex_state = 10}, - [206] = {.lex_state = 2050, .external_lex_state = 2}, - [207] = {.lex_state = 2050, .external_lex_state = 2}, - [208] = {.lex_state = 2050, .external_lex_state = 7}, - [209] = {.lex_state = 2050, .external_lex_state = 7}, - [210] = {.lex_state = 2050, .external_lex_state = 7}, - [211] = {.lex_state = 2050, .external_lex_state = 7}, - [212] = {.lex_state = 4, .external_lex_state = 8}, - [213] = {.lex_state = 4, .external_lex_state = 8}, - [214] = {.lex_state = 1, .external_lex_state = 9}, - [215] = {.lex_state = 4, .external_lex_state = 11}, - [216] = {.lex_state = 4, .external_lex_state = 12}, - [217] = {.lex_state = 4, .external_lex_state = 11}, - [218] = {.lex_state = 1, .external_lex_state = 9}, - [219] = {.lex_state = 1, .external_lex_state = 9}, - [220] = {.lex_state = 1, .external_lex_state = 9}, - [221] = {.lex_state = 1, .external_lex_state = 9}, - [222] = {.lex_state = 4, .external_lex_state = 12}, - [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 = 4, .external_lex_state = 12}, - [228] = {.lex_state = 4, .external_lex_state = 12}, - [229] = {.lex_state = 2050, .external_lex_state = 13}, - [230] = {.lex_state = 4, .external_lex_state = 12}, - [231] = {.lex_state = 2050, .external_lex_state = 13}, - [232] = {.lex_state = 2050, .external_lex_state = 13}, - [233] = {.lex_state = 2050, .external_lex_state = 13}, - [234] = {.lex_state = 2050, .external_lex_state = 13}, - [235] = {.lex_state = 2050, .external_lex_state = 13}, - [236] = {.lex_state = 2050, .external_lex_state = 13}, - [237] = {.lex_state = 2050, .external_lex_state = 13}, - [238] = {.lex_state = 2050, .external_lex_state = 13}, - [239] = {.lex_state = 2050, .external_lex_state = 13}, - [240] = {.lex_state = 2050, .external_lex_state = 13}, - [241] = {.lex_state = 2050, .external_lex_state = 13}, - [242] = {.lex_state = 2050, .external_lex_state = 13}, - [243] = {.lex_state = 2050, .external_lex_state = 13}, - [244] = {.lex_state = 2050, .external_lex_state = 13}, - [245] = {.lex_state = 2050, .external_lex_state = 13}, - [246] = {.lex_state = 2050, .external_lex_state = 13}, - [247] = {.lex_state = 1, .external_lex_state = 9}, - [248] = {.lex_state = 1, .external_lex_state = 9}, - [249] = {.lex_state = 1, .external_lex_state = 9}, - [250] = {.lex_state = 1, .external_lex_state = 9}, - [251] = {.lex_state = 1, .external_lex_state = 9}, - [252] = {.lex_state = 1, .external_lex_state = 9}, - [253] = {.lex_state = 1, .external_lex_state = 9}, - [254] = {.lex_state = 1, .external_lex_state = 9}, - [255] = {.lex_state = 4, .external_lex_state = 12}, - [256] = {.lex_state = 1, .external_lex_state = 9}, - [257] = {.lex_state = 1, .external_lex_state = 9}, - [258] = {.lex_state = 1, .external_lex_state = 9}, - [259] = {.lex_state = 1, .external_lex_state = 9}, - [260] = {.lex_state = 1, .external_lex_state = 9}, - [261] = {.lex_state = 1, .external_lex_state = 9}, - [262] = {.lex_state = 1, .external_lex_state = 9}, - [263] = {.lex_state = 1, .external_lex_state = 9}, - [264] = {.lex_state = 1, .external_lex_state = 9}, - [265] = {.lex_state = 1, .external_lex_state = 9}, - [266] = {.lex_state = 1, .external_lex_state = 9}, - [267] = {.lex_state = 1, .external_lex_state = 9}, - [268] = {.lex_state = 1, .external_lex_state = 9}, - [269] = {.lex_state = 1, .external_lex_state = 9}, - [270] = {.lex_state = 1, .external_lex_state = 9}, - [271] = {.lex_state = 1, .external_lex_state = 9}, - [272] = {.lex_state = 1, .external_lex_state = 9}, - [273] = {.lex_state = 1, .external_lex_state = 9}, - [274] = {.lex_state = 1, .external_lex_state = 9}, - [275] = {.lex_state = 1, .external_lex_state = 9}, - [276] = {.lex_state = 1, .external_lex_state = 9}, - [277] = {.lex_state = 1, .external_lex_state = 9}, - [278] = {.lex_state = 1, .external_lex_state = 9}, - [279] = {.lex_state = 1, .external_lex_state = 9}, - [280] = {.lex_state = 1, .external_lex_state = 9}, - [281] = {.lex_state = 1, .external_lex_state = 9}, - [282] = {.lex_state = 1, .external_lex_state = 9}, - [283] = {.lex_state = 1, .external_lex_state = 9}, - [284] = {.lex_state = 1, .external_lex_state = 9}, - [285] = {.lex_state = 1, .external_lex_state = 9}, - [286] = {.lex_state = 1, .external_lex_state = 9}, - [287] = {.lex_state = 1, .external_lex_state = 9}, - [288] = {.lex_state = 1, .external_lex_state = 9}, - [289] = {.lex_state = 1, .external_lex_state = 9}, - [290] = {.lex_state = 1, .external_lex_state = 9}, - [291] = {.lex_state = 1, .external_lex_state = 9}, - [292] = {.lex_state = 1, .external_lex_state = 9}, - [293] = {.lex_state = 1, .external_lex_state = 9}, - [294] = {.lex_state = 1, .external_lex_state = 9}, - [295] = {.lex_state = 1, .external_lex_state = 9}, - [296] = {.lex_state = 1, .external_lex_state = 9}, - [297] = {.lex_state = 1, .external_lex_state = 9}, - [298] = {.lex_state = 1, .external_lex_state = 9}, - [299] = {.lex_state = 1, .external_lex_state = 9}, - [300] = {.lex_state = 1, .external_lex_state = 9}, - [301] = {.lex_state = 1, .external_lex_state = 9}, - [302] = {.lex_state = 1, .external_lex_state = 9}, - [303] = {.lex_state = 4, .external_lex_state = 12}, - [304] = {.lex_state = 1, .external_lex_state = 9}, - [305] = {.lex_state = 1, .external_lex_state = 9}, - [306] = {.lex_state = 1, .external_lex_state = 9}, - [307] = {.lex_state = 1, .external_lex_state = 9}, - [308] = {.lex_state = 4, .external_lex_state = 12}, - [309] = {.lex_state = 4, .external_lex_state = 12}, - [310] = {.lex_state = 4, .external_lex_state = 12}, - [311] = {.lex_state = 4, .external_lex_state = 12}, - [312] = {.lex_state = 4, .external_lex_state = 12}, - [313] = {.lex_state = 4, .external_lex_state = 12}, - [314] = {.lex_state = 4, .external_lex_state = 12}, - [315] = {.lex_state = 4, .external_lex_state = 11}, - [316] = {.lex_state = 2050, .external_lex_state = 14}, + [179] = {.lex_state = 2, .external_lex_state = 9}, + [180] = {.lex_state = 2, .external_lex_state = 9}, + [181] = {.lex_state = 2, .external_lex_state = 9}, + [182] = {.lex_state = 2, .external_lex_state = 9}, + [183] = {.lex_state = 2, .external_lex_state = 9}, + [184] = {.lex_state = 2, .external_lex_state = 9}, + [185] = {.lex_state = 2, .external_lex_state = 9}, + [186] = {.lex_state = 2, .external_lex_state = 9}, + [187] = {.lex_state = 2, .external_lex_state = 9}, + [188] = {.lex_state = 2, .external_lex_state = 9}, + [189] = {.lex_state = 2, .external_lex_state = 9}, + [190] = {.lex_state = 2, .external_lex_state = 9}, + [191] = {.lex_state = 2, .external_lex_state = 9}, + [192] = {.lex_state = 2, .external_lex_state = 9}, + [193] = {.lex_state = 2, .external_lex_state = 9}, + [194] = {.lex_state = 2, .external_lex_state = 9}, + [195] = {.lex_state = 2, .external_lex_state = 9}, + [196] = {.lex_state = 2050, .external_lex_state = 10}, + [197] = {.lex_state = 2050, .external_lex_state = 10}, + [198] = {.lex_state = 2, .external_lex_state = 9}, + [199] = {.lex_state = 2, .external_lex_state = 9}, + [200] = {.lex_state = 2, .external_lex_state = 9}, + [201] = {.lex_state = 2050, .external_lex_state = 10}, + [202] = {.lex_state = 2050, .external_lex_state = 10}, + [203] = {.lex_state = 2050, .external_lex_state = 10}, + [204] = {.lex_state = 2050, .external_lex_state = 10}, + [205] = {.lex_state = 2050, .external_lex_state = 10}, + [206] = {.lex_state = 2050, .external_lex_state = 10}, + [207] = {.lex_state = 2050, .external_lex_state = 10}, + [208] = {.lex_state = 2050, .external_lex_state = 10}, + [209] = {.lex_state = 2050, .external_lex_state = 10}, + [210] = {.lex_state = 2050, .external_lex_state = 10}, + [211] = {.lex_state = 2050, .external_lex_state = 10}, + [212] = {.lex_state = 2050, .external_lex_state = 10}, + [213] = {.lex_state = 2050, .external_lex_state = 10}, + [214] = {.lex_state = 2, .external_lex_state = 9}, + [215] = {.lex_state = 2, .external_lex_state = 9}, + [216] = {.lex_state = 2, .external_lex_state = 9}, + [217] = {.lex_state = 2050, .external_lex_state = 10}, + [218] = {.lex_state = 2, .external_lex_state = 9}, + [219] = {.lex_state = 2050, .external_lex_state = 10}, + [220] = {.lex_state = 2050, .external_lex_state = 6}, + [221] = {.lex_state = 2050, .external_lex_state = 3}, + [222] = {.lex_state = 2050, .external_lex_state = 3}, + [223] = {.lex_state = 2050, .external_lex_state = 3}, + [224] = {.lex_state = 2050, .external_lex_state = 3}, + [225] = {.lex_state = 2050, .external_lex_state = 3}, + [226] = {.lex_state = 2050, .external_lex_state = 3}, + [227] = {.lex_state = 2050, .external_lex_state = 5}, + [228] = {.lex_state = 4, .external_lex_state = 8}, + [229] = {.lex_state = 4, .external_lex_state = 11}, + [230] = {.lex_state = 4, .external_lex_state = 11}, + [231] = {.lex_state = 4, .external_lex_state = 8}, + [232] = {.lex_state = 4, .external_lex_state = 11}, + [233] = {.lex_state = 2050, .external_lex_state = 5}, + [234] = {.lex_state = 2050, .external_lex_state = 5}, + [235] = {.lex_state = 2050, .external_lex_state = 5}, + [236] = {.lex_state = 2050, .external_lex_state = 5}, + [237] = {.lex_state = 2050, .external_lex_state = 5}, + [238] = {.lex_state = 2050, .external_lex_state = 5}, + [239] = {.lex_state = 2050, .external_lex_state = 5}, + [240] = {.lex_state = 4, .external_lex_state = 8}, + [241] = {.lex_state = 4, .external_lex_state = 8}, + [242] = {.lex_state = 4, .external_lex_state = 11}, + [243] = {.lex_state = 2050, .external_lex_state = 5}, + [244] = {.lex_state = 2050, .external_lex_state = 5}, + [245] = {.lex_state = 2050, .external_lex_state = 5}, + [246] = {.lex_state = 2050, .external_lex_state = 5}, + [247] = {.lex_state = 2050, .external_lex_state = 5}, + [248] = {.lex_state = 2050, .external_lex_state = 5}, + [249] = {.lex_state = 4, .external_lex_state = 8}, + [250] = {.lex_state = 2050, .external_lex_state = 6}, + [251] = {.lex_state = 2050, .external_lex_state = 6}, + [252] = {.lex_state = 2050, .external_lex_state = 12}, + [253] = {.lex_state = 2050, .external_lex_state = 6}, + [254] = {.lex_state = 2050, .external_lex_state = 6}, + [255] = {.lex_state = 2050, .external_lex_state = 6}, + [256] = {.lex_state = 2050, .external_lex_state = 6}, + [257] = {.lex_state = 2050, .external_lex_state = 6}, + [258] = {.lex_state = 2050, .external_lex_state = 6}, + [259] = {.lex_state = 2050, .external_lex_state = 6}, + [260] = {.lex_state = 2050, .external_lex_state = 6}, + [261] = {.lex_state = 2050, .external_lex_state = 6}, + [262] = {.lex_state = 2050, .external_lex_state = 6}, + [263] = {.lex_state = 2050, .external_lex_state = 6}, + [264] = {.lex_state = 2050, .external_lex_state = 6}, + [265] = {.lex_state = 2050, .external_lex_state = 6}, + [266] = {.lex_state = 2050, .external_lex_state = 6}, + [267] = {.lex_state = 2050, .external_lex_state = 12}, + [268] = {.lex_state = 2050, .external_lex_state = 6}, + [269] = {.lex_state = 2050, .external_lex_state = 6}, + [270] = {.lex_state = 2050, .external_lex_state = 6}, + [271] = {.lex_state = 2050, .external_lex_state = 6}, + [272] = {.lex_state = 2050, .external_lex_state = 6}, + [273] = {.lex_state = 2050, .external_lex_state = 6}, + [274] = {.lex_state = 2050, .external_lex_state = 6}, + [275] = {.lex_state = 2050, .external_lex_state = 12}, + [276] = {.lex_state = 2050, .external_lex_state = 6}, + [277] = {.lex_state = 2050, .external_lex_state = 12}, + [278] = {.lex_state = 2050, .external_lex_state = 12}, + [279] = {.lex_state = 2050, .external_lex_state = 12}, + [280] = {.lex_state = 4, .external_lex_state = 11}, + [281] = {.lex_state = 2050, .external_lex_state = 12}, + [282] = {.lex_state = 2050, .external_lex_state = 12}, + [283] = {.lex_state = 2050, .external_lex_state = 12}, + [284] = {.lex_state = 2050, .external_lex_state = 6}, + [285] = {.lex_state = 2050, .external_lex_state = 6}, + [286] = {.lex_state = 2050, .external_lex_state = 6}, + [287] = {.lex_state = 2050, .external_lex_state = 6}, + [288] = {.lex_state = 2050, .external_lex_state = 6}, + [289] = {.lex_state = 2050, .external_lex_state = 6}, + [290] = {.lex_state = 2050, .external_lex_state = 6}, + [291] = {.lex_state = 2050, .external_lex_state = 6}, + [292] = {.lex_state = 2050, .external_lex_state = 6}, + [293] = {.lex_state = 2050, .external_lex_state = 6}, + [294] = {.lex_state = 2050, .external_lex_state = 6}, + [295] = {.lex_state = 2050, .external_lex_state = 6}, + [296] = {.lex_state = 2050, .external_lex_state = 6}, + [297] = {.lex_state = 2050, .external_lex_state = 6}, + [298] = {.lex_state = 2050, .external_lex_state = 6}, + [299] = {.lex_state = 2050, .external_lex_state = 6}, + [300] = {.lex_state = 2050, .external_lex_state = 6}, + [301] = {.lex_state = 2050, .external_lex_state = 6}, + [302] = {.lex_state = 2050, .external_lex_state = 6}, + [303] = {.lex_state = 2050, .external_lex_state = 6}, + [304] = {.lex_state = 2050, .external_lex_state = 6}, + [305] = {.lex_state = 2050, .external_lex_state = 6}, + [306] = {.lex_state = 2050, .external_lex_state = 6}, + [307] = {.lex_state = 2050, .external_lex_state = 6}, + [308] = {.lex_state = 2050, .external_lex_state = 6}, + [309] = {.lex_state = 2050, .external_lex_state = 6}, + [310] = {.lex_state = 2050, .external_lex_state = 6}, + [311] = {.lex_state = 2050, .external_lex_state = 6}, + [312] = {.lex_state = 2050, .external_lex_state = 6}, + [313] = {.lex_state = 2050, .external_lex_state = 6}, + [314] = {.lex_state = 2050, .external_lex_state = 6}, + [315] = {.lex_state = 2050, .external_lex_state = 6}, + [316] = {.lex_state = 2050, .external_lex_state = 6}, [317] = {.lex_state = 2050, .external_lex_state = 6}, - [318] = {.lex_state = 2050, .external_lex_state = 5}, - [319] = {.lex_state = 2050, .external_lex_state = 5}, - [320] = {.lex_state = 2050, .external_lex_state = 5}, - [321] = {.lex_state = 2050, .external_lex_state = 5}, - [322] = {.lex_state = 2050, .external_lex_state = 5}, - [323] = {.lex_state = 2050, .external_lex_state = 5}, - [324] = {.lex_state = 2050, .external_lex_state = 5}, - [325] = {.lex_state = 2050, .external_lex_state = 5}, - [326] = {.lex_state = 2050, .external_lex_state = 5}, - [327] = {.lex_state = 2050, .external_lex_state = 5}, - [328] = {.lex_state = 2050, .external_lex_state = 5}, + [318] = {.lex_state = 2050, .external_lex_state = 6}, + [319] = {.lex_state = 2050, .external_lex_state = 6}, + [320] = {.lex_state = 2050, .external_lex_state = 6}, + [321] = {.lex_state = 2050, .external_lex_state = 6}, + [322] = {.lex_state = 2050, .external_lex_state = 12}, + [323] = {.lex_state = 2050, .external_lex_state = 12}, + [324] = {.lex_state = 2050, .external_lex_state = 12}, + [325] = {.lex_state = 2050, .external_lex_state = 12}, + [326] = {.lex_state = 2050, .external_lex_state = 12}, + [327] = {.lex_state = 2050, .external_lex_state = 12}, + [328] = {.lex_state = 2050, .external_lex_state = 12}, [329] = {.lex_state = 2050, .external_lex_state = 5}, [330] = {.lex_state = 2050, .external_lex_state = 5}, [331] = {.lex_state = 2050, .external_lex_state = 5}, - [332] = {.lex_state = 2050, .external_lex_state = 5}, - [333] = {.lex_state = 2050, .external_lex_state = 5}, - [334] = {.lex_state = 2050, .external_lex_state = 5}, - [335] = {.lex_state = 2050, .external_lex_state = 5}, - [336] = {.lex_state = 2050, .external_lex_state = 5}, - [337] = {.lex_state = 2050, .external_lex_state = 5}, - [338] = {.lex_state = 2050, .external_lex_state = 5}, - [339] = {.lex_state = 2050, .external_lex_state = 5}, - [340] = {.lex_state = 2050, .external_lex_state = 5}, - [341] = {.lex_state = 2050, .external_lex_state = 5}, - [342] = {.lex_state = 2050, .external_lex_state = 5}, - [343] = {.lex_state = 2050, .external_lex_state = 5}, - [344] = {.lex_state = 2050, .external_lex_state = 3}, - [345] = {.lex_state = 2050, .external_lex_state = 5}, - [346] = {.lex_state = 2050, .external_lex_state = 3}, - [347] = {.lex_state = 2050, .external_lex_state = 5}, - [348] = {.lex_state = 2050, .external_lex_state = 3}, - [349] = {.lex_state = 2050, .external_lex_state = 3}, - [350] = {.lex_state = 4, .external_lex_state = 9}, - [351] = {.lex_state = 2050, .external_lex_state = 5}, - [352] = {.lex_state = 2050, .external_lex_state = 14}, - [353] = {.lex_state = 2050, .external_lex_state = 14}, - [354] = {.lex_state = 2050, .external_lex_state = 14}, - [355] = {.lex_state = 2050, .external_lex_state = 14}, - [356] = {.lex_state = 2050, .external_lex_state = 14}, - [357] = {.lex_state = 2050, .external_lex_state = 5}, - [358] = {.lex_state = 4, .external_lex_state = 15}, - [359] = {.lex_state = 4, .external_lex_state = 16}, - [360] = {.lex_state = 2050, .external_lex_state = 5}, - [361] = {.lex_state = 2050, .external_lex_state = 14}, - [362] = {.lex_state = 4, .external_lex_state = 15}, - [363] = {.lex_state = 2050, .external_lex_state = 14}, - [364] = {.lex_state = 4, .external_lex_state = 16}, - [365] = {.lex_state = 4, .external_lex_state = 15}, - [366] = {.lex_state = 4, .external_lex_state = 16}, - [367] = {.lex_state = 2050, .external_lex_state = 14}, - [368] = {.lex_state = 2050, .external_lex_state = 3}, - [369] = {.lex_state = 2050, .external_lex_state = 5}, - [370] = {.lex_state = 2050, .external_lex_state = 5}, - [371] = {.lex_state = 2050, .external_lex_state = 5}, - [372] = {.lex_state = 2050, .external_lex_state = 5}, - [373] = {.lex_state = 2050, .external_lex_state = 5}, - [374] = {.lex_state = 2050, .external_lex_state = 5}, - [375] = {.lex_state = 2050, .external_lex_state = 5}, - [376] = {.lex_state = 4, .external_lex_state = 8}, - [377] = {.lex_state = 2050, .external_lex_state = 5}, - [378] = {.lex_state = 2050, .external_lex_state = 14}, - [379] = {.lex_state = 2050, .external_lex_state = 5}, - [380] = {.lex_state = 2050, .external_lex_state = 5}, - [381] = {.lex_state = 4, .external_lex_state = 15}, - [382] = {.lex_state = 2050, .external_lex_state = 5}, - [383] = {.lex_state = 2050, .external_lex_state = 5}, - [384] = {.lex_state = 2050, .external_lex_state = 5}, - [385] = {.lex_state = 2050, .external_lex_state = 14}, - [386] = {.lex_state = 2050, .external_lex_state = 14}, - [387] = {.lex_state = 2050, .external_lex_state = 3}, - [388] = {.lex_state = 2050, .external_lex_state = 5}, - [389] = {.lex_state = 2050, .external_lex_state = 14}, - [390] = {.lex_state = 2050, .external_lex_state = 14}, - [391] = {.lex_state = 2050, .external_lex_state = 5}, - [392] = {.lex_state = 2050, .external_lex_state = 6}, - [393] = {.lex_state = 2050, .external_lex_state = 5}, - [394] = {.lex_state = 4, .external_lex_state = 16}, - [395] = {.lex_state = 2050, .external_lex_state = 5}, - [396] = {.lex_state = 2050, .external_lex_state = 5}, - [397] = {.lex_state = 2050, .external_lex_state = 5}, - [398] = {.lex_state = 2050, .external_lex_state = 5}, - [399] = {.lex_state = 2050, .external_lex_state = 5}, - [400] = {.lex_state = 2050, .external_lex_state = 5}, - [401] = {.lex_state = 4, .external_lex_state = 8}, - [402] = {.lex_state = 2050, .external_lex_state = 5}, - [403] = {.lex_state = 2050, .external_lex_state = 14}, - [404] = {.lex_state = 4, .external_lex_state = 15}, - [405] = {.lex_state = 2050, .external_lex_state = 14}, - [406] = {.lex_state = 4, .external_lex_state = 15}, - [407] = {.lex_state = 4, .external_lex_state = 16}, - [408] = {.lex_state = 2050, .external_lex_state = 6}, - [409] = {.lex_state = 2050, .external_lex_state = 6}, - [410] = {.lex_state = 2050, .external_lex_state = 6}, - [411] = {.lex_state = 2050, .external_lex_state = 6}, - [412] = {.lex_state = 2050, .external_lex_state = 6}, - [413] = {.lex_state = 2050, .external_lex_state = 6}, - [414] = {.lex_state = 2050, .external_lex_state = 6}, - [415] = {.lex_state = 2050, .external_lex_state = 5}, - [416] = {.lex_state = 2050, .external_lex_state = 6}, - [417] = {.lex_state = 2050, .external_lex_state = 6}, - [418] = {.lex_state = 2050, .external_lex_state = 5}, - [419] = {.lex_state = 2050, .external_lex_state = 5}, - [420] = {.lex_state = 2050, .external_lex_state = 5}, - [421] = {.lex_state = 2050, .external_lex_state = 6}, - [422] = {.lex_state = 2050, .external_lex_state = 5}, - [423] = {.lex_state = 2050, .external_lex_state = 6}, - [424] = {.lex_state = 4, .external_lex_state = 9}, - [425] = {.lex_state = 2050, .external_lex_state = 5}, - [426] = {.lex_state = 2050, .external_lex_state = 6}, - [427] = {.lex_state = 2050, .external_lex_state = 5}, + [332] = {.lex_state = 4, .external_lex_state = 8}, + [333] = {.lex_state = 2050, .external_lex_state = 12}, + [334] = {.lex_state = 2050, .external_lex_state = 2}, + [335] = {.lex_state = 2050, .external_lex_state = 2}, + [336] = {.lex_state = 2050, .external_lex_state = 2}, + [337] = {.lex_state = 2050, .external_lex_state = 2}, + [338] = {.lex_state = 2050, .external_lex_state = 2}, + [339] = {.lex_state = 2050, .external_lex_state = 2}, + [340] = {.lex_state = 2050, .external_lex_state = 2}, + [341] = {.lex_state = 2050, .external_lex_state = 7}, + [342] = {.lex_state = 2050, .external_lex_state = 7}, + [343] = {.lex_state = 2050, .external_lex_state = 7}, + [344] = {.lex_state = 4, .external_lex_state = 13}, + [345] = {.lex_state = 1, .external_lex_state = 9}, + [346] = {.lex_state = 1, .external_lex_state = 9}, + [347] = {.lex_state = 1, .external_lex_state = 9}, + [348] = {.lex_state = 2050, .external_lex_state = 2}, + [349] = {.lex_state = 1, .external_lex_state = 9}, + [350] = {.lex_state = 2050, .external_lex_state = 2}, + [351] = {.lex_state = 2050, .external_lex_state = 2}, + [352] = {.lex_state = 2050, .external_lex_state = 2}, + [353] = {.lex_state = 4, .external_lex_state = 14}, + [354] = {.lex_state = 2050, .external_lex_state = 2}, + [355] = {.lex_state = 2050, .external_lex_state = 2}, + [356] = {.lex_state = 2050, .external_lex_state = 2}, + [357] = {.lex_state = 2050, .external_lex_state = 2}, + [358] = {.lex_state = 2050, .external_lex_state = 7}, + [359] = {.lex_state = 2050, .external_lex_state = 7}, + [360] = {.lex_state = 2050, .external_lex_state = 7}, + [361] = {.lex_state = 2050, .external_lex_state = 7}, + [362] = {.lex_state = 2050, .external_lex_state = 7}, + [363] = {.lex_state = 2050, .external_lex_state = 2}, + [364] = {.lex_state = 2050, .external_lex_state = 7}, + [365] = {.lex_state = 2050, .external_lex_state = 7}, + [366] = {.lex_state = 2050, .external_lex_state = 2}, + [367] = {.lex_state = 2050, .external_lex_state = 7}, + [368] = {.lex_state = 2050, .external_lex_state = 7}, + [369] = {.lex_state = 4, .external_lex_state = 14}, + [370] = {.lex_state = 2050, .external_lex_state = 7}, + [371] = {.lex_state = 2050, .external_lex_state = 7}, + [372] = {.lex_state = 2050, .external_lex_state = 2}, + [373] = {.lex_state = 2050, .external_lex_state = 2}, + [374] = {.lex_state = 2050, .external_lex_state = 7}, + [375] = {.lex_state = 2050, .external_lex_state = 7}, + [376] = {.lex_state = 2050, .external_lex_state = 7}, + [377] = {.lex_state = 2050, .external_lex_state = 2}, + [378] = {.lex_state = 2050, .external_lex_state = 7}, + [379] = {.lex_state = 2050, .external_lex_state = 7}, + [380] = {.lex_state = 2050, .external_lex_state = 7}, + [381] = {.lex_state = 2050, .external_lex_state = 7}, + [382] = {.lex_state = 2050, .external_lex_state = 7}, + [383] = {.lex_state = 2050, .external_lex_state = 7}, + [384] = {.lex_state = 2050, .external_lex_state = 7}, + [385] = {.lex_state = 2050, .external_lex_state = 2}, + [386] = {.lex_state = 2050, .external_lex_state = 7}, + [387] = {.lex_state = 2050, .external_lex_state = 2}, + [388] = {.lex_state = 2050, .external_lex_state = 7}, + [389] = {.lex_state = 2050, .external_lex_state = 7}, + [390] = {.lex_state = 2050, .external_lex_state = 7}, + [391] = {.lex_state = 2050, .external_lex_state = 7}, + [392] = {.lex_state = 2050, .external_lex_state = 7}, + [393] = {.lex_state = 2050, .external_lex_state = 7}, + [394] = {.lex_state = 2050, .external_lex_state = 7}, + [395] = {.lex_state = 2050, .external_lex_state = 7}, + [396] = {.lex_state = 2050, .external_lex_state = 7}, + [397] = {.lex_state = 2050, .external_lex_state = 7}, + [398] = {.lex_state = 2050, .external_lex_state = 7}, + [399] = {.lex_state = 2050, .external_lex_state = 7}, + [400] = {.lex_state = 2050, .external_lex_state = 7}, + [401] = {.lex_state = 2050, .external_lex_state = 7}, + [402] = {.lex_state = 2050, .external_lex_state = 7}, + [403] = {.lex_state = 2050, .external_lex_state = 7}, + [404] = {.lex_state = 2050, .external_lex_state = 7}, + [405] = {.lex_state = 2050, .external_lex_state = 7}, + [406] = {.lex_state = 2050, .external_lex_state = 7}, + [407] = {.lex_state = 2050, .external_lex_state = 7}, + [408] = {.lex_state = 2050, .external_lex_state = 7}, + [409] = {.lex_state = 2050, .external_lex_state = 7}, + [410] = {.lex_state = 2050, .external_lex_state = 7}, + [411] = {.lex_state = 2050, .external_lex_state = 7}, + [412] = {.lex_state = 4, .external_lex_state = 14}, + [413] = {.lex_state = 4, .external_lex_state = 14}, + [414] = {.lex_state = 2050, .external_lex_state = 2}, + [415] = {.lex_state = 4, .external_lex_state = 14}, + [416] = {.lex_state = 2050, .external_lex_state = 2}, + [417] = {.lex_state = 4, .external_lex_state = 14}, + [418] = {.lex_state = 2050, .external_lex_state = 2}, + [419] = {.lex_state = 4, .external_lex_state = 14}, + [420] = {.lex_state = 1, .external_lex_state = 9}, + [421] = {.lex_state = 1, .external_lex_state = 9}, + [422] = {.lex_state = 1, .external_lex_state = 9}, + [423] = {.lex_state = 1, .external_lex_state = 9}, + [424] = {.lex_state = 2050, .external_lex_state = 2}, + [425] = {.lex_state = 4, .external_lex_state = 14}, + [426] = {.lex_state = 2050, .external_lex_state = 2}, + [427] = {.lex_state = 2050, .external_lex_state = 7}, [428] = {.lex_state = 4, .external_lex_state = 9}, - [429] = {.lex_state = 2050, .external_lex_state = 6}, - [430] = {.lex_state = 2050, .external_lex_state = 5}, - [431] = {.lex_state = 2050, .external_lex_state = 6}, - [432] = {.lex_state = 4, .external_lex_state = 9}, - [433] = {.lex_state = 4, .external_lex_state = 9}, - [434] = {.lex_state = 4, .external_lex_state = 9}, - [435] = {.lex_state = 4, .external_lex_state = 9}, - [436] = {.lex_state = 4, .external_lex_state = 9}, - [437] = {.lex_state = 4, .external_lex_state = 9}, - [438] = {.lex_state = 4, .external_lex_state = 9}, - [439] = {.lex_state = 4, .external_lex_state = 9}, - [440] = {.lex_state = 4, .external_lex_state = 9}, - [441] = {.lex_state = 4, .external_lex_state = 9}, - [442] = {.lex_state = 4, .external_lex_state = 9}, - [443] = {.lex_state = 4, .external_lex_state = 9}, + [429] = {.lex_state = 2050, .external_lex_state = 2}, + [430] = {.lex_state = 2050, .external_lex_state = 2}, + [431] = {.lex_state = 2050, .external_lex_state = 2}, + [432] = {.lex_state = 2050, .external_lex_state = 2}, + [433] = {.lex_state = 2050, .external_lex_state = 2}, + [434] = {.lex_state = 2050, .external_lex_state = 2}, + [435] = {.lex_state = 2050, .external_lex_state = 2}, + [436] = {.lex_state = 1, .external_lex_state = 9}, + [437] = {.lex_state = 1, .external_lex_state = 9}, + [438] = {.lex_state = 1, .external_lex_state = 9}, + [439] = {.lex_state = 1, .external_lex_state = 9}, + [440] = {.lex_state = 2050, .external_lex_state = 2}, + [441] = {.lex_state = 2050, .external_lex_state = 2}, + [442] = {.lex_state = 2050, .external_lex_state = 2}, + [443] = {.lex_state = 2050, .external_lex_state = 2}, [444] = {.lex_state = 4, .external_lex_state = 9}, - [445] = {.lex_state = 2050, .external_lex_state = 6}, - [446] = {.lex_state = 2050, .external_lex_state = 14}, + [445] = {.lex_state = 4, .external_lex_state = 14}, + [446] = {.lex_state = 2050, .external_lex_state = 2}, [447] = {.lex_state = 2050, .external_lex_state = 2}, [448] = {.lex_state = 2050, .external_lex_state = 2}, - [449] = {.lex_state = 2050, .external_lex_state = 7}, - [450] = {.lex_state = 2, .external_lex_state = 9}, - [451] = {.lex_state = 2, .external_lex_state = 9}, - [452] = {.lex_state = 2, .external_lex_state = 9}, - [453] = {.lex_state = 4, .external_lex_state = 11}, - [454] = {.lex_state = 2050, .external_lex_state = 7}, - [455] = {.lex_state = 2050, .external_lex_state = 7}, + [449] = {.lex_state = 2050, .external_lex_state = 2}, + [450] = {.lex_state = 2050, .external_lex_state = 2}, + [451] = {.lex_state = 2050, .external_lex_state = 2}, + [452] = {.lex_state = 1, .external_lex_state = 9}, + [453] = {.lex_state = 1, .external_lex_state = 9}, + [454] = {.lex_state = 1, .external_lex_state = 9}, + [455] = {.lex_state = 1, .external_lex_state = 9}, [456] = {.lex_state = 2050, .external_lex_state = 2}, - [457] = {.lex_state = 2050, .external_lex_state = 7}, - [458] = {.lex_state = 2050, .external_lex_state = 2}, - [459] = {.lex_state = 2050, .external_lex_state = 2}, - [460] = {.lex_state = 2050, .external_lex_state = 2}, + [457] = {.lex_state = 1, .external_lex_state = 9}, + [458] = {.lex_state = 1, .external_lex_state = 9}, + [459] = {.lex_state = 1, .external_lex_state = 9}, + [460] = {.lex_state = 1, .external_lex_state = 9}, [461] = {.lex_state = 2050, .external_lex_state = 2}, - [462] = {.lex_state = 4, .external_lex_state = 17}, - [463] = {.lex_state = 2, .external_lex_state = 17}, - [464] = {.lex_state = 2, .external_lex_state = 17}, - [465] = {.lex_state = 2050, .external_lex_state = 2}, - [466] = {.lex_state = 2050, .external_lex_state = 2}, + [462] = {.lex_state = 2050, .external_lex_state = 2}, + [463] = {.lex_state = 1, .external_lex_state = 9}, + [464] = {.lex_state = 1, .external_lex_state = 9}, + [465] = {.lex_state = 1, .external_lex_state = 9}, + [466] = {.lex_state = 1, .external_lex_state = 9}, [467] = {.lex_state = 2050, .external_lex_state = 2}, [468] = {.lex_state = 2050, .external_lex_state = 2}, - [469] = {.lex_state = 2050, .external_lex_state = 2}, - [470] = {.lex_state = 2050, .external_lex_state = 2}, - [471] = {.lex_state = 2050, .external_lex_state = 2}, - [472] = {.lex_state = 2050, .external_lex_state = 2}, + [469] = {.lex_state = 1, .external_lex_state = 9}, + [470] = {.lex_state = 1, .external_lex_state = 9}, + [471] = {.lex_state = 1, .external_lex_state = 9}, + [472] = {.lex_state = 1, .external_lex_state = 9}, [473] = {.lex_state = 2050, .external_lex_state = 2}, - [474] = {.lex_state = 2050, .external_lex_state = 2}, - [475] = {.lex_state = 4, .external_lex_state = 18}, - [476] = {.lex_state = 2050, .external_lex_state = 2}, - [477] = {.lex_state = 4, .external_lex_state = 11}, + [474] = {.lex_state = 1, .external_lex_state = 9}, + [475] = {.lex_state = 1, .external_lex_state = 9}, + [476] = {.lex_state = 1, .external_lex_state = 9}, + [477] = {.lex_state = 1, .external_lex_state = 9}, [478] = {.lex_state = 2050, .external_lex_state = 2}, - [479] = {.lex_state = 2050, .external_lex_state = 7}, - [480] = {.lex_state = 2050, .external_lex_state = 2}, - [481] = {.lex_state = 2050, .external_lex_state = 2}, - [482] = {.lex_state = 2, .external_lex_state = 17}, - [483] = {.lex_state = 2, .external_lex_state = 17}, + [479] = {.lex_state = 2050, .external_lex_state = 2}, + [480] = {.lex_state = 1, .external_lex_state = 9}, + [481] = {.lex_state = 1, .external_lex_state = 9}, + [482] = {.lex_state = 1, .external_lex_state = 9}, + [483] = {.lex_state = 1, .external_lex_state = 9}, [484] = {.lex_state = 2050, .external_lex_state = 2}, - [485] = {.lex_state = 2050, .external_lex_state = 7}, - [486] = {.lex_state = 2050, .external_lex_state = 2}, - [487] = {.lex_state = 2050, .external_lex_state = 2}, - [488] = {.lex_state = 2050, .external_lex_state = 2}, - [489] = {.lex_state = 2050, .external_lex_state = 2}, - [490] = {.lex_state = 2050, .external_lex_state = 7}, - [491] = {.lex_state = 4, .external_lex_state = 17}, - [492] = {.lex_state = 2050, .external_lex_state = 2}, - [493] = {.lex_state = 2050, .external_lex_state = 7}, - [494] = {.lex_state = 2050, .external_lex_state = 2}, - [495] = {.lex_state = 2050, .external_lex_state = 7}, - [496] = {.lex_state = 2050, .external_lex_state = 7}, - [497] = {.lex_state = 2050, .external_lex_state = 2}, - [498] = {.lex_state = 2050, .external_lex_state = 2}, - [499] = {.lex_state = 2, .external_lex_state = 17}, - [500] = {.lex_state = 2, .external_lex_state = 17}, - [501] = {.lex_state = 2050, .external_lex_state = 7}, - [502] = {.lex_state = 2050, .external_lex_state = 7}, - [503] = {.lex_state = 2050, .external_lex_state = 7}, - [504] = {.lex_state = 2050, .external_lex_state = 7}, - [505] = {.lex_state = 2050, .external_lex_state = 2}, - [506] = {.lex_state = 2050, .external_lex_state = 2}, - [507] = {.lex_state = 2, .external_lex_state = 17}, - [508] = {.lex_state = 2, .external_lex_state = 17}, - [509] = {.lex_state = 2050, .external_lex_state = 7}, - [510] = {.lex_state = 2050, .external_lex_state = 7}, - [511] = {.lex_state = 2050, .external_lex_state = 7}, - [512] = {.lex_state = 2050, .external_lex_state = 7}, - [513] = {.lex_state = 2050, .external_lex_state = 2}, - [514] = {.lex_state = 2050, .external_lex_state = 2}, - [515] = {.lex_state = 2, .external_lex_state = 17}, - [516] = {.lex_state = 2, .external_lex_state = 17}, - [517] = {.lex_state = 2050, .external_lex_state = 7}, - [518] = {.lex_state = 2050, .external_lex_state = 2}, - [519] = {.lex_state = 2050, .external_lex_state = 2}, - [520] = {.lex_state = 2050, .external_lex_state = 7}, - [521] = {.lex_state = 2050, .external_lex_state = 2}, - [522] = {.lex_state = 2050, .external_lex_state = 7}, - [523] = {.lex_state = 2, .external_lex_state = 17}, - [524] = {.lex_state = 2, .external_lex_state = 17}, - [525] = {.lex_state = 2050, .external_lex_state = 7}, + [485] = {.lex_state = 2050, .external_lex_state = 2}, + [486] = {.lex_state = 1, .external_lex_state = 9}, + [487] = {.lex_state = 1, .external_lex_state = 9}, + [488] = {.lex_state = 1, .external_lex_state = 9}, + [489] = {.lex_state = 1, .external_lex_state = 9}, + [490] = {.lex_state = 2050, .external_lex_state = 2}, + [491] = {.lex_state = 2050, .external_lex_state = 2}, + [492] = {.lex_state = 1, .external_lex_state = 9}, + [493] = {.lex_state = 1, .external_lex_state = 9}, + [494] = {.lex_state = 1, .external_lex_state = 9}, + [495] = {.lex_state = 1, .external_lex_state = 9}, + [496] = {.lex_state = 2050, .external_lex_state = 2}, + [497] = {.lex_state = 4, .external_lex_state = 14}, + [498] = {.lex_state = 1, .external_lex_state = 9}, + [499] = {.lex_state = 1, .external_lex_state = 9}, + [500] = {.lex_state = 1, .external_lex_state = 9}, + [501] = {.lex_state = 1, .external_lex_state = 9}, + [502] = {.lex_state = 2050, .external_lex_state = 2}, + [503] = {.lex_state = 4, .external_lex_state = 14}, + [504] = {.lex_state = 1, .external_lex_state = 9}, + [505] = {.lex_state = 1, .external_lex_state = 9}, + [506] = {.lex_state = 1, .external_lex_state = 9}, + [507] = {.lex_state = 1, .external_lex_state = 9}, + [508] = {.lex_state = 4, .external_lex_state = 14}, + [509] = {.lex_state = 4, .external_lex_state = 14}, + [510] = {.lex_state = 1, .external_lex_state = 9}, + [511] = {.lex_state = 1, .external_lex_state = 9}, + [512] = {.lex_state = 1, .external_lex_state = 9}, + [513] = {.lex_state = 1, .external_lex_state = 9}, + [514] = {.lex_state = 4, .external_lex_state = 14}, + [515] = {.lex_state = 4, .external_lex_state = 14}, + [516] = {.lex_state = 1, .external_lex_state = 9}, + [517] = {.lex_state = 1, .external_lex_state = 9}, + [518] = {.lex_state = 1, .external_lex_state = 9}, + [519] = {.lex_state = 1, .external_lex_state = 9}, + [520] = {.lex_state = 4, .external_lex_state = 14}, + [521] = {.lex_state = 2050, .external_lex_state = 7}, + [522] = {.lex_state = 1, .external_lex_state = 9}, + [523] = {.lex_state = 1, .external_lex_state = 9}, + [524] = {.lex_state = 1, .external_lex_state = 9}, + [525] = {.lex_state = 1, .external_lex_state = 9}, [526] = {.lex_state = 2050, .external_lex_state = 7}, - [527] = {.lex_state = 2050, .external_lex_state = 7}, - [528] = {.lex_state = 2050, .external_lex_state = 2}, + [527] = {.lex_state = 4, .external_lex_state = 9}, + [528] = {.lex_state = 2050, .external_lex_state = 7}, [529] = {.lex_state = 2050, .external_lex_state = 2}, - [530] = {.lex_state = 2, .external_lex_state = 17}, - [531] = {.lex_state = 2, .external_lex_state = 17}, - [532] = {.lex_state = 2050, .external_lex_state = 7}, + [530] = {.lex_state = 4, .external_lex_state = 14}, + [531] = {.lex_state = 2050, .external_lex_state = 2}, + [532] = {.lex_state = 4, .external_lex_state = 14}, [533] = {.lex_state = 2050, .external_lex_state = 7}, [534] = {.lex_state = 2050, .external_lex_state = 7}, [535] = {.lex_state = 2050, .external_lex_state = 7}, - [536] = {.lex_state = 2050, .external_lex_state = 2}, - [537] = {.lex_state = 2050, .external_lex_state = 2}, - [538] = {.lex_state = 2, .external_lex_state = 17}, - [539] = {.lex_state = 2, .external_lex_state = 17}, + [536] = {.lex_state = 2050, .external_lex_state = 7}, + [537] = {.lex_state = 2050, .external_lex_state = 7}, + [538] = {.lex_state = 2050, .external_lex_state = 7}, + [539] = {.lex_state = 2050, .external_lex_state = 7}, [540] = {.lex_state = 2050, .external_lex_state = 7}, [541] = {.lex_state = 2050, .external_lex_state = 7}, [542] = {.lex_state = 2050, .external_lex_state = 7}, - [543] = {.lex_state = 2050, .external_lex_state = 7}, - [544] = {.lex_state = 2050, .external_lex_state = 7}, - [545] = {.lex_state = 2050, .external_lex_state = 2}, - [546] = {.lex_state = 2, .external_lex_state = 17}, - [547] = {.lex_state = 2, .external_lex_state = 17}, - [548] = {.lex_state = 2050, .external_lex_state = 7}, - [549] = {.lex_state = 2050, .external_lex_state = 7}, - [550] = {.lex_state = 2050, .external_lex_state = 7}, - [551] = {.lex_state = 2050, .external_lex_state = 7}, - [552] = {.lex_state = 2050, .external_lex_state = 2}, - [553] = {.lex_state = 2050, .external_lex_state = 2}, - [554] = {.lex_state = 2, .external_lex_state = 17}, - [555] = {.lex_state = 2, .external_lex_state = 17}, - [556] = {.lex_state = 2050, .external_lex_state = 7}, - [557] = {.lex_state = 2050, .external_lex_state = 7}, - [558] = {.lex_state = 2050, .external_lex_state = 7}, - [559] = {.lex_state = 2050, .external_lex_state = 7}, - [560] = {.lex_state = 2050, .external_lex_state = 2}, - [561] = {.lex_state = 2050, .external_lex_state = 2}, - [562] = {.lex_state = 2, .external_lex_state = 17}, - [563] = {.lex_state = 2, .external_lex_state = 17}, - [564] = {.lex_state = 2050, .external_lex_state = 7}, - [565] = {.lex_state = 2050, .external_lex_state = 7}, - [566] = {.lex_state = 2050, .external_lex_state = 7}, - [567] = {.lex_state = 2050, .external_lex_state = 7}, - [568] = {.lex_state = 2050, .external_lex_state = 2}, - [569] = {.lex_state = 2050, .external_lex_state = 2}, - [570] = {.lex_state = 2, .external_lex_state = 17}, - [571] = {.lex_state = 2, .external_lex_state = 17}, - [572] = {.lex_state = 2050, .external_lex_state = 7}, - [573] = {.lex_state = 2050, .external_lex_state = 7}, - [574] = {.lex_state = 2050, .external_lex_state = 7}, - [575] = {.lex_state = 2050, .external_lex_state = 2}, - [576] = {.lex_state = 2050, .external_lex_state = 2}, - [577] = {.lex_state = 2050, .external_lex_state = 7}, - [578] = {.lex_state = 2, .external_lex_state = 17}, + [543] = {.lex_state = 2050, .external_lex_state = 2}, + [544] = {.lex_state = 4, .external_lex_state = 13}, + [545] = {.lex_state = 4, .external_lex_state = 13}, + [546] = {.lex_state = 2050, .external_lex_state = 2}, + [547] = {.lex_state = 4, .external_lex_state = 9}, + [548] = {.lex_state = 4, .external_lex_state = 9}, + [549] = {.lex_state = 4, .external_lex_state = 15}, + [550] = {.lex_state = 4, .external_lex_state = 15}, + [551] = {.lex_state = 4, .external_lex_state = 16}, + [552] = {.lex_state = 4, .external_lex_state = 16}, + [553] = {.lex_state = 4, .external_lex_state = 15}, + [554] = {.lex_state = 4, .external_lex_state = 16}, + [555] = {.lex_state = 4, .external_lex_state = 16}, + [556] = {.lex_state = 4, .external_lex_state = 15}, + [557] = {.lex_state = 4, .external_lex_state = 16}, + [558] = {.lex_state = 4, .external_lex_state = 15}, + [559] = {.lex_state = 4, .external_lex_state = 9}, + [560] = {.lex_state = 4, .external_lex_state = 9}, + [561] = {.lex_state = 4, .external_lex_state = 9}, + [562] = {.lex_state = 4, .external_lex_state = 8}, + [563] = {.lex_state = 4, .external_lex_state = 9}, + [564] = {.lex_state = 4, .external_lex_state = 15}, + [565] = {.lex_state = 4, .external_lex_state = 8}, + [566] = {.lex_state = 4, .external_lex_state = 9}, + [567] = {.lex_state = 4, .external_lex_state = 9}, + [568] = {.lex_state = 4, .external_lex_state = 9}, + [569] = {.lex_state = 4, .external_lex_state = 9}, + [570] = {.lex_state = 4, .external_lex_state = 9}, + [571] = {.lex_state = 4, .external_lex_state = 9}, + [572] = {.lex_state = 4, .external_lex_state = 9}, + [573] = {.lex_state = 4, .external_lex_state = 9}, + [574] = {.lex_state = 4, .external_lex_state = 9}, + [575] = {.lex_state = 4, .external_lex_state = 9}, + [576] = {.lex_state = 2, .external_lex_state = 17}, + [577] = {.lex_state = 2, .external_lex_state = 17}, + [578] = {.lex_state = 2, .external_lex_state = 9}, [579] = {.lex_state = 2, .external_lex_state = 17}, - [580] = {.lex_state = 2050, .external_lex_state = 2}, - [581] = {.lex_state = 2050, .external_lex_state = 2}, - [582] = {.lex_state = 2050, .external_lex_state = 2}, - [583] = {.lex_state = 2050, .external_lex_state = 2}, - [584] = {.lex_state = 2050, .external_lex_state = 2}, + [580] = {.lex_state = 2, .external_lex_state = 17}, + [581] = {.lex_state = 2, .external_lex_state = 9}, + [582] = {.lex_state = 2, .external_lex_state = 17}, + [583] = {.lex_state = 4, .external_lex_state = 13}, + [584] = {.lex_state = 4, .external_lex_state = 18}, [585] = {.lex_state = 2, .external_lex_state = 17}, [586] = {.lex_state = 2, .external_lex_state = 17}, - [587] = {.lex_state = 2050, .external_lex_state = 7}, - [588] = {.lex_state = 2050, .external_lex_state = 7}, + [587] = {.lex_state = 2, .external_lex_state = 17}, + [588] = {.lex_state = 2, .external_lex_state = 17}, [589] = {.lex_state = 2, .external_lex_state = 17}, [590] = {.lex_state = 2, .external_lex_state = 17}, - [591] = {.lex_state = 4, .external_lex_state = 18}, - [592] = {.lex_state = 2050, .external_lex_state = 2}, - [593] = {.lex_state = 2050, .external_lex_state = 2}, - [594] = {.lex_state = 2050, .external_lex_state = 2}, - [595] = {.lex_state = 2050, .external_lex_state = 7}, - [596] = {.lex_state = 2050, .external_lex_state = 7}, - [597] = {.lex_state = 2050, .external_lex_state = 7}, - [598] = {.lex_state = 2050, .external_lex_state = 2}, + [591] = {.lex_state = 4, .external_lex_state = 17}, + [592] = {.lex_state = 2, .external_lex_state = 17}, + [593] = {.lex_state = 2, .external_lex_state = 17}, + [594] = {.lex_state = 2, .external_lex_state = 17}, + [595] = {.lex_state = 2, .external_lex_state = 17}, + [596] = {.lex_state = 2, .external_lex_state = 17}, + [597] = {.lex_state = 2, .external_lex_state = 17}, + [598] = {.lex_state = 2, .external_lex_state = 9}, [599] = {.lex_state = 2, .external_lex_state = 17}, [600] = {.lex_state = 2, .external_lex_state = 17}, - [601] = {.lex_state = 2050, .external_lex_state = 2}, - [602] = {.lex_state = 2050, .external_lex_state = 2}, - [603] = {.lex_state = 2050, .external_lex_state = 7}, - [604] = {.lex_state = 2050, .external_lex_state = 7}, - [605] = {.lex_state = 2050, .external_lex_state = 7}, - [606] = {.lex_state = 2050, .external_lex_state = 7}, - [607] = {.lex_state = 2050, .external_lex_state = 7}, - [608] = {.lex_state = 2050, .external_lex_state = 7}, - [609] = {.lex_state = 2050, .external_lex_state = 7}, - [610] = {.lex_state = 4, .external_lex_state = 18}, - [611] = {.lex_state = 2050, .external_lex_state = 7}, - [612] = {.lex_state = 4, .external_lex_state = 15}, - [613] = {.lex_state = 3, .external_lex_state = 9}, - [614] = {.lex_state = 4, .external_lex_state = 19}, - [615] = {.lex_state = 4, .external_lex_state = 19}, - [616] = {.lex_state = 4, .external_lex_state = 19}, - [617] = {.lex_state = 4, .external_lex_state = 20}, - [618] = {.lex_state = 4, .external_lex_state = 20}, + [601] = {.lex_state = 2, .external_lex_state = 17}, + [602] = {.lex_state = 4, .external_lex_state = 13}, + [603] = {.lex_state = 2, .external_lex_state = 17}, + [604] = {.lex_state = 2, .external_lex_state = 17}, + [605] = {.lex_state = 2, .external_lex_state = 17}, + [606] = {.lex_state = 2, .external_lex_state = 17}, + [607] = {.lex_state = 4, .external_lex_state = 17}, + [608] = {.lex_state = 2, .external_lex_state = 17}, + [609] = {.lex_state = 2, .external_lex_state = 17}, + [610] = {.lex_state = 2, .external_lex_state = 17}, + [611] = {.lex_state = 2, .external_lex_state = 17}, + [612] = {.lex_state = 2, .external_lex_state = 17}, + [613] = {.lex_state = 4, .external_lex_state = 18}, + [614] = {.lex_state = 2, .external_lex_state = 17}, + [615] = {.lex_state = 4, .external_lex_state = 18}, + [616] = {.lex_state = 2, .external_lex_state = 17}, + [617] = {.lex_state = 2, .external_lex_state = 17}, + [618] = {.lex_state = 4, .external_lex_state = 19}, [619] = {.lex_state = 4, .external_lex_state = 20}, [620] = {.lex_state = 4, .external_lex_state = 21}, [621] = {.lex_state = 4, .external_lex_state = 21}, - [622] = {.lex_state = 4, .external_lex_state = 22}, - [623] = {.lex_state = 4, .external_lex_state = 21}, - [624] = {.lex_state = 3, .external_lex_state = 9}, + [622] = {.lex_state = 4, .external_lex_state = 21}, + [623] = {.lex_state = 4, .external_lex_state = 15}, + [624] = {.lex_state = 4, .external_lex_state = 22}, [625] = {.lex_state = 4, .external_lex_state = 22}, [626] = {.lex_state = 4, .external_lex_state = 22}, - [627] = {.lex_state = 3, .external_lex_state = 9}, + [627] = {.lex_state = 4, .external_lex_state = 23}, [628] = {.lex_state = 4, .external_lex_state = 23}, - [629] = {.lex_state = 4, .external_lex_state = 15}, - [630] = {.lex_state = 1, .external_lex_state = 9}, - [631] = {.lex_state = 4, .external_lex_state = 23}, - [632] = {.lex_state = 1, .external_lex_state = 9}, - [633] = {.lex_state = 1, .external_lex_state = 9}, - [634] = {.lex_state = 4, .external_lex_state = 24}, - [635] = {.lex_state = 4, .external_lex_state = 24}, - [636] = {.lex_state = 4, .external_lex_state = 24}, - [637] = {.lex_state = 4, .external_lex_state = 25}, - [638] = {.lex_state = 4, .external_lex_state = 25}, - [639] = {.lex_state = 4, .external_lex_state = 25}, + [629] = {.lex_state = 1, .external_lex_state = 9}, + [630] = {.lex_state = 4, .external_lex_state = 23}, + [631] = {.lex_state = 4, .external_lex_state = 24}, + [632] = {.lex_state = 4, .external_lex_state = 24}, + [633] = {.lex_state = 4, .external_lex_state = 24}, + [634] = {.lex_state = 4, .external_lex_state = 19}, + [635] = {.lex_state = 4, .external_lex_state = 25}, + [636] = {.lex_state = 3, .external_lex_state = 9}, + [637] = {.lex_state = 3, .external_lex_state = 9}, + [638] = {.lex_state = 3, .external_lex_state = 9}, + [639] = {.lex_state = 4, .external_lex_state = 26}, [640] = {.lex_state = 4, .external_lex_state = 26}, - [641] = {.lex_state = 4, .external_lex_state = 26}, - [642] = {.lex_state = 4, .external_lex_state = 26}, - [643] = {.lex_state = 4, .external_lex_state = 27}, - [644] = {.lex_state = 4, .external_lex_state = 27}, - [645] = {.lex_state = 4, .external_lex_state = 27}, - [646] = {.lex_state = 4, .external_lex_state = 23}, - [647] = {.lex_state = 1, .external_lex_state = 17}, - [648] = {.lex_state = 1, .external_lex_state = 17}, - [649] = {.lex_state = 1, .external_lex_state = 17}, - [650] = {.lex_state = 1, .external_lex_state = 17}, - [651] = {.lex_state = 1, .external_lex_state = 17}, - [652] = {.lex_state = 4, .external_lex_state = 28}, - [653] = {.lex_state = 4, .external_lex_state = 29}, + [641] = {.lex_state = 4, .external_lex_state = 15}, + [642] = {.lex_state = 4, .external_lex_state = 20}, + [643] = {.lex_state = 1, .external_lex_state = 9}, + [644] = {.lex_state = 4, .external_lex_state = 25}, + [645] = {.lex_state = 4, .external_lex_state = 26}, + [646] = {.lex_state = 1, .external_lex_state = 9}, + [647] = {.lex_state = 4, .external_lex_state = 27}, + [648] = {.lex_state = 4, .external_lex_state = 27}, + [649] = {.lex_state = 4, .external_lex_state = 27}, + [650] = {.lex_state = 4, .external_lex_state = 19}, + [651] = {.lex_state = 4, .external_lex_state = 20}, + [652] = {.lex_state = 4, .external_lex_state = 25}, + [653] = {.lex_state = 1, .external_lex_state = 17}, [654] = {.lex_state = 4, .external_lex_state = 28}, - [655] = {.lex_state = 4, .external_lex_state = 29}, - [656] = {.lex_state = 1, .external_lex_state = 17}, - [657] = {.lex_state = 1, .external_lex_state = 17}, - [658] = {.lex_state = 1, .external_lex_state = 17}, - [659] = {.lex_state = 1, .external_lex_state = 17}, + [655] = {.lex_state = 1, .external_lex_state = 17}, + [656] = {.lex_state = 4, .external_lex_state = 29}, + [657] = {.lex_state = 4, .external_lex_state = 28}, + [658] = {.lex_state = 4, .external_lex_state = 29}, + [659] = {.lex_state = 4, .external_lex_state = 28}, [660] = {.lex_state = 1, .external_lex_state = 17}, - [661] = {.lex_state = 4, .external_lex_state = 28}, + [661] = {.lex_state = 1, .external_lex_state = 17}, [662] = {.lex_state = 1, .external_lex_state = 17}, [663] = {.lex_state = 1, .external_lex_state = 17}, - [664] = {.lex_state = 1, .external_lex_state = 17}, - [665] = {.lex_state = 1, .external_lex_state = 17}, - [666] = {.lex_state = 4, .external_lex_state = 28}, - [667] = {.lex_state = 4, .external_lex_state = 29}, - [668] = {.lex_state = 4, .external_lex_state = 29}, + [664] = {.lex_state = 4, .external_lex_state = 29}, + [665] = {.lex_state = 4, .external_lex_state = 28}, + [666] = {.lex_state = 1, .external_lex_state = 17}, + [667] = {.lex_state = 1, .external_lex_state = 17}, + [668] = {.lex_state = 1, .external_lex_state = 17}, [669] = {.lex_state = 1, .external_lex_state = 17}, - [670] = {.lex_state = 1, .external_lex_state = 17}, - [671] = {.lex_state = 1, .external_lex_state = 17}, + [670] = {.lex_state = 4, .external_lex_state = 29}, + [671] = {.lex_state = 4, .external_lex_state = 28}, [672] = {.lex_state = 1, .external_lex_state = 17}, [673] = {.lex_state = 1, .external_lex_state = 17}, [674] = {.lex_state = 1, .external_lex_state = 17}, [675] = {.lex_state = 1, .external_lex_state = 17}, - [676] = {.lex_state = 4, .external_lex_state = 28}, - [677] = {.lex_state = 4, .external_lex_state = 29}, - [678] = {.lex_state = 4, .external_lex_state = 28}, - [679] = {.lex_state = 4, .external_lex_state = 29}, - [680] = {.lex_state = 4, .external_lex_state = 28}, - [681] = {.lex_state = 4, .external_lex_state = 29}, - [682] = {.lex_state = 4, .external_lex_state = 28}, - [683] = {.lex_state = 4, .external_lex_state = 28}, - [684] = {.lex_state = 1, .external_lex_state = 17}, - [685] = {.lex_state = 1, .external_lex_state = 17}, + [676] = {.lex_state = 1, .external_lex_state = 17}, + [677] = {.lex_state = 1, .external_lex_state = 17}, + [678] = {.lex_state = 1, .external_lex_state = 17}, + [679] = {.lex_state = 1, .external_lex_state = 17}, + [680] = {.lex_state = 1, .external_lex_state = 17}, + [681] = {.lex_state = 1, .external_lex_state = 17}, + [682] = {.lex_state = 1, .external_lex_state = 17}, + [683] = {.lex_state = 1, .external_lex_state = 17}, + [684] = {.lex_state = 4, .external_lex_state = 29}, + [685] = {.lex_state = 4, .external_lex_state = 28}, [686] = {.lex_state = 1, .external_lex_state = 17}, - [687] = {.lex_state = 4, .external_lex_state = 29}, + [687] = {.lex_state = 1, .external_lex_state = 17}, [688] = {.lex_state = 1, .external_lex_state = 17}, [689] = {.lex_state = 1, .external_lex_state = 17}, [690] = {.lex_state = 1, .external_lex_state = 17}, - [691] = {.lex_state = 4, .external_lex_state = 29}, - [692] = {.lex_state = 4, .external_lex_state = 11}, + [691] = {.lex_state = 1, .external_lex_state = 17}, + [692] = {.lex_state = 1, .external_lex_state = 17}, [693] = {.lex_state = 1, .external_lex_state = 17}, - [694] = {.lex_state = 4, .external_lex_state = 28}, - [695] = {.lex_state = 4, .external_lex_state = 29}, + [694] = {.lex_state = 1, .external_lex_state = 17}, + [695] = {.lex_state = 1, .external_lex_state = 17}, [696] = {.lex_state = 1, .external_lex_state = 17}, [697] = {.lex_state = 1, .external_lex_state = 17}, - [698] = {.lex_state = 1, .external_lex_state = 17}, - [699] = {.lex_state = 1, .external_lex_state = 17}, - [700] = {.lex_state = 1, .external_lex_state = 17}, - [701] = {.lex_state = 1, .external_lex_state = 17}, + [698] = {.lex_state = 4, .external_lex_state = 29}, + [699] = {.lex_state = 4, .external_lex_state = 28}, + [700] = {.lex_state = 4, .external_lex_state = 29}, + [701] = {.lex_state = 4, .external_lex_state = 29}, [702] = {.lex_state = 1, .external_lex_state = 17}, [703] = {.lex_state = 1, .external_lex_state = 17}, [704] = {.lex_state = 1, .external_lex_state = 17}, [705] = {.lex_state = 1, .external_lex_state = 17}, - [706] = {.lex_state = 1, .external_lex_state = 17}, - [707] = {.lex_state = 1, .external_lex_state = 17}, - [708] = {.lex_state = 4, .external_lex_state = 28}, - [709] = {.lex_state = 4, .external_lex_state = 28}, + [706] = {.lex_state = 4, .external_lex_state = 28}, + [707] = {.lex_state = 4, .external_lex_state = 13}, + [708] = {.lex_state = 4, .external_lex_state = 29}, + [709] = {.lex_state = 1, .external_lex_state = 17}, [710] = {.lex_state = 1, .external_lex_state = 17}, - [711] = {.lex_state = 4, .external_lex_state = 17}, + [711] = {.lex_state = 1, .external_lex_state = 17}, [712] = {.lex_state = 1, .external_lex_state = 17}, [713] = {.lex_state = 1, .external_lex_state = 17}, [714] = {.lex_state = 1, .external_lex_state = 17}, [715] = {.lex_state = 1, .external_lex_state = 17}, - [716] = {.lex_state = 1, .external_lex_state = 17}, - [717] = {.lex_state = 4, .external_lex_state = 29}, + [716] = {.lex_state = 4, .external_lex_state = 29}, + [717] = {.lex_state = 4, .external_lex_state = 28}, [718] = {.lex_state = 4, .external_lex_state = 29}, [719] = {.lex_state = 4, .external_lex_state = 28}, [720] = {.lex_state = 1, .external_lex_state = 17}, [721] = {.lex_state = 1, .external_lex_state = 17}, - [722] = {.lex_state = 4, .external_lex_state = 29}, + [722] = {.lex_state = 1, .external_lex_state = 17}, [723] = {.lex_state = 1, .external_lex_state = 17}, [724] = {.lex_state = 1, .external_lex_state = 17}, - [725] = {.lex_state = 4, .external_lex_state = 17}, + [725] = {.lex_state = 1, .external_lex_state = 17}, [726] = {.lex_state = 1, .external_lex_state = 17}, [727] = {.lex_state = 1, .external_lex_state = 17}, - [728] = {.lex_state = 4, .external_lex_state = 28}, - [729] = {.lex_state = 4, .external_lex_state = 29}, + [728] = {.lex_state = 1, .external_lex_state = 17}, + [729] = {.lex_state = 1, .external_lex_state = 17}, [730] = {.lex_state = 1, .external_lex_state = 17}, - [731] = {.lex_state = 4, .external_lex_state = 17}, - [732] = {.lex_state = 1, .external_lex_state = 17}, - [733] = {.lex_state = 1, .external_lex_state = 17}, + [731] = {.lex_state = 4, .external_lex_state = 29}, + [732] = {.lex_state = 4, .external_lex_state = 28}, + [733] = {.lex_state = 4, .external_lex_state = 28}, [734] = {.lex_state = 1, .external_lex_state = 17}, - [735] = {.lex_state = 4, .external_lex_state = 28}, - [736] = {.lex_state = 4, .external_lex_state = 28}, - [737] = {.lex_state = 4, .external_lex_state = 29}, + [735] = {.lex_state = 1, .external_lex_state = 17}, + [736] = {.lex_state = 4, .external_lex_state = 29}, + [737] = {.lex_state = 1, .external_lex_state = 17}, [738] = {.lex_state = 4, .external_lex_state = 29}, - [739] = {.lex_state = 1, .external_lex_state = 17}, - [740] = {.lex_state = 1, .external_lex_state = 17}, - [741] = {.lex_state = 1, .external_lex_state = 17}, - [742] = {.lex_state = 1, .external_lex_state = 17}, - [743] = {.lex_state = 1, .external_lex_state = 17}, + [739] = {.lex_state = 4, .external_lex_state = 28}, + [740] = {.lex_state = 4, .external_lex_state = 13}, + [741] = {.lex_state = 4, .external_lex_state = 28}, + [742] = {.lex_state = 4, .external_lex_state = 29}, + [743] = {.lex_state = 4, .external_lex_state = 28}, [744] = {.lex_state = 1, .external_lex_state = 17}, - [745] = {.lex_state = 1, .external_lex_state = 17}, - [746] = {.lex_state = 4, .external_lex_state = 11}, + [745] = {.lex_state = 4, .external_lex_state = 29}, + [746] = {.lex_state = 1, .external_lex_state = 17}, [747] = {.lex_state = 1, .external_lex_state = 17}, - [748] = {.lex_state = 4, .external_lex_state = 17}, - [749] = {.lex_state = 4, .external_lex_state = 17}, - [750] = {.lex_state = 4, .external_lex_state = 17}, + [748] = {.lex_state = 4, .external_lex_state = 28}, + [749] = {.lex_state = 1, .external_lex_state = 17}, + [750] = {.lex_state = 1, .external_lex_state = 17}, [751] = {.lex_state = 4, .external_lex_state = 17}, [752] = {.lex_state = 4, .external_lex_state = 17}, [753] = {.lex_state = 4, .external_lex_state = 17}, @@ -16579,19 +17910,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [904] = {.lex_state = 4, .external_lex_state = 17}, [905] = {.lex_state = 4, .external_lex_state = 17}, [906] = {.lex_state = 4, .external_lex_state = 17}, - [907] = {.lex_state = 2050, .external_lex_state = 30}, - [908] = {.lex_state = 4, .external_lex_state = 8}, - [909] = {.lex_state = 4, .external_lex_state = 8}, - [910] = {.lex_state = 4, .external_lex_state = 8}, - [911] = {.lex_state = 4, .external_lex_state = 8}, - [912] = {.lex_state = 4, .external_lex_state = 8}, - [913] = {.lex_state = 4, .external_lex_state = 8}, + [907] = {.lex_state = 4, .external_lex_state = 17}, + [908] = {.lex_state = 4, .external_lex_state = 17}, + [909] = {.lex_state = 4, .external_lex_state = 17}, + [910] = {.lex_state = 4, .external_lex_state = 17}, + [911] = {.lex_state = 4, .external_lex_state = 17}, + [912] = {.lex_state = 4, .external_lex_state = 17}, + [913] = {.lex_state = 2050, .external_lex_state = 30}, [914] = {.lex_state = 4, .external_lex_state = 8}, - [915] = {.lex_state = 4, .external_lex_state = 30}, + [915] = {.lex_state = 2050, .external_lex_state = 8}, [916] = {.lex_state = 4, .external_lex_state = 8}, - [917] = {.lex_state = 4, .external_lex_state = 8}, + [917] = {.lex_state = 4, .external_lex_state = 30}, [918] = {.lex_state = 4, .external_lex_state = 8}, - [919] = {.lex_state = 2050, .external_lex_state = 8}, + [919] = {.lex_state = 4, .external_lex_state = 8}, [920] = {.lex_state = 4, .external_lex_state = 8}, [921] = {.lex_state = 4, .external_lex_state = 8}, [922] = {.lex_state = 4, .external_lex_state = 8}, @@ -16608,33 +17939,33 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [933] = {.lex_state = 4, .external_lex_state = 8}, [934] = {.lex_state = 4, .external_lex_state = 8}, [935] = {.lex_state = 4, .external_lex_state = 8}, - [936] = {.lex_state = 4, .external_lex_state = 18}, - [937] = {.lex_state = 4, .external_lex_state = 18}, - [938] = {.lex_state = 2, .external_lex_state = 9}, - [939] = {.lex_state = 2, .external_lex_state = 9}, - [940] = {.lex_state = 2, .external_lex_state = 9}, - [941] = {.lex_state = 2, .external_lex_state = 9}, + [936] = {.lex_state = 4, .external_lex_state = 8}, + [937] = {.lex_state = 4, .external_lex_state = 8}, + [938] = {.lex_state = 4, .external_lex_state = 8}, + [939] = {.lex_state = 4, .external_lex_state = 8}, + [940] = {.lex_state = 4, .external_lex_state = 8}, + [941] = {.lex_state = 4, .external_lex_state = 8}, [942] = {.lex_state = 2, .external_lex_state = 9}, [943] = {.lex_state = 2, .external_lex_state = 9}, - [944] = {.lex_state = 2, .external_lex_state = 9}, - [945] = {.lex_state = 2, .external_lex_state = 9}, - [946] = {.lex_state = 2, .external_lex_state = 9}, - [947] = {.lex_state = 2, .external_lex_state = 9}, - [948] = {.lex_state = 2, .external_lex_state = 9}, - [949] = {.lex_state = 2, .external_lex_state = 9}, - [950] = {.lex_state = 2, .external_lex_state = 9}, - [951] = {.lex_state = 2, .external_lex_state = 9}, - [952] = {.lex_state = 2, .external_lex_state = 9}, - [953] = {.lex_state = 2, .external_lex_state = 9}, - [954] = {.lex_state = 2, .external_lex_state = 9}, - [955] = {.lex_state = 2, .external_lex_state = 9}, - [956] = {.lex_state = 2, .external_lex_state = 9}, - [957] = {.lex_state = 2, .external_lex_state = 9}, - [958] = {.lex_state = 2, .external_lex_state = 9}, - [959] = {.lex_state = 2, .external_lex_state = 9}, - [960] = {.lex_state = 2, .external_lex_state = 9}, - [961] = {.lex_state = 2, .external_lex_state = 9}, - [962] = {.lex_state = 2, .external_lex_state = 9}, + [944] = {.lex_state = 4, .external_lex_state = 8}, + [945] = {.lex_state = 4, .external_lex_state = 8}, + [946] = {.lex_state = 4, .external_lex_state = 8}, + [947] = {.lex_state = 4, .external_lex_state = 8}, + [948] = {.lex_state = 4, .external_lex_state = 8}, + [949] = {.lex_state = 4, .external_lex_state = 8}, + [950] = {.lex_state = 4, .external_lex_state = 8}, + [951] = {.lex_state = 4, .external_lex_state = 8}, + [952] = {.lex_state = 4, .external_lex_state = 18}, + [953] = {.lex_state = 4, .external_lex_state = 8}, + [954] = {.lex_state = 4, .external_lex_state = 8}, + [955] = {.lex_state = 4, .external_lex_state = 8}, + [956] = {.lex_state = 4, .external_lex_state = 8}, + [957] = {.lex_state = 4, .external_lex_state = 8}, + [958] = {.lex_state = 4, .external_lex_state = 8}, + [959] = {.lex_state = 4, .external_lex_state = 8}, + [960] = {.lex_state = 4, .external_lex_state = 8}, + [961] = {.lex_state = 4, .external_lex_state = 8}, + [962] = {.lex_state = 4, .external_lex_state = 8}, [963] = {.lex_state = 4, .external_lex_state = 8}, [964] = {.lex_state = 4, .external_lex_state = 8}, [965] = {.lex_state = 4, .external_lex_state = 8}, @@ -16663,7 +17994,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [988] = {.lex_state = 4, .external_lex_state = 8}, [989] = {.lex_state = 4, .external_lex_state = 8}, [990] = {.lex_state = 4, .external_lex_state = 8}, - [991] = {.lex_state = 4, .external_lex_state = 18}, + [991] = {.lex_state = 4, .external_lex_state = 8}, [992] = {.lex_state = 4, .external_lex_state = 8}, [993] = {.lex_state = 4, .external_lex_state = 8}, [994] = {.lex_state = 4, .external_lex_state = 8}, @@ -16673,7 +18004,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [998] = {.lex_state = 4, .external_lex_state = 8}, [999] = {.lex_state = 4, .external_lex_state = 8}, [1000] = {.lex_state = 4, .external_lex_state = 8}, - [1001] = {.lex_state = 4, .external_lex_state = 8}, + [1001] = {.lex_state = 2, .external_lex_state = 9}, [1002] = {.lex_state = 4, .external_lex_state = 8}, [1003] = {.lex_state = 4, .external_lex_state = 8}, [1004] = {.lex_state = 4, .external_lex_state = 8}, @@ -16681,699 +18012,699 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1006] = {.lex_state = 4, .external_lex_state = 8}, [1007] = {.lex_state = 4, .external_lex_state = 8}, [1008] = {.lex_state = 4, .external_lex_state = 8}, - [1009] = {.lex_state = 4, .external_lex_state = 8}, - [1010] = {.lex_state = 4, .external_lex_state = 8}, - [1011] = {.lex_state = 4, .external_lex_state = 8}, - [1012] = {.lex_state = 4, .external_lex_state = 8}, - [1013] = {.lex_state = 4, .external_lex_state = 8}, - [1014] = {.lex_state = 4, .external_lex_state = 8}, - [1015] = {.lex_state = 4, .external_lex_state = 8}, - [1016] = {.lex_state = 4, .external_lex_state = 8}, - [1017] = {.lex_state = 4, .external_lex_state = 8}, - [1018] = {.lex_state = 4, .external_lex_state = 8}, - [1019] = {.lex_state = 4, .external_lex_state = 8}, - [1020] = {.lex_state = 4, .external_lex_state = 8}, - [1021] = {.lex_state = 4, .external_lex_state = 8}, + [1009] = {.lex_state = 4, .external_lex_state = 18}, + [1010] = {.lex_state = 4, .external_lex_state = 18}, + [1011] = {.lex_state = 4, .external_lex_state = 18}, + [1012] = {.lex_state = 4, .external_lex_state = 18}, + [1013] = {.lex_state = 4, .external_lex_state = 18}, + [1014] = {.lex_state = 4, .external_lex_state = 18}, + [1015] = {.lex_state = 4, .external_lex_state = 18}, + [1016] = {.lex_state = 4, .external_lex_state = 18}, + [1017] = {.lex_state = 4, .external_lex_state = 18}, + [1018] = {.lex_state = 4, .external_lex_state = 18}, + [1019] = {.lex_state = 4, .external_lex_state = 18}, + [1020] = {.lex_state = 4, .external_lex_state = 18}, + [1021] = {.lex_state = 4, .external_lex_state = 18}, [1022] = {.lex_state = 4, .external_lex_state = 18}, [1023] = {.lex_state = 4, .external_lex_state = 18}, [1024] = {.lex_state = 4, .external_lex_state = 18}, [1025] = {.lex_state = 4, .external_lex_state = 18}, [1026] = {.lex_state = 4, .external_lex_state = 18}, - [1027] = {.lex_state = 4, .external_lex_state = 18}, - [1028] = {.lex_state = 4, .external_lex_state = 8}, + [1027] = {.lex_state = 4, .external_lex_state = 8}, + [1028] = {.lex_state = 4, .external_lex_state = 18}, [1029] = {.lex_state = 4, .external_lex_state = 18}, [1030] = {.lex_state = 4, .external_lex_state = 18}, [1031] = {.lex_state = 4, .external_lex_state = 18}, [1032] = {.lex_state = 4, .external_lex_state = 18}, - [1033] = {.lex_state = 4, .external_lex_state = 18}, - [1034] = {.lex_state = 4, .external_lex_state = 18}, - [1035] = {.lex_state = 4, .external_lex_state = 18}, - [1036] = {.lex_state = 4, .external_lex_state = 18}, - [1037] = {.lex_state = 4, .external_lex_state = 8}, - [1038] = {.lex_state = 4, .external_lex_state = 18}, - [1039] = {.lex_state = 4, .external_lex_state = 18}, - [1040] = {.lex_state = 4, .external_lex_state = 18}, - [1041] = {.lex_state = 4, .external_lex_state = 18}, - [1042] = {.lex_state = 4, .external_lex_state = 18}, - [1043] = {.lex_state = 4, .external_lex_state = 18}, + [1033] = {.lex_state = 2, .external_lex_state = 9}, + [1034] = {.lex_state = 2, .external_lex_state = 9}, + [1035] = {.lex_state = 2, .external_lex_state = 9}, + [1036] = {.lex_state = 2, .external_lex_state = 9}, + [1037] = {.lex_state = 2, .external_lex_state = 9}, + [1038] = {.lex_state = 2, .external_lex_state = 9}, + [1039] = {.lex_state = 2, .external_lex_state = 9}, + [1040] = {.lex_state = 2, .external_lex_state = 9}, + [1041] = {.lex_state = 2, .external_lex_state = 9}, + [1042] = {.lex_state = 2, .external_lex_state = 9}, + [1043] = {.lex_state = 2, .external_lex_state = 9}, [1044] = {.lex_state = 4, .external_lex_state = 18}, - [1045] = {.lex_state = 4, .external_lex_state = 18}, - [1046] = {.lex_state = 4, .external_lex_state = 8}, - [1047] = {.lex_state = 4, .external_lex_state = 24}, + [1045] = {.lex_state = 2, .external_lex_state = 9}, + [1046] = {.lex_state = 2, .external_lex_state = 9}, + [1047] = {.lex_state = 2, .external_lex_state = 9}, [1048] = {.lex_state = 2, .external_lex_state = 9}, [1049] = {.lex_state = 2, .external_lex_state = 9}, [1050] = {.lex_state = 2, .external_lex_state = 9}, [1051] = {.lex_state = 2, .external_lex_state = 9}, [1052] = {.lex_state = 2, .external_lex_state = 9}, - [1053] = {.lex_state = 4, .external_lex_state = 20}, - [1054] = {.lex_state = 4, .external_lex_state = 20}, + [1053] = {.lex_state = 2, .external_lex_state = 9}, + [1054] = {.lex_state = 2, .external_lex_state = 9}, [1055] = {.lex_state = 2, .external_lex_state = 9}, - [1056] = {.lex_state = 4, .external_lex_state = 18}, - [1057] = {.lex_state = 4, .external_lex_state = 20}, + [1056] = {.lex_state = 4, .external_lex_state = 8}, + [1057] = {.lex_state = 4, .external_lex_state = 21}, [1058] = {.lex_state = 2, .external_lex_state = 9}, [1059] = {.lex_state = 2, .external_lex_state = 9}, [1060] = {.lex_state = 2, .external_lex_state = 9}, [1061] = {.lex_state = 2, .external_lex_state = 9}, [1062] = {.lex_state = 2, .external_lex_state = 9}, - [1063] = {.lex_state = 4, .external_lex_state = 20}, + [1063] = {.lex_state = 2, .external_lex_state = 9}, [1064] = {.lex_state = 2, .external_lex_state = 9}, - [1065] = {.lex_state = 2, .external_lex_state = 9}, - [1066] = {.lex_state = 4, .external_lex_state = 20}, + [1065] = {.lex_state = 4, .external_lex_state = 18}, + [1066] = {.lex_state = 2, .external_lex_state = 9}, [1067] = {.lex_state = 2, .external_lex_state = 9}, - [1068] = {.lex_state = 2, .external_lex_state = 9}, - [1069] = {.lex_state = 4, .external_lex_state = 20}, - [1070] = {.lex_state = 2, .external_lex_state = 9}, - [1071] = {.lex_state = 2, .external_lex_state = 9}, - [1072] = {.lex_state = 4, .external_lex_state = 20}, - [1073] = {.lex_state = 2, .external_lex_state = 9}, - [1074] = {.lex_state = 2, .external_lex_state = 9}, - [1075] = {.lex_state = 2, .external_lex_state = 9}, - [1076] = {.lex_state = 2, .external_lex_state = 9}, - [1077] = {.lex_state = 4, .external_lex_state = 20}, - [1078] = {.lex_state = 2, .external_lex_state = 9}, + [1068] = {.lex_state = 4, .external_lex_state = 18}, + [1069] = {.lex_state = 3, .external_lex_state = 9}, + [1070] = {.lex_state = 3, .external_lex_state = 9}, + [1071] = {.lex_state = 4, .external_lex_state = 18}, + [1072] = {.lex_state = 2, .external_lex_state = 9}, + [1073] = {.lex_state = 3, .external_lex_state = 9}, + [1074] = {.lex_state = 4, .external_lex_state = 26}, + [1075] = {.lex_state = 4, .external_lex_state = 26}, + [1076] = {.lex_state = 4, .external_lex_state = 18}, + [1077] = {.lex_state = 4, .external_lex_state = 18}, + [1078] = {.lex_state = 4, .external_lex_state = 18}, [1079] = {.lex_state = 2, .external_lex_state = 9}, - [1080] = {.lex_state = 4, .external_lex_state = 21}, - [1081] = {.lex_state = 2, .external_lex_state = 9}, - [1082] = {.lex_state = 2, .external_lex_state = 9}, - [1083] = {.lex_state = 2, .external_lex_state = 9}, - [1084] = {.lex_state = 2, .external_lex_state = 9}, - [1085] = {.lex_state = 2, .external_lex_state = 9}, - [1086] = {.lex_state = 2, .external_lex_state = 9}, - [1087] = {.lex_state = 2, .external_lex_state = 9}, - [1088] = {.lex_state = 2, .external_lex_state = 9}, - [1089] = {.lex_state = 2, .external_lex_state = 9}, - [1090] = {.lex_state = 2, .external_lex_state = 9}, - [1091] = {.lex_state = 2, .external_lex_state = 9}, - [1092] = {.lex_state = 2, .external_lex_state = 9}, - [1093] = {.lex_state = 2, .external_lex_state = 9}, - [1094] = {.lex_state = 2, .external_lex_state = 9}, - [1095] = {.lex_state = 2, .external_lex_state = 9}, - [1096] = {.lex_state = 2, .external_lex_state = 9}, - [1097] = {.lex_state = 4, .external_lex_state = 15}, - [1098] = {.lex_state = 2, .external_lex_state = 9}, - [1099] = {.lex_state = 2, .external_lex_state = 9}, - [1100] = {.lex_state = 2, .external_lex_state = 9}, - [1101] = {.lex_state = 2, .external_lex_state = 9}, - [1102] = {.lex_state = 2, .external_lex_state = 9}, - [1103] = {.lex_state = 2, .external_lex_state = 9}, - [1104] = {.lex_state = 4, .external_lex_state = 21}, - [1105] = {.lex_state = 4, .external_lex_state = 22}, - [1106] = {.lex_state = 4, .external_lex_state = 22}, - [1107] = {.lex_state = 4, .external_lex_state = 22}, - [1108] = {.lex_state = 4, .external_lex_state = 22}, - [1109] = {.lex_state = 4, .external_lex_state = 21}, - [1110] = {.lex_state = 4, .external_lex_state = 21}, - [1111] = {.lex_state = 4, .external_lex_state = 21}, - [1112] = {.lex_state = 4, .external_lex_state = 21}, - [1113] = {.lex_state = 4, .external_lex_state = 22}, - [1114] = {.lex_state = 4, .external_lex_state = 22}, - [1115] = {.lex_state = 4, .external_lex_state = 22}, - [1116] = {.lex_state = 4, .external_lex_state = 21}, - [1117] = {.lex_state = 4, .external_lex_state = 22}, - [1118] = {.lex_state = 4, .external_lex_state = 22}, - [1119] = {.lex_state = 4, .external_lex_state = 21}, - [1120] = {.lex_state = 4, .external_lex_state = 22}, - [1121] = {.lex_state = 4, .external_lex_state = 22}, - [1122] = {.lex_state = 4, .external_lex_state = 21}, - [1123] = {.lex_state = 4, .external_lex_state = 22}, - [1124] = {.lex_state = 4, .external_lex_state = 22}, - [1125] = {.lex_state = 4, .external_lex_state = 21}, - [1126] = {.lex_state = 4, .external_lex_state = 22}, - [1127] = {.lex_state = 4, .external_lex_state = 22}, - [1128] = {.lex_state = 4, .external_lex_state = 21}, - [1129] = {.lex_state = 4, .external_lex_state = 21}, - [1130] = {.lex_state = 4, .external_lex_state = 21}, - [1131] = {.lex_state = 4, .external_lex_state = 21}, - [1132] = {.lex_state = 4, .external_lex_state = 21}, - [1133] = {.lex_state = 4, .external_lex_state = 21}, - [1134] = {.lex_state = 4, .external_lex_state = 21}, - [1135] = {.lex_state = 4, .external_lex_state = 21}, - [1136] = {.lex_state = 4, .external_lex_state = 21}, - [1137] = {.lex_state = 4, .external_lex_state = 20}, - [1138] = {.lex_state = 4, .external_lex_state = 21}, - [1139] = {.lex_state = 4, .external_lex_state = 22}, - [1140] = {.lex_state = 4, .external_lex_state = 22}, - [1141] = {.lex_state = 4, .external_lex_state = 21}, - [1142] = {.lex_state = 4, .external_lex_state = 22}, - [1143] = {.lex_state = 4, .external_lex_state = 22}, - [1144] = {.lex_state = 4, .external_lex_state = 21}, - [1145] = {.lex_state = 4, .external_lex_state = 21}, - [1146] = {.lex_state = 4, .external_lex_state = 21}, - [1147] = {.lex_state = 4, .external_lex_state = 21}, + [1080] = {.lex_state = 4, .external_lex_state = 18}, + [1081] = {.lex_state = 4, .external_lex_state = 18}, + [1082] = {.lex_state = 4, .external_lex_state = 18}, + [1083] = {.lex_state = 4, .external_lex_state = 26}, + [1084] = {.lex_state = 1, .external_lex_state = 9}, + [1085] = {.lex_state = 1, .external_lex_state = 9}, + [1086] = {.lex_state = 1, .external_lex_state = 9}, + [1087] = {.lex_state = 1, .external_lex_state = 9}, + [1088] = {.lex_state = 1, .external_lex_state = 9}, + [1089] = {.lex_state = 1, .external_lex_state = 9}, + [1090] = {.lex_state = 4, .external_lex_state = 26}, + [1091] = {.lex_state = 4, .external_lex_state = 18}, + [1092] = {.lex_state = 4, .external_lex_state = 18}, + [1093] = {.lex_state = 4, .external_lex_state = 18}, + [1094] = {.lex_state = 4, .external_lex_state = 18}, + [1095] = {.lex_state = 4, .external_lex_state = 26}, + [1096] = {.lex_state = 4, .external_lex_state = 26}, + [1097] = {.lex_state = 4, .external_lex_state = 18}, + [1098] = {.lex_state = 4, .external_lex_state = 18}, + [1099] = {.lex_state = 4, .external_lex_state = 18}, + [1100] = {.lex_state = 4, .external_lex_state = 18}, + [1101] = {.lex_state = 4, .external_lex_state = 18}, + [1102] = {.lex_state = 4, .external_lex_state = 18}, + [1103] = {.lex_state = 4, .external_lex_state = 18}, + [1104] = {.lex_state = 4, .external_lex_state = 18}, + [1105] = {.lex_state = 4, .external_lex_state = 18}, + [1106] = {.lex_state = 4, .external_lex_state = 26}, + [1107] = {.lex_state = 4, .external_lex_state = 18}, + [1108] = {.lex_state = 4, .external_lex_state = 18}, + [1109] = {.lex_state = 4, .external_lex_state = 11}, + [1110] = {.lex_state = 4, .external_lex_state = 18}, + [1111] = {.lex_state = 4, .external_lex_state = 18}, + [1112] = {.lex_state = 4, .external_lex_state = 18}, + [1113] = {.lex_state = 4, .external_lex_state = 18}, + [1114] = {.lex_state = 4, .external_lex_state = 26}, + [1115] = {.lex_state = 4, .external_lex_state = 15}, + [1116] = {.lex_state = 4, .external_lex_state = 15}, + [1117] = {.lex_state = 4, .external_lex_state = 15}, + [1118] = {.lex_state = 4, .external_lex_state = 15}, + [1119] = {.lex_state = 4, .external_lex_state = 15}, + [1120] = {.lex_state = 4, .external_lex_state = 15}, + [1121] = {.lex_state = 4, .external_lex_state = 15}, + [1122] = {.lex_state = 4, .external_lex_state = 15}, + [1123] = {.lex_state = 3, .external_lex_state = 9}, + [1124] = {.lex_state = 4, .external_lex_state = 15}, + [1125] = {.lex_state = 4, .external_lex_state = 15}, + [1126] = {.lex_state = 4, .external_lex_state = 26}, + [1127] = {.lex_state = 4, .external_lex_state = 26}, + [1128] = {.lex_state = 1, .external_lex_state = 9}, + [1129] = {.lex_state = 1, .external_lex_state = 9}, + [1130] = {.lex_state = 1, .external_lex_state = 9}, + [1131] = {.lex_state = 1, .external_lex_state = 9}, + [1132] = {.lex_state = 1, .external_lex_state = 9}, + [1133] = {.lex_state = 1, .external_lex_state = 9}, + [1134] = {.lex_state = 1, .external_lex_state = 9}, + [1135] = {.lex_state = 1, .external_lex_state = 9}, + [1136] = {.lex_state = 1, .external_lex_state = 9}, + [1137] = {.lex_state = 1, .external_lex_state = 9}, + [1138] = {.lex_state = 1, .external_lex_state = 9}, + [1139] = {.lex_state = 1, .external_lex_state = 9}, + [1140] = {.lex_state = 4, .external_lex_state = 26}, + [1141] = {.lex_state = 1, .external_lex_state = 9}, + [1142] = {.lex_state = 4, .external_lex_state = 15}, + [1143] = {.lex_state = 4, .external_lex_state = 26}, + [1144] = {.lex_state = 4, .external_lex_state = 26}, + [1145] = {.lex_state = 4, .external_lex_state = 15}, + [1146] = {.lex_state = 4, .external_lex_state = 15}, + [1147] = {.lex_state = 4, .external_lex_state = 18}, [1148] = {.lex_state = 4, .external_lex_state = 18}, - [1149] = {.lex_state = 4, .external_lex_state = 22}, - [1150] = {.lex_state = 4, .external_lex_state = 23}, - [1151] = {.lex_state = 4, .external_lex_state = 23}, - [1152] = {.lex_state = 4, .external_lex_state = 22}, - [1153] = {.lex_state = 4, .external_lex_state = 23}, - [1154] = {.lex_state = 4, .external_lex_state = 23}, - [1155] = {.lex_state = 4, .external_lex_state = 22}, - [1156] = {.lex_state = 4, .external_lex_state = 23}, - [1157] = {.lex_state = 4, .external_lex_state = 23}, - [1158] = {.lex_state = 4, .external_lex_state = 22}, - [1159] = {.lex_state = 4, .external_lex_state = 15}, + [1149] = {.lex_state = 2, .external_lex_state = 9}, + [1150] = {.lex_state = 2, .external_lex_state = 9}, + [1151] = {.lex_state = 4, .external_lex_state = 18}, + [1152] = {.lex_state = 4, .external_lex_state = 26}, + [1153] = {.lex_state = 2, .external_lex_state = 9}, + [1154] = {.lex_state = 2, .external_lex_state = 9}, + [1155] = {.lex_state = 4, .external_lex_state = 18}, + [1156] = {.lex_state = 4, .external_lex_state = 18}, + [1157] = {.lex_state = 4, .external_lex_state = 18}, + [1158] = {.lex_state = 4, .external_lex_state = 18}, + [1159] = {.lex_state = 4, .external_lex_state = 26}, [1160] = {.lex_state = 4, .external_lex_state = 18}, - [1161] = {.lex_state = 4, .external_lex_state = 23}, - [1162] = {.lex_state = 4, .external_lex_state = 23}, - [1163] = {.lex_state = 4, .external_lex_state = 24}, - [1164] = {.lex_state = 4, .external_lex_state = 23}, - [1165] = {.lex_state = 4, .external_lex_state = 23}, - [1166] = {.lex_state = 4, .external_lex_state = 24}, - [1167] = {.lex_state = 4, .external_lex_state = 23}, - [1168] = {.lex_state = 4, .external_lex_state = 23}, - [1169] = {.lex_state = 4, .external_lex_state = 23}, - [1170] = {.lex_state = 4, .external_lex_state = 23}, - [1171] = {.lex_state = 4, .external_lex_state = 23}, - [1172] = {.lex_state = 4, .external_lex_state = 23}, - [1173] = {.lex_state = 4, .external_lex_state = 23}, - [1174] = {.lex_state = 4, .external_lex_state = 23}, - [1175] = {.lex_state = 4, .external_lex_state = 23}, - [1176] = {.lex_state = 2, .external_lex_state = 9}, - [1177] = {.lex_state = 4, .external_lex_state = 20}, - [1178] = {.lex_state = 4, .external_lex_state = 23}, - [1179] = {.lex_state = 4, .external_lex_state = 23}, - [1180] = {.lex_state = 4, .external_lex_state = 23}, - [1181] = {.lex_state = 4, .external_lex_state = 23}, - [1182] = {.lex_state = 4, .external_lex_state = 23}, - [1183] = {.lex_state = 4, .external_lex_state = 23}, - [1184] = {.lex_state = 2, .external_lex_state = 9}, - [1185] = {.lex_state = 4, .external_lex_state = 20}, - [1186] = {.lex_state = 4, .external_lex_state = 20}, - [1187] = {.lex_state = 4, .external_lex_state = 20}, - [1188] = {.lex_state = 4, .external_lex_state = 22}, - [1189] = {.lex_state = 4, .external_lex_state = 10}, - [1190] = {.lex_state = 4, .external_lex_state = 18}, - [1191] = {.lex_state = 2, .external_lex_state = 9}, - [1192] = {.lex_state = 4, .external_lex_state = 18}, - [1193] = {.lex_state = 4, .external_lex_state = 10}, - [1194] = {.lex_state = 4, .external_lex_state = 18}, - [1195] = {.lex_state = 4, .external_lex_state = 18}, - [1196] = {.lex_state = 4, .external_lex_state = 15}, - [1197] = {.lex_state = 4, .external_lex_state = 15}, - [1198] = {.lex_state = 4, .external_lex_state = 24}, - [1199] = {.lex_state = 4, .external_lex_state = 15}, - [1200] = {.lex_state = 4, .external_lex_state = 15}, - [1201] = {.lex_state = 4, .external_lex_state = 18}, - [1202] = {.lex_state = 4, .external_lex_state = 15}, - [1203] = {.lex_state = 4, .external_lex_state = 24}, - [1204] = {.lex_state = 4, .external_lex_state = 24}, - [1205] = {.lex_state = 4, .external_lex_state = 15}, - [1206] = {.lex_state = 4, .external_lex_state = 18}, - [1207] = {.lex_state = 4, .external_lex_state = 18}, - [1208] = {.lex_state = 4, .external_lex_state = 18}, + [1161] = {.lex_state = 4, .external_lex_state = 18}, + [1162] = {.lex_state = 4, .external_lex_state = 18}, + [1163] = {.lex_state = 1, .external_lex_state = 9}, + [1164] = {.lex_state = 1, .external_lex_state = 9}, + [1165] = {.lex_state = 1, .external_lex_state = 9}, + [1166] = {.lex_state = 1, .external_lex_state = 9}, + [1167] = {.lex_state = 4, .external_lex_state = 18}, + [1168] = {.lex_state = 1, .external_lex_state = 9}, + [1169] = {.lex_state = 1, .external_lex_state = 9}, + [1170] = {.lex_state = 4, .external_lex_state = 18}, + [1171] = {.lex_state = 4, .external_lex_state = 18}, + [1172] = {.lex_state = 4, .external_lex_state = 18}, + [1173] = {.lex_state = 4, .external_lex_state = 11}, + [1174] = {.lex_state = 4, .external_lex_state = 26}, + [1175] = {.lex_state = 4, .external_lex_state = 26}, + [1176] = {.lex_state = 4, .external_lex_state = 26}, + [1177] = {.lex_state = 4, .external_lex_state = 18}, + [1178] = {.lex_state = 4, .external_lex_state = 18}, + [1179] = {.lex_state = 4, .external_lex_state = 11}, + [1180] = {.lex_state = 4, .external_lex_state = 18}, + [1181] = {.lex_state = 4, .external_lex_state = 18}, + [1182] = {.lex_state = 4, .external_lex_state = 15}, + [1183] = {.lex_state = 4, .external_lex_state = 15}, + [1184] = {.lex_state = 4, .external_lex_state = 15}, + [1185] = {.lex_state = 4, .external_lex_state = 15}, + [1186] = {.lex_state = 4, .external_lex_state = 26}, + [1187] = {.lex_state = 4, .external_lex_state = 15}, + [1188] = {.lex_state = 4, .external_lex_state = 15}, + [1189] = {.lex_state = 4, .external_lex_state = 26}, + [1190] = {.lex_state = 4, .external_lex_state = 26}, + [1191] = {.lex_state = 4, .external_lex_state = 18}, + [1192] = {.lex_state = 4, .external_lex_state = 27}, + [1193] = {.lex_state = 4, .external_lex_state = 18}, + [1194] = {.lex_state = 4, .external_lex_state = 27}, + [1195] = {.lex_state = 2, .external_lex_state = 9}, + [1196] = {.lex_state = 4, .external_lex_state = 27}, + [1197] = {.lex_state = 2, .external_lex_state = 9}, + [1198] = {.lex_state = 4, .external_lex_state = 27}, + [1199] = {.lex_state = 4, .external_lex_state = 18}, + [1200] = {.lex_state = 4, .external_lex_state = 27}, + [1201] = {.lex_state = 2, .external_lex_state = 9}, + [1202] = {.lex_state = 4, .external_lex_state = 18}, + [1203] = {.lex_state = 4, .external_lex_state = 27}, + [1204] = {.lex_state = 4, .external_lex_state = 15}, + [1205] = {.lex_state = 4, .external_lex_state = 18}, + [1206] = {.lex_state = 4, .external_lex_state = 11}, + [1207] = {.lex_state = 4, .external_lex_state = 27}, + [1208] = {.lex_state = 4, .external_lex_state = 27}, [1209] = {.lex_state = 4, .external_lex_state = 18}, - [1210] = {.lex_state = 4, .external_lex_state = 18}, + [1210] = {.lex_state = 4, .external_lex_state = 27}, [1211] = {.lex_state = 4, .external_lex_state = 18}, - [1212] = {.lex_state = 2, .external_lex_state = 9}, - [1213] = {.lex_state = 4, .external_lex_state = 18}, - [1214] = {.lex_state = 2, .external_lex_state = 9}, - [1215] = {.lex_state = 2, .external_lex_state = 9}, - [1216] = {.lex_state = 4, .external_lex_state = 18}, - [1217] = {.lex_state = 4, .external_lex_state = 24}, + [1212] = {.lex_state = 4, .external_lex_state = 18}, + [1213] = {.lex_state = 4, .external_lex_state = 27}, + [1214] = {.lex_state = 4, .external_lex_state = 20}, + [1215] = {.lex_state = 4, .external_lex_state = 20}, + [1216] = {.lex_state = 4, .external_lex_state = 20}, + [1217] = {.lex_state = 4, .external_lex_state = 20}, [1218] = {.lex_state = 4, .external_lex_state = 20}, - [1219] = {.lex_state = 4, .external_lex_state = 10}, - [1220] = {.lex_state = 4, .external_lex_state = 20}, - [1221] = {.lex_state = 4, .external_lex_state = 24}, - [1222] = {.lex_state = 4, .external_lex_state = 24}, - [1223] = {.lex_state = 4, .external_lex_state = 24}, - [1224] = {.lex_state = 4, .external_lex_state = 24}, - [1225] = {.lex_state = 4, .external_lex_state = 18}, - [1226] = {.lex_state = 4, .external_lex_state = 18}, - [1227] = {.lex_state = 4, .external_lex_state = 18}, - [1228] = {.lex_state = 4, .external_lex_state = 18}, - [1229] = {.lex_state = 4, .external_lex_state = 24}, - [1230] = {.lex_state = 4, .external_lex_state = 18}, - [1231] = {.lex_state = 4, .external_lex_state = 24}, - [1232] = {.lex_state = 4, .external_lex_state = 24}, + [1219] = {.lex_state = 4, .external_lex_state = 20}, + [1220] = {.lex_state = 4, .external_lex_state = 27}, + [1221] = {.lex_state = 4, .external_lex_state = 20}, + [1222] = {.lex_state = 4, .external_lex_state = 20}, + [1223] = {.lex_state = 4, .external_lex_state = 27}, + [1224] = {.lex_state = 4, .external_lex_state = 27}, + [1225] = {.lex_state = 4, .external_lex_state = 20}, + [1226] = {.lex_state = 4, .external_lex_state = 20}, + [1227] = {.lex_state = 4, .external_lex_state = 20}, + [1228] = {.lex_state = 4, .external_lex_state = 20}, + [1229] = {.lex_state = 4, .external_lex_state = 20}, + [1230] = {.lex_state = 4, .external_lex_state = 20}, + [1231] = {.lex_state = 4, .external_lex_state = 20}, + [1232] = {.lex_state = 4, .external_lex_state = 20}, [1233] = {.lex_state = 4, .external_lex_state = 20}, - [1234] = {.lex_state = 4, .external_lex_state = 18}, - [1235] = {.lex_state = 4, .external_lex_state = 18}, - [1236] = {.lex_state = 4, .external_lex_state = 18}, - [1237] = {.lex_state = 4, .external_lex_state = 18}, - [1238] = {.lex_state = 4, .external_lex_state = 18}, - [1239] = {.lex_state = 4, .external_lex_state = 15}, - [1240] = {.lex_state = 4, .external_lex_state = 24}, - [1241] = {.lex_state = 4, .external_lex_state = 18}, - [1242] = {.lex_state = 4, .external_lex_state = 18}, - [1243] = {.lex_state = 4, .external_lex_state = 18}, - [1244] = {.lex_state = 4, .external_lex_state = 18}, - [1245] = {.lex_state = 4, .external_lex_state = 18}, + [1234] = {.lex_state = 4, .external_lex_state = 20}, + [1235] = {.lex_state = 4, .external_lex_state = 20}, + [1236] = {.lex_state = 2, .external_lex_state = 9}, + [1237] = {.lex_state = 4, .external_lex_state = 20}, + [1238] = {.lex_state = 4, .external_lex_state = 20}, + [1239] = {.lex_state = 4, .external_lex_state = 27}, + [1240] = {.lex_state = 4, .external_lex_state = 27}, + [1241] = {.lex_state = 4, .external_lex_state = 20}, + [1242] = {.lex_state = 4, .external_lex_state = 20}, + [1243] = {.lex_state = 4, .external_lex_state = 20}, + [1244] = {.lex_state = 4, .external_lex_state = 20}, + [1245] = {.lex_state = 4, .external_lex_state = 27}, [1246] = {.lex_state = 4, .external_lex_state = 18}, [1247] = {.lex_state = 4, .external_lex_state = 18}, - [1248] = {.lex_state = 2, .external_lex_state = 9}, - [1249] = {.lex_state = 4, .external_lex_state = 24}, - [1250] = {.lex_state = 4, .external_lex_state = 24}, - [1251] = {.lex_state = 4, .external_lex_state = 20}, - [1252] = {.lex_state = 4, .external_lex_state = 18}, - [1253] = {.lex_state = 4, .external_lex_state = 20}, - [1254] = {.lex_state = 2, .external_lex_state = 9}, - [1255] = {.lex_state = 4, .external_lex_state = 18}, - [1256] = {.lex_state = 4, .external_lex_state = 18}, - [1257] = {.lex_state = 4, .external_lex_state = 18}, - [1258] = {.lex_state = 4, .external_lex_state = 18}, - [1259] = {.lex_state = 4, .external_lex_state = 24}, - [1260] = {.lex_state = 4, .external_lex_state = 20}, - [1261] = {.lex_state = 4, .external_lex_state = 24}, - [1262] = {.lex_state = 4, .external_lex_state = 15}, - [1263] = {.lex_state = 4, .external_lex_state = 18}, - [1264] = {.lex_state = 4, .external_lex_state = 18}, - [1265] = {.lex_state = 4, .external_lex_state = 18}, - [1266] = {.lex_state = 4, .external_lex_state = 18}, - [1267] = {.lex_state = 4, .external_lex_state = 18}, - [1268] = {.lex_state = 4, .external_lex_state = 24}, - [1269] = {.lex_state = 4, .external_lex_state = 24}, - [1270] = {.lex_state = 4, .external_lex_state = 20}, - [1271] = {.lex_state = 1, .external_lex_state = 9}, - [1272] = {.lex_state = 1, .external_lex_state = 9}, - [1273] = {.lex_state = 4, .external_lex_state = 24}, - [1274] = {.lex_state = 4, .external_lex_state = 24}, - [1275] = {.lex_state = 1, .external_lex_state = 9}, - [1276] = {.lex_state = 1, .external_lex_state = 9}, - [1277] = {.lex_state = 1, .external_lex_state = 9}, - [1278] = {.lex_state = 1, .external_lex_state = 9}, - [1279] = {.lex_state = 4, .external_lex_state = 24}, - [1280] = {.lex_state = 2, .external_lex_state = 9}, - [1281] = {.lex_state = 4, .external_lex_state = 24}, - [1282] = {.lex_state = 4, .external_lex_state = 18}, - [1283] = {.lex_state = 4, .external_lex_state = 20}, - [1284] = {.lex_state = 4, .external_lex_state = 25}, - [1285] = {.lex_state = 4, .external_lex_state = 25}, - [1286] = {.lex_state = 4, .external_lex_state = 25}, - [1287] = {.lex_state = 4, .external_lex_state = 18}, - [1288] = {.lex_state = 4, .external_lex_state = 15}, - [1289] = {.lex_state = 4, .external_lex_state = 15}, - [1290] = {.lex_state = 4, .external_lex_state = 15}, - [1291] = {.lex_state = 4, .external_lex_state = 15}, - [1292] = {.lex_state = 4, .external_lex_state = 25}, - [1293] = {.lex_state = 4, .external_lex_state = 25}, - [1294] = {.lex_state = 4, .external_lex_state = 15}, - [1295] = {.lex_state = 4, .external_lex_state = 15}, - [1296] = {.lex_state = 4, .external_lex_state = 18}, - [1297] = {.lex_state = 4, .external_lex_state = 18}, - [1298] = {.lex_state = 4, .external_lex_state = 20}, - [1299] = {.lex_state = 4, .external_lex_state = 20}, + [1248] = {.lex_state = 4, .external_lex_state = 21}, + [1249] = {.lex_state = 3, .external_lex_state = 9}, + [1250] = {.lex_state = 4, .external_lex_state = 21}, + [1251] = {.lex_state = 4, .external_lex_state = 21}, + [1252] = {.lex_state = 4, .external_lex_state = 21}, + [1253] = {.lex_state = 4, .external_lex_state = 21}, + [1254] = {.lex_state = 4, .external_lex_state = 18}, + [1255] = {.lex_state = 4, .external_lex_state = 27}, + [1256] = {.lex_state = 4, .external_lex_state = 27}, + [1257] = {.lex_state = 4, .external_lex_state = 21}, + [1258] = {.lex_state = 4, .external_lex_state = 21}, + [1259] = {.lex_state = 4, .external_lex_state = 21}, + [1260] = {.lex_state = 4, .external_lex_state = 21}, + [1261] = {.lex_state = 4, .external_lex_state = 21}, + [1262] = {.lex_state = 4, .external_lex_state = 21}, + [1263] = {.lex_state = 4, .external_lex_state = 21}, + [1264] = {.lex_state = 4, .external_lex_state = 21}, + [1265] = {.lex_state = 4, .external_lex_state = 21}, + [1266] = {.lex_state = 4, .external_lex_state = 21}, + [1267] = {.lex_state = 4, .external_lex_state = 21}, + [1268] = {.lex_state = 4, .external_lex_state = 21}, + [1269] = {.lex_state = 4, .external_lex_state = 21}, + [1270] = {.lex_state = 4, .external_lex_state = 26}, + [1271] = {.lex_state = 4, .external_lex_state = 27}, + [1272] = {.lex_state = 4, .external_lex_state = 15}, + [1273] = {.lex_state = 4, .external_lex_state = 21}, + [1274] = {.lex_state = 4, .external_lex_state = 21}, + [1275] = {.lex_state = 4, .external_lex_state = 21}, + [1276] = {.lex_state = 4, .external_lex_state = 21}, + [1277] = {.lex_state = 4, .external_lex_state = 21}, + [1278] = {.lex_state = 4, .external_lex_state = 21}, + [1279] = {.lex_state = 3, .external_lex_state = 9}, + [1280] = {.lex_state = 4, .external_lex_state = 22}, + [1281] = {.lex_state = 4, .external_lex_state = 22}, + [1282] = {.lex_state = 4, .external_lex_state = 22}, + [1283] = {.lex_state = 4, .external_lex_state = 22}, + [1284] = {.lex_state = 4, .external_lex_state = 22}, + [1285] = {.lex_state = 4, .external_lex_state = 22}, + [1286] = {.lex_state = 4, .external_lex_state = 18}, + [1287] = {.lex_state = 4, .external_lex_state = 22}, + [1288] = {.lex_state = 4, .external_lex_state = 22}, + [1289] = {.lex_state = 4, .external_lex_state = 22}, + [1290] = {.lex_state = 4, .external_lex_state = 22}, + [1291] = {.lex_state = 4, .external_lex_state = 22}, + [1292] = {.lex_state = 4, .external_lex_state = 22}, + [1293] = {.lex_state = 4, .external_lex_state = 22}, + [1294] = {.lex_state = 4, .external_lex_state = 22}, + [1295] = {.lex_state = 4, .external_lex_state = 22}, + [1296] = {.lex_state = 4, .external_lex_state = 22}, + [1297] = {.lex_state = 2, .external_lex_state = 9}, + [1298] = {.lex_state = 4, .external_lex_state = 22}, + [1299] = {.lex_state = 4, .external_lex_state = 22}, [1300] = {.lex_state = 4, .external_lex_state = 18}, - [1301] = {.lex_state = 4, .external_lex_state = 18}, - [1302] = {.lex_state = 1, .external_lex_state = 9}, - [1303] = {.lex_state = 4, .external_lex_state = 25}, - [1304] = {.lex_state = 4, .external_lex_state = 25}, - [1305] = {.lex_state = 1, .external_lex_state = 9}, - [1306] = {.lex_state = 1, .external_lex_state = 9}, - [1307] = {.lex_state = 1, .external_lex_state = 9}, - [1308] = {.lex_state = 1, .external_lex_state = 9}, - [1309] = {.lex_state = 1, .external_lex_state = 9}, - [1310] = {.lex_state = 1, .external_lex_state = 9}, - [1311] = {.lex_state = 1, .external_lex_state = 9}, - [1312] = {.lex_state = 1, .external_lex_state = 9}, - [1313] = {.lex_state = 4, .external_lex_state = 25}, - [1314] = {.lex_state = 4, .external_lex_state = 25}, - [1315] = {.lex_state = 1, .external_lex_state = 9}, - [1316] = {.lex_state = 1, .external_lex_state = 9}, - [1317] = {.lex_state = 1, .external_lex_state = 9}, - [1318] = {.lex_state = 1, .external_lex_state = 9}, - [1319] = {.lex_state = 2, .external_lex_state = 9}, - [1320] = {.lex_state = 4, .external_lex_state = 18}, - [1321] = {.lex_state = 4, .external_lex_state = 18}, - [1322] = {.lex_state = 4, .external_lex_state = 20}, - [1323] = {.lex_state = 4, .external_lex_state = 18}, - [1324] = {.lex_state = 4, .external_lex_state = 18}, - [1325] = {.lex_state = 4, .external_lex_state = 20}, - [1326] = {.lex_state = 4, .external_lex_state = 25}, - [1327] = {.lex_state = 4, .external_lex_state = 25}, + [1301] = {.lex_state = 4, .external_lex_state = 22}, + [1302] = {.lex_state = 4, .external_lex_state = 22}, + [1303] = {.lex_state = 4, .external_lex_state = 22}, + [1304] = {.lex_state = 4, .external_lex_state = 22}, + [1305] = {.lex_state = 4, .external_lex_state = 22}, + [1306] = {.lex_state = 4, .external_lex_state = 22}, + [1307] = {.lex_state = 3, .external_lex_state = 9}, + [1308] = {.lex_state = 4, .external_lex_state = 23}, + [1309] = {.lex_state = 4, .external_lex_state = 23}, + [1310] = {.lex_state = 4, .external_lex_state = 23}, + [1311] = {.lex_state = 4, .external_lex_state = 23}, + [1312] = {.lex_state = 4, .external_lex_state = 23}, + [1313] = {.lex_state = 4, .external_lex_state = 23}, + [1314] = {.lex_state = 4, .external_lex_state = 18}, + [1315] = {.lex_state = 4, .external_lex_state = 23}, + [1316] = {.lex_state = 4, .external_lex_state = 23}, + [1317] = {.lex_state = 4, .external_lex_state = 23}, + [1318] = {.lex_state = 4, .external_lex_state = 23}, + [1319] = {.lex_state = 4, .external_lex_state = 23}, + [1320] = {.lex_state = 4, .external_lex_state = 23}, + [1321] = {.lex_state = 4, .external_lex_state = 23}, + [1322] = {.lex_state = 4, .external_lex_state = 23}, + [1323] = {.lex_state = 4, .external_lex_state = 23}, + [1324] = {.lex_state = 4, .external_lex_state = 23}, + [1325] = {.lex_state = 4, .external_lex_state = 23}, + [1326] = {.lex_state = 4, .external_lex_state = 23}, + [1327] = {.lex_state = 4, .external_lex_state = 23}, [1328] = {.lex_state = 4, .external_lex_state = 18}, - [1329] = {.lex_state = 4, .external_lex_state = 25}, - [1330] = {.lex_state = 4, .external_lex_state = 18}, - [1331] = {.lex_state = 1, .external_lex_state = 9}, - [1332] = {.lex_state = 1, .external_lex_state = 9}, - [1333] = {.lex_state = 1, .external_lex_state = 9}, - [1334] = {.lex_state = 1, .external_lex_state = 9}, - [1335] = {.lex_state = 4, .external_lex_state = 18}, - [1336] = {.lex_state = 1, .external_lex_state = 9}, - [1337] = {.lex_state = 4, .external_lex_state = 25}, - [1338] = {.lex_state = 4, .external_lex_state = 25}, - [1339] = {.lex_state = 4, .external_lex_state = 25}, - [1340] = {.lex_state = 1, .external_lex_state = 9}, - [1341] = {.lex_state = 4, .external_lex_state = 25}, - [1342] = {.lex_state = 4, .external_lex_state = 25}, - [1343] = {.lex_state = 4, .external_lex_state = 25}, - [1344] = {.lex_state = 4, .external_lex_state = 25}, - [1345] = {.lex_state = 4, .external_lex_state = 18}, - [1346] = {.lex_state = 2, .external_lex_state = 9}, - [1347] = {.lex_state = 4, .external_lex_state = 18}, - [1348] = {.lex_state = 4, .external_lex_state = 18}, - [1349] = {.lex_state = 2, .external_lex_state = 9}, - [1350] = {.lex_state = 4, .external_lex_state = 15}, - [1351] = {.lex_state = 4, .external_lex_state = 18}, - [1352] = {.lex_state = 4, .external_lex_state = 25}, - [1353] = {.lex_state = 4, .external_lex_state = 25}, - [1354] = {.lex_state = 4, .external_lex_state = 25}, - [1355] = {.lex_state = 4, .external_lex_state = 25}, - [1356] = {.lex_state = 4, .external_lex_state = 25}, - [1357] = {.lex_state = 4, .external_lex_state = 25}, - [1358] = {.lex_state = 4, .external_lex_state = 15}, - [1359] = {.lex_state = 4, .external_lex_state = 26}, - [1360] = {.lex_state = 4, .external_lex_state = 10}, - [1361] = {.lex_state = 2, .external_lex_state = 9}, - [1362] = {.lex_state = 4, .external_lex_state = 26}, - [1363] = {.lex_state = 4, .external_lex_state = 26}, - [1364] = {.lex_state = 4, .external_lex_state = 26}, - [1365] = {.lex_state = 4, .external_lex_state = 26}, - [1366] = {.lex_state = 4, .external_lex_state = 26}, - [1367] = {.lex_state = 4, .external_lex_state = 26}, - [1368] = {.lex_state = 4, .external_lex_state = 26}, - [1369] = {.lex_state = 4, .external_lex_state = 26}, - [1370] = {.lex_state = 4, .external_lex_state = 26}, - [1371] = {.lex_state = 4, .external_lex_state = 26}, - [1372] = {.lex_state = 4, .external_lex_state = 26}, - [1373] = {.lex_state = 4, .external_lex_state = 26}, - [1374] = {.lex_state = 4, .external_lex_state = 26}, - [1375] = {.lex_state = 4, .external_lex_state = 26}, - [1376] = {.lex_state = 4, .external_lex_state = 26}, - [1377] = {.lex_state = 4, .external_lex_state = 26}, - [1378] = {.lex_state = 4, .external_lex_state = 26}, - [1379] = {.lex_state = 4, .external_lex_state = 26}, - [1380] = {.lex_state = 4, .external_lex_state = 26}, - [1381] = {.lex_state = 4, .external_lex_state = 26}, - [1382] = {.lex_state = 4, .external_lex_state = 26}, - [1383] = {.lex_state = 4, .external_lex_state = 26}, - [1384] = {.lex_state = 4, .external_lex_state = 26}, - [1385] = {.lex_state = 4, .external_lex_state = 26}, - [1386] = {.lex_state = 4, .external_lex_state = 27}, - [1387] = {.lex_state = 4, .external_lex_state = 27}, - [1388] = {.lex_state = 4, .external_lex_state = 27}, - [1389] = {.lex_state = 4, .external_lex_state = 27}, - [1390] = {.lex_state = 4, .external_lex_state = 15}, - [1391] = {.lex_state = 4, .external_lex_state = 27}, - [1392] = {.lex_state = 4, .external_lex_state = 27}, - [1393] = {.lex_state = 4, .external_lex_state = 27}, - [1394] = {.lex_state = 4, .external_lex_state = 27}, - [1395] = {.lex_state = 4, .external_lex_state = 27}, - [1396] = {.lex_state = 4, .external_lex_state = 27}, - [1397] = {.lex_state = 4, .external_lex_state = 27}, - [1398] = {.lex_state = 4, .external_lex_state = 27}, - [1399] = {.lex_state = 4, .external_lex_state = 27}, - [1400] = {.lex_state = 4, .external_lex_state = 27}, - [1401] = {.lex_state = 4, .external_lex_state = 27}, - [1402] = {.lex_state = 4, .external_lex_state = 27}, - [1403] = {.lex_state = 4, .external_lex_state = 27}, - [1404] = {.lex_state = 4, .external_lex_state = 27}, - [1405] = {.lex_state = 4, .external_lex_state = 27}, - [1406] = {.lex_state = 4, .external_lex_state = 27}, - [1407] = {.lex_state = 4, .external_lex_state = 15}, - [1408] = {.lex_state = 4, .external_lex_state = 27}, - [1409] = {.lex_state = 4, .external_lex_state = 27}, - [1410] = {.lex_state = 4, .external_lex_state = 27}, - [1411] = {.lex_state = 4, .external_lex_state = 27}, - [1412] = {.lex_state = 4, .external_lex_state = 27}, - [1413] = {.lex_state = 2, .external_lex_state = 9}, - [1414] = {.lex_state = 4, .external_lex_state = 15}, - [1415] = {.lex_state = 4, .external_lex_state = 22}, - [1416] = {.lex_state = 4, .external_lex_state = 15}, - [1417] = {.lex_state = 3, .external_lex_state = 9}, - [1418] = {.lex_state = 3, .external_lex_state = 9}, - [1419] = {.lex_state = 3, .external_lex_state = 9}, - [1420] = {.lex_state = 3, .external_lex_state = 9}, - [1421] = {.lex_state = 3, .external_lex_state = 9}, + [1329] = {.lex_state = 4, .external_lex_state = 27}, + [1330] = {.lex_state = 4, .external_lex_state = 27}, + [1331] = {.lex_state = 4, .external_lex_state = 27}, + [1332] = {.lex_state = 4, .external_lex_state = 23}, + [1333] = {.lex_state = 4, .external_lex_state = 27}, + [1334] = {.lex_state = 4, .external_lex_state = 27}, + [1335] = {.lex_state = 4, .external_lex_state = 27}, + [1336] = {.lex_state = 4, .external_lex_state = 15}, + [1337] = {.lex_state = 4, .external_lex_state = 23}, + [1338] = {.lex_state = 4, .external_lex_state = 23}, + [1339] = {.lex_state = 4, .external_lex_state = 23}, + [1340] = {.lex_state = 4, .external_lex_state = 23}, + [1341] = {.lex_state = 4, .external_lex_state = 23}, + [1342] = {.lex_state = 4, .external_lex_state = 26}, + [1343] = {.lex_state = 4, .external_lex_state = 19}, + [1344] = {.lex_state = 4, .external_lex_state = 24}, + [1345] = {.lex_state = 4, .external_lex_state = 24}, + [1346] = {.lex_state = 4, .external_lex_state = 24}, + [1347] = {.lex_state = 4, .external_lex_state = 24}, + [1348] = {.lex_state = 4, .external_lex_state = 24}, + [1349] = {.lex_state = 4, .external_lex_state = 24}, + [1350] = {.lex_state = 4, .external_lex_state = 19}, + [1351] = {.lex_state = 4, .external_lex_state = 19}, + [1352] = {.lex_state = 4, .external_lex_state = 19}, + [1353] = {.lex_state = 4, .external_lex_state = 18}, + [1354] = {.lex_state = 4, .external_lex_state = 19}, + [1355] = {.lex_state = 4, .external_lex_state = 19}, + [1356] = {.lex_state = 4, .external_lex_state = 15}, + [1357] = {.lex_state = 4, .external_lex_state = 19}, + [1358] = {.lex_state = 4, .external_lex_state = 24}, + [1359] = {.lex_state = 4, .external_lex_state = 24}, + [1360] = {.lex_state = 4, .external_lex_state = 24}, + [1361] = {.lex_state = 4, .external_lex_state = 24}, + [1362] = {.lex_state = 4, .external_lex_state = 24}, + [1363] = {.lex_state = 4, .external_lex_state = 24}, + [1364] = {.lex_state = 4, .external_lex_state = 19}, + [1365] = {.lex_state = 4, .external_lex_state = 24}, + [1366] = {.lex_state = 4, .external_lex_state = 24}, + [1367] = {.lex_state = 4, .external_lex_state = 24}, + [1368] = {.lex_state = 4, .external_lex_state = 24}, + [1369] = {.lex_state = 4, .external_lex_state = 24}, + [1370] = {.lex_state = 4, .external_lex_state = 24}, + [1371] = {.lex_state = 4, .external_lex_state = 19}, + [1372] = {.lex_state = 4, .external_lex_state = 19}, + [1373] = {.lex_state = 4, .external_lex_state = 19}, + [1374] = {.lex_state = 4, .external_lex_state = 24}, + [1375] = {.lex_state = 4, .external_lex_state = 19}, + [1376] = {.lex_state = 4, .external_lex_state = 19}, + [1377] = {.lex_state = 4, .external_lex_state = 19}, + [1378] = {.lex_state = 4, .external_lex_state = 19}, + [1379] = {.lex_state = 4, .external_lex_state = 19}, + [1380] = {.lex_state = 4, .external_lex_state = 19}, + [1381] = {.lex_state = 4, .external_lex_state = 19}, + [1382] = {.lex_state = 4, .external_lex_state = 19}, + [1383] = {.lex_state = 4, .external_lex_state = 18}, + [1384] = {.lex_state = 4, .external_lex_state = 15}, + [1385] = {.lex_state = 4, .external_lex_state = 19}, + [1386] = {.lex_state = 4, .external_lex_state = 19}, + [1387] = {.lex_state = 4, .external_lex_state = 19}, + [1388] = {.lex_state = 4, .external_lex_state = 19}, + [1389] = {.lex_state = 4, .external_lex_state = 19}, + [1390] = {.lex_state = 4, .external_lex_state = 19}, + [1391] = {.lex_state = 4, .external_lex_state = 15}, + [1392] = {.lex_state = 4, .external_lex_state = 24}, + [1393] = {.lex_state = 4, .external_lex_state = 25}, + [1394] = {.lex_state = 4, .external_lex_state = 25}, + [1395] = {.lex_state = 4, .external_lex_state = 25}, + [1396] = {.lex_state = 4, .external_lex_state = 25}, + [1397] = {.lex_state = 4, .external_lex_state = 25}, + [1398] = {.lex_state = 4, .external_lex_state = 25}, + [1399] = {.lex_state = 4, .external_lex_state = 18}, + [1400] = {.lex_state = 4, .external_lex_state = 25}, + [1401] = {.lex_state = 4, .external_lex_state = 24}, + [1402] = {.lex_state = 4, .external_lex_state = 25}, + [1403] = {.lex_state = 4, .external_lex_state = 25}, + [1404] = {.lex_state = 4, .external_lex_state = 25}, + [1405] = {.lex_state = 4, .external_lex_state = 25}, + [1406] = {.lex_state = 4, .external_lex_state = 25}, + [1407] = {.lex_state = 4, .external_lex_state = 25}, + [1408] = {.lex_state = 4, .external_lex_state = 25}, + [1409] = {.lex_state = 4, .external_lex_state = 25}, + [1410] = {.lex_state = 4, .external_lex_state = 24}, + [1411] = {.lex_state = 4, .external_lex_state = 25}, + [1412] = {.lex_state = 4, .external_lex_state = 25}, + [1413] = {.lex_state = 4, .external_lex_state = 25}, + [1414] = {.lex_state = 4, .external_lex_state = 25}, + [1415] = {.lex_state = 2, .external_lex_state = 9}, + [1416] = {.lex_state = 3, .external_lex_state = 9}, + [1417] = {.lex_state = 4, .external_lex_state = 25}, + [1418] = {.lex_state = 4, .external_lex_state = 25}, + [1419] = {.lex_state = 4, .external_lex_state = 24}, + [1420] = {.lex_state = 4, .external_lex_state = 25}, + [1421] = {.lex_state = 4, .external_lex_state = 25}, [1422] = {.lex_state = 3, .external_lex_state = 9}, - [1423] = {.lex_state = 4, .external_lex_state = 18}, - [1424] = {.lex_state = 3, .external_lex_state = 9}, - [1425] = {.lex_state = 3, .external_lex_state = 9}, - [1426] = {.lex_state = 3, .external_lex_state = 9}, - [1427] = {.lex_state = 3, .external_lex_state = 9}, - [1428] = {.lex_state = 3, .external_lex_state = 9}, - [1429] = {.lex_state = 3, .external_lex_state = 9}, - [1430] = {.lex_state = 3, .external_lex_state = 9}, - [1431] = {.lex_state = 3, .external_lex_state = 9}, - [1432] = {.lex_state = 3, .external_lex_state = 9}, - [1433] = {.lex_state = 4, .external_lex_state = 15}, - [1434] = {.lex_state = 3, .external_lex_state = 9}, - [1435] = {.lex_state = 3, .external_lex_state = 9}, + [1423] = {.lex_state = 4, .external_lex_state = 25}, + [1424] = {.lex_state = 4, .external_lex_state = 25}, + [1425] = {.lex_state = 2, .external_lex_state = 9}, + [1426] = {.lex_state = 2, .external_lex_state = 9}, + [1427] = {.lex_state = 2, .external_lex_state = 9}, + [1428] = {.lex_state = 4, .external_lex_state = 24}, + [1429] = {.lex_state = 2, .external_lex_state = 9}, + [1430] = {.lex_state = 4, .external_lex_state = 26}, + [1431] = {.lex_state = 2, .external_lex_state = 9}, + [1432] = {.lex_state = 2, .external_lex_state = 9}, + [1433] = {.lex_state = 2, .external_lex_state = 9}, + [1434] = {.lex_state = 2, .external_lex_state = 9}, + [1435] = {.lex_state = 2, .external_lex_state = 9}, [1436] = {.lex_state = 3, .external_lex_state = 9}, - [1437] = {.lex_state = 3, .external_lex_state = 9}, - [1438] = {.lex_state = 3, .external_lex_state = 9}, - [1439] = {.lex_state = 3, .external_lex_state = 9}, + [1437] = {.lex_state = 4, .external_lex_state = 24}, + [1438] = {.lex_state = 4, .external_lex_state = 26}, + [1439] = {.lex_state = 2, .external_lex_state = 9}, [1440] = {.lex_state = 3, .external_lex_state = 9}, [1441] = {.lex_state = 3, .external_lex_state = 9}, - [1442] = {.lex_state = 4, .external_lex_state = 15}, - [1443] = {.lex_state = 3, .external_lex_state = 9}, + [1442] = {.lex_state = 2, .external_lex_state = 9}, + [1443] = {.lex_state = 2, .external_lex_state = 9}, [1444] = {.lex_state = 3, .external_lex_state = 9}, [1445] = {.lex_state = 2, .external_lex_state = 9}, - [1446] = {.lex_state = 4, .external_lex_state = 19}, - [1447] = {.lex_state = 4, .external_lex_state = 19}, - [1448] = {.lex_state = 4, .external_lex_state = 19}, - [1449] = {.lex_state = 4, .external_lex_state = 19}, - [1450] = {.lex_state = 4, .external_lex_state = 19}, - [1451] = {.lex_state = 4, .external_lex_state = 19}, - [1452] = {.lex_state = 4, .external_lex_state = 19}, - [1453] = {.lex_state = 4, .external_lex_state = 19}, - [1454] = {.lex_state = 4, .external_lex_state = 19}, - [1455] = {.lex_state = 4, .external_lex_state = 19}, - [1456] = {.lex_state = 4, .external_lex_state = 19}, - [1457] = {.lex_state = 4, .external_lex_state = 19}, - [1458] = {.lex_state = 4, .external_lex_state = 19}, - [1459] = {.lex_state = 4, .external_lex_state = 19}, - [1460] = {.lex_state = 4, .external_lex_state = 19}, - [1461] = {.lex_state = 4, .external_lex_state = 19}, - [1462] = {.lex_state = 4, .external_lex_state = 19}, - [1463] = {.lex_state = 4, .external_lex_state = 19}, - [1464] = {.lex_state = 4, .external_lex_state = 19}, - [1465] = {.lex_state = 4, .external_lex_state = 19}, - [1466] = {.lex_state = 4, .external_lex_state = 19}, - [1467] = {.lex_state = 4, .external_lex_state = 19}, - [1468] = {.lex_state = 4, .external_lex_state = 19}, - [1469] = {.lex_state = 4, .external_lex_state = 19}, - [1470] = {.lex_state = 4, .external_lex_state = 19}, - [1471] = {.lex_state = 2, .external_lex_state = 9}, - [1472] = {.lex_state = 4, .external_lex_state = 15}, - [1473] = {.lex_state = 4, .external_lex_state = 11}, - [1474] = {.lex_state = 4, .external_lex_state = 20}, - [1475] = {.lex_state = 4, .external_lex_state = 20}, - [1476] = {.lex_state = 4, .external_lex_state = 20}, - [1477] = {.lex_state = 4, .external_lex_state = 20}, - [1478] = {.lex_state = 4, .external_lex_state = 21}, - [1479] = {.lex_state = 4, .external_lex_state = 25}, - [1480] = {.lex_state = 4, .external_lex_state = 22}, - [1481] = {.lex_state = 4, .external_lex_state = 15}, - [1482] = {.lex_state = 4, .external_lex_state = 25}, - [1483] = {.lex_state = 4, .external_lex_state = 21}, - [1484] = {.lex_state = 4, .external_lex_state = 21}, - [1485] = {.lex_state = 4, .external_lex_state = 21}, - [1486] = {.lex_state = 4, .external_lex_state = 21}, - [1487] = {.lex_state = 4, .external_lex_state = 22}, - [1488] = {.lex_state = 4, .external_lex_state = 22}, - [1489] = {.lex_state = 4, .external_lex_state = 20}, - [1490] = {.lex_state = 4, .external_lex_state = 20}, + [1446] = {.lex_state = 3, .external_lex_state = 9}, + [1447] = {.lex_state = 2, .external_lex_state = 9}, + [1448] = {.lex_state = 3, .external_lex_state = 9}, + [1449] = {.lex_state = 2, .external_lex_state = 9}, + [1450] = {.lex_state = 3, .external_lex_state = 9}, + [1451] = {.lex_state = 2, .external_lex_state = 9}, + [1452] = {.lex_state = 2, .external_lex_state = 9}, + [1453] = {.lex_state = 2, .external_lex_state = 9}, + [1454] = {.lex_state = 2, .external_lex_state = 9}, + [1455] = {.lex_state = 3, .external_lex_state = 9}, + [1456] = {.lex_state = 2, .external_lex_state = 9}, + [1457] = {.lex_state = 2, .external_lex_state = 9}, + [1458] = {.lex_state = 2, .external_lex_state = 9}, + [1459] = {.lex_state = 2, .external_lex_state = 9}, + [1460] = {.lex_state = 2, .external_lex_state = 9}, + [1461] = {.lex_state = 2, .external_lex_state = 9}, + [1462] = {.lex_state = 2, .external_lex_state = 9}, + [1463] = {.lex_state = 2, .external_lex_state = 9}, + [1464] = {.lex_state = 3, .external_lex_state = 9}, + [1465] = {.lex_state = 2, .external_lex_state = 9}, + [1466] = {.lex_state = 2, .external_lex_state = 9}, + [1467] = {.lex_state = 3, .external_lex_state = 9}, + [1468] = {.lex_state = 2, .external_lex_state = 9}, + [1469] = {.lex_state = 2, .external_lex_state = 9}, + [1470] = {.lex_state = 3, .external_lex_state = 9}, + [1471] = {.lex_state = 3, .external_lex_state = 9}, + [1472] = {.lex_state = 2, .external_lex_state = 9}, + [1473] = {.lex_state = 3, .external_lex_state = 9}, + [1474] = {.lex_state = 2, .external_lex_state = 9}, + [1475] = {.lex_state = 2, .external_lex_state = 9}, + [1476] = {.lex_state = 2, .external_lex_state = 9}, + [1477] = {.lex_state = 2, .external_lex_state = 9}, + [1478] = {.lex_state = 3, .external_lex_state = 9}, + [1479] = {.lex_state = 2, .external_lex_state = 9}, + [1480] = {.lex_state = 2, .external_lex_state = 9}, + [1481] = {.lex_state = 2, .external_lex_state = 9}, + [1482] = {.lex_state = 3, .external_lex_state = 9}, + [1483] = {.lex_state = 2, .external_lex_state = 9}, + [1484] = {.lex_state = 2, .external_lex_state = 9}, + [1485] = {.lex_state = 2, .external_lex_state = 9}, + [1486] = {.lex_state = 2, .external_lex_state = 9}, + [1487] = {.lex_state = 2, .external_lex_state = 9}, + [1488] = {.lex_state = 3, .external_lex_state = 9}, + [1489] = {.lex_state = 4, .external_lex_state = 18}, + [1490] = {.lex_state = 4, .external_lex_state = 22}, [1491] = {.lex_state = 4, .external_lex_state = 25}, - [1492] = {.lex_state = 4, .external_lex_state = 21}, - [1493] = {.lex_state = 4, .external_lex_state = 25}, - [1494] = {.lex_state = 4, .external_lex_state = 25}, - [1495] = {.lex_state = 4, .external_lex_state = 21}, - [1496] = {.lex_state = 4, .external_lex_state = 25}, - [1497] = {.lex_state = 4, .external_lex_state = 25}, - [1498] = {.lex_state = 4, .external_lex_state = 21}, - [1499] = {.lex_state = 4, .external_lex_state = 25}, - [1500] = {.lex_state = 4, .external_lex_state = 25}, - [1501] = {.lex_state = 4, .external_lex_state = 21}, - [1502] = {.lex_state = 4, .external_lex_state = 25}, - [1503] = {.lex_state = 4, .external_lex_state = 25}, - [1504] = {.lex_state = 4, .external_lex_state = 21}, - [1505] = {.lex_state = 4, .external_lex_state = 21}, - [1506] = {.lex_state = 4, .external_lex_state = 21}, - [1507] = {.lex_state = 4, .external_lex_state = 21}, - [1508] = {.lex_state = 4, .external_lex_state = 21}, - [1509] = {.lex_state = 4, .external_lex_state = 21}, - [1510] = {.lex_state = 4, .external_lex_state = 21}, - [1511] = {.lex_state = 4, .external_lex_state = 21}, - [1512] = {.lex_state = 4, .external_lex_state = 21}, - [1513] = {.lex_state = 4, .external_lex_state = 21}, - [1514] = {.lex_state = 4, .external_lex_state = 21}, - [1515] = {.lex_state = 4, .external_lex_state = 25}, - [1516] = {.lex_state = 4, .external_lex_state = 25}, - [1517] = {.lex_state = 4, .external_lex_state = 21}, - [1518] = {.lex_state = 4, .external_lex_state = 15}, - [1519] = {.lex_state = 4, .external_lex_state = 22}, - [1520] = {.lex_state = 4, .external_lex_state = 21}, - [1521] = {.lex_state = 4, .external_lex_state = 21}, - [1522] = {.lex_state = 4, .external_lex_state = 20}, - [1523] = {.lex_state = 4, .external_lex_state = 20}, + [1492] = {.lex_state = 4, .external_lex_state = 23}, + [1493] = {.lex_state = 4, .external_lex_state = 23}, + [1494] = {.lex_state = 4, .external_lex_state = 23}, + [1495] = {.lex_state = 4, .external_lex_state = 22}, + [1496] = {.lex_state = 4, .external_lex_state = 22}, + [1497] = {.lex_state = 4, .external_lex_state = 24}, + [1498] = {.lex_state = 4, .external_lex_state = 22}, + [1499] = {.lex_state = 4, .external_lex_state = 22}, + [1500] = {.lex_state = 4, .external_lex_state = 23}, + [1501] = {.lex_state = 4, .external_lex_state = 23}, + [1502] = {.lex_state = 4, .external_lex_state = 23}, + [1503] = {.lex_state = 4, .external_lex_state = 23}, + [1504] = {.lex_state = 4, .external_lex_state = 23}, + [1505] = {.lex_state = 4, .external_lex_state = 23}, + [1506] = {.lex_state = 4, .external_lex_state = 23}, + [1507] = {.lex_state = 4, .external_lex_state = 15}, + [1508] = {.lex_state = 4, .external_lex_state = 23}, + [1509] = {.lex_state = 4, .external_lex_state = 23}, + [1510] = {.lex_state = 4, .external_lex_state = 23}, + [1511] = {.lex_state = 4, .external_lex_state = 23}, + [1512] = {.lex_state = 4, .external_lex_state = 23}, + [1513] = {.lex_state = 4, .external_lex_state = 23}, + [1514] = {.lex_state = 4, .external_lex_state = 23}, + [1515] = {.lex_state = 4, .external_lex_state = 23}, + [1516] = {.lex_state = 4, .external_lex_state = 23}, + [1517] = {.lex_state = 4, .external_lex_state = 15}, + [1518] = {.lex_state = 4, .external_lex_state = 23}, + [1519] = {.lex_state = 4, .external_lex_state = 23}, + [1520] = {.lex_state = 4, .external_lex_state = 23}, + [1521] = {.lex_state = 4, .external_lex_state = 23}, + [1522] = {.lex_state = 4, .external_lex_state = 23}, + [1523] = {.lex_state = 4, .external_lex_state = 23}, [1524] = {.lex_state = 4, .external_lex_state = 23}, - [1525] = {.lex_state = 4, .external_lex_state = 25}, - [1526] = {.lex_state = 4, .external_lex_state = 20}, - [1527] = {.lex_state = 4, .external_lex_state = 20}, - [1528] = {.lex_state = 4, .external_lex_state = 21}, - [1529] = {.lex_state = 4, .external_lex_state = 21}, - [1530] = {.lex_state = 4, .external_lex_state = 21}, - [1531] = {.lex_state = 4, .external_lex_state = 22}, - [1532] = {.lex_state = 4, .external_lex_state = 21}, - [1533] = {.lex_state = 4, .external_lex_state = 21}, - [1534] = {.lex_state = 1, .external_lex_state = 9}, - [1535] = {.lex_state = 4, .external_lex_state = 21}, - [1536] = {.lex_state = 4, .external_lex_state = 21}, - [1537] = {.lex_state = 4, .external_lex_state = 25}, - [1538] = {.lex_state = 4, .external_lex_state = 21}, - [1539] = {.lex_state = 4, .external_lex_state = 21}, - [1540] = {.lex_state = 4, .external_lex_state = 25}, - [1541] = {.lex_state = 4, .external_lex_state = 21}, - [1542] = {.lex_state = 4, .external_lex_state = 21}, - [1543] = {.lex_state = 4, .external_lex_state = 21}, - [1544] = {.lex_state = 4, .external_lex_state = 21}, - [1545] = {.lex_state = 4, .external_lex_state = 24}, - [1546] = {.lex_state = 4, .external_lex_state = 21}, - [1547] = {.lex_state = 4, .external_lex_state = 21}, + [1525] = {.lex_state = 4, .external_lex_state = 23}, + [1526] = {.lex_state = 4, .external_lex_state = 23}, + [1527] = {.lex_state = 4, .external_lex_state = 23}, + [1528] = {.lex_state = 4, .external_lex_state = 23}, + [1529] = {.lex_state = 4, .external_lex_state = 23}, + [1530] = {.lex_state = 4, .external_lex_state = 23}, + [1531] = {.lex_state = 4, .external_lex_state = 23}, + [1532] = {.lex_state = 4, .external_lex_state = 23}, + [1533] = {.lex_state = 4, .external_lex_state = 23}, + [1534] = {.lex_state = 4, .external_lex_state = 23}, + [1535] = {.lex_state = 4, .external_lex_state = 23}, + [1536] = {.lex_state = 4, .external_lex_state = 24}, + [1537] = {.lex_state = 4, .external_lex_state = 15}, + [1538] = {.lex_state = 4, .external_lex_state = 24}, + [1539] = {.lex_state = 4, .external_lex_state = 24}, + [1540] = {.lex_state = 4, .external_lex_state = 24}, + [1541] = {.lex_state = 4, .external_lex_state = 24}, + [1542] = {.lex_state = 4, .external_lex_state = 15}, + [1543] = {.lex_state = 4, .external_lex_state = 23}, + [1544] = {.lex_state = 4, .external_lex_state = 23}, + [1545] = {.lex_state = 4, .external_lex_state = 15}, + [1546] = {.lex_state = 4, .external_lex_state = 24}, + [1547] = {.lex_state = 4, .external_lex_state = 15}, [1548] = {.lex_state = 4, .external_lex_state = 24}, - [1549] = {.lex_state = 4, .external_lex_state = 21}, - [1550] = {.lex_state = 4, .external_lex_state = 21}, - [1551] = {.lex_state = 4, .external_lex_state = 21}, - [1552] = {.lex_state = 4, .external_lex_state = 21}, - [1553] = {.lex_state = 4, .external_lex_state = 21}, - [1554] = {.lex_state = 4, .external_lex_state = 21}, - [1555] = {.lex_state = 4, .external_lex_state = 21}, - [1556] = {.lex_state = 4, .external_lex_state = 21}, - [1557] = {.lex_state = 4, .external_lex_state = 21}, - [1558] = {.lex_state = 4, .external_lex_state = 21}, - [1559] = {.lex_state = 4, .external_lex_state = 21}, - [1560] = {.lex_state = 4, .external_lex_state = 21}, - [1561] = {.lex_state = 4, .external_lex_state = 21}, - [1562] = {.lex_state = 4, .external_lex_state = 21}, - [1563] = {.lex_state = 4, .external_lex_state = 21}, - [1564] = {.lex_state = 4, .external_lex_state = 21}, - [1565] = {.lex_state = 4, .external_lex_state = 23}, - [1566] = {.lex_state = 4, .external_lex_state = 26}, - [1567] = {.lex_state = 4, .external_lex_state = 22}, + [1549] = {.lex_state = 4, .external_lex_state = 15}, + [1550] = {.lex_state = 4, .external_lex_state = 15}, + [1551] = {.lex_state = 4, .external_lex_state = 24}, + [1552] = {.lex_state = 4, .external_lex_state = 15}, + [1553] = {.lex_state = 4, .external_lex_state = 15}, + [1554] = {.lex_state = 4, .external_lex_state = 24}, + [1555] = {.lex_state = 4, .external_lex_state = 15}, + [1556] = {.lex_state = 4, .external_lex_state = 15}, + [1557] = {.lex_state = 4, .external_lex_state = 24}, + [1558] = {.lex_state = 4, .external_lex_state = 24}, + [1559] = {.lex_state = 4, .external_lex_state = 24}, + [1560] = {.lex_state = 4, .external_lex_state = 24}, + [1561] = {.lex_state = 4, .external_lex_state = 24}, + [1562] = {.lex_state = 4, .external_lex_state = 24}, + [1563] = {.lex_state = 4, .external_lex_state = 24}, + [1564] = {.lex_state = 4, .external_lex_state = 24}, + [1565] = {.lex_state = 4, .external_lex_state = 24}, + [1566] = {.lex_state = 4, .external_lex_state = 24}, + [1567] = {.lex_state = 4, .external_lex_state = 24}, [1568] = {.lex_state = 4, .external_lex_state = 24}, - [1569] = {.lex_state = 4, .external_lex_state = 24}, - [1570] = {.lex_state = 4, .external_lex_state = 25}, - [1571] = {.lex_state = 4, .external_lex_state = 23}, - [1572] = {.lex_state = 4, .external_lex_state = 23}, - [1573] = {.lex_state = 4, .external_lex_state = 23}, - [1574] = {.lex_state = 4, .external_lex_state = 23}, - [1575] = {.lex_state = 4, .external_lex_state = 25}, - [1576] = {.lex_state = 4, .external_lex_state = 25}, - [1577] = {.lex_state = 4, .external_lex_state = 21}, - [1578] = {.lex_state = 4, .external_lex_state = 22}, - [1579] = {.lex_state = 4, .external_lex_state = 21}, - [1580] = {.lex_state = 4, .external_lex_state = 25}, - [1581] = {.lex_state = 4, .external_lex_state = 23}, - [1582] = {.lex_state = 4, .external_lex_state = 25}, - [1583] = {.lex_state = 4, .external_lex_state = 15}, - [1584] = {.lex_state = 4, .external_lex_state = 23}, - [1585] = {.lex_state = 4, .external_lex_state = 25}, - [1586] = {.lex_state = 4, .external_lex_state = 25}, - [1587] = {.lex_state = 4, .external_lex_state = 23}, - [1588] = {.lex_state = 4, .external_lex_state = 22}, - [1589] = {.lex_state = 4, .external_lex_state = 25}, - [1590] = {.lex_state = 4, .external_lex_state = 23}, - [1591] = {.lex_state = 4, .external_lex_state = 25}, - [1592] = {.lex_state = 4, .external_lex_state = 22}, - [1593] = {.lex_state = 4, .external_lex_state = 23}, - [1594] = {.lex_state = 4, .external_lex_state = 23}, - [1595] = {.lex_state = 4, .external_lex_state = 23}, - [1596] = {.lex_state = 4, .external_lex_state = 23}, - [1597] = {.lex_state = 4, .external_lex_state = 23}, - [1598] = {.lex_state = 4, .external_lex_state = 23}, - [1599] = {.lex_state = 4, .external_lex_state = 23}, - [1600] = {.lex_state = 4, .external_lex_state = 23}, - [1601] = {.lex_state = 4, .external_lex_state = 23}, - [1602] = {.lex_state = 4, .external_lex_state = 23}, - [1603] = {.lex_state = 4, .external_lex_state = 23}, - [1604] = {.lex_state = 4, .external_lex_state = 25}, - [1605] = {.lex_state = 4, .external_lex_state = 25}, - [1606] = {.lex_state = 4, .external_lex_state = 23}, - [1607] = {.lex_state = 4, .external_lex_state = 25}, - [1608] = {.lex_state = 4, .external_lex_state = 25}, - [1609] = {.lex_state = 4, .external_lex_state = 23}, - [1610] = {.lex_state = 4, .external_lex_state = 23}, - [1611] = {.lex_state = 4, .external_lex_state = 21}, - [1612] = {.lex_state = 4, .external_lex_state = 21}, - [1613] = {.lex_state = 4, .external_lex_state = 22}, - [1614] = {.lex_state = 4, .external_lex_state = 25}, - [1615] = {.lex_state = 4, .external_lex_state = 21}, - [1616] = {.lex_state = 4, .external_lex_state = 21}, - [1617] = {.lex_state = 4, .external_lex_state = 23}, - [1618] = {.lex_state = 4, .external_lex_state = 23}, - [1619] = {.lex_state = 4, .external_lex_state = 23}, - [1620] = {.lex_state = 4, .external_lex_state = 25}, - [1621] = {.lex_state = 4, .external_lex_state = 23}, - [1622] = {.lex_state = 4, .external_lex_state = 23}, - [1623] = {.lex_state = 4, .external_lex_state = 22}, - [1624] = {.lex_state = 4, .external_lex_state = 23}, - [1625] = {.lex_state = 4, .external_lex_state = 23}, - [1626] = {.lex_state = 4, .external_lex_state = 25}, - [1627] = {.lex_state = 4, .external_lex_state = 23}, - [1628] = {.lex_state = 4, .external_lex_state = 23}, - [1629] = {.lex_state = 4, .external_lex_state = 25}, - [1630] = {.lex_state = 4, .external_lex_state = 23}, - [1631] = {.lex_state = 4, .external_lex_state = 23}, - [1632] = {.lex_state = 4, .external_lex_state = 23}, - [1633] = {.lex_state = 4, .external_lex_state = 23}, - [1634] = {.lex_state = 4, .external_lex_state = 25}, - [1635] = {.lex_state = 4, .external_lex_state = 23}, - [1636] = {.lex_state = 4, .external_lex_state = 23}, - [1637] = {.lex_state = 4, .external_lex_state = 25}, - [1638] = {.lex_state = 4, .external_lex_state = 23}, - [1639] = {.lex_state = 4, .external_lex_state = 23}, - [1640] = {.lex_state = 4, .external_lex_state = 23}, - [1641] = {.lex_state = 4, .external_lex_state = 23}, - [1642] = {.lex_state = 4, .external_lex_state = 23}, - [1643] = {.lex_state = 4, .external_lex_state = 23}, - [1644] = {.lex_state = 4, .external_lex_state = 23}, - [1645] = {.lex_state = 4, .external_lex_state = 23}, - [1646] = {.lex_state = 4, .external_lex_state = 23}, - [1647] = {.lex_state = 4, .external_lex_state = 23}, - [1648] = {.lex_state = 4, .external_lex_state = 23}, - [1649] = {.lex_state = 4, .external_lex_state = 23}, - [1650] = {.lex_state = 4, .external_lex_state = 23}, - [1651] = {.lex_state = 4, .external_lex_state = 23}, - [1652] = {.lex_state = 4, .external_lex_state = 23}, - [1653] = {.lex_state = 4, .external_lex_state = 23}, - [1654] = {.lex_state = 4, .external_lex_state = 25}, - [1655] = {.lex_state = 4, .external_lex_state = 25}, - [1656] = {.lex_state = 4, .external_lex_state = 25}, - [1657] = {.lex_state = 4, .external_lex_state = 25}, - [1658] = {.lex_state = 4, .external_lex_state = 25}, - [1659] = {.lex_state = 4, .external_lex_state = 25}, - [1660] = {.lex_state = 4, .external_lex_state = 25}, - [1661] = {.lex_state = 4, .external_lex_state = 25}, - [1662] = {.lex_state = 4, .external_lex_state = 25}, - [1663] = {.lex_state = 4, .external_lex_state = 25}, - [1664] = {.lex_state = 4, .external_lex_state = 25}, - [1665] = {.lex_state = 4, .external_lex_state = 23}, - [1666] = {.lex_state = 4, .external_lex_state = 23}, - [1667] = {.lex_state = 4, .external_lex_state = 25}, - [1668] = {.lex_state = 4, .external_lex_state = 26}, - [1669] = {.lex_state = 1, .external_lex_state = 9}, - [1670] = {.lex_state = 4, .external_lex_state = 22}, - [1671] = {.lex_state = 4, .external_lex_state = 22}, - [1672] = {.lex_state = 4, .external_lex_state = 15}, - [1673] = {.lex_state = 4, .external_lex_state = 22}, - [1674] = {.lex_state = 4, .external_lex_state = 26}, - [1675] = {.lex_state = 4, .external_lex_state = 26}, - [1676] = {.lex_state = 4, .external_lex_state = 26}, - [1677] = {.lex_state = 4, .external_lex_state = 26}, - [1678] = {.lex_state = 4, .external_lex_state = 22}, - [1679] = {.lex_state = 4, .external_lex_state = 22}, - [1680] = {.lex_state = 4, .external_lex_state = 25}, - [1681] = {.lex_state = 4, .external_lex_state = 15}, - [1682] = {.lex_state = 4, .external_lex_state = 25}, - [1683] = {.lex_state = 4, .external_lex_state = 22}, - [1684] = {.lex_state = 4, .external_lex_state = 26}, - [1685] = {.lex_state = 4, .external_lex_state = 22}, - [1686] = {.lex_state = 4, .external_lex_state = 22}, + [1569] = {.lex_state = 4, .external_lex_state = 15}, + [1570] = {.lex_state = 4, .external_lex_state = 23}, + [1571] = {.lex_state = 4, .external_lex_state = 24}, + [1572] = {.lex_state = 4, .external_lex_state = 15}, + [1573] = {.lex_state = 4, .external_lex_state = 24}, + [1574] = {.lex_state = 4, .external_lex_state = 24}, + [1575] = {.lex_state = 4, .external_lex_state = 23}, + [1576] = {.lex_state = 4, .external_lex_state = 23}, + [1577] = {.lex_state = 3, .external_lex_state = 9}, + [1578] = {.lex_state = 4, .external_lex_state = 15}, + [1579] = {.lex_state = 4, .external_lex_state = 23}, + [1580] = {.lex_state = 4, .external_lex_state = 23}, + [1581] = {.lex_state = 4, .external_lex_state = 24}, + [1582] = {.lex_state = 4, .external_lex_state = 24}, + [1583] = {.lex_state = 4, .external_lex_state = 24}, + [1584] = {.lex_state = 4, .external_lex_state = 24}, + [1585] = {.lex_state = 4, .external_lex_state = 24}, + [1586] = {.lex_state = 4, .external_lex_state = 24}, + [1587] = {.lex_state = 4, .external_lex_state = 24}, + [1588] = {.lex_state = 4, .external_lex_state = 15}, + [1589] = {.lex_state = 4, .external_lex_state = 24}, + [1590] = {.lex_state = 4, .external_lex_state = 24}, + [1591] = {.lex_state = 4, .external_lex_state = 24}, + [1592] = {.lex_state = 4, .external_lex_state = 24}, + [1593] = {.lex_state = 4, .external_lex_state = 24}, + [1594] = {.lex_state = 4, .external_lex_state = 24}, + [1595] = {.lex_state = 4, .external_lex_state = 24}, + [1596] = {.lex_state = 4, .external_lex_state = 24}, + [1597] = {.lex_state = 4, .external_lex_state = 24}, + [1598] = {.lex_state = 4, .external_lex_state = 15}, + [1599] = {.lex_state = 4, .external_lex_state = 24}, + [1600] = {.lex_state = 4, .external_lex_state = 24}, + [1601] = {.lex_state = 4, .external_lex_state = 24}, + [1602] = {.lex_state = 4, .external_lex_state = 24}, + [1603] = {.lex_state = 4, .external_lex_state = 24}, + [1604] = {.lex_state = 4, .external_lex_state = 24}, + [1605] = {.lex_state = 4, .external_lex_state = 24}, + [1606] = {.lex_state = 4, .external_lex_state = 24}, + [1607] = {.lex_state = 4, .external_lex_state = 24}, + [1608] = {.lex_state = 4, .external_lex_state = 24}, + [1609] = {.lex_state = 4, .external_lex_state = 24}, + [1610] = {.lex_state = 4, .external_lex_state = 24}, + [1611] = {.lex_state = 4, .external_lex_state = 24}, + [1612] = {.lex_state = 4, .external_lex_state = 24}, + [1613] = {.lex_state = 4, .external_lex_state = 24}, + [1614] = {.lex_state = 4, .external_lex_state = 24}, + [1615] = {.lex_state = 4, .external_lex_state = 24}, + [1616] = {.lex_state = 4, .external_lex_state = 24}, + [1617] = {.lex_state = 3, .external_lex_state = 9}, + [1618] = {.lex_state = 4, .external_lex_state = 15}, + [1619] = {.lex_state = 4, .external_lex_state = 15}, + [1620] = {.lex_state = 4, .external_lex_state = 15}, + [1621] = {.lex_state = 3, .external_lex_state = 9}, + [1622] = {.lex_state = 3, .external_lex_state = 9}, + [1623] = {.lex_state = 3, .external_lex_state = 9}, + [1624] = {.lex_state = 3, .external_lex_state = 9}, + [1625] = {.lex_state = 4, .external_lex_state = 24}, + [1626] = {.lex_state = 4, .external_lex_state = 24}, + [1627] = {.lex_state = 3, .external_lex_state = 9}, + [1628] = {.lex_state = 3, .external_lex_state = 9}, + [1629] = {.lex_state = 1, .external_lex_state = 9}, + [1630] = {.lex_state = 3, .external_lex_state = 9}, + [1631] = {.lex_state = 3, .external_lex_state = 9}, + [1632] = {.lex_state = 3, .external_lex_state = 9}, + [1633] = {.lex_state = 3, .external_lex_state = 9}, + [1634] = {.lex_state = 3, .external_lex_state = 9}, + [1635] = {.lex_state = 3, .external_lex_state = 9}, + [1636] = {.lex_state = 3, .external_lex_state = 9}, + [1637] = {.lex_state = 3, .external_lex_state = 9}, + [1638] = {.lex_state = 3, .external_lex_state = 9}, + [1639] = {.lex_state = 3, .external_lex_state = 9}, + [1640] = {.lex_state = 3, .external_lex_state = 9}, + [1641] = {.lex_state = 3, .external_lex_state = 9}, + [1642] = {.lex_state = 3, .external_lex_state = 9}, + [1643] = {.lex_state = 3, .external_lex_state = 9}, + [1644] = {.lex_state = 3, .external_lex_state = 9}, + [1645] = {.lex_state = 3, .external_lex_state = 9}, + [1646] = {.lex_state = 3, .external_lex_state = 9}, + [1647] = {.lex_state = 4, .external_lex_state = 24}, + [1648] = {.lex_state = 4, .external_lex_state = 24}, + [1649] = {.lex_state = 4, .external_lex_state = 26}, + [1650] = {.lex_state = 4, .external_lex_state = 24}, + [1651] = {.lex_state = 4, .external_lex_state = 24}, + [1652] = {.lex_state = 3, .external_lex_state = 9}, + [1653] = {.lex_state = 3, .external_lex_state = 9}, + [1654] = {.lex_state = 3, .external_lex_state = 9}, + [1655] = {.lex_state = 3, .external_lex_state = 9}, + [1656] = {.lex_state = 3, .external_lex_state = 9}, + [1657] = {.lex_state = 3, .external_lex_state = 9}, + [1658] = {.lex_state = 3, .external_lex_state = 9}, + [1659] = {.lex_state = 3, .external_lex_state = 9}, + [1660] = {.lex_state = 3, .external_lex_state = 9}, + [1661] = {.lex_state = 3, .external_lex_state = 9}, + [1662] = {.lex_state = 3, .external_lex_state = 9}, + [1663] = {.lex_state = 3, .external_lex_state = 9}, + [1664] = {.lex_state = 3, .external_lex_state = 9}, + [1665] = {.lex_state = 3, .external_lex_state = 9}, + [1666] = {.lex_state = 3, .external_lex_state = 9}, + [1667] = {.lex_state = 3, .external_lex_state = 9}, + [1668] = {.lex_state = 3, .external_lex_state = 9}, + [1669] = {.lex_state = 3, .external_lex_state = 9}, + [1670] = {.lex_state = 3, .external_lex_state = 9}, + [1671] = {.lex_state = 3, .external_lex_state = 9}, + [1672] = {.lex_state = 3, .external_lex_state = 9}, + [1673] = {.lex_state = 3, .external_lex_state = 9}, + [1674] = {.lex_state = 3, .external_lex_state = 9}, + [1675] = {.lex_state = 3, .external_lex_state = 9}, + [1676] = {.lex_state = 3, .external_lex_state = 9}, + [1677] = {.lex_state = 3, .external_lex_state = 9}, + [1678] = {.lex_state = 3, .external_lex_state = 9}, + [1679] = {.lex_state = 3, .external_lex_state = 9}, + [1680] = {.lex_state = 3, .external_lex_state = 9}, + [1681] = {.lex_state = 3, .external_lex_state = 9}, + [1682] = {.lex_state = 3, .external_lex_state = 9}, + [1683] = {.lex_state = 3, .external_lex_state = 9}, + [1684] = {.lex_state = 3, .external_lex_state = 9}, + [1685] = {.lex_state = 3, .external_lex_state = 9}, + [1686] = {.lex_state = 4, .external_lex_state = 26}, [1687] = {.lex_state = 4, .external_lex_state = 26}, - [1688] = {.lex_state = 4, .external_lex_state = 22}, - [1689] = {.lex_state = 4, .external_lex_state = 22}, + [1688] = {.lex_state = 4, .external_lex_state = 26}, + [1689] = {.lex_state = 4, .external_lex_state = 26}, [1690] = {.lex_state = 4, .external_lex_state = 26}, - [1691] = {.lex_state = 4, .external_lex_state = 22}, - [1692] = {.lex_state = 4, .external_lex_state = 22}, + [1691] = {.lex_state = 3, .external_lex_state = 9}, + [1692] = {.lex_state = 3, .external_lex_state = 9}, [1693] = {.lex_state = 4, .external_lex_state = 26}, - [1694] = {.lex_state = 4, .external_lex_state = 22}, - [1695] = {.lex_state = 4, .external_lex_state = 22}, - [1696] = {.lex_state = 4, .external_lex_state = 26}, - [1697] = {.lex_state = 4, .external_lex_state = 26}, - [1698] = {.lex_state = 4, .external_lex_state = 23}, - [1699] = {.lex_state = 4, .external_lex_state = 23}, - [1700] = {.lex_state = 4, .external_lex_state = 23}, - [1701] = {.lex_state = 4, .external_lex_state = 23}, + [1694] = {.lex_state = 4, .external_lex_state = 15}, + [1695] = {.lex_state = 4, .external_lex_state = 26}, + [1696] = {.lex_state = 4, .external_lex_state = 15}, + [1697] = {.lex_state = 4, .external_lex_state = 15}, + [1698] = {.lex_state = 4, .external_lex_state = 26}, + [1699] = {.lex_state = 4, .external_lex_state = 15}, + [1700] = {.lex_state = 4, .external_lex_state = 26}, + [1701] = {.lex_state = 4, .external_lex_state = 15}, [1702] = {.lex_state = 4, .external_lex_state = 26}, [1703] = {.lex_state = 4, .external_lex_state = 26}, [1704] = {.lex_state = 4, .external_lex_state = 26}, @@ -17383,106 +18714,106 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1708] = {.lex_state = 4, .external_lex_state = 26}, [1709] = {.lex_state = 4, .external_lex_state = 26}, [1710] = {.lex_state = 4, .external_lex_state = 26}, - [1711] = {.lex_state = 4, .external_lex_state = 22}, - [1712] = {.lex_state = 4, .external_lex_state = 22}, + [1711] = {.lex_state = 4, .external_lex_state = 26}, + [1712] = {.lex_state = 4, .external_lex_state = 26}, [1713] = {.lex_state = 4, .external_lex_state = 26}, - [1714] = {.lex_state = 4, .external_lex_state = 22}, - [1715] = {.lex_state = 4, .external_lex_state = 22}, + [1714] = {.lex_state = 4, .external_lex_state = 15}, + [1715] = {.lex_state = 4, .external_lex_state = 15}, [1716] = {.lex_state = 4, .external_lex_state = 26}, - [1717] = {.lex_state = 4, .external_lex_state = 26}, - [1718] = {.lex_state = 4, .external_lex_state = 25}, - [1719] = {.lex_state = 4, .external_lex_state = 25}, - [1720] = {.lex_state = 4, .external_lex_state = 27}, - [1721] = {.lex_state = 4, .external_lex_state = 15}, - [1722] = {.lex_state = 4, .external_lex_state = 25}, - [1723] = {.lex_state = 4, .external_lex_state = 25}, - [1724] = {.lex_state = 4, .external_lex_state = 26}, - [1725] = {.lex_state = 4, .external_lex_state = 26}, + [1717] = {.lex_state = 4, .external_lex_state = 15}, + [1718] = {.lex_state = 4, .external_lex_state = 26}, + [1719] = {.lex_state = 4, .external_lex_state = 26}, + [1720] = {.lex_state = 3, .external_lex_state = 9}, + [1721] = {.lex_state = 3, .external_lex_state = 9}, + [1722] = {.lex_state = 4, .external_lex_state = 27}, + [1723] = {.lex_state = 4, .external_lex_state = 15}, + [1724] = {.lex_state = 3, .external_lex_state = 9}, + [1725] = {.lex_state = 3, .external_lex_state = 9}, [1726] = {.lex_state = 4, .external_lex_state = 26}, - [1727] = {.lex_state = 4, .external_lex_state = 15}, + [1727] = {.lex_state = 4, .external_lex_state = 26}, [1728] = {.lex_state = 4, .external_lex_state = 26}, [1729] = {.lex_state = 4, .external_lex_state = 26}, [1730] = {.lex_state = 4, .external_lex_state = 26}, - [1731] = {.lex_state = 4, .external_lex_state = 26}, - [1732] = {.lex_state = 4, .external_lex_state = 24}, + [1731] = {.lex_state = 4, .external_lex_state = 15}, + [1732] = {.lex_state = 4, .external_lex_state = 26}, [1733] = {.lex_state = 4, .external_lex_state = 26}, [1734] = {.lex_state = 4, .external_lex_state = 26}, - [1735] = {.lex_state = 4, .external_lex_state = 15}, - [1736] = {.lex_state = 4, .external_lex_state = 26}, + [1735] = {.lex_state = 4, .external_lex_state = 26}, + [1736] = {.lex_state = 4, .external_lex_state = 15}, [1737] = {.lex_state = 4, .external_lex_state = 26}, - [1738] = {.lex_state = 4, .external_lex_state = 11}, - [1739] = {.lex_state = 4, .external_lex_state = 11}, - [1740] = {.lex_state = 4, .external_lex_state = 11}, - [1741] = {.lex_state = 4, .external_lex_state = 11}, - [1742] = {.lex_state = 4, .external_lex_state = 11}, + [1738] = {.lex_state = 4, .external_lex_state = 26}, + [1739] = {.lex_state = 4, .external_lex_state = 26}, + [1740] = {.lex_state = 4, .external_lex_state = 26}, + [1741] = {.lex_state = 4, .external_lex_state = 26}, + [1742] = {.lex_state = 4, .external_lex_state = 15}, [1743] = {.lex_state = 4, .external_lex_state = 26}, [1744] = {.lex_state = 4, .external_lex_state = 26}, [1745] = {.lex_state = 4, .external_lex_state = 15}, - [1746] = {.lex_state = 4, .external_lex_state = 11}, - [1747] = {.lex_state = 4, .external_lex_state = 11}, - [1748] = {.lex_state = 4, .external_lex_state = 11}, - [1749] = {.lex_state = 4, .external_lex_state = 11}, - [1750] = {.lex_state = 4, .external_lex_state = 11}, - [1751] = {.lex_state = 4, .external_lex_state = 11}, - [1752] = {.lex_state = 4, .external_lex_state = 11}, - [1753] = {.lex_state = 4, .external_lex_state = 11}, - [1754] = {.lex_state = 4, .external_lex_state = 11}, - [1755] = {.lex_state = 4, .external_lex_state = 11}, - [1756] = {.lex_state = 4, .external_lex_state = 11}, - [1757] = {.lex_state = 4, .external_lex_state = 11}, - [1758] = {.lex_state = 4, .external_lex_state = 11}, + [1746] = {.lex_state = 4, .external_lex_state = 26}, + [1747] = {.lex_state = 4, .external_lex_state = 26}, + [1748] = {.lex_state = 4, .external_lex_state = 26}, + [1749] = {.lex_state = 4, .external_lex_state = 26}, + [1750] = {.lex_state = 4, .external_lex_state = 26}, + [1751] = {.lex_state = 4, .external_lex_state = 26}, + [1752] = {.lex_state = 4, .external_lex_state = 26}, + [1753] = {.lex_state = 4, .external_lex_state = 26}, + [1754] = {.lex_state = 4, .external_lex_state = 26}, + [1755] = {.lex_state = 4, .external_lex_state = 26}, + [1756] = {.lex_state = 4, .external_lex_state = 26}, + [1757] = {.lex_state = 4, .external_lex_state = 26}, + [1758] = {.lex_state = 4, .external_lex_state = 26}, [1759] = {.lex_state = 4, .external_lex_state = 26}, [1760] = {.lex_state = 4, .external_lex_state = 26}, - [1761] = {.lex_state = 4, .external_lex_state = 22}, + [1761] = {.lex_state = 4, .external_lex_state = 26}, [1762] = {.lex_state = 4, .external_lex_state = 26}, - [1763] = {.lex_state = 4, .external_lex_state = 11}, - [1764] = {.lex_state = 4, .external_lex_state = 11}, - [1765] = {.lex_state = 4, .external_lex_state = 11}, - [1766] = {.lex_state = 4, .external_lex_state = 11}, - [1767] = {.lex_state = 4, .external_lex_state = 11}, - [1768] = {.lex_state = 4, .external_lex_state = 11}, - [1769] = {.lex_state = 4, .external_lex_state = 26}, - [1770] = {.lex_state = 4, .external_lex_state = 26}, - [1771] = {.lex_state = 4, .external_lex_state = 26}, + [1763] = {.lex_state = 4, .external_lex_state = 26}, + [1764] = {.lex_state = 4, .external_lex_state = 27}, + [1765] = {.lex_state = 4, .external_lex_state = 15}, + [1766] = {.lex_state = 4, .external_lex_state = 15}, + [1767] = {.lex_state = 4, .external_lex_state = 15}, + [1768] = {.lex_state = 4, .external_lex_state = 27}, + [1769] = {.lex_state = 4, .external_lex_state = 27}, + [1770] = {.lex_state = 4, .external_lex_state = 27}, + [1771] = {.lex_state = 4, .external_lex_state = 27}, [1772] = {.lex_state = 4, .external_lex_state = 26}, [1773] = {.lex_state = 4, .external_lex_state = 26}, - [1774] = {.lex_state = 4, .external_lex_state = 26}, - [1775] = {.lex_state = 4, .external_lex_state = 26}, - [1776] = {.lex_state = 4, .external_lex_state = 26}, - [1777] = {.lex_state = 4, .external_lex_state = 26}, - [1778] = {.lex_state = 4, .external_lex_state = 26}, - [1779] = {.lex_state = 4, .external_lex_state = 26}, - [1780] = {.lex_state = 4, .external_lex_state = 26}, - [1781] = {.lex_state = 4, .external_lex_state = 26}, - [1782] = {.lex_state = 4, .external_lex_state = 26}, - [1783] = {.lex_state = 4, .external_lex_state = 26}, + [1774] = {.lex_state = 4, .external_lex_state = 27}, + [1775] = {.lex_state = 4, .external_lex_state = 27}, + [1776] = {.lex_state = 4, .external_lex_state = 15}, + [1777] = {.lex_state = 4, .external_lex_state = 27}, + [1778] = {.lex_state = 4, .external_lex_state = 27}, + [1779] = {.lex_state = 4, .external_lex_state = 27}, + [1780] = {.lex_state = 4, .external_lex_state = 27}, + [1781] = {.lex_state = 4, .external_lex_state = 27}, + [1782] = {.lex_state = 4, .external_lex_state = 27}, + [1783] = {.lex_state = 4, .external_lex_state = 27}, [1784] = {.lex_state = 4, .external_lex_state = 27}, - [1785] = {.lex_state = 4, .external_lex_state = 15}, - [1786] = {.lex_state = 2, .external_lex_state = 31}, - [1787] = {.lex_state = 4, .external_lex_state = 22}, - [1788] = {.lex_state = 4, .external_lex_state = 22}, - [1789] = {.lex_state = 4, .external_lex_state = 24}, + [1785] = {.lex_state = 4, .external_lex_state = 27}, + [1786] = {.lex_state = 4, .external_lex_state = 27}, + [1787] = {.lex_state = 4, .external_lex_state = 27}, + [1788] = {.lex_state = 4, .external_lex_state = 27}, + [1789] = {.lex_state = 4, .external_lex_state = 27}, [1790] = {.lex_state = 4, .external_lex_state = 27}, [1791] = {.lex_state = 4, .external_lex_state = 27}, [1792] = {.lex_state = 4, .external_lex_state = 27}, [1793] = {.lex_state = 4, .external_lex_state = 27}, - [1794] = {.lex_state = 4, .external_lex_state = 24}, - [1795] = {.lex_state = 4, .external_lex_state = 24}, - [1796] = {.lex_state = 4, .external_lex_state = 26}, - [1797] = {.lex_state = 4, .external_lex_state = 15}, + [1794] = {.lex_state = 4, .external_lex_state = 26}, + [1795] = {.lex_state = 4, .external_lex_state = 26}, + [1796] = {.lex_state = 4, .external_lex_state = 19}, + [1797] = {.lex_state = 4, .external_lex_state = 26}, [1798] = {.lex_state = 4, .external_lex_state = 26}, - [1799] = {.lex_state = 4, .external_lex_state = 24}, + [1799] = {.lex_state = 4, .external_lex_state = 27}, [1800] = {.lex_state = 4, .external_lex_state = 27}, - [1801] = {.lex_state = 4, .external_lex_state = 15}, + [1801] = {.lex_state = 4, .external_lex_state = 27}, [1802] = {.lex_state = 4, .external_lex_state = 27}, - [1803] = {.lex_state = 4, .external_lex_state = 22}, - [1804] = {.lex_state = 4, .external_lex_state = 15}, + [1803] = {.lex_state = 4, .external_lex_state = 27}, + [1804] = {.lex_state = 4, .external_lex_state = 27}, [1805] = {.lex_state = 4, .external_lex_state = 27}, - [1806] = {.lex_state = 4, .external_lex_state = 22}, - [1807] = {.lex_state = 4, .external_lex_state = 22}, + [1806] = {.lex_state = 4, .external_lex_state = 27}, + [1807] = {.lex_state = 4, .external_lex_state = 27}, [1808] = {.lex_state = 4, .external_lex_state = 27}, - [1809] = {.lex_state = 4, .external_lex_state = 24}, - [1810] = {.lex_state = 4, .external_lex_state = 15}, + [1809] = {.lex_state = 4, .external_lex_state = 27}, + [1810] = {.lex_state = 4, .external_lex_state = 27}, [1811] = {.lex_state = 4, .external_lex_state = 27}, [1812] = {.lex_state = 4, .external_lex_state = 27}, [1813] = {.lex_state = 4, .external_lex_state = 27}, @@ -17494,210 +18825,210 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1819] = {.lex_state = 4, .external_lex_state = 27}, [1820] = {.lex_state = 4, .external_lex_state = 27}, [1821] = {.lex_state = 4, .external_lex_state = 27}, - [1822] = {.lex_state = 1, .external_lex_state = 9}, - [1823] = {.lex_state = 4, .external_lex_state = 24}, + [1822] = {.lex_state = 4, .external_lex_state = 27}, + [1823] = {.lex_state = 4, .external_lex_state = 27}, [1824] = {.lex_state = 4, .external_lex_state = 27}, - [1825] = {.lex_state = 4, .external_lex_state = 22}, - [1826] = {.lex_state = 1, .external_lex_state = 9}, + [1825] = {.lex_state = 4, .external_lex_state = 27}, + [1826] = {.lex_state = 4, .external_lex_state = 27}, [1827] = {.lex_state = 4, .external_lex_state = 27}, [1828] = {.lex_state = 4, .external_lex_state = 27}, - [1829] = {.lex_state = 4, .external_lex_state = 26}, - [1830] = {.lex_state = 4, .external_lex_state = 26}, - [1831] = {.lex_state = 3, .external_lex_state = 9}, - [1832] = {.lex_state = 4, .external_lex_state = 26}, - [1833] = {.lex_state = 4, .external_lex_state = 26}, - [1834] = {.lex_state = 4, .external_lex_state = 27}, - [1835] = {.lex_state = 4, .external_lex_state = 27}, - [1836] = {.lex_state = 4, .external_lex_state = 27}, - [1837] = {.lex_state = 4, .external_lex_state = 24}, + [1829] = {.lex_state = 4, .external_lex_state = 27}, + [1830] = {.lex_state = 4, .external_lex_state = 27}, + [1831] = {.lex_state = 4, .external_lex_state = 27}, + [1832] = {.lex_state = 4, .external_lex_state = 27}, + [1833] = {.lex_state = 4, .external_lex_state = 19}, + [1834] = {.lex_state = 4, .external_lex_state = 19}, + [1835] = {.lex_state = 4, .external_lex_state = 19}, + [1836] = {.lex_state = 4, .external_lex_state = 19}, + [1837] = {.lex_state = 4, .external_lex_state = 19}, [1838] = {.lex_state = 4, .external_lex_state = 27}, [1839] = {.lex_state = 4, .external_lex_state = 27}, - [1840] = {.lex_state = 4, .external_lex_state = 15}, - [1841] = {.lex_state = 4, .external_lex_state = 27}, - [1842] = {.lex_state = 4, .external_lex_state = 27}, - [1843] = {.lex_state = 4, .external_lex_state = 22}, - [1844] = {.lex_state = 4, .external_lex_state = 27}, - [1845] = {.lex_state = 4, .external_lex_state = 27}, - [1846] = {.lex_state = 4, .external_lex_state = 24}, - [1847] = {.lex_state = 4, .external_lex_state = 27}, - [1848] = {.lex_state = 4, .external_lex_state = 27}, - [1849] = {.lex_state = 4, .external_lex_state = 27}, - [1850] = {.lex_state = 4, .external_lex_state = 27}, - [1851] = {.lex_state = 4, .external_lex_state = 22}, - [1852] = {.lex_state = 4, .external_lex_state = 27}, - [1853] = {.lex_state = 4, .external_lex_state = 27}, - [1854] = {.lex_state = 4, .external_lex_state = 22}, - [1855] = {.lex_state = 4, .external_lex_state = 27}, - [1856] = {.lex_state = 4, .external_lex_state = 27}, - [1857] = {.lex_state = 4, .external_lex_state = 27}, - [1858] = {.lex_state = 4, .external_lex_state = 27}, - [1859] = {.lex_state = 4, .external_lex_state = 15}, - [1860] = {.lex_state = 4, .external_lex_state = 15}, - [1861] = {.lex_state = 4, .external_lex_state = 15}, - [1862] = {.lex_state = 4, .external_lex_state = 27}, + [1840] = {.lex_state = 4, .external_lex_state = 19}, + [1841] = {.lex_state = 4, .external_lex_state = 15}, + [1842] = {.lex_state = 4, .external_lex_state = 19}, + [1843] = {.lex_state = 4, .external_lex_state = 15}, + [1844] = {.lex_state = 4, .external_lex_state = 15}, + [1845] = {.lex_state = 4, .external_lex_state = 19}, + [1846] = {.lex_state = 4, .external_lex_state = 15}, + [1847] = {.lex_state = 4, .external_lex_state = 15}, + [1848] = {.lex_state = 4, .external_lex_state = 19}, + [1849] = {.lex_state = 4, .external_lex_state = 15}, + [1850] = {.lex_state = 4, .external_lex_state = 15}, + [1851] = {.lex_state = 4, .external_lex_state = 19}, + [1852] = {.lex_state = 4, .external_lex_state = 19}, + [1853] = {.lex_state = 4, .external_lex_state = 19}, + [1854] = {.lex_state = 4, .external_lex_state = 19}, + [1855] = {.lex_state = 4, .external_lex_state = 19}, + [1856] = {.lex_state = 4, .external_lex_state = 19}, + [1857] = {.lex_state = 4, .external_lex_state = 19}, + [1858] = {.lex_state = 4, .external_lex_state = 19}, + [1859] = {.lex_state = 4, .external_lex_state = 19}, + [1860] = {.lex_state = 4, .external_lex_state = 19}, + [1861] = {.lex_state = 4, .external_lex_state = 19}, + [1862] = {.lex_state = 4, .external_lex_state = 19}, [1863] = {.lex_state = 4, .external_lex_state = 15}, [1864] = {.lex_state = 4, .external_lex_state = 15}, - [1865] = {.lex_state = 4, .external_lex_state = 27}, + [1865] = {.lex_state = 4, .external_lex_state = 19}, [1866] = {.lex_state = 4, .external_lex_state = 15}, [1867] = {.lex_state = 4, .external_lex_state = 15}, - [1868] = {.lex_state = 4, .external_lex_state = 27}, - [1869] = {.lex_state = 4, .external_lex_state = 27}, - [1870] = {.lex_state = 4, .external_lex_state = 15}, - [1871] = {.lex_state = 4, .external_lex_state = 15}, - [1872] = {.lex_state = 4, .external_lex_state = 27}, - [1873] = {.lex_state = 4, .external_lex_state = 15}, + [1868] = {.lex_state = 4, .external_lex_state = 19}, + [1869] = {.lex_state = 4, .external_lex_state = 19}, + [1870] = {.lex_state = 4, .external_lex_state = 27}, + [1871] = {.lex_state = 4, .external_lex_state = 27}, + [1872] = {.lex_state = 4, .external_lex_state = 25}, + [1873] = {.lex_state = 4, .external_lex_state = 27}, [1874] = {.lex_state = 4, .external_lex_state = 27}, - [1875] = {.lex_state = 4, .external_lex_state = 15}, - [1876] = {.lex_state = 4, .external_lex_state = 15}, - [1877] = {.lex_state = 4, .external_lex_state = 15}, - [1878] = {.lex_state = 4, .external_lex_state = 27}, - [1879] = {.lex_state = 4, .external_lex_state = 15}, - [1880] = {.lex_state = 4, .external_lex_state = 27}, - [1881] = {.lex_state = 4, .external_lex_state = 27}, - [1882] = {.lex_state = 4, .external_lex_state = 15}, - [1883] = {.lex_state = 4, .external_lex_state = 27}, - [1884] = {.lex_state = 4, .external_lex_state = 27}, - [1885] = {.lex_state = 4, .external_lex_state = 27}, - [1886] = {.lex_state = 4, .external_lex_state = 24}, - [1887] = {.lex_state = 3, .external_lex_state = 9}, - [1888] = {.lex_state = 4, .external_lex_state = 24}, - [1889] = {.lex_state = 4, .external_lex_state = 24}, - [1890] = {.lex_state = 4, .external_lex_state = 24}, - [1891] = {.lex_state = 4, .external_lex_state = 24}, - [1892] = {.lex_state = 4, .external_lex_state = 24}, - [1893] = {.lex_state = 4, .external_lex_state = 24}, - [1894] = {.lex_state = 3, .external_lex_state = 9}, - [1895] = {.lex_state = 3, .external_lex_state = 9}, - [1896] = {.lex_state = 3, .external_lex_state = 9}, - [1897] = {.lex_state = 3, .external_lex_state = 9}, - [1898] = {.lex_state = 4, .external_lex_state = 24}, - [1899] = {.lex_state = 4, .external_lex_state = 24}, - [1900] = {.lex_state = 4, .external_lex_state = 15}, - [1901] = {.lex_state = 4, .external_lex_state = 15}, - [1902] = {.lex_state = 4, .external_lex_state = 15}, - [1903] = {.lex_state = 4, .external_lex_state = 27}, - [1904] = {.lex_state = 4, .external_lex_state = 24}, - [1905] = {.lex_state = 4, .external_lex_state = 15}, - [1906] = {.lex_state = 4, .external_lex_state = 15}, - [1907] = {.lex_state = 4, .external_lex_state = 15}, - [1908] = {.lex_state = 4, .external_lex_state = 15}, - [1909] = {.lex_state = 4, .external_lex_state = 15}, - [1910] = {.lex_state = 4, .external_lex_state = 15}, - [1911] = {.lex_state = 4, .external_lex_state = 15}, - [1912] = {.lex_state = 4, .external_lex_state = 27}, - [1913] = {.lex_state = 4, .external_lex_state = 24}, - [1914] = {.lex_state = 3, .external_lex_state = 9}, - [1915] = {.lex_state = 4, .external_lex_state = 22}, - [1916] = {.lex_state = 4, .external_lex_state = 22}, - [1917] = {.lex_state = 3, .external_lex_state = 9}, - [1918] = {.lex_state = 4, .external_lex_state = 24}, - [1919] = {.lex_state = 4, .external_lex_state = 22}, - [1920] = {.lex_state = 3, .external_lex_state = 9}, - [1921] = {.lex_state = 4, .external_lex_state = 22}, - [1922] = {.lex_state = 4, .external_lex_state = 24}, - [1923] = {.lex_state = 3, .external_lex_state = 9}, - [1924] = {.lex_state = 4, .external_lex_state = 15}, - [1925] = {.lex_state = 4, .external_lex_state = 15}, - [1926] = {.lex_state = 4, .external_lex_state = 15}, - [1927] = {.lex_state = 4, .external_lex_state = 24}, - [1928] = {.lex_state = 4, .external_lex_state = 22}, - [1929] = {.lex_state = 4, .external_lex_state = 15}, - [1930] = {.lex_state = 4, .external_lex_state = 15}, - [1931] = {.lex_state = 4, .external_lex_state = 15}, - [1932] = {.lex_state = 3, .external_lex_state = 9}, - [1933] = {.lex_state = 1, .external_lex_state = 9}, - [1934] = {.lex_state = 3, .external_lex_state = 9}, - [1935] = {.lex_state = 3, .external_lex_state = 9}, - [1936] = {.lex_state = 3, .external_lex_state = 9}, - [1937] = {.lex_state = 3, .external_lex_state = 9}, - [1938] = {.lex_state = 3, .external_lex_state = 9}, - [1939] = {.lex_state = 3, .external_lex_state = 9}, - [1940] = {.lex_state = 3, .external_lex_state = 9}, - [1941] = {.lex_state = 3, .external_lex_state = 9}, - [1942] = {.lex_state = 3, .external_lex_state = 9}, - [1943] = {.lex_state = 1, .external_lex_state = 9}, - [1944] = {.lex_state = 4, .external_lex_state = 22}, + [1875] = {.lex_state = 4, .external_lex_state = 19}, + [1876] = {.lex_state = 4, .external_lex_state = 19}, + [1877] = {.lex_state = 4, .external_lex_state = 19}, + [1878] = {.lex_state = 4, .external_lex_state = 19}, + [1879] = {.lex_state = 4, .external_lex_state = 19}, + [1880] = {.lex_state = 4, .external_lex_state = 19}, + [1881] = {.lex_state = 4, .external_lex_state = 19}, + [1882] = {.lex_state = 4, .external_lex_state = 19}, + [1883] = {.lex_state = 4, .external_lex_state = 19}, + [1884] = {.lex_state = 4, .external_lex_state = 19}, + [1885] = {.lex_state = 4, .external_lex_state = 19}, + [1886] = {.lex_state = 4, .external_lex_state = 19}, + [1887] = {.lex_state = 4, .external_lex_state = 19}, + [1888] = {.lex_state = 4, .external_lex_state = 19}, + [1889] = {.lex_state = 4, .external_lex_state = 19}, + [1890] = {.lex_state = 4, .external_lex_state = 19}, + [1891] = {.lex_state = 4, .external_lex_state = 19}, + [1892] = {.lex_state = 4, .external_lex_state = 19}, + [1893] = {.lex_state = 4, .external_lex_state = 19}, + [1894] = {.lex_state = 4, .external_lex_state = 19}, + [1895] = {.lex_state = 4, .external_lex_state = 19}, + [1896] = {.lex_state = 4, .external_lex_state = 19}, + [1897] = {.lex_state = 4, .external_lex_state = 19}, + [1898] = {.lex_state = 4, .external_lex_state = 19}, + [1899] = {.lex_state = 4, .external_lex_state = 19}, + [1900] = {.lex_state = 4, .external_lex_state = 19}, + [1901] = {.lex_state = 4, .external_lex_state = 19}, + [1902] = {.lex_state = 4, .external_lex_state = 19}, + [1903] = {.lex_state = 4, .external_lex_state = 19}, + [1904] = {.lex_state = 4, .external_lex_state = 19}, + [1905] = {.lex_state = 4, .external_lex_state = 19}, + [1906] = {.lex_state = 4, .external_lex_state = 19}, + [1907] = {.lex_state = 4, .external_lex_state = 19}, + [1908] = {.lex_state = 4, .external_lex_state = 19}, + [1909] = {.lex_state = 4, .external_lex_state = 25}, + [1910] = {.lex_state = 4, .external_lex_state = 25}, + [1911] = {.lex_state = 4, .external_lex_state = 25}, + [1912] = {.lex_state = 4, .external_lex_state = 25}, + [1913] = {.lex_state = 4, .external_lex_state = 25}, + [1914] = {.lex_state = 4, .external_lex_state = 19}, + [1915] = {.lex_state = 4, .external_lex_state = 19}, + [1916] = {.lex_state = 4, .external_lex_state = 25}, + [1917] = {.lex_state = 4, .external_lex_state = 25}, + [1918] = {.lex_state = 4, .external_lex_state = 15}, + [1919] = {.lex_state = 4, .external_lex_state = 25}, + [1920] = {.lex_state = 4, .external_lex_state = 15}, + [1921] = {.lex_state = 4, .external_lex_state = 25}, + [1922] = {.lex_state = 4, .external_lex_state = 15}, + [1923] = {.lex_state = 4, .external_lex_state = 15}, + [1924] = {.lex_state = 4, .external_lex_state = 25}, + [1925] = {.lex_state = 4, .external_lex_state = 25}, + [1926] = {.lex_state = 4, .external_lex_state = 25}, + [1927] = {.lex_state = 4, .external_lex_state = 25}, + [1928] = {.lex_state = 4, .external_lex_state = 25}, + [1929] = {.lex_state = 4, .external_lex_state = 25}, + [1930] = {.lex_state = 4, .external_lex_state = 25}, + [1931] = {.lex_state = 4, .external_lex_state = 25}, + [1932] = {.lex_state = 4, .external_lex_state = 25}, + [1933] = {.lex_state = 4, .external_lex_state = 25}, + [1934] = {.lex_state = 4, .external_lex_state = 25}, + [1935] = {.lex_state = 4, .external_lex_state = 25}, + [1936] = {.lex_state = 4, .external_lex_state = 25}, + [1937] = {.lex_state = 4, .external_lex_state = 25}, + [1938] = {.lex_state = 4, .external_lex_state = 25}, + [1939] = {.lex_state = 4, .external_lex_state = 19}, + [1940] = {.lex_state = 4, .external_lex_state = 19}, + [1941] = {.lex_state = 4, .external_lex_state = 19}, + [1942] = {.lex_state = 4, .external_lex_state = 19}, + [1943] = {.lex_state = 4, .external_lex_state = 25}, + [1944] = {.lex_state = 4, .external_lex_state = 25}, [1945] = {.lex_state = 4, .external_lex_state = 25}, - [1946] = {.lex_state = 3, .external_lex_state = 9}, - [1947] = {.lex_state = 4, .external_lex_state = 22}, - [1948] = {.lex_state = 4, .external_lex_state = 22}, - [1949] = {.lex_state = 3, .external_lex_state = 9}, - [1950] = {.lex_state = 3, .external_lex_state = 9}, - [1951] = {.lex_state = 4, .external_lex_state = 27}, - [1952] = {.lex_state = 4, .external_lex_state = 27}, - [1953] = {.lex_state = 4, .external_lex_state = 19}, + [1946] = {.lex_state = 4, .external_lex_state = 25}, + [1947] = {.lex_state = 4, .external_lex_state = 25}, + [1948] = {.lex_state = 4, .external_lex_state = 15}, + [1949] = {.lex_state = 4, .external_lex_state = 25}, + [1950] = {.lex_state = 4, .external_lex_state = 25}, + [1951] = {.lex_state = 4, .external_lex_state = 15}, + [1952] = {.lex_state = 4, .external_lex_state = 25}, + [1953] = {.lex_state = 4, .external_lex_state = 25}, [1954] = {.lex_state = 4, .external_lex_state = 15}, - [1955] = {.lex_state = 1, .external_lex_state = 9}, - [1956] = {.lex_state = 4, .external_lex_state = 27}, - [1957] = {.lex_state = 4, .external_lex_state = 27}, - [1958] = {.lex_state = 3, .external_lex_state = 9}, - [1959] = {.lex_state = 3, .external_lex_state = 9}, - [1960] = {.lex_state = 3, .external_lex_state = 9}, - [1961] = {.lex_state = 4, .external_lex_state = 22}, - [1962] = {.lex_state = 3, .external_lex_state = 9}, - [1963] = {.lex_state = 3, .external_lex_state = 9}, - [1964] = {.lex_state = 4, .external_lex_state = 24}, - [1965] = {.lex_state = 3, .external_lex_state = 9}, - [1966] = {.lex_state = 3, .external_lex_state = 9}, - [1967] = {.lex_state = 4, .external_lex_state = 24}, - [1968] = {.lex_state = 3, .external_lex_state = 9}, - [1969] = {.lex_state = 3, .external_lex_state = 9}, - [1970] = {.lex_state = 4, .external_lex_state = 24}, - [1971] = {.lex_state = 3, .external_lex_state = 9}, - [1972] = {.lex_state = 3, .external_lex_state = 9}, - [1973] = {.lex_state = 1, .external_lex_state = 9}, - [1974] = {.lex_state = 1, .external_lex_state = 9}, - [1975] = {.lex_state = 1, .external_lex_state = 9}, - [1976] = {.lex_state = 1, .external_lex_state = 9}, - [1977] = {.lex_state = 3, .external_lex_state = 9}, - [1978] = {.lex_state = 3, .external_lex_state = 9}, - [1979] = {.lex_state = 4, .external_lex_state = 22}, - [1980] = {.lex_state = 3, .external_lex_state = 9}, - [1981] = {.lex_state = 3, .external_lex_state = 9}, - [1982] = {.lex_state = 4, .external_lex_state = 24}, - [1983] = {.lex_state = 3, .external_lex_state = 9}, - [1984] = {.lex_state = 3, .external_lex_state = 9}, - [1985] = {.lex_state = 3, .external_lex_state = 9}, - [1986] = {.lex_state = 3, .external_lex_state = 9}, - [1987] = {.lex_state = 3, .external_lex_state = 9}, - [1988] = {.lex_state = 3, .external_lex_state = 9}, - [1989] = {.lex_state = 3, .external_lex_state = 9}, - [1990] = {.lex_state = 3, .external_lex_state = 9}, - [1991] = {.lex_state = 3, .external_lex_state = 9}, - [1992] = {.lex_state = 4, .external_lex_state = 15}, - [1993] = {.lex_state = 3, .external_lex_state = 9}, - [1994] = {.lex_state = 3, .external_lex_state = 9}, - [1995] = {.lex_state = 4, .external_lex_state = 15}, - [1996] = {.lex_state = 4, .external_lex_state = 15}, - [1997] = {.lex_state = 4, .external_lex_state = 15}, - [1998] = {.lex_state = 3, .external_lex_state = 9}, - [1999] = {.lex_state = 3, .external_lex_state = 9}, - [2000] = {.lex_state = 4, .external_lex_state = 15}, - [2001] = {.lex_state = 3, .external_lex_state = 9}, - [2002] = {.lex_state = 3, .external_lex_state = 9}, - [2003] = {.lex_state = 4, .external_lex_state = 15}, - [2004] = {.lex_state = 3, .external_lex_state = 9}, - [2005] = {.lex_state = 4, .external_lex_state = 19}, - [2006] = {.lex_state = 4, .external_lex_state = 24}, - [2007] = {.lex_state = 4, .external_lex_state = 22}, - [2008] = {.lex_state = 4, .external_lex_state = 24}, - [2009] = {.lex_state = 4, .external_lex_state = 24}, - [2010] = {.lex_state = 4, .external_lex_state = 22}, - [2011] = {.lex_state = 1, .external_lex_state = 9}, - [2012] = {.lex_state = 4, .external_lex_state = 19}, - [2013] = {.lex_state = 4, .external_lex_state = 19}, - [2014] = {.lex_state = 1, .external_lex_state = 9}, - [2015] = {.lex_state = 4, .external_lex_state = 19}, - [2016] = {.lex_state = 4, .external_lex_state = 19}, + [1955] = {.lex_state = 4, .external_lex_state = 25}, + [1956] = {.lex_state = 4, .external_lex_state = 25}, + [1957] = {.lex_state = 4, .external_lex_state = 25}, + [1958] = {.lex_state = 4, .external_lex_state = 25}, + [1959] = {.lex_state = 4, .external_lex_state = 25}, + [1960] = {.lex_state = 4, .external_lex_state = 25}, + [1961] = {.lex_state = 4, .external_lex_state = 25}, + [1962] = {.lex_state = 4, .external_lex_state = 25}, + [1963] = {.lex_state = 4, .external_lex_state = 25}, + [1964] = {.lex_state = 4, .external_lex_state = 25}, + [1965] = {.lex_state = 4, .external_lex_state = 25}, + [1966] = {.lex_state = 4, .external_lex_state = 25}, + [1967] = {.lex_state = 4, .external_lex_state = 25}, + [1968] = {.lex_state = 4, .external_lex_state = 25}, + [1969] = {.lex_state = 4, .external_lex_state = 25}, + [1970] = {.lex_state = 4, .external_lex_state = 25}, + [1971] = {.lex_state = 4, .external_lex_state = 25}, + [1972] = {.lex_state = 4, .external_lex_state = 25}, + [1973] = {.lex_state = 4, .external_lex_state = 25}, + [1974] = {.lex_state = 4, .external_lex_state = 25}, + [1975] = {.lex_state = 4, .external_lex_state = 25}, + [1976] = {.lex_state = 4, .external_lex_state = 25}, + [1977] = {.lex_state = 4, .external_lex_state = 25}, + [1978] = {.lex_state = 4, .external_lex_state = 25}, + [1979] = {.lex_state = 4, .external_lex_state = 25}, + [1980] = {.lex_state = 4, .external_lex_state = 25}, + [1981] = {.lex_state = 1, .external_lex_state = 9}, + [1982] = {.lex_state = 4, .external_lex_state = 25}, + [1983] = {.lex_state = 4, .external_lex_state = 25}, + [1984] = {.lex_state = 4, .external_lex_state = 25}, + [1985] = {.lex_state = 4, .external_lex_state = 25}, + [1986] = {.lex_state = 1, .external_lex_state = 9}, + [1987] = {.lex_state = 1, .external_lex_state = 9}, + [1988] = {.lex_state = 1, .external_lex_state = 9}, + [1989] = {.lex_state = 1, .external_lex_state = 9}, + [1990] = {.lex_state = 4, .external_lex_state = 13}, + [1991] = {.lex_state = 4, .external_lex_state = 13}, + [1992] = {.lex_state = 4, .external_lex_state = 13}, + [1993] = {.lex_state = 4, .external_lex_state = 13}, + [1994] = {.lex_state = 4, .external_lex_state = 13}, + [1995] = {.lex_state = 4, .external_lex_state = 13}, + [1996] = {.lex_state = 4, .external_lex_state = 13}, + [1997] = {.lex_state = 4, .external_lex_state = 13}, + [1998] = {.lex_state = 4, .external_lex_state = 13}, + [1999] = {.lex_state = 4, .external_lex_state = 13}, + [2000] = {.lex_state = 4, .external_lex_state = 13}, + [2001] = {.lex_state = 4, .external_lex_state = 13}, + [2002] = {.lex_state = 4, .external_lex_state = 13}, + [2003] = {.lex_state = 4, .external_lex_state = 13}, + [2004] = {.lex_state = 4, .external_lex_state = 13}, + [2005] = {.lex_state = 4, .external_lex_state = 13}, + [2006] = {.lex_state = 4, .external_lex_state = 13}, + [2007] = {.lex_state = 4, .external_lex_state = 13}, + [2008] = {.lex_state = 4, .external_lex_state = 13}, + [2009] = {.lex_state = 4, .external_lex_state = 13}, + [2010] = {.lex_state = 4, .external_lex_state = 13}, + [2011] = {.lex_state = 4, .external_lex_state = 13}, + [2012] = {.lex_state = 4, .external_lex_state = 13}, + [2013] = {.lex_state = 4, .external_lex_state = 13}, + [2014] = {.lex_state = 4, .external_lex_state = 13}, + [2015] = {.lex_state = 4, .external_lex_state = 15}, + [2016] = {.lex_state = 1, .external_lex_state = 9}, [2017] = {.lex_state = 1, .external_lex_state = 9}, - [2018] = {.lex_state = 4, .external_lex_state = 24}, - [2019] = {.lex_state = 4, .external_lex_state = 24}, + [2018] = {.lex_state = 1, .external_lex_state = 9}, + [2019] = {.lex_state = 1, .external_lex_state = 9}, [2020] = {.lex_state = 1, .external_lex_state = 9}, - [2021] = {.lex_state = 3, .external_lex_state = 9}, + [2021] = {.lex_state = 1, .external_lex_state = 9}, [2022] = {.lex_state = 1, .external_lex_state = 9}, [2023] = {.lex_state = 1, .external_lex_state = 9}, - [2024] = {.lex_state = 3, .external_lex_state = 9}, - [2025] = {.lex_state = 4, .external_lex_state = 22}, + [2024] = {.lex_state = 1, .external_lex_state = 9}, + [2025] = {.lex_state = 1, .external_lex_state = 9}, [2026] = {.lex_state = 1, .external_lex_state = 9}, [2027] = {.lex_state = 1, .external_lex_state = 9}, [2028] = {.lex_state = 1, .external_lex_state = 9}, @@ -17707,1975 +19038,2132 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2032] = {.lex_state = 1, .external_lex_state = 9}, [2033] = {.lex_state = 1, .external_lex_state = 9}, [2034] = {.lex_state = 1, .external_lex_state = 9}, - [2035] = {.lex_state = 4, .external_lex_state = 19}, - [2036] = {.lex_state = 4, .external_lex_state = 24}, - [2037] = {.lex_state = 1, .external_lex_state = 9}, - [2038] = {.lex_state = 4, .external_lex_state = 24}, - [2039] = {.lex_state = 4, .external_lex_state = 19}, + [2035] = {.lex_state = 4, .external_lex_state = 20}, + [2036] = {.lex_state = 4, .external_lex_state = 15}, + [2037] = {.lex_state = 4, .external_lex_state = 15}, + [2038] = {.lex_state = 1, .external_lex_state = 9}, + [2039] = {.lex_state = 1, .external_lex_state = 9}, [2040] = {.lex_state = 1, .external_lex_state = 9}, [2041] = {.lex_state = 1, .external_lex_state = 9}, - [2042] = {.lex_state = 4, .external_lex_state = 24}, - [2043] = {.lex_state = 4, .external_lex_state = 24}, - [2044] = {.lex_state = 4, .external_lex_state = 19}, - [2045] = {.lex_state = 4, .external_lex_state = 22}, - [2046] = {.lex_state = 4, .external_lex_state = 24}, - [2047] = {.lex_state = 4, .external_lex_state = 22}, - [2048] = {.lex_state = 4, .external_lex_state = 19}, - [2049] = {.lex_state = 4, .external_lex_state = 24}, - [2050] = {.lex_state = 4, .external_lex_state = 22}, - [2051] = {.lex_state = 4, .external_lex_state = 19}, - [2052] = {.lex_state = 4, .external_lex_state = 19}, - [2053] = {.lex_state = 4, .external_lex_state = 19}, - [2054] = {.lex_state = 4, .external_lex_state = 15}, - [2055] = {.lex_state = 4, .external_lex_state = 15}, - [2056] = {.lex_state = 4, .external_lex_state = 19}, + [2042] = {.lex_state = 1, .external_lex_state = 9}, + [2043] = {.lex_state = 1, .external_lex_state = 9}, + [2044] = {.lex_state = 1, .external_lex_state = 9}, + [2045] = {.lex_state = 1, .external_lex_state = 9}, + [2046] = {.lex_state = 1, .external_lex_state = 9}, + [2047] = {.lex_state = 1, .external_lex_state = 9}, + [2048] = {.lex_state = 1, .external_lex_state = 9}, + [2049] = {.lex_state = 1, .external_lex_state = 9}, + [2050] = {.lex_state = 1, .external_lex_state = 9}, + [2051] = {.lex_state = 1, .external_lex_state = 9}, + [2052] = {.lex_state = 1, .external_lex_state = 9}, + [2053] = {.lex_state = 1, .external_lex_state = 9}, + [2054] = {.lex_state = 1, .external_lex_state = 9}, + [2055] = {.lex_state = 1, .external_lex_state = 9}, + [2056] = {.lex_state = 1, .external_lex_state = 9}, [2057] = {.lex_state = 1, .external_lex_state = 9}, [2058] = {.lex_state = 1, .external_lex_state = 9}, [2059] = {.lex_state = 1, .external_lex_state = 9}, - [2060] = {.lex_state = 4, .external_lex_state = 19}, + [2060] = {.lex_state = 1, .external_lex_state = 9}, [2061] = {.lex_state = 1, .external_lex_state = 9}, [2062] = {.lex_state = 1, .external_lex_state = 9}, - [2063] = {.lex_state = 4, .external_lex_state = 19}, + [2063] = {.lex_state = 1, .external_lex_state = 9}, [2064] = {.lex_state = 1, .external_lex_state = 9}, [2065] = {.lex_state = 1, .external_lex_state = 9}, - [2066] = {.lex_state = 4, .external_lex_state = 19}, + [2066] = {.lex_state = 1, .external_lex_state = 9}, [2067] = {.lex_state = 1, .external_lex_state = 9}, [2068] = {.lex_state = 1, .external_lex_state = 9}, - [2069] = {.lex_state = 4, .external_lex_state = 19}, + [2069] = {.lex_state = 1, .external_lex_state = 9}, [2070] = {.lex_state = 1, .external_lex_state = 9}, - [2071] = {.lex_state = 4, .external_lex_state = 19}, - [2072] = {.lex_state = 1, .external_lex_state = 9}, - [2073] = {.lex_state = 1, .external_lex_state = 9}, - [2074] = {.lex_state = 1, .external_lex_state = 9}, - [2075] = {.lex_state = 4, .external_lex_state = 19}, - [2076] = {.lex_state = 1, .external_lex_state = 9}, + [2071] = {.lex_state = 1, .external_lex_state = 9}, + [2072] = {.lex_state = 4, .external_lex_state = 20}, + [2073] = {.lex_state = 4, .external_lex_state = 20}, + [2074] = {.lex_state = 4, .external_lex_state = 20}, + [2075] = {.lex_state = 4, .external_lex_state = 20}, + [2076] = {.lex_state = 4, .external_lex_state = 20}, [2077] = {.lex_state = 1, .external_lex_state = 9}, - [2078] = {.lex_state = 4, .external_lex_state = 19}, - [2079] = {.lex_state = 4, .external_lex_state = 24}, - [2080] = {.lex_state = 4, .external_lex_state = 24}, - [2081] = {.lex_state = 4, .external_lex_state = 19}, - [2082] = {.lex_state = 4, .external_lex_state = 24}, - [2083] = {.lex_state = 4, .external_lex_state = 24}, - [2084] = {.lex_state = 4, .external_lex_state = 19}, - [2085] = {.lex_state = 4, .external_lex_state = 19}, - [2086] = {.lex_state = 3, .external_lex_state = 9}, - [2087] = {.lex_state = 3, .external_lex_state = 9}, + [2078] = {.lex_state = 1, .external_lex_state = 9}, + [2079] = {.lex_state = 4, .external_lex_state = 20}, + [2080] = {.lex_state = 4, .external_lex_state = 15}, + [2081] = {.lex_state = 4, .external_lex_state = 20}, + [2082] = {.lex_state = 4, .external_lex_state = 20}, + [2083] = {.lex_state = 4, .external_lex_state = 20}, + [2084] = {.lex_state = 4, .external_lex_state = 20}, + [2085] = {.lex_state = 4, .external_lex_state = 20}, + [2086] = {.lex_state = 4, .external_lex_state = 20}, + [2087] = {.lex_state = 4, .external_lex_state = 20}, [2088] = {.lex_state = 4, .external_lex_state = 20}, - [2089] = {.lex_state = 3, .external_lex_state = 9}, - [2090] = {.lex_state = 3, .external_lex_state = 9}, - [2091] = {.lex_state = 4, .external_lex_state = 19}, - [2092] = {.lex_state = 4, .external_lex_state = 19}, - [2093] = {.lex_state = 4, .external_lex_state = 19}, - [2094] = {.lex_state = 4, .external_lex_state = 24}, - [2095] = {.lex_state = 4, .external_lex_state = 19}, - [2096] = {.lex_state = 4, .external_lex_state = 19}, - [2097] = {.lex_state = 4, .external_lex_state = 24}, - [2098] = {.lex_state = 4, .external_lex_state = 19}, - [2099] = {.lex_state = 4, .external_lex_state = 19}, - [2100] = {.lex_state = 4, .external_lex_state = 24}, - [2101] = {.lex_state = 4, .external_lex_state = 19}, + [2089] = {.lex_state = 4, .external_lex_state = 20}, + [2090] = {.lex_state = 4, .external_lex_state = 20}, + [2091] = {.lex_state = 4, .external_lex_state = 20}, + [2092] = {.lex_state = 4, .external_lex_state = 20}, + [2093] = {.lex_state = 4, .external_lex_state = 20}, + [2094] = {.lex_state = 4, .external_lex_state = 20}, + [2095] = {.lex_state = 4, .external_lex_state = 20}, + [2096] = {.lex_state = 4, .external_lex_state = 20}, + [2097] = {.lex_state = 4, .external_lex_state = 20}, + [2098] = {.lex_state = 4, .external_lex_state = 20}, + [2099] = {.lex_state = 1, .external_lex_state = 9}, + [2100] = {.lex_state = 1, .external_lex_state = 9}, + [2101] = {.lex_state = 4, .external_lex_state = 21}, [2102] = {.lex_state = 1, .external_lex_state = 9}, [2103] = {.lex_state = 1, .external_lex_state = 9}, - [2104] = {.lex_state = 1, .external_lex_state = 9}, - [2105] = {.lex_state = 1, .external_lex_state = 9}, - [2106] = {.lex_state = 4, .external_lex_state = 19}, - [2107] = {.lex_state = 1, .external_lex_state = 9}, - [2108] = {.lex_state = 1, .external_lex_state = 9}, - [2109] = {.lex_state = 1, .external_lex_state = 9}, - [2110] = {.lex_state = 1, .external_lex_state = 9}, - [2111] = {.lex_state = 1, .external_lex_state = 9}, - [2112] = {.lex_state = 1, .external_lex_state = 9}, - [2113] = {.lex_state = 4, .external_lex_state = 24}, - [2114] = {.lex_state = 4, .external_lex_state = 19}, - [2115] = {.lex_state = 4, .external_lex_state = 19}, - [2116] = {.lex_state = 4, .external_lex_state = 19}, - [2117] = {.lex_state = 4, .external_lex_state = 19}, - [2118] = {.lex_state = 4, .external_lex_state = 24}, - [2119] = {.lex_state = 4, .external_lex_state = 19}, - [2120] = {.lex_state = 4, .external_lex_state = 19}, - [2121] = {.lex_state = 4, .external_lex_state = 24}, - [2122] = {.lex_state = 4, .external_lex_state = 19}, - [2123] = {.lex_state = 4, .external_lex_state = 19}, - [2124] = {.lex_state = 4, .external_lex_state = 15}, - [2125] = {.lex_state = 4, .external_lex_state = 19}, - [2126] = {.lex_state = 4, .external_lex_state = 19}, - [2127] = {.lex_state = 4, .external_lex_state = 19}, - [2128] = {.lex_state = 4, .external_lex_state = 19}, - [2129] = {.lex_state = 4, .external_lex_state = 19}, - [2130] = {.lex_state = 4, .external_lex_state = 19}, - [2131] = {.lex_state = 4, .external_lex_state = 19}, - [2132] = {.lex_state = 4, .external_lex_state = 19}, - [2133] = {.lex_state = 4, .external_lex_state = 19}, - [2134] = {.lex_state = 4, .external_lex_state = 19}, - [2135] = {.lex_state = 4, .external_lex_state = 19}, - [2136] = {.lex_state = 4, .external_lex_state = 19}, - [2137] = {.lex_state = 4, .external_lex_state = 19}, - [2138] = {.lex_state = 4, .external_lex_state = 19}, - [2139] = {.lex_state = 4, .external_lex_state = 20}, - [2140] = {.lex_state = 4, .external_lex_state = 24}, - [2141] = {.lex_state = 4, .external_lex_state = 24}, - [2142] = {.lex_state = 4, .external_lex_state = 24}, - [2143] = {.lex_state = 4, .external_lex_state = 24}, - [2144] = {.lex_state = 4, .external_lex_state = 24}, + [2104] = {.lex_state = 4, .external_lex_state = 20}, + [2105] = {.lex_state = 4, .external_lex_state = 20}, + [2106] = {.lex_state = 4, .external_lex_state = 20}, + [2107] = {.lex_state = 4, .external_lex_state = 20}, + [2108] = {.lex_state = 4, .external_lex_state = 20}, + [2109] = {.lex_state = 4, .external_lex_state = 20}, + [2110] = {.lex_state = 4, .external_lex_state = 20}, + [2111] = {.lex_state = 4, .external_lex_state = 20}, + [2112] = {.lex_state = 4, .external_lex_state = 20}, + [2113] = {.lex_state = 4, .external_lex_state = 20}, + [2114] = {.lex_state = 4, .external_lex_state = 20}, + [2115] = {.lex_state = 4, .external_lex_state = 20}, + [2116] = {.lex_state = 4, .external_lex_state = 20}, + [2117] = {.lex_state = 4, .external_lex_state = 20}, + [2118] = {.lex_state = 4, .external_lex_state = 20}, + [2119] = {.lex_state = 4, .external_lex_state = 20}, + [2120] = {.lex_state = 4, .external_lex_state = 20}, + [2121] = {.lex_state = 4, .external_lex_state = 20}, + [2122] = {.lex_state = 4, .external_lex_state = 20}, + [2123] = {.lex_state = 4, .external_lex_state = 20}, + [2124] = {.lex_state = 4, .external_lex_state = 20}, + [2125] = {.lex_state = 4, .external_lex_state = 20}, + [2126] = {.lex_state = 4, .external_lex_state = 20}, + [2127] = {.lex_state = 4, .external_lex_state = 20}, + [2128] = {.lex_state = 4, .external_lex_state = 20}, + [2129] = {.lex_state = 4, .external_lex_state = 20}, + [2130] = {.lex_state = 4, .external_lex_state = 20}, + [2131] = {.lex_state = 4, .external_lex_state = 20}, + [2132] = {.lex_state = 4, .external_lex_state = 20}, + [2133] = {.lex_state = 4, .external_lex_state = 20}, + [2134] = {.lex_state = 4, .external_lex_state = 20}, + [2135] = {.lex_state = 4, .external_lex_state = 20}, + [2136] = {.lex_state = 4, .external_lex_state = 20}, + [2137] = {.lex_state = 4, .external_lex_state = 20}, + [2138] = {.lex_state = 2, .external_lex_state = 31}, + [2139] = {.lex_state = 4, .external_lex_state = 21}, + [2140] = {.lex_state = 4, .external_lex_state = 21}, + [2141] = {.lex_state = 4, .external_lex_state = 21}, + [2142] = {.lex_state = 4, .external_lex_state = 21}, + [2143] = {.lex_state = 4, .external_lex_state = 21}, + [2144] = {.lex_state = 4, .external_lex_state = 20}, [2145] = {.lex_state = 4, .external_lex_state = 20}, - [2146] = {.lex_state = 4, .external_lex_state = 20}, - [2147] = {.lex_state = 4, .external_lex_state = 20}, - [2148] = {.lex_state = 4, .external_lex_state = 20}, - [2149] = {.lex_state = 4, .external_lex_state = 24}, - [2150] = {.lex_state = 4, .external_lex_state = 15}, - [2151] = {.lex_state = 4, .external_lex_state = 25}, - [2152] = {.lex_state = 4, .external_lex_state = 19}, - [2153] = {.lex_state = 4, .external_lex_state = 22}, - [2154] = {.lex_state = 4, .external_lex_state = 19}, - [2155] = {.lex_state = 4, .external_lex_state = 22}, - [2156] = {.lex_state = 4, .external_lex_state = 20}, - [2157] = {.lex_state = 4, .external_lex_state = 22}, - [2158] = {.lex_state = 4, .external_lex_state = 22}, - [2159] = {.lex_state = 4, .external_lex_state = 20}, - [2160] = {.lex_state = 1, .external_lex_state = 9}, - [2161] = {.lex_state = 4, .external_lex_state = 25}, - [2162] = {.lex_state = 4, .external_lex_state = 20}, - [2163] = {.lex_state = 4, .external_lex_state = 25}, - [2164] = {.lex_state = 4, .external_lex_state = 25}, + [2146] = {.lex_state = 4, .external_lex_state = 21}, + [2147] = {.lex_state = 4, .external_lex_state = 21}, + [2148] = {.lex_state = 4, .external_lex_state = 21}, + [2149] = {.lex_state = 4, .external_lex_state = 21}, + [2150] = {.lex_state = 4, .external_lex_state = 21}, + [2151] = {.lex_state = 4, .external_lex_state = 21}, + [2152] = {.lex_state = 4, .external_lex_state = 21}, + [2153] = {.lex_state = 4, .external_lex_state = 21}, + [2154] = {.lex_state = 4, .external_lex_state = 21}, + [2155] = {.lex_state = 4, .external_lex_state = 21}, + [2156] = {.lex_state = 4, .external_lex_state = 21}, + [2157] = {.lex_state = 4, .external_lex_state = 21}, + [2158] = {.lex_state = 4, .external_lex_state = 21}, + [2159] = {.lex_state = 4, .external_lex_state = 21}, + [2160] = {.lex_state = 4, .external_lex_state = 21}, + [2161] = {.lex_state = 4, .external_lex_state = 21}, + [2162] = {.lex_state = 4, .external_lex_state = 21}, + [2163] = {.lex_state = 4, .external_lex_state = 21}, + [2164] = {.lex_state = 4, .external_lex_state = 21}, [2165] = {.lex_state = 4, .external_lex_state = 20}, - [2166] = {.lex_state = 4, .external_lex_state = 25}, - [2167] = {.lex_state = 1, .external_lex_state = 9}, + [2166] = {.lex_state = 4, .external_lex_state = 20}, + [2167] = {.lex_state = 4, .external_lex_state = 22}, [2168] = {.lex_state = 4, .external_lex_state = 20}, [2169] = {.lex_state = 4, .external_lex_state = 20}, - [2170] = {.lex_state = 4, .external_lex_state = 20}, - [2171] = {.lex_state = 4, .external_lex_state = 20}, - [2172] = {.lex_state = 4, .external_lex_state = 20}, - [2173] = {.lex_state = 4, .external_lex_state = 20}, - [2174] = {.lex_state = 4, .external_lex_state = 20}, - [2175] = {.lex_state = 4, .external_lex_state = 20}, - [2176] = {.lex_state = 4, .external_lex_state = 20}, - [2177] = {.lex_state = 4, .external_lex_state = 15}, - [2178] = {.lex_state = 4, .external_lex_state = 20}, - [2179] = {.lex_state = 4, .external_lex_state = 20}, - [2180] = {.lex_state = 4, .external_lex_state = 24}, - [2181] = {.lex_state = 4, .external_lex_state = 24}, - [2182] = {.lex_state = 4, .external_lex_state = 20}, - [2183] = {.lex_state = 4, .external_lex_state = 15}, - [2184] = {.lex_state = 4, .external_lex_state = 24}, - [2185] = {.lex_state = 4, .external_lex_state = 20}, - [2186] = {.lex_state = 4, .external_lex_state = 20}, - [2187] = {.lex_state = 4, .external_lex_state = 19}, - [2188] = {.lex_state = 4, .external_lex_state = 19}, + [2170] = {.lex_state = 4, .external_lex_state = 21}, + [2171] = {.lex_state = 4, .external_lex_state = 21}, + [2172] = {.lex_state = 4, .external_lex_state = 21}, + [2173] = {.lex_state = 4, .external_lex_state = 21}, + [2174] = {.lex_state = 4, .external_lex_state = 21}, + [2175] = {.lex_state = 4, .external_lex_state = 15}, + [2176] = {.lex_state = 4, .external_lex_state = 21}, + [2177] = {.lex_state = 4, .external_lex_state = 21}, + [2178] = {.lex_state = 4, .external_lex_state = 15}, + [2179] = {.lex_state = 4, .external_lex_state = 21}, + [2180] = {.lex_state = 4, .external_lex_state = 21}, + [2181] = {.lex_state = 4, .external_lex_state = 21}, + [2182] = {.lex_state = 4, .external_lex_state = 21}, + [2183] = {.lex_state = 4, .external_lex_state = 21}, + [2184] = {.lex_state = 4, .external_lex_state = 21}, + [2185] = {.lex_state = 4, .external_lex_state = 21}, + [2186] = {.lex_state = 4, .external_lex_state = 21}, + [2187] = {.lex_state = 4, .external_lex_state = 21}, + [2188] = {.lex_state = 4, .external_lex_state = 15}, [2189] = {.lex_state = 4, .external_lex_state = 21}, - [2190] = {.lex_state = 4, .external_lex_state = 15}, - [2191] = {.lex_state = 4, .external_lex_state = 19}, - [2192] = {.lex_state = 4, .external_lex_state = 19}, - [2193] = {.lex_state = 4, .external_lex_state = 20}, - [2194] = {.lex_state = 4, .external_lex_state = 20}, - [2195] = {.lex_state = 4, .external_lex_state = 20}, - [2196] = {.lex_state = 4, .external_lex_state = 25}, - [2197] = {.lex_state = 4, .external_lex_state = 20}, - [2198] = {.lex_state = 4, .external_lex_state = 20}, - [2199] = {.lex_state = 1, .external_lex_state = 9}, - [2200] = {.lex_state = 4, .external_lex_state = 20}, - [2201] = {.lex_state = 4, .external_lex_state = 20}, - [2202] = {.lex_state = 1, .external_lex_state = 9}, - [2203] = {.lex_state = 4, .external_lex_state = 20}, - [2204] = {.lex_state = 1, .external_lex_state = 9}, - [2205] = {.lex_state = 4, .external_lex_state = 20}, - [2206] = {.lex_state = 4, .external_lex_state = 25}, - [2207] = {.lex_state = 4, .external_lex_state = 20}, - [2208] = {.lex_state = 4, .external_lex_state = 20}, - [2209] = {.lex_state = 4, .external_lex_state = 20}, - [2210] = {.lex_state = 4, .external_lex_state = 20}, + [2190] = {.lex_state = 4, .external_lex_state = 21}, + [2191] = {.lex_state = 4, .external_lex_state = 21}, + [2192] = {.lex_state = 4, .external_lex_state = 21}, + [2193] = {.lex_state = 4, .external_lex_state = 21}, + [2194] = {.lex_state = 4, .external_lex_state = 21}, + [2195] = {.lex_state = 4, .external_lex_state = 21}, + [2196] = {.lex_state = 4, .external_lex_state = 21}, + [2197] = {.lex_state = 4, .external_lex_state = 21}, + [2198] = {.lex_state = 4, .external_lex_state = 21}, + [2199] = {.lex_state = 4, .external_lex_state = 21}, + [2200] = {.lex_state = 4, .external_lex_state = 21}, + [2201] = {.lex_state = 4, .external_lex_state = 21}, + [2202] = {.lex_state = 4, .external_lex_state = 21}, + [2203] = {.lex_state = 4, .external_lex_state = 21}, + [2204] = {.lex_state = 4, .external_lex_state = 21}, + [2205] = {.lex_state = 4, .external_lex_state = 21}, + [2206] = {.lex_state = 4, .external_lex_state = 21}, + [2207] = {.lex_state = 4, .external_lex_state = 22}, + [2208] = {.lex_state = 4, .external_lex_state = 15}, + [2209] = {.lex_state = 4, .external_lex_state = 15}, + [2210] = {.lex_state = 4, .external_lex_state = 22}, [2211] = {.lex_state = 4, .external_lex_state = 22}, - [2212] = {.lex_state = 4, .external_lex_state = 20}, - [2213] = {.lex_state = 1, .external_lex_state = 9}, - [2214] = {.lex_state = 4, .external_lex_state = 20}, - [2215] = {.lex_state = 4, .external_lex_state = 22}, - [2216] = {.lex_state = 4, .external_lex_state = 20}, - [2217] = {.lex_state = 4, .external_lex_state = 20}, - [2218] = {.lex_state = 4, .external_lex_state = 20}, - [2219] = {.lex_state = 4, .external_lex_state = 20}, - [2220] = {.lex_state = 4, .external_lex_state = 20}, - [2221] = {.lex_state = 4, .external_lex_state = 20}, - [2222] = {.lex_state = 1, .external_lex_state = 9}, - [2223] = {.lex_state = 4, .external_lex_state = 20}, - [2224] = {.lex_state = 4, .external_lex_state = 20}, - [2225] = {.lex_state = 4, .external_lex_state = 20}, - [2226] = {.lex_state = 4, .external_lex_state = 20}, - [2227] = {.lex_state = 4, .external_lex_state = 20}, - [2228] = {.lex_state = 4, .external_lex_state = 15}, - [2229] = {.lex_state = 4, .external_lex_state = 20}, - [2230] = {.lex_state = 3, .external_lex_state = 9}, - [2231] = {.lex_state = 4, .external_lex_state = 11}, - [2232] = {.lex_state = 4, .external_lex_state = 11}, - [2233] = {.lex_state = 4, .external_lex_state = 11}, - [2234] = {.lex_state = 4, .external_lex_state = 11}, - [2235] = {.lex_state = 4, .external_lex_state = 11}, - [2236] = {.lex_state = 4, .external_lex_state = 11}, - [2237] = {.lex_state = 4, .external_lex_state = 11}, - [2238] = {.lex_state = 2, .external_lex_state = 17}, - [2239] = {.lex_state = 4, .external_lex_state = 11}, - [2240] = {.lex_state = 4, .external_lex_state = 11}, - [2241] = {.lex_state = 4, .external_lex_state = 11}, - [2242] = {.lex_state = 4, .external_lex_state = 11}, - [2243] = {.lex_state = 4, .external_lex_state = 11}, - [2244] = {.lex_state = 4, .external_lex_state = 11}, - [2245] = {.lex_state = 4, .external_lex_state = 11}, - [2246] = {.lex_state = 1, .external_lex_state = 31}, - [2247] = {.lex_state = 4, .external_lex_state = 11}, - [2248] = {.lex_state = 4, .external_lex_state = 11}, - [2249] = {.lex_state = 4, .external_lex_state = 11}, - [2250] = {.lex_state = 4, .external_lex_state = 11}, - [2251] = {.lex_state = 4, .external_lex_state = 11}, - [2252] = {.lex_state = 4, .external_lex_state = 11}, - [2253] = {.lex_state = 4, .external_lex_state = 11}, - [2254] = {.lex_state = 4, .external_lex_state = 11}, - [2255] = {.lex_state = 4, .external_lex_state = 11}, - [2256] = {.lex_state = 4, .external_lex_state = 11}, - [2257] = {.lex_state = 4, .external_lex_state = 11}, - [2258] = {.lex_state = 4, .external_lex_state = 11}, - [2259] = {.lex_state = 4, .external_lex_state = 11}, - [2260] = {.lex_state = 4, .external_lex_state = 11}, - [2261] = {.lex_state = 4, .external_lex_state = 11}, - [2262] = {.lex_state = 4, .external_lex_state = 11}, - [2263] = {.lex_state = 4, .external_lex_state = 11}, - [2264] = {.lex_state = 4, .external_lex_state = 11}, - [2265] = {.lex_state = 4, .external_lex_state = 11}, - [2266] = {.lex_state = 4, .external_lex_state = 11}, - [2267] = {.lex_state = 4, .external_lex_state = 11}, - [2268] = {.lex_state = 4, .external_lex_state = 11}, - [2269] = {.lex_state = 4, .external_lex_state = 16}, - [2270] = {.lex_state = 4, .external_lex_state = 11}, - [2271] = {.lex_state = 4, .external_lex_state = 11}, - [2272] = {.lex_state = 4, .external_lex_state = 11}, - [2273] = {.lex_state = 4, .external_lex_state = 16}, - [2274] = {.lex_state = 4, .external_lex_state = 11}, - [2275] = {.lex_state = 4, .external_lex_state = 11}, - [2276] = {.lex_state = 4, .external_lex_state = 16}, - [2277] = {.lex_state = 4, .external_lex_state = 11}, - [2278] = {.lex_state = 4, .external_lex_state = 11}, - [2279] = {.lex_state = 4, .external_lex_state = 11}, - [2280] = {.lex_state = 4, .external_lex_state = 11}, - [2281] = {.lex_state = 4, .external_lex_state = 11}, - [2282] = {.lex_state = 4, .external_lex_state = 11}, - [2283] = {.lex_state = 4, .external_lex_state = 11}, - [2284] = {.lex_state = 4, .external_lex_state = 11}, - [2285] = {.lex_state = 4, .external_lex_state = 11}, - [2286] = {.lex_state = 4, .external_lex_state = 11}, - [2287] = {.lex_state = 4, .external_lex_state = 11}, - [2288] = {.lex_state = 4, .external_lex_state = 11}, - [2289] = {.lex_state = 4, .external_lex_state = 11}, - [2290] = {.lex_state = 4, .external_lex_state = 11}, - [2291] = {.lex_state = 4, .external_lex_state = 11}, - [2292] = {.lex_state = 4, .external_lex_state = 11}, - [2293] = {.lex_state = 4, .external_lex_state = 16}, - [2294] = {.lex_state = 4, .external_lex_state = 11}, - [2295] = {.lex_state = 4, .external_lex_state = 11}, - [2296] = {.lex_state = 4, .external_lex_state = 11}, - [2297] = {.lex_state = 4, .external_lex_state = 11}, - [2298] = {.lex_state = 1, .external_lex_state = 17}, - [2299] = {.lex_state = 0, .external_lex_state = 32}, - [2300] = {.lex_state = 0, .external_lex_state = 32}, - [2301] = {.lex_state = 0, .external_lex_state = 32}, - [2302] = {.lex_state = 0, .external_lex_state = 32}, - [2303] = {.lex_state = 0, .external_lex_state = 32}, - [2304] = {.lex_state = 6, .external_lex_state = 33}, - [2305] = {.lex_state = 6, .external_lex_state = 33}, - [2306] = {.lex_state = 6, .external_lex_state = 34}, - [2307] = {.lex_state = 6, .external_lex_state = 34}, - [2308] = {.lex_state = 6, .external_lex_state = 35}, - [2309] = {.lex_state = 6, .external_lex_state = 34}, - [2310] = {.lex_state = 6, .external_lex_state = 35}, - [2311] = {.lex_state = 6, .external_lex_state = 34}, - [2312] = {.lex_state = 6, .external_lex_state = 34}, - [2313] = {.lex_state = 6, .external_lex_state = 34}, - [2314] = {.lex_state = 6, .external_lex_state = 34}, - [2315] = {.lex_state = 6, .external_lex_state = 34}, - [2316] = {.lex_state = 6, .external_lex_state = 34}, - [2317] = {.lex_state = 6, .external_lex_state = 34}, - [2318] = {.lex_state = 6, .external_lex_state = 34}, - [2319] = {.lex_state = 6, .external_lex_state = 34}, - [2320] = {.lex_state = 6, .external_lex_state = 35}, - [2321] = {.lex_state = 6, .external_lex_state = 34}, - [2322] = {.lex_state = 6, .external_lex_state = 35}, - [2323] = {.lex_state = 6, .external_lex_state = 34}, - [2324] = {.lex_state = 6, .external_lex_state = 34}, - [2325] = {.lex_state = 6, .external_lex_state = 35}, - [2326] = {.lex_state = 6, .external_lex_state = 34}, - [2327] = {.lex_state = 6, .external_lex_state = 35}, - [2328] = {.lex_state = 6, .external_lex_state = 34}, - [2329] = {.lex_state = 6, .external_lex_state = 35}, - [2330] = {.lex_state = 6, .external_lex_state = 35}, - [2331] = {.lex_state = 6, .external_lex_state = 34}, - [2332] = {.lex_state = 6, .external_lex_state = 34}, - [2333] = {.lex_state = 6, .external_lex_state = 35}, - [2334] = {.lex_state = 6, .external_lex_state = 34}, - [2335] = {.lex_state = 6, .external_lex_state = 35}, - [2336] = {.lex_state = 6, .external_lex_state = 35}, - [2337] = {.lex_state = 6, .external_lex_state = 34}, - [2338] = {.lex_state = 6, .external_lex_state = 35}, - [2339] = {.lex_state = 6, .external_lex_state = 34}, - [2340] = {.lex_state = 6, .external_lex_state = 34}, - [2341] = {.lex_state = 6, .external_lex_state = 35}, - [2342] = {.lex_state = 6, .external_lex_state = 35}, - [2343] = {.lex_state = 6, .external_lex_state = 34}, - [2344] = {.lex_state = 6, .external_lex_state = 34}, - [2345] = {.lex_state = 6, .external_lex_state = 35}, - [2346] = {.lex_state = 6, .external_lex_state = 34}, - [2347] = {.lex_state = 6, .external_lex_state = 35}, - [2348] = {.lex_state = 6, .external_lex_state = 34}, - [2349] = {.lex_state = 6, .external_lex_state = 35}, - [2350] = {.lex_state = 6, .external_lex_state = 34}, - [2351] = {.lex_state = 6, .external_lex_state = 35}, - [2352] = {.lex_state = 6, .external_lex_state = 34}, - [2353] = {.lex_state = 6, .external_lex_state = 35}, - [2354] = {.lex_state = 6, .external_lex_state = 35}, - [2355] = {.lex_state = 6, .external_lex_state = 34}, - [2356] = {.lex_state = 6, .external_lex_state = 35}, - [2357] = {.lex_state = 6, .external_lex_state = 34}, - [2358] = {.lex_state = 6, .external_lex_state = 35}, - [2359] = {.lex_state = 6, .external_lex_state = 34}, - [2360] = {.lex_state = 6, .external_lex_state = 35}, - [2361] = {.lex_state = 6, .external_lex_state = 34}, - [2362] = {.lex_state = 6, .external_lex_state = 35}, - [2363] = {.lex_state = 6, .external_lex_state = 35}, - [2364] = {.lex_state = 6, .external_lex_state = 34}, - [2365] = {.lex_state = 6, .external_lex_state = 34}, - [2366] = {.lex_state = 6, .external_lex_state = 35}, - [2367] = {.lex_state = 6, .external_lex_state = 34}, - [2368] = {.lex_state = 6, .external_lex_state = 35}, - [2369] = {.lex_state = 6, .external_lex_state = 34}, - [2370] = {.lex_state = 6, .external_lex_state = 34}, - [2371] = {.lex_state = 6, .external_lex_state = 35}, - [2372] = {.lex_state = 6, .external_lex_state = 35}, - [2373] = {.lex_state = 6, .external_lex_state = 34}, - [2374] = {.lex_state = 6, .external_lex_state = 35}, - [2375] = {.lex_state = 6, .external_lex_state = 34}, - [2376] = {.lex_state = 6, .external_lex_state = 35}, + [2212] = {.lex_state = 4, .external_lex_state = 22}, + [2213] = {.lex_state = 4, .external_lex_state = 22}, + [2214] = {.lex_state = 4, .external_lex_state = 21}, + [2215] = {.lex_state = 4, .external_lex_state = 21}, + [2216] = {.lex_state = 4, .external_lex_state = 22}, + [2217] = {.lex_state = 4, .external_lex_state = 22}, + [2218] = {.lex_state = 4, .external_lex_state = 22}, + [2219] = {.lex_state = 4, .external_lex_state = 22}, + [2220] = {.lex_state = 4, .external_lex_state = 22}, + [2221] = {.lex_state = 4, .external_lex_state = 22}, + [2222] = {.lex_state = 4, .external_lex_state = 22}, + [2223] = {.lex_state = 4, .external_lex_state = 22}, + [2224] = {.lex_state = 4, .external_lex_state = 22}, + [2225] = {.lex_state = 4, .external_lex_state = 22}, + [2226] = {.lex_state = 4, .external_lex_state = 22}, + [2227] = {.lex_state = 4, .external_lex_state = 22}, + [2228] = {.lex_state = 4, .external_lex_state = 22}, + [2229] = {.lex_state = 4, .external_lex_state = 22}, + [2230] = {.lex_state = 4, .external_lex_state = 22}, + [2231] = {.lex_state = 4, .external_lex_state = 22}, + [2232] = {.lex_state = 4, .external_lex_state = 22}, + [2233] = {.lex_state = 4, .external_lex_state = 22}, + [2234] = {.lex_state = 4, .external_lex_state = 22}, + [2235] = {.lex_state = 4, .external_lex_state = 21}, + [2236] = {.lex_state = 4, .external_lex_state = 21}, + [2237] = {.lex_state = 4, .external_lex_state = 23}, + [2238] = {.lex_state = 4, .external_lex_state = 21}, + [2239] = {.lex_state = 4, .external_lex_state = 21}, + [2240] = {.lex_state = 4, .external_lex_state = 22}, + [2241] = {.lex_state = 4, .external_lex_state = 22}, + [2242] = {.lex_state = 4, .external_lex_state = 22}, + [2243] = {.lex_state = 4, .external_lex_state = 22}, + [2244] = {.lex_state = 4, .external_lex_state = 22}, + [2245] = {.lex_state = 4, .external_lex_state = 22}, + [2246] = {.lex_state = 4, .external_lex_state = 22}, + [2247] = {.lex_state = 4, .external_lex_state = 22}, + [2248] = {.lex_state = 4, .external_lex_state = 22}, + [2249] = {.lex_state = 4, .external_lex_state = 22}, + [2250] = {.lex_state = 4, .external_lex_state = 22}, + [2251] = {.lex_state = 4, .external_lex_state = 22}, + [2252] = {.lex_state = 4, .external_lex_state = 22}, + [2253] = {.lex_state = 4, .external_lex_state = 22}, + [2254] = {.lex_state = 4, .external_lex_state = 22}, + [2255] = {.lex_state = 4, .external_lex_state = 22}, + [2256] = {.lex_state = 4, .external_lex_state = 22}, + [2257] = {.lex_state = 4, .external_lex_state = 22}, + [2258] = {.lex_state = 4, .external_lex_state = 22}, + [2259] = {.lex_state = 4, .external_lex_state = 22}, + [2260] = {.lex_state = 4, .external_lex_state = 22}, + [2261] = {.lex_state = 4, .external_lex_state = 22}, + [2262] = {.lex_state = 4, .external_lex_state = 22}, + [2263] = {.lex_state = 4, .external_lex_state = 22}, + [2264] = {.lex_state = 4, .external_lex_state = 22}, + [2265] = {.lex_state = 4, .external_lex_state = 22}, + [2266] = {.lex_state = 4, .external_lex_state = 22}, + [2267] = {.lex_state = 4, .external_lex_state = 22}, + [2268] = {.lex_state = 4, .external_lex_state = 22}, + [2269] = {.lex_state = 4, .external_lex_state = 22}, + [2270] = {.lex_state = 4, .external_lex_state = 22}, + [2271] = {.lex_state = 4, .external_lex_state = 22}, + [2272] = {.lex_state = 4, .external_lex_state = 22}, + [2273] = {.lex_state = 4, .external_lex_state = 22}, + [2274] = {.lex_state = 4, .external_lex_state = 23}, + [2275] = {.lex_state = 4, .external_lex_state = 23}, + [2276] = {.lex_state = 4, .external_lex_state = 23}, + [2277] = {.lex_state = 4, .external_lex_state = 23}, + [2278] = {.lex_state = 4, .external_lex_state = 23}, + [2279] = {.lex_state = 4, .external_lex_state = 22}, + [2280] = {.lex_state = 4, .external_lex_state = 22}, + [2281] = {.lex_state = 4, .external_lex_state = 23}, + [2282] = {.lex_state = 4, .external_lex_state = 23}, + [2283] = {.lex_state = 4, .external_lex_state = 23}, + [2284] = {.lex_state = 4, .external_lex_state = 23}, + [2285] = {.lex_state = 4, .external_lex_state = 23}, + [2286] = {.lex_state = 4, .external_lex_state = 23}, + [2287] = {.lex_state = 4, .external_lex_state = 23}, + [2288] = {.lex_state = 4, .external_lex_state = 23}, + [2289] = {.lex_state = 4, .external_lex_state = 23}, + [2290] = {.lex_state = 4, .external_lex_state = 23}, + [2291] = {.lex_state = 4, .external_lex_state = 23}, + [2292] = {.lex_state = 4, .external_lex_state = 23}, + [2293] = {.lex_state = 4, .external_lex_state = 23}, + [2294] = {.lex_state = 4, .external_lex_state = 23}, + [2295] = {.lex_state = 4, .external_lex_state = 23}, + [2296] = {.lex_state = 4, .external_lex_state = 15}, + [2297] = {.lex_state = 4, .external_lex_state = 13}, + [2298] = {.lex_state = 4, .external_lex_state = 13}, + [2299] = {.lex_state = 4, .external_lex_state = 13}, + [2300] = {.lex_state = 4, .external_lex_state = 13}, + [2301] = {.lex_state = 4, .external_lex_state = 13}, + [2302] = {.lex_state = 4, .external_lex_state = 13}, + [2303] = {.lex_state = 4, .external_lex_state = 13}, + [2304] = {.lex_state = 1, .external_lex_state = 31}, + [2305] = {.lex_state = 4, .external_lex_state = 13}, + [2306] = {.lex_state = 4, .external_lex_state = 13}, + [2307] = {.lex_state = 4, .external_lex_state = 13}, + [2308] = {.lex_state = 4, .external_lex_state = 13}, + [2309] = {.lex_state = 4, .external_lex_state = 13}, + [2310] = {.lex_state = 4, .external_lex_state = 13}, + [2311] = {.lex_state = 4, .external_lex_state = 13}, + [2312] = {.lex_state = 4, .external_lex_state = 13}, + [2313] = {.lex_state = 4, .external_lex_state = 13}, + [2314] = {.lex_state = 4, .external_lex_state = 13}, + [2315] = {.lex_state = 4, .external_lex_state = 13}, + [2316] = {.lex_state = 4, .external_lex_state = 13}, + [2317] = {.lex_state = 4, .external_lex_state = 13}, + [2318] = {.lex_state = 4, .external_lex_state = 13}, + [2319] = {.lex_state = 4, .external_lex_state = 13}, + [2320] = {.lex_state = 4, .external_lex_state = 13}, + [2321] = {.lex_state = 4, .external_lex_state = 13}, + [2322] = {.lex_state = 4, .external_lex_state = 13}, + [2323] = {.lex_state = 4, .external_lex_state = 13}, + [2324] = {.lex_state = 2, .external_lex_state = 17}, + [2325] = {.lex_state = 4, .external_lex_state = 16}, + [2326] = {.lex_state = 4, .external_lex_state = 13}, + [2327] = {.lex_state = 4, .external_lex_state = 13}, + [2328] = {.lex_state = 4, .external_lex_state = 13}, + [2329] = {.lex_state = 4, .external_lex_state = 13}, + [2330] = {.lex_state = 4, .external_lex_state = 13}, + [2331] = {.lex_state = 4, .external_lex_state = 16}, + [2332] = {.lex_state = 4, .external_lex_state = 13}, + [2333] = {.lex_state = 4, .external_lex_state = 13}, + [2334] = {.lex_state = 4, .external_lex_state = 13}, + [2335] = {.lex_state = 4, .external_lex_state = 13}, + [2336] = {.lex_state = 4, .external_lex_state = 13}, + [2337] = {.lex_state = 4, .external_lex_state = 13}, + [2338] = {.lex_state = 4, .external_lex_state = 13}, + [2339] = {.lex_state = 4, .external_lex_state = 13}, + [2340] = {.lex_state = 4, .external_lex_state = 13}, + [2341] = {.lex_state = 4, .external_lex_state = 13}, + [2342] = {.lex_state = 4, .external_lex_state = 13}, + [2343] = {.lex_state = 4, .external_lex_state = 13}, + [2344] = {.lex_state = 4, .external_lex_state = 13}, + [2345] = {.lex_state = 4, .external_lex_state = 13}, + [2346] = {.lex_state = 4, .external_lex_state = 13}, + [2347] = {.lex_state = 4, .external_lex_state = 13}, + [2348] = {.lex_state = 4, .external_lex_state = 16}, + [2349] = {.lex_state = 4, .external_lex_state = 13}, + [2350] = {.lex_state = 4, .external_lex_state = 13}, + [2351] = {.lex_state = 4, .external_lex_state = 13}, + [2352] = {.lex_state = 4, .external_lex_state = 13}, + [2353] = {.lex_state = 4, .external_lex_state = 13}, + [2354] = {.lex_state = 4, .external_lex_state = 13}, + [2355] = {.lex_state = 4, .external_lex_state = 16}, + [2356] = {.lex_state = 4, .external_lex_state = 13}, + [2357] = {.lex_state = 4, .external_lex_state = 13}, + [2358] = {.lex_state = 4, .external_lex_state = 13}, + [2359] = {.lex_state = 4, .external_lex_state = 13}, + [2360] = {.lex_state = 4, .external_lex_state = 13}, + [2361] = {.lex_state = 4, .external_lex_state = 13}, + [2362] = {.lex_state = 4, .external_lex_state = 13}, + [2363] = {.lex_state = 4, .external_lex_state = 13}, + [2364] = {.lex_state = 4, .external_lex_state = 13}, + [2365] = {.lex_state = 4, .external_lex_state = 13}, + [2366] = {.lex_state = 4, .external_lex_state = 13}, + [2367] = {.lex_state = 4, .external_lex_state = 13}, + [2368] = {.lex_state = 1, .external_lex_state = 17}, + [2369] = {.lex_state = 0, .external_lex_state = 32}, + [2370] = {.lex_state = 0, .external_lex_state = 32}, + [2371] = {.lex_state = 0, .external_lex_state = 32}, + [2372] = {.lex_state = 0, .external_lex_state = 32}, + [2373] = {.lex_state = 0, .external_lex_state = 32}, + [2374] = {.lex_state = 6, .external_lex_state = 33}, + [2375] = {.lex_state = 6, .external_lex_state = 33}, + [2376] = {.lex_state = 6, .external_lex_state = 34}, [2377] = {.lex_state = 6, .external_lex_state = 35}, - [2378] = {.lex_state = 8, .external_lex_state = 36}, - [2379] = {.lex_state = 8, .external_lex_state = 36}, - [2380] = {.lex_state = 8, .external_lex_state = 36}, - [2381] = {.lex_state = 8, .external_lex_state = 36}, - [2382] = {.lex_state = 8, .external_lex_state = 36}, - [2383] = {.lex_state = 8, .external_lex_state = 36}, - [2384] = {.lex_state = 8, .external_lex_state = 36}, - [2385] = {.lex_state = 8, .external_lex_state = 36}, - [2386] = {.lex_state = 8, .external_lex_state = 36}, - [2387] = {.lex_state = 8, .external_lex_state = 36}, - [2388] = {.lex_state = 8, .external_lex_state = 36}, - [2389] = {.lex_state = 8, .external_lex_state = 36}, - [2390] = {.lex_state = 8, .external_lex_state = 36}, - [2391] = {.lex_state = 8, .external_lex_state = 36}, - [2392] = {.lex_state = 8, .external_lex_state = 36}, - [2393] = {.lex_state = 8, .external_lex_state = 36}, - [2394] = {.lex_state = 8, .external_lex_state = 36}, - [2395] = {.lex_state = 8, .external_lex_state = 37}, - [2396] = {.lex_state = 8, .external_lex_state = 37}, - [2397] = {.lex_state = 8, .external_lex_state = 37}, - [2398] = {.lex_state = 8, .external_lex_state = 37}, - [2399] = {.lex_state = 8, .external_lex_state = 37}, - [2400] = {.lex_state = 8, .external_lex_state = 37}, - [2401] = {.lex_state = 8, .external_lex_state = 37}, - [2402] = {.lex_state = 8, .external_lex_state = 37}, - [2403] = {.lex_state = 8, .external_lex_state = 37}, - [2404] = {.lex_state = 8, .external_lex_state = 37}, - [2405] = {.lex_state = 8, .external_lex_state = 37}, - [2406] = {.lex_state = 8, .external_lex_state = 37}, - [2407] = {.lex_state = 8, .external_lex_state = 37}, - [2408] = {.lex_state = 8, .external_lex_state = 37}, - [2409] = {.lex_state = 8, .external_lex_state = 37}, - [2410] = {.lex_state = 6, .external_lex_state = 38}, - [2411] = {.lex_state = 8, .external_lex_state = 37}, - [2412] = {.lex_state = 8, .external_lex_state = 37}, - [2413] = {.lex_state = 6, .external_lex_state = 38}, - [2414] = {.lex_state = 6, .external_lex_state = 38}, - [2415] = {.lex_state = 2050, .external_lex_state = 39}, - [2416] = {.lex_state = 2050, .external_lex_state = 39}, - [2417] = {.lex_state = 2050, .external_lex_state = 39}, - [2418] = {.lex_state = 2050, .external_lex_state = 39}, - [2419] = {.lex_state = 11, .external_lex_state = 40}, - [2420] = {.lex_state = 8, .external_lex_state = 41}, - [2421] = {.lex_state = 11, .external_lex_state = 40}, - [2422] = {.lex_state = 11, .external_lex_state = 40}, - [2423] = {.lex_state = 11, .external_lex_state = 40}, - [2424] = {.lex_state = 11, .external_lex_state = 40}, - [2425] = {.lex_state = 11, .external_lex_state = 40}, - [2426] = {.lex_state = 11, .external_lex_state = 40}, - [2427] = {.lex_state = 11, .external_lex_state = 40}, - [2428] = {.lex_state = 11, .external_lex_state = 40}, - [2429] = {.lex_state = 11, .external_lex_state = 40}, - [2430] = {.lex_state = 11, .external_lex_state = 40}, - [2431] = {.lex_state = 11, .external_lex_state = 40}, - [2432] = {.lex_state = 11, .external_lex_state = 40}, - [2433] = {.lex_state = 11, .external_lex_state = 40}, - [2434] = {.lex_state = 11, .external_lex_state = 40}, - [2435] = {.lex_state = 11, .external_lex_state = 40}, - [2436] = {.lex_state = 8, .external_lex_state = 41}, - [2437] = {.lex_state = 11, .external_lex_state = 40}, - [2438] = {.lex_state = 8, .external_lex_state = 41}, - [2439] = {.lex_state = 11, .external_lex_state = 40}, - [2440] = {.lex_state = 11, .external_lex_state = 40}, - [2441] = {.lex_state = 11, .external_lex_state = 40}, - [2442] = {.lex_state = 11, .external_lex_state = 40}, - [2443] = {.lex_state = 11, .external_lex_state = 40}, - [2444] = {.lex_state = 6, .external_lex_state = 42}, - [2445] = {.lex_state = 11, .external_lex_state = 40}, - [2446] = {.lex_state = 11, .external_lex_state = 40}, - [2447] = {.lex_state = 11, .external_lex_state = 40}, - [2448] = {.lex_state = 11, .external_lex_state = 40}, - [2449] = {.lex_state = 11, .external_lex_state = 40}, - [2450] = {.lex_state = 11, .external_lex_state = 40}, - [2451] = {.lex_state = 11, .external_lex_state = 40}, - [2452] = {.lex_state = 11, .external_lex_state = 40}, - [2453] = {.lex_state = 11, .external_lex_state = 40}, - [2454] = {.lex_state = 11, .external_lex_state = 40}, - [2455] = {.lex_state = 8, .external_lex_state = 41}, - [2456] = {.lex_state = 11, .external_lex_state = 40}, - [2457] = {.lex_state = 11, .external_lex_state = 40}, - [2458] = {.lex_state = 11, .external_lex_state = 40}, - [2459] = {.lex_state = 11, .external_lex_state = 40}, - [2460] = {.lex_state = 8, .external_lex_state = 43}, - [2461] = {.lex_state = 2050, .external_lex_state = 37}, - [2462] = {.lex_state = 11, .external_lex_state = 40}, - [2463] = {.lex_state = 6, .external_lex_state = 38}, - [2464] = {.lex_state = 11, .external_lex_state = 40}, - [2465] = {.lex_state = 8, .external_lex_state = 43}, - [2466] = {.lex_state = 11, .external_lex_state = 40}, - [2467] = {.lex_state = 11, .external_lex_state = 40}, - [2468] = {.lex_state = 8, .external_lex_state = 44}, - [2469] = {.lex_state = 2050, .external_lex_state = 37}, - [2470] = {.lex_state = 2050, .external_lex_state = 37}, - [2471] = {.lex_state = 8, .external_lex_state = 43}, - [2472] = {.lex_state = 11, .external_lex_state = 40}, - [2473] = {.lex_state = 2050, .external_lex_state = 37}, - [2474] = {.lex_state = 11, .external_lex_state = 40}, - [2475] = {.lex_state = 11, .external_lex_state = 40}, - [2476] = {.lex_state = 8, .external_lex_state = 44}, - [2477] = {.lex_state = 8, .external_lex_state = 44}, - [2478] = {.lex_state = 11, .external_lex_state = 40}, - [2479] = {.lex_state = 2050, .external_lex_state = 37}, - [2480] = {.lex_state = 11, .external_lex_state = 40}, - [2481] = {.lex_state = 11, .external_lex_state = 40}, - [2482] = {.lex_state = 11, .external_lex_state = 40}, - [2483] = {.lex_state = 11, .external_lex_state = 40}, - [2484] = {.lex_state = 0, .external_lex_state = 32}, - [2485] = {.lex_state = 2048, .external_lex_state = 45}, - [2486] = {.lex_state = 8, .external_lex_state = 41}, - [2487] = {.lex_state = 8, .external_lex_state = 41}, - [2488] = {.lex_state = 2050, .external_lex_state = 46}, - [2489] = {.lex_state = 8, .external_lex_state = 41}, - [2490] = {.lex_state = 2048, .external_lex_state = 45}, - [2491] = {.lex_state = 2048, .external_lex_state = 45}, - [2492] = {.lex_state = 11, .external_lex_state = 40}, - [2493] = {.lex_state = 2048, .external_lex_state = 45}, - [2494] = {.lex_state = 2048, .external_lex_state = 45}, - [2495] = {.lex_state = 2050, .external_lex_state = 46}, - [2496] = {.lex_state = 2048, .external_lex_state = 45}, - [2497] = {.lex_state = 2048, .external_lex_state = 45}, - [2498] = {.lex_state = 2048, .external_lex_state = 45}, - [2499] = {.lex_state = 2048, .external_lex_state = 45}, - [2500] = {.lex_state = 2050, .external_lex_state = 46}, - [2501] = {.lex_state = 2050, .external_lex_state = 46}, - [2502] = {.lex_state = 5, .external_lex_state = 47}, - [2503] = {.lex_state = 2016, .external_lex_state = 48}, - [2504] = {.lex_state = 7, .external_lex_state = 49}, - [2505] = {.lex_state = 2048, .external_lex_state = 45}, - [2506] = {.lex_state = 8}, - [2507] = {.lex_state = 0, .external_lex_state = 41}, - [2508] = {.lex_state = 2050, .external_lex_state = 50}, - [2509] = {.lex_state = 2048, .external_lex_state = 45}, - [2510] = {.lex_state = 2050, .external_lex_state = 51}, - [2511] = {.lex_state = 2050, .external_lex_state = 51}, - [2512] = {.lex_state = 8, .external_lex_state = 52}, - [2513] = {.lex_state = 0, .external_lex_state = 41}, - [2514] = {.lex_state = 8}, - [2515] = {.lex_state = 2016, .external_lex_state = 48}, - [2516] = {.lex_state = 0, .external_lex_state = 41}, - [2517] = {.lex_state = 8, .external_lex_state = 41}, - [2518] = {.lex_state = 0, .external_lex_state = 41}, - [2519] = {.lex_state = 10, .external_lex_state = 49}, - [2520] = {.lex_state = 10, .external_lex_state = 49}, - [2521] = {.lex_state = 7, .external_lex_state = 49}, - [2522] = {.lex_state = 8, .external_lex_state = 52}, - [2523] = {.lex_state = 2050, .external_lex_state = 51}, - [2524] = {.lex_state = 8, .external_lex_state = 41}, - [2525] = {.lex_state = 2016, .external_lex_state = 48}, - [2526] = {.lex_state = 0, .external_lex_state = 41}, - [2527] = {.lex_state = 2050, .external_lex_state = 51}, - [2528] = {.lex_state = 2050, .external_lex_state = 51}, - [2529] = {.lex_state = 10, .external_lex_state = 49}, - [2530] = {.lex_state = 7, .external_lex_state = 49}, - [2531] = {.lex_state = 10, .external_lex_state = 49}, - [2532] = {.lex_state = 7, .external_lex_state = 49}, - [2533] = {.lex_state = 10, .external_lex_state = 49}, - [2534] = {.lex_state = 7, .external_lex_state = 49}, - [2535] = {.lex_state = 5}, - [2536] = {.lex_state = 8, .external_lex_state = 41}, - [2537] = {.lex_state = 0, .external_lex_state = 41}, - [2538] = {.lex_state = 11, .external_lex_state = 40}, - [2539] = {.lex_state = 3, .external_lex_state = 51}, - [2540] = {.lex_state = 2050, .external_lex_state = 43}, - [2541] = {.lex_state = 2050, .external_lex_state = 43}, - [2542] = {.lex_state = 3, .external_lex_state = 51}, - [2543] = {.lex_state = 3, .external_lex_state = 51}, - [2544] = {.lex_state = 2050, .external_lex_state = 53}, - [2545] = {.lex_state = 8, .external_lex_state = 44}, - [2546] = {.lex_state = 2, .external_lex_state = 51}, - [2547] = {.lex_state = 3, .external_lex_state = 51}, - [2548] = {.lex_state = 3, .external_lex_state = 51}, - [2549] = {.lex_state = 0, .external_lex_state = 54}, - [2550] = {.lex_state = 8, .external_lex_state = 44}, - [2551] = {.lex_state = 3, .external_lex_state = 51}, - [2552] = {.lex_state = 8, .external_lex_state = 44}, - [2553] = {.lex_state = 2050, .external_lex_state = 43}, - [2554] = {.lex_state = 3, .external_lex_state = 51}, - [2555] = {.lex_state = 8, .external_lex_state = 44}, - [2556] = {.lex_state = 3, .external_lex_state = 51}, - [2557] = {.lex_state = 2050, .external_lex_state = 37}, - [2558] = {.lex_state = 11, .external_lex_state = 40}, - [2559] = {.lex_state = 3, .external_lex_state = 51}, - [2560] = {.lex_state = 11, .external_lex_state = 40}, - [2561] = {.lex_state = 3, .external_lex_state = 51}, - [2562] = {.lex_state = 11, .external_lex_state = 40}, - [2563] = {.lex_state = 3, .external_lex_state = 51}, - [2564] = {.lex_state = 3, .external_lex_state = 51}, - [2565] = {.lex_state = 3, .external_lex_state = 51}, - [2566] = {.lex_state = 6, .external_lex_state = 51}, - [2567] = {.lex_state = 2050, .external_lex_state = 43}, - [2568] = {.lex_state = 2050, .external_lex_state = 43}, - [2569] = {.lex_state = 8, .external_lex_state = 55}, - [2570] = {.lex_state = 3, .external_lex_state = 51}, - [2571] = {.lex_state = 3, .external_lex_state = 51}, - [2572] = {.lex_state = 3, .external_lex_state = 51}, - [2573] = {.lex_state = 3, .external_lex_state = 51}, - [2574] = {.lex_state = 2050, .external_lex_state = 46}, - [2575] = {.lex_state = 2050, .external_lex_state = 51}, - [2576] = {.lex_state = 3, .external_lex_state = 51}, - [2577] = {.lex_state = 2050, .external_lex_state = 43}, - [2578] = {.lex_state = 3, .external_lex_state = 51}, - [2579] = {.lex_state = 3, .external_lex_state = 51}, - [2580] = {.lex_state = 3, .external_lex_state = 51}, - [2581] = {.lex_state = 2050, .external_lex_state = 37}, - [2582] = {.lex_state = 3, .external_lex_state = 51}, - [2583] = {.lex_state = 2050, .external_lex_state = 43}, - [2584] = {.lex_state = 2050, .external_lex_state = 51}, - [2585] = {.lex_state = 2050, .external_lex_state = 43}, - [2586] = {.lex_state = 3, .external_lex_state = 51}, - [2587] = {.lex_state = 3, .external_lex_state = 51}, - [2588] = {.lex_state = 2050, .external_lex_state = 43}, - [2589] = {.lex_state = 2050, .external_lex_state = 43}, - [2590] = {.lex_state = 3, .external_lex_state = 51}, - [2591] = {.lex_state = 0, .external_lex_state = 41}, - [2592] = {.lex_state = 2050, .external_lex_state = 43}, - [2593] = {.lex_state = 5, .external_lex_state = 48}, - [2594] = {.lex_state = 2050, .external_lex_state = 43}, - [2595] = {.lex_state = 5, .external_lex_state = 48}, - [2596] = {.lex_state = 6, .external_lex_state = 51}, - [2597] = {.lex_state = 6, .external_lex_state = 51}, - [2598] = {.lex_state = 2050, .external_lex_state = 51}, - [2599] = {.lex_state = 3, .external_lex_state = 51}, - [2600] = {.lex_state = 0, .external_lex_state = 54}, - [2601] = {.lex_state = 5, .external_lex_state = 48}, - [2602] = {.lex_state = 3, .external_lex_state = 51}, - [2603] = {.lex_state = 3, .external_lex_state = 51}, - [2604] = {.lex_state = 2050, .external_lex_state = 43}, - [2605] = {.lex_state = 2050, .external_lex_state = 43}, - [2606] = {.lex_state = 3, .external_lex_state = 51}, - [2607] = {.lex_state = 3, .external_lex_state = 51}, - [2608] = {.lex_state = 3, .external_lex_state = 51}, - [2609] = {.lex_state = 0, .external_lex_state = 54}, - [2610] = {.lex_state = 2, .external_lex_state = 51}, - [2611] = {.lex_state = 2050, .external_lex_state = 51}, - [2612] = {.lex_state = 2050, .external_lex_state = 43}, - [2613] = {.lex_state = 3, .external_lex_state = 51}, - [2614] = {.lex_state = 2048, .external_lex_state = 56}, - [2615] = {.lex_state = 2050, .external_lex_state = 43}, - [2616] = {.lex_state = 2, .external_lex_state = 51}, - [2617] = {.lex_state = 2050, .external_lex_state = 43}, - [2618] = {.lex_state = 3, .external_lex_state = 51}, - [2619] = {.lex_state = 3, .external_lex_state = 51}, - [2620] = {.lex_state = 3, .external_lex_state = 51}, - [2621] = {.lex_state = 11, .external_lex_state = 49}, - [2622] = {.lex_state = 0, .external_lex_state = 57}, - [2623] = {.lex_state = 0, .external_lex_state = 58}, - [2624] = {.lex_state = 387, .external_lex_state = 59}, - [2625] = {.lex_state = 8, .external_lex_state = 44}, - [2626] = {.lex_state = 0, .external_lex_state = 60}, - [2627] = {.lex_state = 387, .external_lex_state = 59}, - [2628] = {.lex_state = 2016}, - [2629] = {.lex_state = 5, .external_lex_state = 61}, - [2630] = {.lex_state = 0, .external_lex_state = 43}, - [2631] = {.lex_state = 2050, .external_lex_state = 37}, - [2632] = {.lex_state = 0, .external_lex_state = 58}, - [2633] = {.lex_state = 0, .external_lex_state = 62}, - [2634] = {.lex_state = 387, .external_lex_state = 59}, - [2635] = {.lex_state = 387, .external_lex_state = 59}, - [2636] = {.lex_state = 387, .external_lex_state = 59}, - [2637] = {.lex_state = 0, .external_lex_state = 63}, - [2638] = {.lex_state = 2050, .external_lex_state = 37}, - [2639] = {.lex_state = 5, .external_lex_state = 52}, - [2640] = {.lex_state = 8, .external_lex_state = 64}, - [2641] = {.lex_state = 0, .external_lex_state = 62}, - [2642] = {.lex_state = 0, .external_lex_state = 65}, - [2643] = {.lex_state = 2050, .external_lex_state = 37}, - [2644] = {.lex_state = 0, .external_lex_state = 66}, - [2645] = {.lex_state = 387, .external_lex_state = 59}, - [2646] = {.lex_state = 387, .external_lex_state = 59}, - [2647] = {.lex_state = 8}, - [2648] = {.lex_state = 387, .external_lex_state = 59}, - [2649] = {.lex_state = 0, .external_lex_state = 65}, - [2650] = {.lex_state = 0, .external_lex_state = 43}, - [2651] = {.lex_state = 0, .external_lex_state = 43}, - [2652] = {.lex_state = 387, .external_lex_state = 59}, - [2653] = {.lex_state = 0, .external_lex_state = 43}, - [2654] = {.lex_state = 2048, .external_lex_state = 45}, - [2655] = {.lex_state = 0, .external_lex_state = 58}, - [2656] = {.lex_state = 10, .external_lex_state = 49}, - [2657] = {.lex_state = 10, .external_lex_state = 49}, - [2658] = {.lex_state = 10, .external_lex_state = 49}, - [2659] = {.lex_state = 7, .external_lex_state = 49}, - [2660] = {.lex_state = 0, .external_lex_state = 66}, - [2661] = {.lex_state = 7, .external_lex_state = 49}, - [2662] = {.lex_state = 7, .external_lex_state = 49}, - [2663] = {.lex_state = 2050, .external_lex_state = 51}, - [2664] = {.lex_state = 1, .external_lex_state = 51}, - [2665] = {.lex_state = 387, .external_lex_state = 59}, - [2666] = {.lex_state = 2050, .external_lex_state = 37}, - [2667] = {.lex_state = 2050, .external_lex_state = 51}, - [2668] = {.lex_state = 0, .external_lex_state = 62}, - [2669] = {.lex_state = 0, .external_lex_state = 43}, - [2670] = {.lex_state = 0, .external_lex_state = 67}, - [2671] = {.lex_state = 387, .external_lex_state = 59}, - [2672] = {.lex_state = 0, .external_lex_state = 68}, - [2673] = {.lex_state = 11, .external_lex_state = 49}, - [2674] = {.lex_state = 0, .external_lex_state = 68}, - [2675] = {.lex_state = 387, .external_lex_state = 59}, - [2676] = {.lex_state = 2050, .external_lex_state = 37}, - [2677] = {.lex_state = 0, .external_lex_state = 63}, - [2678] = {.lex_state = 2050, .external_lex_state = 51}, - [2679] = {.lex_state = 0, .external_lex_state = 60}, - [2680] = {.lex_state = 1, .external_lex_state = 51}, - [2681] = {.lex_state = 11, .external_lex_state = 49}, - [2682] = {.lex_state = 2050, .external_lex_state = 51}, - [2683] = {.lex_state = 11, .external_lex_state = 49}, - [2684] = {.lex_state = 11, .external_lex_state = 49}, - [2685] = {.lex_state = 0, .external_lex_state = 63}, - [2686] = {.lex_state = 11, .external_lex_state = 49}, - [2687] = {.lex_state = 5, .external_lex_state = 52}, - [2688] = {.lex_state = 11, .external_lex_state = 49}, - [2689] = {.lex_state = 0, .external_lex_state = 43}, - [2690] = {.lex_state = 387, .external_lex_state = 59}, - [2691] = {.lex_state = 0, .external_lex_state = 43}, - [2692] = {.lex_state = 0, .external_lex_state = 60}, - [2693] = {.lex_state = 2050, .external_lex_state = 37}, - [2694] = {.lex_state = 11, .external_lex_state = 49}, - [2695] = {.lex_state = 11, .external_lex_state = 49}, - [2696] = {.lex_state = 2050, .external_lex_state = 37}, - [2697] = {.lex_state = 5, .external_lex_state = 52}, - [2698] = {.lex_state = 387, .external_lex_state = 59}, - [2699] = {.lex_state = 2050, .external_lex_state = 37}, - [2700] = {.lex_state = 11, .external_lex_state = 49}, - [2701] = {.lex_state = 1, .external_lex_state = 51}, - [2702] = {.lex_state = 5, .external_lex_state = 52}, - [2703] = {.lex_state = 0, .external_lex_state = 65}, - [2704] = {.lex_state = 11, .external_lex_state = 49}, - [2705] = {.lex_state = 0, .external_lex_state = 66}, - [2706] = {.lex_state = 387, .external_lex_state = 59}, - [2707] = {.lex_state = 11, .external_lex_state = 49}, - [2708] = {.lex_state = 0, .external_lex_state = 67}, - [2709] = {.lex_state = 0, .external_lex_state = 68}, - [2710] = {.lex_state = 0, .external_lex_state = 43}, - [2711] = {.lex_state = 0, .external_lex_state = 43}, - [2712] = {.lex_state = 0, .external_lex_state = 57}, - [2713] = {.lex_state = 0, .external_lex_state = 43}, - [2714] = {.lex_state = 2050, .external_lex_state = 37}, - [2715] = {.lex_state = 0, .external_lex_state = 43}, - [2716] = {.lex_state = 11, .external_lex_state = 49}, - [2717] = {.lex_state = 0, .external_lex_state = 57}, - [2718] = {.lex_state = 387, .external_lex_state = 59}, - [2719] = {.lex_state = 0, .external_lex_state = 43}, - [2720] = {.lex_state = 0, .external_lex_state = 67}, - [2721] = {.lex_state = 11, .external_lex_state = 49}, - [2722] = {.lex_state = 0, .external_lex_state = 43}, - [2723] = {.lex_state = 11, .external_lex_state = 49}, - [2724] = {.lex_state = 0, .external_lex_state = 43}, - [2725] = {.lex_state = 11, .external_lex_state = 49}, - [2726] = {.lex_state = 5, .external_lex_state = 61}, - [2727] = {.lex_state = 2016}, - [2728] = {.lex_state = 5, .external_lex_state = 61}, - [2729] = {.lex_state = 2016}, - [2730] = {.lex_state = 387, .external_lex_state = 59}, - [2731] = {.lex_state = 2050}, - [2732] = {.lex_state = 0, .external_lex_state = 69}, - [2733] = {.lex_state = 0, .external_lex_state = 69}, - [2734] = {.lex_state = 2}, - [2735] = {.lex_state = 2}, - [2736] = {.lex_state = 2}, - [2737] = {.lex_state = 2}, - [2738] = {.lex_state = 0, .external_lex_state = 70}, - [2739] = {.lex_state = 0, .external_lex_state = 71}, - [2740] = {.lex_state = 0, .external_lex_state = 70}, - [2741] = {.lex_state = 0, .external_lex_state = 71}, - [2742] = {.lex_state = 2}, - [2743] = {.lex_state = 0, .external_lex_state = 69}, - [2744] = {.lex_state = 0, .external_lex_state = 69}, - [2745] = {.lex_state = 2050, .external_lex_state = 72}, - [2746] = {.lex_state = 0, .external_lex_state = 70}, - [2747] = {.lex_state = 2}, - [2748] = {.lex_state = 2}, - [2749] = {.lex_state = 2}, - [2750] = {.lex_state = 2}, - [2751] = {.lex_state = 0, .external_lex_state = 69}, - [2752] = {.lex_state = 0, .external_lex_state = 71}, - [2753] = {.lex_state = 0, .external_lex_state = 70}, - [2754] = {.lex_state = 2}, - [2755] = {.lex_state = 2}, - [2756] = {.lex_state = 0, .external_lex_state = 70}, - [2757] = {.lex_state = 0, .external_lex_state = 71}, - [2758] = {.lex_state = 0, .external_lex_state = 69}, - [2759] = {.lex_state = 0, .external_lex_state = 70}, - [2760] = {.lex_state = 0, .external_lex_state = 69}, - [2761] = {.lex_state = 0, .external_lex_state = 71}, - [2762] = {.lex_state = 0, .external_lex_state = 70}, - [2763] = {.lex_state = 0, .external_lex_state = 71}, - [2764] = {.lex_state = 2050}, - [2765] = {.lex_state = 2050}, - [2766] = {.lex_state = 0, .external_lex_state = 69}, - [2767] = {.lex_state = 2}, - [2768] = {.lex_state = 0, .external_lex_state = 71}, - [2769] = {.lex_state = 0, .external_lex_state = 69}, - [2770] = {.lex_state = 0, .external_lex_state = 69}, - [2771] = {.lex_state = 2, .external_lex_state = 51}, - [2772] = {.lex_state = 2}, - [2773] = {.lex_state = 2}, - [2774] = {.lex_state = 2}, - [2775] = {.lex_state = 2}, - [2776] = {.lex_state = 0, .external_lex_state = 69}, - [2777] = {.lex_state = 2}, - [2778] = {.lex_state = 2}, - [2779] = {.lex_state = 2}, - [2780] = {.lex_state = 0, .external_lex_state = 69}, - [2781] = {.lex_state = 2050, .external_lex_state = 72}, - [2782] = {.lex_state = 2}, - [2783] = {.lex_state = 0, .external_lex_state = 70}, - [2784] = {.lex_state = 0, .external_lex_state = 71}, - [2785] = {.lex_state = 0, .external_lex_state = 70}, - [2786] = {.lex_state = 0, .external_lex_state = 71}, - [2787] = {.lex_state = 2}, - [2788] = {.lex_state = 2}, - [2789] = {.lex_state = 2}, - [2790] = {.lex_state = 5, .external_lex_state = 64}, - [2791] = {.lex_state = 0, .external_lex_state = 70}, - [2792] = {.lex_state = 0, .external_lex_state = 69}, - [2793] = {.lex_state = 0, .external_lex_state = 71}, - [2794] = {.lex_state = 0, .external_lex_state = 70}, - [2795] = {.lex_state = 2}, - [2796] = {.lex_state = 2}, - [2797] = {.lex_state = 0, .external_lex_state = 71}, - [2798] = {.lex_state = 2}, - [2799] = {.lex_state = 0, .external_lex_state = 70}, - [2800] = {.lex_state = 2}, - [2801] = {.lex_state = 2}, - [2802] = {.lex_state = 384, .external_lex_state = 49}, - [2803] = {.lex_state = 0, .external_lex_state = 69}, - [2804] = {.lex_state = 0, .external_lex_state = 70}, - [2805] = {.lex_state = 0, .external_lex_state = 71}, - [2806] = {.lex_state = 0, .external_lex_state = 70}, - [2807] = {.lex_state = 0, .external_lex_state = 71}, - [2808] = {.lex_state = 2050, .external_lex_state = 51}, - [2809] = {.lex_state = 385, .external_lex_state = 49}, - [2810] = {.lex_state = 0, .external_lex_state = 69}, - [2811] = {.lex_state = 2050, .external_lex_state = 52}, - [2812] = {.lex_state = 2}, - [2813] = {.lex_state = 2050, .external_lex_state = 72}, - [2814] = {.lex_state = 2}, - [2815] = {.lex_state = 2050, .external_lex_state = 51}, - [2816] = {.lex_state = 2050, .external_lex_state = 72}, - [2817] = {.lex_state = 0, .external_lex_state = 70}, - [2818] = {.lex_state = 0, .external_lex_state = 71}, - [2819] = {.lex_state = 2}, - [2820] = {.lex_state = 2}, - [2821] = {.lex_state = 0, .external_lex_state = 70}, - [2822] = {.lex_state = 0, .external_lex_state = 69}, - [2823] = {.lex_state = 2}, - [2824] = {.lex_state = 2}, - [2825] = {.lex_state = 0, .external_lex_state = 71}, - [2826] = {.lex_state = 2}, - [2827] = {.lex_state = 0, .external_lex_state = 69}, - [2828] = {.lex_state = 0, .external_lex_state = 41}, - [2829] = {.lex_state = 0, .external_lex_state = 70}, - [2830] = {.lex_state = 2}, - [2831] = {.lex_state = 0, .external_lex_state = 71}, - [2832] = {.lex_state = 0, .external_lex_state = 70}, - [2833] = {.lex_state = 0, .external_lex_state = 71}, - [2834] = {.lex_state = 2050, .external_lex_state = 52}, - [2835] = {.lex_state = 0, .external_lex_state = 71}, - [2836] = {.lex_state = 0, .external_lex_state = 71}, - [2837] = {.lex_state = 0, .external_lex_state = 71}, - [2838] = {.lex_state = 0, .external_lex_state = 71}, - [2839] = {.lex_state = 0, .external_lex_state = 69}, - [2840] = {.lex_state = 2}, - [2841] = {.lex_state = 0, .external_lex_state = 71}, - [2842] = {.lex_state = 0, .external_lex_state = 71}, - [2843] = {.lex_state = 2}, - [2844] = {.lex_state = 0, .external_lex_state = 71}, - [2845] = {.lex_state = 0, .external_lex_state = 71}, - [2846] = {.lex_state = 0, .external_lex_state = 71}, - [2847] = {.lex_state = 0, .external_lex_state = 70}, - [2848] = {.lex_state = 387}, - [2849] = {.lex_state = 0, .external_lex_state = 71}, - [2850] = {.lex_state = 0, .external_lex_state = 70}, - [2851] = {.lex_state = 0, .external_lex_state = 69}, - [2852] = {.lex_state = 0, .external_lex_state = 71}, - [2853] = {.lex_state = 2050, .external_lex_state = 72}, - [2854] = {.lex_state = 2050, .external_lex_state = 72}, - [2855] = {.lex_state = 0, .external_lex_state = 69}, - [2856] = {.lex_state = 2}, - [2857] = {.lex_state = 0, .external_lex_state = 70}, - [2858] = {.lex_state = 2}, - [2859] = {.lex_state = 2050, .external_lex_state = 73}, - [2860] = {.lex_state = 0, .external_lex_state = 71}, - [2861] = {.lex_state = 2050}, - [2862] = {.lex_state = 0, .external_lex_state = 69}, - [2863] = {.lex_state = 0, .external_lex_state = 69}, - [2864] = {.lex_state = 387}, - [2865] = {.lex_state = 2050}, - [2866] = {.lex_state = 2050}, - [2867] = {.lex_state = 0, .external_lex_state = 69}, - [2868] = {.lex_state = 11, .external_lex_state = 74}, - [2869] = {.lex_state = 0, .external_lex_state = 69}, - [2870] = {.lex_state = 2050}, - [2871] = {.lex_state = 2050}, - [2872] = {.lex_state = 384, .external_lex_state = 49}, - [2873] = {.lex_state = 385, .external_lex_state = 49}, - [2874] = {.lex_state = 0, .external_lex_state = 69}, - [2875] = {.lex_state = 0, .external_lex_state = 69}, - [2876] = {.lex_state = 0, .external_lex_state = 69}, - [2877] = {.lex_state = 0, .external_lex_state = 69}, - [2878] = {.lex_state = 0, .external_lex_state = 69}, - [2879] = {.lex_state = 0, .external_lex_state = 69}, - [2880] = {.lex_state = 0, .external_lex_state = 69}, - [2881] = {.lex_state = 0, .external_lex_state = 69}, - [2882] = {.lex_state = 3, .external_lex_state = 51}, - [2883] = {.lex_state = 387}, - [2884] = {.lex_state = 2}, - [2885] = {.lex_state = 2050}, - [2886] = {.lex_state = 0, .external_lex_state = 54}, - [2887] = {.lex_state = 2}, - [2888] = {.lex_state = 2}, - [2889] = {.lex_state = 2}, - [2890] = {.lex_state = 2}, - [2891] = {.lex_state = 0, .external_lex_state = 70}, - [2892] = {.lex_state = 2050}, - [2893] = {.lex_state = 2050}, - [2894] = {.lex_state = 2}, - [2895] = {.lex_state = 0, .external_lex_state = 69}, - [2896] = {.lex_state = 2050}, - [2897] = {.lex_state = 2050}, - [2898] = {.lex_state = 0, .external_lex_state = 69}, - [2899] = {.lex_state = 0, .external_lex_state = 69}, - [2900] = {.lex_state = 0, .external_lex_state = 69}, - [2901] = {.lex_state = 0, .external_lex_state = 69}, - [2902] = {.lex_state = 0, .external_lex_state = 69}, - [2903] = {.lex_state = 2}, + [2378] = {.lex_state = 6, .external_lex_state = 34}, + [2379] = {.lex_state = 6, .external_lex_state = 35}, + [2380] = {.lex_state = 6, .external_lex_state = 35}, + [2381] = {.lex_state = 6, .external_lex_state = 35}, + [2382] = {.lex_state = 6, .external_lex_state = 34}, + [2383] = {.lex_state = 6, .external_lex_state = 34}, + [2384] = {.lex_state = 6, .external_lex_state = 35}, + [2385] = {.lex_state = 6, .external_lex_state = 34}, + [2386] = {.lex_state = 6, .external_lex_state = 34}, + [2387] = {.lex_state = 6, .external_lex_state = 35}, + [2388] = {.lex_state = 6, .external_lex_state = 34}, + [2389] = {.lex_state = 6, .external_lex_state = 35}, + [2390] = {.lex_state = 6, .external_lex_state = 34}, + [2391] = {.lex_state = 6, .external_lex_state = 35}, + [2392] = {.lex_state = 6, .external_lex_state = 34}, + [2393] = {.lex_state = 6, .external_lex_state = 35}, + [2394] = {.lex_state = 6, .external_lex_state = 34}, + [2395] = {.lex_state = 6, .external_lex_state = 35}, + [2396] = {.lex_state = 6, .external_lex_state = 35}, + [2397] = {.lex_state = 6, .external_lex_state = 34}, + [2398] = {.lex_state = 6, .external_lex_state = 35}, + [2399] = {.lex_state = 6, .external_lex_state = 34}, + [2400] = {.lex_state = 6, .external_lex_state = 34}, + [2401] = {.lex_state = 6, .external_lex_state = 35}, + [2402] = {.lex_state = 6, .external_lex_state = 34}, + [2403] = {.lex_state = 6, .external_lex_state = 35}, + [2404] = {.lex_state = 6, .external_lex_state = 34}, + [2405] = {.lex_state = 6, .external_lex_state = 35}, + [2406] = {.lex_state = 6, .external_lex_state = 35}, + [2407] = {.lex_state = 6, .external_lex_state = 34}, + [2408] = {.lex_state = 6, .external_lex_state = 35}, + [2409] = {.lex_state = 6, .external_lex_state = 34}, + [2410] = {.lex_state = 6, .external_lex_state = 34}, + [2411] = {.lex_state = 6, .external_lex_state = 34}, + [2412] = {.lex_state = 6, .external_lex_state = 34}, + [2413] = {.lex_state = 6, .external_lex_state = 34}, + [2414] = {.lex_state = 6, .external_lex_state = 34}, + [2415] = {.lex_state = 6, .external_lex_state = 34}, + [2416] = {.lex_state = 6, .external_lex_state = 34}, + [2417] = {.lex_state = 6, .external_lex_state = 35}, + [2418] = {.lex_state = 6, .external_lex_state = 34}, + [2419] = {.lex_state = 6, .external_lex_state = 35}, + [2420] = {.lex_state = 6, .external_lex_state = 34}, + [2421] = {.lex_state = 6, .external_lex_state = 35}, + [2422] = {.lex_state = 6, .external_lex_state = 35}, + [2423] = {.lex_state = 6, .external_lex_state = 34}, + [2424] = {.lex_state = 6, .external_lex_state = 35}, + [2425] = {.lex_state = 6, .external_lex_state = 34}, + [2426] = {.lex_state = 6, .external_lex_state = 34}, + [2427] = {.lex_state = 6, .external_lex_state = 35}, + [2428] = {.lex_state = 6, .external_lex_state = 34}, + [2429] = {.lex_state = 6, .external_lex_state = 35}, + [2430] = {.lex_state = 6, .external_lex_state = 34}, + [2431] = {.lex_state = 6, .external_lex_state = 35}, + [2432] = {.lex_state = 6, .external_lex_state = 34}, + [2433] = {.lex_state = 6, .external_lex_state = 35}, + [2434] = {.lex_state = 6, .external_lex_state = 34}, + [2435] = {.lex_state = 6, .external_lex_state = 35}, + [2436] = {.lex_state = 6, .external_lex_state = 34}, + [2437] = {.lex_state = 6, .external_lex_state = 35}, + [2438] = {.lex_state = 6, .external_lex_state = 34}, + [2439] = {.lex_state = 6, .external_lex_state = 35}, + [2440] = {.lex_state = 6, .external_lex_state = 35}, + [2441] = {.lex_state = 6, .external_lex_state = 34}, + [2442] = {.lex_state = 6, .external_lex_state = 35}, + [2443] = {.lex_state = 6, .external_lex_state = 34}, + [2444] = {.lex_state = 6, .external_lex_state = 35}, + [2445] = {.lex_state = 6, .external_lex_state = 34}, + [2446] = {.lex_state = 6, .external_lex_state = 34}, + [2447] = {.lex_state = 6, .external_lex_state = 34}, + [2448] = {.lex_state = 9, .external_lex_state = 36}, + [2449] = {.lex_state = 9, .external_lex_state = 36}, + [2450] = {.lex_state = 9, .external_lex_state = 36}, + [2451] = {.lex_state = 9, .external_lex_state = 36}, + [2452] = {.lex_state = 9, .external_lex_state = 36}, + [2453] = {.lex_state = 9, .external_lex_state = 36}, + [2454] = {.lex_state = 9, .external_lex_state = 36}, + [2455] = {.lex_state = 9, .external_lex_state = 36}, + [2456] = {.lex_state = 9, .external_lex_state = 36}, + [2457] = {.lex_state = 9, .external_lex_state = 36}, + [2458] = {.lex_state = 9, .external_lex_state = 36}, + [2459] = {.lex_state = 9, .external_lex_state = 36}, + [2460] = {.lex_state = 9, .external_lex_state = 36}, + [2461] = {.lex_state = 9, .external_lex_state = 36}, + [2462] = {.lex_state = 9, .external_lex_state = 36}, + [2463] = {.lex_state = 9, .external_lex_state = 36}, + [2464] = {.lex_state = 9, .external_lex_state = 36}, + [2465] = {.lex_state = 9, .external_lex_state = 37}, + [2466] = {.lex_state = 9, .external_lex_state = 37}, + [2467] = {.lex_state = 9, .external_lex_state = 37}, + [2468] = {.lex_state = 6, .external_lex_state = 38}, + [2469] = {.lex_state = 9, .external_lex_state = 37}, + [2470] = {.lex_state = 9, .external_lex_state = 37}, + [2471] = {.lex_state = 9, .external_lex_state = 37}, + [2472] = {.lex_state = 6, .external_lex_state = 38}, + [2473] = {.lex_state = 9, .external_lex_state = 37}, + [2474] = {.lex_state = 9, .external_lex_state = 37}, + [2475] = {.lex_state = 9, .external_lex_state = 37}, + [2476] = {.lex_state = 9, .external_lex_state = 37}, + [2477] = {.lex_state = 9, .external_lex_state = 37}, + [2478] = {.lex_state = 9, .external_lex_state = 37}, + [2479] = {.lex_state = 9, .external_lex_state = 37}, + [2480] = {.lex_state = 9, .external_lex_state = 37}, + [2481] = {.lex_state = 9, .external_lex_state = 37}, + [2482] = {.lex_state = 6, .external_lex_state = 38}, + [2483] = {.lex_state = 9, .external_lex_state = 37}, + [2484] = {.lex_state = 9, .external_lex_state = 37}, + [2485] = {.lex_state = 6, .external_lex_state = 39}, + [2486] = {.lex_state = 6, .external_lex_state = 40}, + [2487] = {.lex_state = 6, .external_lex_state = 41}, + [2488] = {.lex_state = 6, .external_lex_state = 42}, + [2489] = {.lex_state = 8, .external_lex_state = 43}, + [2490] = {.lex_state = 8, .external_lex_state = 43}, + [2491] = {.lex_state = 2050, .external_lex_state = 44}, + [2492] = {.lex_state = 8, .external_lex_state = 43}, + [2493] = {.lex_state = 2050, .external_lex_state = 44}, + [2494] = {.lex_state = 8, .external_lex_state = 43}, + [2495] = {.lex_state = 6, .external_lex_state = 34}, + [2496] = {.lex_state = 2050, .external_lex_state = 44}, + [2497] = {.lex_state = 8, .external_lex_state = 43}, + [2498] = {.lex_state = 8, .external_lex_state = 43}, + [2499] = {.lex_state = 6, .external_lex_state = 35}, + [2500] = {.lex_state = 6, .external_lex_state = 35}, + [2501] = {.lex_state = 8, .external_lex_state = 43}, + [2502] = {.lex_state = 8, .external_lex_state = 43}, + [2503] = {.lex_state = 8, .external_lex_state = 43}, + [2504] = {.lex_state = 8, .external_lex_state = 43}, + [2505] = {.lex_state = 8, .external_lex_state = 43}, + [2506] = {.lex_state = 8, .external_lex_state = 43}, + [2507] = {.lex_state = 8, .external_lex_state = 43}, + [2508] = {.lex_state = 6, .external_lex_state = 34}, + [2509] = {.lex_state = 8, .external_lex_state = 43}, + [2510] = {.lex_state = 2050, .external_lex_state = 44}, + [2511] = {.lex_state = 8, .external_lex_state = 43}, + [2512] = {.lex_state = 8, .external_lex_state = 43}, + [2513] = {.lex_state = 6, .external_lex_state = 45}, + [2514] = {.lex_state = 6, .external_lex_state = 33}, + [2515] = {.lex_state = 6, .external_lex_state = 35}, + [2516] = {.lex_state = 6, .external_lex_state = 34}, + [2517] = {.lex_state = 8, .external_lex_state = 43}, + [2518] = {.lex_state = 8, .external_lex_state = 43}, + [2519] = {.lex_state = 8, .external_lex_state = 43}, + [2520] = {.lex_state = 8, .external_lex_state = 43}, + [2521] = {.lex_state = 8, .external_lex_state = 43}, + [2522] = {.lex_state = 8, .external_lex_state = 43}, + [2523] = {.lex_state = 9, .external_lex_state = 46}, + [2524] = {.lex_state = 8, .external_lex_state = 43}, + [2525] = {.lex_state = 8, .external_lex_state = 43}, + [2526] = {.lex_state = 6, .external_lex_state = 38}, + [2527] = {.lex_state = 8, .external_lex_state = 43}, + [2528] = {.lex_state = 8, .external_lex_state = 43}, + [2529] = {.lex_state = 8, .external_lex_state = 43}, + [2530] = {.lex_state = 6, .external_lex_state = 38}, + [2531] = {.lex_state = 8, .external_lex_state = 43}, + [2532] = {.lex_state = 8, .external_lex_state = 43}, + [2533] = {.lex_state = 8, .external_lex_state = 43}, + [2534] = {.lex_state = 8, .external_lex_state = 43}, + [2535] = {.lex_state = 8, .external_lex_state = 43}, + [2536] = {.lex_state = 8, .external_lex_state = 43}, + [2537] = {.lex_state = 8, .external_lex_state = 43}, + [2538] = {.lex_state = 8, .external_lex_state = 43}, + [2539] = {.lex_state = 8, .external_lex_state = 43}, + [2540] = {.lex_state = 8, .external_lex_state = 43}, + [2541] = {.lex_state = 8, .external_lex_state = 43}, + [2542] = {.lex_state = 8, .external_lex_state = 43}, + [2543] = {.lex_state = 9, .external_lex_state = 46}, + [2544] = {.lex_state = 8, .external_lex_state = 43}, + [2545] = {.lex_state = 8, .external_lex_state = 43}, + [2546] = {.lex_state = 8, .external_lex_state = 43}, + [2547] = {.lex_state = 8, .external_lex_state = 43}, + [2548] = {.lex_state = 8, .external_lex_state = 43}, + [2549] = {.lex_state = 8, .external_lex_state = 43}, + [2550] = {.lex_state = 8, .external_lex_state = 43}, + [2551] = {.lex_state = 8, .external_lex_state = 43}, + [2552] = {.lex_state = 8, .external_lex_state = 43}, + [2553] = {.lex_state = 8, .external_lex_state = 43}, + [2554] = {.lex_state = 9, .external_lex_state = 46}, + [2555] = {.lex_state = 8, .external_lex_state = 43}, + [2556] = {.lex_state = 8, .external_lex_state = 43}, + [2557] = {.lex_state = 8, .external_lex_state = 43}, + [2558] = {.lex_state = 8, .external_lex_state = 43}, + [2559] = {.lex_state = 8, .external_lex_state = 43}, + [2560] = {.lex_state = 8, .external_lex_state = 43}, + [2561] = {.lex_state = 8, .external_lex_state = 43}, + [2562] = {.lex_state = 8, .external_lex_state = 43}, + [2563] = {.lex_state = 8, .external_lex_state = 43}, + [2564] = {.lex_state = 8, .external_lex_state = 43}, + [2565] = {.lex_state = 8, .external_lex_state = 43}, + [2566] = {.lex_state = 8, .external_lex_state = 43}, + [2567] = {.lex_state = 9, .external_lex_state = 46}, + [2568] = {.lex_state = 8, .external_lex_state = 43}, + [2569] = {.lex_state = 8, .external_lex_state = 43}, + [2570] = {.lex_state = 8, .external_lex_state = 43}, + [2571] = {.lex_state = 2050, .external_lex_state = 37}, + [2572] = {.lex_state = 6, .external_lex_state = 38}, + [2573] = {.lex_state = 2050, .external_lex_state = 37}, + [2574] = {.lex_state = 9, .external_lex_state = 47}, + [2575] = {.lex_state = 9, .external_lex_state = 48}, + [2576] = {.lex_state = 2050, .external_lex_state = 37}, + [2577] = {.lex_state = 9, .external_lex_state = 47}, + [2578] = {.lex_state = 2050, .external_lex_state = 37}, + [2579] = {.lex_state = 2050, .external_lex_state = 37}, + [2580] = {.lex_state = 9, .external_lex_state = 48}, + [2581] = {.lex_state = 9, .external_lex_state = 47}, + [2582] = {.lex_state = 5, .external_lex_state = 49}, + [2583] = {.lex_state = 9, .external_lex_state = 48}, + [2584] = {.lex_state = 2048, .external_lex_state = 50}, + [2585] = {.lex_state = 2050, .external_lex_state = 51}, + [2586] = {.lex_state = 2048, .external_lex_state = 50}, + [2587] = {.lex_state = 2048, .external_lex_state = 50}, + [2588] = {.lex_state = 2048, .external_lex_state = 50}, + [2589] = {.lex_state = 2050, .external_lex_state = 51}, + [2590] = {.lex_state = 2048, .external_lex_state = 50}, + [2591] = {.lex_state = 5}, + [2592] = {.lex_state = 2048, .external_lex_state = 50}, + [2593] = {.lex_state = 2050, .external_lex_state = 51}, + [2594] = {.lex_state = 0, .external_lex_state = 32}, + [2595] = {.lex_state = 2048, .external_lex_state = 50}, + [2596] = {.lex_state = 2050, .external_lex_state = 51}, + [2597] = {.lex_state = 8, .external_lex_state = 43}, + [2598] = {.lex_state = 9, .external_lex_state = 46}, + [2599] = {.lex_state = 2048, .external_lex_state = 50}, + [2600] = {.lex_state = 8, .external_lex_state = 52}, + [2601] = {.lex_state = 9, .external_lex_state = 46}, + [2602] = {.lex_state = 2048, .external_lex_state = 50}, + [2603] = {.lex_state = 9, .external_lex_state = 46}, + [2604] = {.lex_state = 2050, .external_lex_state = 53}, + [2605] = {.lex_state = 2050, .external_lex_state = 53}, + [2606] = {.lex_state = 2050, .external_lex_state = 53}, + [2607] = {.lex_state = 2050, .external_lex_state = 53}, + [2608] = {.lex_state = 7, .external_lex_state = 54}, + [2609] = {.lex_state = 9}, + [2610] = {.lex_state = 2015, .external_lex_state = 55}, + [2611] = {.lex_state = 7, .external_lex_state = 54}, + [2612] = {.lex_state = 7, .external_lex_state = 54}, + [2613] = {.lex_state = 0, .external_lex_state = 46}, + [2614] = {.lex_state = 9, .external_lex_state = 46}, + [2615] = {.lex_state = 2050, .external_lex_state = 53}, + [2616] = {.lex_state = 2050, .external_lex_state = 53}, + [2617] = {.lex_state = 2050, .external_lex_state = 53}, + [2618] = {.lex_state = 2050, .external_lex_state = 53}, + [2619] = {.lex_state = 2050, .external_lex_state = 53}, + [2620] = {.lex_state = 2050, .external_lex_state = 53}, + [2621] = {.lex_state = 2050, .external_lex_state = 53}, + [2622] = {.lex_state = 7, .external_lex_state = 54}, + [2623] = {.lex_state = 0, .external_lex_state = 46}, + [2624] = {.lex_state = 11, .external_lex_state = 54}, + [2625] = {.lex_state = 2050, .external_lex_state = 53}, + [2626] = {.lex_state = 2050, .external_lex_state = 53}, + [2627] = {.lex_state = 2050, .external_lex_state = 53}, + [2628] = {.lex_state = 2050, .external_lex_state = 53}, + [2629] = {.lex_state = 2050, .external_lex_state = 53}, + [2630] = {.lex_state = 2050, .external_lex_state = 53}, + [2631] = {.lex_state = 2050, .external_lex_state = 53}, + [2632] = {.lex_state = 9, .external_lex_state = 46}, + [2633] = {.lex_state = 2050, .external_lex_state = 53}, + [2634] = {.lex_state = 2050, .external_lex_state = 53}, + [2635] = {.lex_state = 2048, .external_lex_state = 50}, + [2636] = {.lex_state = 11, .external_lex_state = 54}, + [2637] = {.lex_state = 11, .external_lex_state = 54}, + [2638] = {.lex_state = 2050, .external_lex_state = 53}, + [2639] = {.lex_state = 2050, .external_lex_state = 53}, + [2640] = {.lex_state = 2050, .external_lex_state = 53}, + [2641] = {.lex_state = 2050, .external_lex_state = 53}, + [2642] = {.lex_state = 2050, .external_lex_state = 53}, + [2643] = {.lex_state = 2050, .external_lex_state = 53}, + [2644] = {.lex_state = 2050, .external_lex_state = 53}, + [2645] = {.lex_state = 2050, .external_lex_state = 53}, + [2646] = {.lex_state = 7, .external_lex_state = 54}, + [2647] = {.lex_state = 0, .external_lex_state = 46}, + [2648] = {.lex_state = 2050, .external_lex_state = 53}, + [2649] = {.lex_state = 2050, .external_lex_state = 53}, + [2650] = {.lex_state = 7, .external_lex_state = 54}, + [2651] = {.lex_state = 2050, .external_lex_state = 56}, + [2652] = {.lex_state = 2050, .external_lex_state = 53}, + [2653] = {.lex_state = 2050, .external_lex_state = 53}, + [2654] = {.lex_state = 2050, .external_lex_state = 53}, + [2655] = {.lex_state = 2050, .external_lex_state = 53}, + [2656] = {.lex_state = 2050, .external_lex_state = 53}, + [2657] = {.lex_state = 2015, .external_lex_state = 55}, + [2658] = {.lex_state = 11, .external_lex_state = 54}, + [2659] = {.lex_state = 8, .external_lex_state = 43}, + [2660] = {.lex_state = 2050, .external_lex_state = 53}, + [2661] = {.lex_state = 2050, .external_lex_state = 53}, + [2662] = {.lex_state = 2050, .external_lex_state = 53}, + [2663] = {.lex_state = 2050, .external_lex_state = 53}, + [2664] = {.lex_state = 0, .external_lex_state = 46}, + [2665] = {.lex_state = 9, .external_lex_state = 57}, + [2666] = {.lex_state = 2050, .external_lex_state = 53}, + [2667] = {.lex_state = 2048, .external_lex_state = 50}, + [2668] = {.lex_state = 7, .external_lex_state = 54}, + [2669] = {.lex_state = 2050, .external_lex_state = 53}, + [2670] = {.lex_state = 2050, .external_lex_state = 53}, + [2671] = {.lex_state = 2050, .external_lex_state = 53}, + [2672] = {.lex_state = 2050, .external_lex_state = 53}, + [2673] = {.lex_state = 2050, .external_lex_state = 53}, + [2674] = {.lex_state = 2050, .external_lex_state = 53}, + [2675] = {.lex_state = 9, .external_lex_state = 57}, + [2676] = {.lex_state = 0, .external_lex_state = 46}, + [2677] = {.lex_state = 2050, .external_lex_state = 53}, + [2678] = {.lex_state = 2050, .external_lex_state = 53}, + [2679] = {.lex_state = 2050, .external_lex_state = 53}, + [2680] = {.lex_state = 2050, .external_lex_state = 53}, + [2681] = {.lex_state = 2050, .external_lex_state = 53}, + [2682] = {.lex_state = 2050, .external_lex_state = 53}, + [2683] = {.lex_state = 2050, .external_lex_state = 53}, + [2684] = {.lex_state = 2050, .external_lex_state = 53}, + [2685] = {.lex_state = 2015, .external_lex_state = 55}, + [2686] = {.lex_state = 2050, .external_lex_state = 53}, + [2687] = {.lex_state = 2050, .external_lex_state = 53}, + [2688] = {.lex_state = 2050, .external_lex_state = 53}, + [2689] = {.lex_state = 2050, .external_lex_state = 53}, + [2690] = {.lex_state = 2050, .external_lex_state = 53}, + [2691] = {.lex_state = 2050, .external_lex_state = 53}, + [2692] = {.lex_state = 11, .external_lex_state = 54}, + [2693] = {.lex_state = 2050, .external_lex_state = 53}, + [2694] = {.lex_state = 9}, + [2695] = {.lex_state = 0, .external_lex_state = 46}, + [2696] = {.lex_state = 2050, .external_lex_state = 53}, + [2697] = {.lex_state = 9, .external_lex_state = 46}, + [2698] = {.lex_state = 2050, .external_lex_state = 53}, + [2699] = {.lex_state = 2050, .external_lex_state = 53}, + [2700] = {.lex_state = 2050, .external_lex_state = 53}, + [2701] = {.lex_state = 2050, .external_lex_state = 53}, + [2702] = {.lex_state = 2050, .external_lex_state = 53}, + [2703] = {.lex_state = 2050, .external_lex_state = 53}, + [2704] = {.lex_state = 2050, .external_lex_state = 53}, + [2705] = {.lex_state = 2050, .external_lex_state = 53}, + [2706] = {.lex_state = 2050, .external_lex_state = 53}, + [2707] = {.lex_state = 2050, .external_lex_state = 53}, + [2708] = {.lex_state = 2050, .external_lex_state = 53}, + [2709] = {.lex_state = 2050, .external_lex_state = 53}, + [2710] = {.lex_state = 2050, .external_lex_state = 53}, + [2711] = {.lex_state = 2050, .external_lex_state = 53}, + [2712] = {.lex_state = 2050, .external_lex_state = 53}, + [2713] = {.lex_state = 2050, .external_lex_state = 48}, + [2714] = {.lex_state = 3, .external_lex_state = 53}, + [2715] = {.lex_state = 2050, .external_lex_state = 48}, + [2716] = {.lex_state = 3, .external_lex_state = 53}, + [2717] = {.lex_state = 2050, .external_lex_state = 53}, + [2718] = {.lex_state = 2, .external_lex_state = 53}, + [2719] = {.lex_state = 3, .external_lex_state = 53}, + [2720] = {.lex_state = 2050, .external_lex_state = 48}, + [2721] = {.lex_state = 3, .external_lex_state = 53}, + [2722] = {.lex_state = 2050, .external_lex_state = 37}, + [2723] = {.lex_state = 2050, .external_lex_state = 48}, + [2724] = {.lex_state = 3, .external_lex_state = 53}, + [2725] = {.lex_state = 3, .external_lex_state = 53}, + [2726] = {.lex_state = 2, .external_lex_state = 53}, + [2727] = {.lex_state = 2050, .external_lex_state = 48}, + [2728] = {.lex_state = 2050, .external_lex_state = 53}, + [2729] = {.lex_state = 2050, .external_lex_state = 53}, + [2730] = {.lex_state = 8, .external_lex_state = 43}, + [2731] = {.lex_state = 3, .external_lex_state = 53}, + [2732] = {.lex_state = 8, .external_lex_state = 43}, + [2733] = {.lex_state = 3, .external_lex_state = 53}, + [2734] = {.lex_state = 8, .external_lex_state = 43}, + [2735] = {.lex_state = 2050, .external_lex_state = 58}, + [2736] = {.lex_state = 2050, .external_lex_state = 48}, + [2737] = {.lex_state = 0, .external_lex_state = 59}, + [2738] = {.lex_state = 6, .external_lex_state = 53}, + [2739] = {.lex_state = 3, .external_lex_state = 53}, + [2740] = {.lex_state = 0, .external_lex_state = 46}, + [2741] = {.lex_state = 3, .external_lex_state = 53}, + [2742] = {.lex_state = 2050, .external_lex_state = 48}, + [2743] = {.lex_state = 0, .external_lex_state = 59}, + [2744] = {.lex_state = 3, .external_lex_state = 53}, + [2745] = {.lex_state = 3, .external_lex_state = 53}, + [2746] = {.lex_state = 2050, .external_lex_state = 48}, + [2747] = {.lex_state = 9, .external_lex_state = 47}, + [2748] = {.lex_state = 2050, .external_lex_state = 53}, + [2749] = {.lex_state = 3, .external_lex_state = 53}, + [2750] = {.lex_state = 3, .external_lex_state = 53}, + [2751] = {.lex_state = 2048, .external_lex_state = 60}, + [2752] = {.lex_state = 3, .external_lex_state = 53}, + [2753] = {.lex_state = 3, .external_lex_state = 53}, + [2754] = {.lex_state = 2050, .external_lex_state = 48}, + [2755] = {.lex_state = 3, .external_lex_state = 53}, + [2756] = {.lex_state = 3, .external_lex_state = 53}, + [2757] = {.lex_state = 2050, .external_lex_state = 48}, + [2758] = {.lex_state = 9, .external_lex_state = 47}, + [2759] = {.lex_state = 2050, .external_lex_state = 53}, + [2760] = {.lex_state = 2050, .external_lex_state = 53}, + [2761] = {.lex_state = 2050, .external_lex_state = 48}, + [2762] = {.lex_state = 3, .external_lex_state = 53}, + [2763] = {.lex_state = 3, .external_lex_state = 53}, + [2764] = {.lex_state = 3, .external_lex_state = 53}, + [2765] = {.lex_state = 2050, .external_lex_state = 53}, + [2766] = {.lex_state = 6, .external_lex_state = 53}, + [2767] = {.lex_state = 2050, .external_lex_state = 48}, + [2768] = {.lex_state = 3, .external_lex_state = 53}, + [2769] = {.lex_state = 3, .external_lex_state = 53}, + [2770] = {.lex_state = 3, .external_lex_state = 53}, + [2771] = {.lex_state = 9, .external_lex_state = 61}, + [2772] = {.lex_state = 3, .external_lex_state = 53}, + [2773] = {.lex_state = 3, .external_lex_state = 53}, + [2774] = {.lex_state = 2050, .external_lex_state = 53}, + [2775] = {.lex_state = 3, .external_lex_state = 53}, + [2776] = {.lex_state = 3, .external_lex_state = 53}, + [2777] = {.lex_state = 2050, .external_lex_state = 37}, + [2778] = {.lex_state = 3, .external_lex_state = 53}, + [2779] = {.lex_state = 2050, .external_lex_state = 53}, + [2780] = {.lex_state = 2050, .external_lex_state = 48}, + [2781] = {.lex_state = 2015, .external_lex_state = 55}, + [2782] = {.lex_state = 6, .external_lex_state = 53}, + [2783] = {.lex_state = 2050, .external_lex_state = 53}, + [2784] = {.lex_state = 2050, .external_lex_state = 53}, + [2785] = {.lex_state = 2050, .external_lex_state = 53}, + [2786] = {.lex_state = 2050, .external_lex_state = 53}, + [2787] = {.lex_state = 2050, .external_lex_state = 48}, + [2788] = {.lex_state = 2015, .external_lex_state = 55}, + [2789] = {.lex_state = 2050, .external_lex_state = 53}, + [2790] = {.lex_state = 2050, .external_lex_state = 53}, + [2791] = {.lex_state = 2050, .external_lex_state = 53}, + [2792] = {.lex_state = 2050, .external_lex_state = 53}, + [2793] = {.lex_state = 8, .external_lex_state = 43}, + [2794] = {.lex_state = 2050, .external_lex_state = 53}, + [2795] = {.lex_state = 2050, .external_lex_state = 48}, + [2796] = {.lex_state = 2050, .external_lex_state = 53}, + [2797] = {.lex_state = 2050, .external_lex_state = 53}, + [2798] = {.lex_state = 2050, .external_lex_state = 53}, + [2799] = {.lex_state = 2050, .external_lex_state = 53}, + [2800] = {.lex_state = 2050, .external_lex_state = 53}, + [2801] = {.lex_state = 2050, .external_lex_state = 53}, + [2802] = {.lex_state = 2050, .external_lex_state = 53}, + [2803] = {.lex_state = 2050, .external_lex_state = 53}, + [2804] = {.lex_state = 2050, .external_lex_state = 53}, + [2805] = {.lex_state = 2050, .external_lex_state = 53}, + [2806] = {.lex_state = 2050, .external_lex_state = 53}, + [2807] = {.lex_state = 2050, .external_lex_state = 53}, + [2808] = {.lex_state = 3, .external_lex_state = 53}, + [2809] = {.lex_state = 2050, .external_lex_state = 53}, + [2810] = {.lex_state = 2050, .external_lex_state = 53}, + [2811] = {.lex_state = 2050, .external_lex_state = 53}, + [2812] = {.lex_state = 2050, .external_lex_state = 53}, + [2813] = {.lex_state = 9, .external_lex_state = 47}, + [2814] = {.lex_state = 2050, .external_lex_state = 53}, + [2815] = {.lex_state = 2050, .external_lex_state = 53}, + [2816] = {.lex_state = 2050, .external_lex_state = 53}, + [2817] = {.lex_state = 2050, .external_lex_state = 53}, + [2818] = {.lex_state = 2050, .external_lex_state = 53}, + [2819] = {.lex_state = 2050, .external_lex_state = 53}, + [2820] = {.lex_state = 2050, .external_lex_state = 53}, + [2821] = {.lex_state = 2050, .external_lex_state = 53}, + [2822] = {.lex_state = 3, .external_lex_state = 53}, + [2823] = {.lex_state = 2050, .external_lex_state = 53}, + [2824] = {.lex_state = 2050, .external_lex_state = 53}, + [2825] = {.lex_state = 2050, .external_lex_state = 53}, + [2826] = {.lex_state = 2050, .external_lex_state = 53}, + [2827] = {.lex_state = 3, .external_lex_state = 53}, + [2828] = {.lex_state = 3, .external_lex_state = 53}, + [2829] = {.lex_state = 2050, .external_lex_state = 53}, + [2830] = {.lex_state = 2050, .external_lex_state = 53}, + [2831] = {.lex_state = 2050, .external_lex_state = 53}, + [2832] = {.lex_state = 2050, .external_lex_state = 53}, + [2833] = {.lex_state = 2050, .external_lex_state = 53}, + [2834] = {.lex_state = 9, .external_lex_state = 47}, + [2835] = {.lex_state = 2050, .external_lex_state = 53}, + [2836] = {.lex_state = 3, .external_lex_state = 53}, + [2837] = {.lex_state = 2050, .external_lex_state = 53}, + [2838] = {.lex_state = 2050, .external_lex_state = 53}, + [2839] = {.lex_state = 2050, .external_lex_state = 53}, + [2840] = {.lex_state = 2050, .external_lex_state = 53}, + [2841] = {.lex_state = 2050, .external_lex_state = 53}, + [2842] = {.lex_state = 2050, .external_lex_state = 53}, + [2843] = {.lex_state = 2050, .external_lex_state = 53}, + [2844] = {.lex_state = 0, .external_lex_state = 59}, + [2845] = {.lex_state = 2015, .external_lex_state = 55}, + [2846] = {.lex_state = 2050, .external_lex_state = 53}, + [2847] = {.lex_state = 2050, .external_lex_state = 53}, + [2848] = {.lex_state = 2050, .external_lex_state = 53}, + [2849] = {.lex_state = 2050, .external_lex_state = 53}, + [2850] = {.lex_state = 9, .external_lex_state = 62}, + [2851] = {.lex_state = 2050, .external_lex_state = 48}, + [2852] = {.lex_state = 2050, .external_lex_state = 53}, + [2853] = {.lex_state = 2, .external_lex_state = 53}, + [2854] = {.lex_state = 2050, .external_lex_state = 53}, + [2855] = {.lex_state = 2050, .external_lex_state = 53}, + [2856] = {.lex_state = 2050, .external_lex_state = 53}, + [2857] = {.lex_state = 2050, .external_lex_state = 51}, + [2858] = {.lex_state = 2050, .external_lex_state = 48}, + [2859] = {.lex_state = 2050, .external_lex_state = 53}, + [2860] = {.lex_state = 2050, .external_lex_state = 53}, + [2861] = {.lex_state = 2050, .external_lex_state = 53}, + [2862] = {.lex_state = 2050, .external_lex_state = 53}, + [2863] = {.lex_state = 2050, .external_lex_state = 53}, + [2864] = {.lex_state = 2050, .external_lex_state = 53}, + [2865] = {.lex_state = 2050, .external_lex_state = 53}, + [2866] = {.lex_state = 2050, .external_lex_state = 53}, + [2867] = {.lex_state = 2050, .external_lex_state = 53}, + [2868] = {.lex_state = 2050, .external_lex_state = 53}, + [2869] = {.lex_state = 3, .external_lex_state = 53}, + [2870] = {.lex_state = 2050, .external_lex_state = 53}, + [2871] = {.lex_state = 2050, .external_lex_state = 53}, + [2872] = {.lex_state = 2050, .external_lex_state = 53}, + [2873] = {.lex_state = 0, .external_lex_state = 48}, + [2874] = {.lex_state = 386, .external_lex_state = 63}, + [2875] = {.lex_state = 0, .external_lex_state = 48}, + [2876] = {.lex_state = 2050, .external_lex_state = 37}, + [2877] = {.lex_state = 386, .external_lex_state = 63}, + [2878] = {.lex_state = 0, .external_lex_state = 48}, + [2879] = {.lex_state = 0, .external_lex_state = 48}, + [2880] = {.lex_state = 386, .external_lex_state = 63}, + [2881] = {.lex_state = 1, .external_lex_state = 53}, + [2882] = {.lex_state = 2050, .external_lex_state = 53}, + [2883] = {.lex_state = 386, .external_lex_state = 63}, + [2884] = {.lex_state = 0, .external_lex_state = 64}, + [2885] = {.lex_state = 2050, .external_lex_state = 37}, + [2886] = {.lex_state = 2050, .external_lex_state = 37}, + [2887] = {.lex_state = 0, .external_lex_state = 65}, + [2888] = {.lex_state = 0, .external_lex_state = 66}, + [2889] = {.lex_state = 0, .external_lex_state = 67}, + [2890] = {.lex_state = 0, .external_lex_state = 48}, + [2891] = {.lex_state = 7, .external_lex_state = 54}, + [2892] = {.lex_state = 7, .external_lex_state = 54}, + [2893] = {.lex_state = 7, .external_lex_state = 54}, + [2894] = {.lex_state = 11, .external_lex_state = 54}, + [2895] = {.lex_state = 11, .external_lex_state = 54}, + [2896] = {.lex_state = 11, .external_lex_state = 54}, + [2897] = {.lex_state = 0, .external_lex_state = 67}, + [2898] = {.lex_state = 0, .external_lex_state = 48}, + [2899] = {.lex_state = 386, .external_lex_state = 63}, + [2900] = {.lex_state = 386, .external_lex_state = 63}, + [2901] = {.lex_state = 386, .external_lex_state = 63}, + [2902] = {.lex_state = 0, .external_lex_state = 68}, + [2903] = {.lex_state = 2050, .external_lex_state = 37}, [2904] = {.lex_state = 0, .external_lex_state = 69}, - [2905] = {.lex_state = 0, .external_lex_state = 69}, - [2906] = {.lex_state = 387}, - [2907] = {.lex_state = 2}, - [2908] = {.lex_state = 2}, - [2909] = {.lex_state = 2}, - [2910] = {.lex_state = 2050, .external_lex_state = 51}, - [2911] = {.lex_state = 0, .external_lex_state = 69}, - [2912] = {.lex_state = 2050}, - [2913] = {.lex_state = 2050}, - [2914] = {.lex_state = 2}, - [2915] = {.lex_state = 2050}, - [2916] = {.lex_state = 2050}, - [2917] = {.lex_state = 387}, - [2918] = {.lex_state = 2050}, - [2919] = {.lex_state = 2050}, - [2920] = {.lex_state = 0, .external_lex_state = 70}, - [2921] = {.lex_state = 2050}, - [2922] = {.lex_state = 2050}, - [2923] = {.lex_state = 387}, - [2924] = {.lex_state = 0, .external_lex_state = 71}, - [2925] = {.lex_state = 0, .external_lex_state = 71}, - [2926] = {.lex_state = 2050}, - [2927] = {.lex_state = 2050}, - [2928] = {.lex_state = 0, .external_lex_state = 70}, - [2929] = {.lex_state = 2050}, - [2930] = {.lex_state = 2050}, - [2931] = {.lex_state = 387}, - [2932] = {.lex_state = 2}, - [2933] = {.lex_state = 2}, - [2934] = {.lex_state = 0, .external_lex_state = 71}, - [2935] = {.lex_state = 2050}, - [2936] = {.lex_state = 2050}, - [2937] = {.lex_state = 0, .external_lex_state = 69}, - [2938] = {.lex_state = 2050}, - [2939] = {.lex_state = 2050}, - [2940] = {.lex_state = 387}, - [2941] = {.lex_state = 2}, - [2942] = {.lex_state = 8, .external_lex_state = 52}, - [2943] = {.lex_state = 2050, .external_lex_state = 72}, - [2944] = {.lex_state = 387, .external_lex_state = 59}, - [2945] = {.lex_state = 2050, .external_lex_state = 72}, - [2946] = {.lex_state = 0, .external_lex_state = 69}, - [2947] = {.lex_state = 2050}, - [2948] = {.lex_state = 2050}, - [2949] = {.lex_state = 2}, - [2950] = {.lex_state = 2050}, - [2951] = {.lex_state = 2050}, - [2952] = {.lex_state = 387}, - [2953] = {.lex_state = 0, .external_lex_state = 69}, - [2954] = {.lex_state = 0, .external_lex_state = 70}, - [2955] = {.lex_state = 0, .external_lex_state = 69}, - [2956] = {.lex_state = 0, .external_lex_state = 71}, - [2957] = {.lex_state = 0, .external_lex_state = 70}, - [2958] = {.lex_state = 2050}, - [2959] = {.lex_state = 2050}, - [2960] = {.lex_state = 0, .external_lex_state = 71}, - [2961] = {.lex_state = 2050}, - [2962] = {.lex_state = 2050}, - [2963] = {.lex_state = 387}, - [2964] = {.lex_state = 0, .external_lex_state = 70}, - [2965] = {.lex_state = 0, .external_lex_state = 71}, - [2966] = {.lex_state = 2}, - [2967] = {.lex_state = 2}, - [2968] = {.lex_state = 0, .external_lex_state = 70}, - [2969] = {.lex_state = 2050}, - [2970] = {.lex_state = 2050}, - [2971] = {.lex_state = 0, .external_lex_state = 69}, - [2972] = {.lex_state = 2050}, - [2973] = {.lex_state = 2050}, - [2974] = {.lex_state = 387}, - [2975] = {.lex_state = 0, .external_lex_state = 70}, - [2976] = {.lex_state = 0, .external_lex_state = 71}, - [2977] = {.lex_state = 0, .external_lex_state = 69}, - [2978] = {.lex_state = 2}, - [2979] = {.lex_state = 2050}, - [2980] = {.lex_state = 2050}, - [2981] = {.lex_state = 2}, - [2982] = {.lex_state = 2050}, - [2983] = {.lex_state = 2050}, - [2984] = {.lex_state = 387}, - [2985] = {.lex_state = 0, .external_lex_state = 69}, - [2986] = {.lex_state = 0, .external_lex_state = 69}, - [2987] = {.lex_state = 0, .external_lex_state = 69}, - [2988] = {.lex_state = 0, .external_lex_state = 69}, - [2989] = {.lex_state = 0, .external_lex_state = 69}, - [2990] = {.lex_state = 0, .external_lex_state = 69}, - [2991] = {.lex_state = 2050}, - [2992] = {.lex_state = 2050}, - [2993] = {.lex_state = 0, .external_lex_state = 70}, - [2994] = {.lex_state = 2050}, - [2995] = {.lex_state = 2050}, - [2996] = {.lex_state = 387}, - [2997] = {.lex_state = 0, .external_lex_state = 71}, - [2998] = {.lex_state = 0, .external_lex_state = 70}, - [2999] = {.lex_state = 0, .external_lex_state = 71}, - [3000] = {.lex_state = 0, .external_lex_state = 75}, - [3001] = {.lex_state = 0, .external_lex_state = 71}, - [3002] = {.lex_state = 2050}, - [3003] = {.lex_state = 2050}, - [3004] = {.lex_state = 0, .external_lex_state = 69}, - [3005] = {.lex_state = 2050}, - [3006] = {.lex_state = 2050}, - [3007] = {.lex_state = 387}, - [3008] = {.lex_state = 0, .external_lex_state = 69}, - [3009] = {.lex_state = 0, .external_lex_state = 70}, - [3010] = {.lex_state = 0, .external_lex_state = 71}, - [3011] = {.lex_state = 0, .external_lex_state = 69}, - [3012] = {.lex_state = 2050}, - [3013] = {.lex_state = 2050}, - [3014] = {.lex_state = 0, .external_lex_state = 69}, - [3015] = {.lex_state = 2050}, - [3016] = {.lex_state = 2050}, - [3017] = {.lex_state = 387}, - [3018] = {.lex_state = 0, .external_lex_state = 69}, - [3019] = {.lex_state = 2050}, - [3020] = {.lex_state = 2050}, - [3021] = {.lex_state = 0, .external_lex_state = 69}, - [3022] = {.lex_state = 2050}, - [3023] = {.lex_state = 2050}, - [3024] = {.lex_state = 387}, - [3025] = {.lex_state = 0, .external_lex_state = 69}, - [3026] = {.lex_state = 2}, - [3027] = {.lex_state = 2}, - [3028] = {.lex_state = 0, .external_lex_state = 69}, - [3029] = {.lex_state = 2050}, - [3030] = {.lex_state = 2050}, + [2905] = {.lex_state = 5, .external_lex_state = 57}, + [2906] = {.lex_state = 0, .external_lex_state = 48}, + [2907] = {.lex_state = 1, .external_lex_state = 53}, + [2908] = {.lex_state = 0, .external_lex_state = 48}, + [2909] = {.lex_state = 2050, .external_lex_state = 70}, + [2910] = {.lex_state = 386, .external_lex_state = 63}, + [2911] = {.lex_state = 1, .external_lex_state = 53}, + [2912] = {.lex_state = 2048, .external_lex_state = 50}, + [2913] = {.lex_state = 0, .external_lex_state = 71}, + [2914] = {.lex_state = 386, .external_lex_state = 63}, + [2915] = {.lex_state = 386, .external_lex_state = 63}, + [2916] = {.lex_state = 2015, .external_lex_state = 72}, + [2917] = {.lex_state = 0, .external_lex_state = 48}, + [2918] = {.lex_state = 2050, .external_lex_state = 53}, + [2919] = {.lex_state = 0, .external_lex_state = 64}, + [2920] = {.lex_state = 386, .external_lex_state = 63}, + [2921] = {.lex_state = 0, .external_lex_state = 65}, + [2922] = {.lex_state = 386, .external_lex_state = 63}, + [2923] = {.lex_state = 0, .external_lex_state = 68}, + [2924] = {.lex_state = 0, .external_lex_state = 73}, + [2925] = {.lex_state = 9, .external_lex_state = 57}, + [2926] = {.lex_state = 0, .external_lex_state = 48}, + [2927] = {.lex_state = 0, .external_lex_state = 48}, + [2928] = {.lex_state = 386, .external_lex_state = 63}, + [2929] = {.lex_state = 0, .external_lex_state = 48}, + [2930] = {.lex_state = 0, .external_lex_state = 74}, + [2931] = {.lex_state = 386, .external_lex_state = 63}, + [2932] = {.lex_state = 9}, + [2933] = {.lex_state = 5, .external_lex_state = 57}, + [2934] = {.lex_state = 0, .external_lex_state = 65}, + [2935] = {.lex_state = 5, .external_lex_state = 57}, + [2936] = {.lex_state = 2050, .external_lex_state = 75}, + [2937] = {.lex_state = 2050, .external_lex_state = 53}, + [2938] = {.lex_state = 0, .external_lex_state = 74}, + [2939] = {.lex_state = 5, .external_lex_state = 57}, + [2940] = {.lex_state = 2050, .external_lex_state = 53}, + [2941] = {.lex_state = 0, .external_lex_state = 66}, + [2942] = {.lex_state = 2050, .external_lex_state = 53}, + [2943] = {.lex_state = 0, .external_lex_state = 76}, + [2944] = {.lex_state = 0, .external_lex_state = 73}, + [2945] = {.lex_state = 9, .external_lex_state = 47}, + [2946] = {.lex_state = 0, .external_lex_state = 76}, + [2947] = {.lex_state = 0, .external_lex_state = 68}, + [2948] = {.lex_state = 0, .external_lex_state = 74}, + [2949] = {.lex_state = 0, .external_lex_state = 67}, + [2950] = {.lex_state = 0, .external_lex_state = 73}, + [2951] = {.lex_state = 0, .external_lex_state = 71}, + [2952] = {.lex_state = 386, .external_lex_state = 63}, + [2953] = {.lex_state = 0, .external_lex_state = 48}, + [2954] = {.lex_state = 2015}, + [2955] = {.lex_state = 2050, .external_lex_state = 37}, + [2956] = {.lex_state = 2050, .external_lex_state = 37}, + [2957] = {.lex_state = 2050, .external_lex_state = 53}, + [2958] = {.lex_state = 0, .external_lex_state = 66}, + [2959] = {.lex_state = 0, .external_lex_state = 64}, + [2960] = {.lex_state = 2050, .external_lex_state = 37}, + [2961] = {.lex_state = 2050, .external_lex_state = 37}, + [2962] = {.lex_state = 0, .external_lex_state = 77}, + [2963] = {.lex_state = 386, .external_lex_state = 63}, + [2964] = {.lex_state = 0, .external_lex_state = 76}, + [2965] = {.lex_state = 2050, .external_lex_state = 37}, + [2966] = {.lex_state = 0, .external_lex_state = 71}, + [2967] = {.lex_state = 2050, .external_lex_state = 53}, + [2968] = {.lex_state = 2015}, + [2969] = {.lex_state = 2015, .external_lex_state = 72}, + [2970] = {.lex_state = 2015}, + [2971] = {.lex_state = 2015, .external_lex_state = 72}, + [2972] = {.lex_state = 2050, .external_lex_state = 53}, + [2973] = {.lex_state = 2050, .external_lex_state = 53}, + [2974] = {.lex_state = 2050, .external_lex_state = 53}, + [2975] = {.lex_state = 2050, .external_lex_state = 53}, + [2976] = {.lex_state = 2050, .external_lex_state = 53}, + [2977] = {.lex_state = 2050, .external_lex_state = 53}, + [2978] = {.lex_state = 2050, .external_lex_state = 53}, + [2979] = {.lex_state = 2050, .external_lex_state = 53}, + [2980] = {.lex_state = 2050, .external_lex_state = 53}, + [2981] = {.lex_state = 2050, .external_lex_state = 53}, + [2982] = {.lex_state = 2050, .external_lex_state = 53}, + [2983] = {.lex_state = 2050, .external_lex_state = 53}, + [2984] = {.lex_state = 2050, .external_lex_state = 53}, + [2985] = {.lex_state = 2050, .external_lex_state = 53}, + [2986] = {.lex_state = 2050, .external_lex_state = 53}, + [2987] = {.lex_state = 2050, .external_lex_state = 53}, + [2988] = {.lex_state = 2050, .external_lex_state = 53}, + [2989] = {.lex_state = 2050, .external_lex_state = 53}, + [2990] = {.lex_state = 2050, .external_lex_state = 53}, + [2991] = {.lex_state = 2050, .external_lex_state = 53}, + [2992] = {.lex_state = 2050, .external_lex_state = 53}, + [2993] = {.lex_state = 0, .external_lex_state = 48}, + [2994] = {.lex_state = 2050, .external_lex_state = 53}, + [2995] = {.lex_state = 2050, .external_lex_state = 53}, + [2996] = {.lex_state = 2050, .external_lex_state = 53}, + [2997] = {.lex_state = 2050, .external_lex_state = 53}, + [2998] = {.lex_state = 2050, .external_lex_state = 53}, + [2999] = {.lex_state = 2050, .external_lex_state = 53}, + [3000] = {.lex_state = 2050, .external_lex_state = 53}, + [3001] = {.lex_state = 2050, .external_lex_state = 53}, + [3002] = {.lex_state = 2050, .external_lex_state = 53}, + [3003] = {.lex_state = 2050, .external_lex_state = 53}, + [3004] = {.lex_state = 2050, .external_lex_state = 53}, + [3005] = {.lex_state = 386, .external_lex_state = 63}, + [3006] = {.lex_state = 0, .external_lex_state = 78}, + [3007] = {.lex_state = 2}, + [3008] = {.lex_state = 2}, + [3009] = {.lex_state = 2}, + [3010] = {.lex_state = 2}, + [3011] = {.lex_state = 0, .external_lex_state = 79}, + [3012] = {.lex_state = 0, .external_lex_state = 80}, + [3013] = {.lex_state = 0, .external_lex_state = 78}, + [3014] = {.lex_state = 0, .external_lex_state = 80}, + [3015] = {.lex_state = 0, .external_lex_state = 78}, + [3016] = {.lex_state = 0, .external_lex_state = 78}, + [3017] = {.lex_state = 0, .external_lex_state = 80}, + [3018] = {.lex_state = 0, .external_lex_state = 79}, + [3019] = {.lex_state = 0, .external_lex_state = 78}, + [3020] = {.lex_state = 0, .external_lex_state = 78}, + [3021] = {.lex_state = 0, .external_lex_state = 79}, + [3022] = {.lex_state = 0, .external_lex_state = 78}, + [3023] = {.lex_state = 0, .external_lex_state = 78}, + [3024] = {.lex_state = 0, .external_lex_state = 79}, + [3025] = {.lex_state = 0, .external_lex_state = 78}, + [3026] = {.lex_state = 0, .external_lex_state = 78}, + [3027] = {.lex_state = 0, .external_lex_state = 79}, + [3028] = {.lex_state = 386}, + [3029] = {.lex_state = 0, .external_lex_state = 79}, + [3030] = {.lex_state = 2050, .external_lex_state = 53}, [3031] = {.lex_state = 2}, - [3032] = {.lex_state = 2050}, - [3033] = {.lex_state = 2050}, - [3034] = {.lex_state = 2050}, - [3035] = {.lex_state = 2050, .external_lex_state = 72}, - [3036] = {.lex_state = 2050}, - [3037] = {.lex_state = 2050}, - [3038] = {.lex_state = 2050}, - [3039] = {.lex_state = 2050}, - [3040] = {.lex_state = 2050}, - [3041] = {.lex_state = 2050}, - [3042] = {.lex_state = 2}, - [3043] = {.lex_state = 0, .external_lex_state = 69}, - [3044] = {.lex_state = 2}, - [3045] = {.lex_state = 0, .external_lex_state = 69}, - [3046] = {.lex_state = 2050}, - [3047] = {.lex_state = 0, .external_lex_state = 76}, - [3048] = {.lex_state = 0, .external_lex_state = 77}, - [3049] = {.lex_state = 2050, .external_lex_state = 44}, - [3050] = {.lex_state = 2050, .external_lex_state = 44}, - [3051] = {.lex_state = 2050, .external_lex_state = 44}, - [3052] = {.lex_state = 1, .external_lex_state = 51}, - [3053] = {.lex_state = 0, .external_lex_state = 78}, - [3054] = {.lex_state = 0, .external_lex_state = 65}, - [3055] = {.lex_state = 11, .external_lex_state = 49}, - [3056] = {.lex_state = 0, .external_lex_state = 66}, - [3057] = {.lex_state = 2050}, - [3058] = {.lex_state = 2050}, - [3059] = {.lex_state = 2050}, - [3060] = {.lex_state = 0, .external_lex_state = 48}, - [3061] = {.lex_state = 2050}, - [3062] = {.lex_state = 0, .external_lex_state = 67}, - [3063] = {.lex_state = 0, .external_lex_state = 76}, - [3064] = {.lex_state = 2050}, - [3065] = {.lex_state = 2050, .external_lex_state = 44}, - [3066] = {.lex_state = 0, .external_lex_state = 69}, - [3067] = {.lex_state = 2050}, - [3068] = {.lex_state = 0, .external_lex_state = 48}, - [3069] = {.lex_state = 0, .external_lex_state = 52}, + [3032] = {.lex_state = 2}, + [3033] = {.lex_state = 0, .external_lex_state = 79}, + [3034] = {.lex_state = 0, .external_lex_state = 80}, + [3035] = {.lex_state = 2}, + [3036] = {.lex_state = 0, .external_lex_state = 78}, + [3037] = {.lex_state = 0, .external_lex_state = 80}, + [3038] = {.lex_state = 385, .external_lex_state = 54}, + [3039] = {.lex_state = 0, .external_lex_state = 78}, + [3040] = {.lex_state = 0, .external_lex_state = 78}, + [3041] = {.lex_state = 0, .external_lex_state = 79}, + [3042] = {.lex_state = 0, .external_lex_state = 80}, + [3043] = {.lex_state = 0, .external_lex_state = 78}, + [3044] = {.lex_state = 385, .external_lex_state = 54}, + [3045] = {.lex_state = 384, .external_lex_state = 54}, + [3046] = {.lex_state = 0, .external_lex_state = 79}, + [3047] = {.lex_state = 0, .external_lex_state = 79}, + [3048] = {.lex_state = 0, .external_lex_state = 80}, + [3049] = {.lex_state = 0, .external_lex_state = 78}, + [3050] = {.lex_state = 0, .external_lex_state = 79}, + [3051] = {.lex_state = 0, .external_lex_state = 79}, + [3052] = {.lex_state = 0, .external_lex_state = 79}, + [3053] = {.lex_state = 0, .external_lex_state = 79}, + [3054] = {.lex_state = 0, .external_lex_state = 79}, + [3055] = {.lex_state = 0, .external_lex_state = 79}, + [3056] = {.lex_state = 2050, .external_lex_state = 57}, + [3057] = {.lex_state = 386}, + [3058] = {.lex_state = 2050, .external_lex_state = 81}, + [3059] = {.lex_state = 0, .external_lex_state = 78}, + [3060] = {.lex_state = 0, .external_lex_state = 80}, + [3061] = {.lex_state = 0, .external_lex_state = 78}, + [3062] = {.lex_state = 2050, .external_lex_state = 80}, + [3063] = {.lex_state = 0, .external_lex_state = 80}, + [3064] = {.lex_state = 0, .external_lex_state = 79}, + [3065] = {.lex_state = 0, .external_lex_state = 79}, + [3066] = {.lex_state = 2050, .external_lex_state = 81}, + [3067] = {.lex_state = 0, .external_lex_state = 79}, + [3068] = {.lex_state = 2}, + [3069] = {.lex_state = 0, .external_lex_state = 79}, [3070] = {.lex_state = 0, .external_lex_state = 79}, - [3071] = {.lex_state = 5, .external_lex_state = 52}, - [3072] = {.lex_state = 2050, .external_lex_state = 44}, - [3073] = {.lex_state = 0, .external_lex_state = 72}, - [3074] = {.lex_state = 0, .external_lex_state = 76}, - [3075] = {.lex_state = 0, .external_lex_state = 72}, - [3076] = {.lex_state = 2050, .external_lex_state = 44}, - [3077] = {.lex_state = 0, .external_lex_state = 76}, - [3078] = {.lex_state = 0, .external_lex_state = 72}, - [3079] = {.lex_state = 2050}, - [3080] = {.lex_state = 2050}, - [3081] = {.lex_state = 0, .external_lex_state = 58}, - [3082] = {.lex_state = 0, .external_lex_state = 48}, - [3083] = {.lex_state = 2050}, - [3084] = {.lex_state = 0, .external_lex_state = 48}, - [3085] = {.lex_state = 0, .external_lex_state = 62}, - [3086] = {.lex_state = 2050, .external_lex_state = 44}, - [3087] = {.lex_state = 0, .external_lex_state = 48}, - [3088] = {.lex_state = 0, .external_lex_state = 48}, - [3089] = {.lex_state = 0, .external_lex_state = 48}, - [3090] = {.lex_state = 0, .external_lex_state = 57}, - [3091] = {.lex_state = 0, .external_lex_state = 48}, - [3092] = {.lex_state = 0, .external_lex_state = 48}, - [3093] = {.lex_state = 0, .external_lex_state = 48}, - [3094] = {.lex_state = 2050}, - [3095] = {.lex_state = 2050}, - [3096] = {.lex_state = 2050}, - [3097] = {.lex_state = 2050}, - [3098] = {.lex_state = 2050}, - [3099] = {.lex_state = 2050}, - [3100] = {.lex_state = 0, .external_lex_state = 60}, - [3101] = {.lex_state = 0, .external_lex_state = 76}, - [3102] = {.lex_state = 0, .external_lex_state = 69}, - [3103] = {.lex_state = 0, .external_lex_state = 48}, - [3104] = {.lex_state = 0, .external_lex_state = 48}, - [3105] = {.lex_state = 0, .external_lex_state = 48}, - [3106] = {.lex_state = 0, .external_lex_state = 48}, - [3107] = {.lex_state = 0, .external_lex_state = 48}, - [3108] = {.lex_state = 0, .external_lex_state = 48}, - [3109] = {.lex_state = 0, .external_lex_state = 63}, - [3110] = {.lex_state = 2050}, - [3111] = {.lex_state = 2050}, - [3112] = {.lex_state = 2050}, - [3113] = {.lex_state = 2050}, - [3114] = {.lex_state = 2050}, - [3115] = {.lex_state = 2050}, - [3116] = {.lex_state = 0, .external_lex_state = 52}, - [3117] = {.lex_state = 0, .external_lex_state = 68}, - [3118] = {.lex_state = 2050}, - [3119] = {.lex_state = 2050}, - [3120] = {.lex_state = 2050}, - [3121] = {.lex_state = 2050}, - [3122] = {.lex_state = 2050}, - [3123] = {.lex_state = 2050}, - [3124] = {.lex_state = 2050}, - [3125] = {.lex_state = 2050}, - [3126] = {.lex_state = 2050}, - [3127] = {.lex_state = 2050}, - [3128] = {.lex_state = 2050}, - [3129] = {.lex_state = 2050}, - [3130] = {.lex_state = 0, .external_lex_state = 76}, - [3131] = {.lex_state = 0, .external_lex_state = 52}, - [3132] = {.lex_state = 2050}, - [3133] = {.lex_state = 2050}, - [3134] = {.lex_state = 2050}, - [3135] = {.lex_state = 2050}, - [3136] = {.lex_state = 2050}, - [3137] = {.lex_state = 2050}, - [3138] = {.lex_state = 2050}, - [3139] = {.lex_state = 2050}, - [3140] = {.lex_state = 2050}, - [3141] = {.lex_state = 2050}, - [3142] = {.lex_state = 2050, .external_lex_state = 44}, - [3143] = {.lex_state = 2050}, - [3144] = {.lex_state = 0, .external_lex_state = 76}, - [3145] = {.lex_state = 8}, - [3146] = {.lex_state = 0, .external_lex_state = 79}, - [3147] = {.lex_state = 2050}, - [3148] = {.lex_state = 0, .external_lex_state = 48}, - [3149] = {.lex_state = 2050}, - [3150] = {.lex_state = 2050}, - [3151] = {.lex_state = 2050}, - [3152] = {.lex_state = 2050}, - [3153] = {.lex_state = 2050}, - [3154] = {.lex_state = 0, .external_lex_state = 76}, - [3155] = {.lex_state = 0, .external_lex_state = 72}, - [3156] = {.lex_state = 2050}, - [3157] = {.lex_state = 2050}, - [3158] = {.lex_state = 2050}, - [3159] = {.lex_state = 2050}, - [3160] = {.lex_state = 2050}, - [3161] = {.lex_state = 2050}, - [3162] = {.lex_state = 0, .external_lex_state = 48}, - [3163] = {.lex_state = 8}, - [3164] = {.lex_state = 2050}, - [3165] = {.lex_state = 2050}, - [3166] = {.lex_state = 2050}, - [3167] = {.lex_state = 2050}, - [3168] = {.lex_state = 2050}, - [3169] = {.lex_state = 2050}, - [3170] = {.lex_state = 2050}, - [3171] = {.lex_state = 2050}, - [3172] = {.lex_state = 2050}, - [3173] = {.lex_state = 2050}, - [3174] = {.lex_state = 2050}, - [3175] = {.lex_state = 2050}, - [3176] = {.lex_state = 0, .external_lex_state = 72}, - [3177] = {.lex_state = 2050}, - [3178] = {.lex_state = 2050}, - [3179] = {.lex_state = 2050}, - [3180] = {.lex_state = 2050}, - [3181] = {.lex_state = 2050}, - [3182] = {.lex_state = 2050}, - [3183] = {.lex_state = 8}, - [3184] = {.lex_state = 2050}, - [3185] = {.lex_state = 2050}, - [3186] = {.lex_state = 2050}, - [3187] = {.lex_state = 2050}, - [3188] = {.lex_state = 2050}, - [3189] = {.lex_state = 0, .external_lex_state = 76}, - [3190] = {.lex_state = 0, .external_lex_state = 69}, - [3191] = {.lex_state = 0, .external_lex_state = 80}, - [3192] = {.lex_state = 2050}, - [3193] = {.lex_state = 2050}, - [3194] = {.lex_state = 2050}, - [3195] = {.lex_state = 2050}, - [3196] = {.lex_state = 2050}, - [3197] = {.lex_state = 2050}, - [3198] = {.lex_state = 2050}, - [3199] = {.lex_state = 2050}, - [3200] = {.lex_state = 2050}, - [3201] = {.lex_state = 2050}, - [3202] = {.lex_state = 2050}, - [3203] = {.lex_state = 2050}, - [3204] = {.lex_state = 0, .external_lex_state = 72}, - [3205] = {.lex_state = 0, .external_lex_state = 72}, - [3206] = {.lex_state = 0, .external_lex_state = 72}, - [3207] = {.lex_state = 2050}, - [3208] = {.lex_state = 2050}, - [3209] = {.lex_state = 2050}, - [3210] = {.lex_state = 2050}, - [3211] = {.lex_state = 2050}, - [3212] = {.lex_state = 2050}, - [3213] = {.lex_state = 8}, - [3214] = {.lex_state = 2050}, - [3215] = {.lex_state = 2050}, - [3216] = {.lex_state = 2050}, - [3217] = {.lex_state = 2050}, - [3218] = {.lex_state = 2050}, - [3219] = {.lex_state = 2050}, - [3220] = {.lex_state = 2050}, - [3221] = {.lex_state = 2050}, - [3222] = {.lex_state = 2050, .external_lex_state = 44}, - [3223] = {.lex_state = 2050}, - [3224] = {.lex_state = 2050}, - [3225] = {.lex_state = 0, .external_lex_state = 81}, - [3226] = {.lex_state = 8}, - [3227] = {.lex_state = 2050}, - [3228] = {.lex_state = 8}, - [3229] = {.lex_state = 8}, - [3230] = {.lex_state = 8}, - [3231] = {.lex_state = 8}, - [3232] = {.lex_state = 0, .external_lex_state = 82}, - [3233] = {.lex_state = 2050}, - [3234] = {.lex_state = 2050}, - [3235] = {.lex_state = 1}, - [3236] = {.lex_state = 2050}, - [3237] = {.lex_state = 1}, - [3238] = {.lex_state = 2050}, - [3239] = {.lex_state = 1}, - [3240] = {.lex_state = 1}, - [3241] = {.lex_state = 1}, - [3242] = {.lex_state = 2050}, - [3243] = {.lex_state = 0, .external_lex_state = 83}, - [3244] = {.lex_state = 0, .external_lex_state = 81}, - [3245] = {.lex_state = 2050}, - [3246] = {.lex_state = 2050}, - [3247] = {.lex_state = 0, .external_lex_state = 84}, - [3248] = {.lex_state = 0, .external_lex_state = 85}, - [3249] = {.lex_state = 0, .external_lex_state = 86}, - [3250] = {.lex_state = 8}, - [3251] = {.lex_state = 0, .external_lex_state = 87}, - [3252] = {.lex_state = 0, .external_lex_state = 88}, - [3253] = {.lex_state = 0, .external_lex_state = 89}, - [3254] = {.lex_state = 0, .external_lex_state = 90}, - [3255] = {.lex_state = 1}, - [3256] = {.lex_state = 2050}, - [3257] = {.lex_state = 2050}, - [3258] = {.lex_state = 8}, - [3259] = {.lex_state = 8}, - [3260] = {.lex_state = 2050}, - [3261] = {.lex_state = 2050}, - [3262] = {.lex_state = 2050}, - [3263] = {.lex_state = 2050}, - [3264] = {.lex_state = 2050}, - [3265] = {.lex_state = 1}, - [3266] = {.lex_state = 1}, - [3267] = {.lex_state = 1}, - [3268] = {.lex_state = 1}, - [3269] = {.lex_state = 3}, - [3270] = {.lex_state = 1}, - [3271] = {.lex_state = 0, .external_lex_state = 82}, - [3272] = {.lex_state = 2050}, - [3273] = {.lex_state = 1}, - [3274] = {.lex_state = 2050}, - [3275] = {.lex_state = 1}, - [3276] = {.lex_state = 3}, - [3277] = {.lex_state = 1}, - [3278] = {.lex_state = 0, .external_lex_state = 83}, - [3279] = {.lex_state = 0, .external_lex_state = 81}, - [3280] = {.lex_state = 0, .external_lex_state = 82}, - [3281] = {.lex_state = 2050}, - [3282] = {.lex_state = 8}, - [3283] = {.lex_state = 2050}, + [3071] = {.lex_state = 385, .external_lex_state = 54}, + [3072] = {.lex_state = 0, .external_lex_state = 79}, + [3073] = {.lex_state = 0, .external_lex_state = 79}, + [3074] = {.lex_state = 2050, .external_lex_state = 80}, + [3075] = {.lex_state = 0, .external_lex_state = 79}, + [3076] = {.lex_state = 0, .external_lex_state = 79}, + [3077] = {.lex_state = 0, .external_lex_state = 79}, + [3078] = {.lex_state = 0, .external_lex_state = 79}, + [3079] = {.lex_state = 0, .external_lex_state = 79}, + [3080] = {.lex_state = 0, .external_lex_state = 79}, + [3081] = {.lex_state = 0, .external_lex_state = 79}, + [3082] = {.lex_state = 386}, + [3083] = {.lex_state = 0, .external_lex_state = 79}, + [3084] = {.lex_state = 2050, .external_lex_state = 81}, + [3085] = {.lex_state = 2050, .external_lex_state = 81}, + [3086] = {.lex_state = 2}, + [3087] = {.lex_state = 2050, .external_lex_state = 81}, + [3088] = {.lex_state = 2}, + [3089] = {.lex_state = 2}, + [3090] = {.lex_state = 0, .external_lex_state = 78}, + [3091] = {.lex_state = 2}, + [3092] = {.lex_state = 2}, + [3093] = {.lex_state = 0, .external_lex_state = 80}, + [3094] = {.lex_state = 0, .external_lex_state = 78}, + [3095] = {.lex_state = 386}, + [3096] = {.lex_state = 0, .external_lex_state = 79}, + [3097] = {.lex_state = 0, .external_lex_state = 80}, + [3098] = {.lex_state = 0, .external_lex_state = 78}, + [3099] = {.lex_state = 0, .external_lex_state = 79}, + [3100] = {.lex_state = 2}, + [3101] = {.lex_state = 0, .external_lex_state = 79}, + [3102] = {.lex_state = 0, .external_lex_state = 79}, + [3103] = {.lex_state = 2}, + [3104] = {.lex_state = 2}, + [3105] = {.lex_state = 2050, .external_lex_state = 81}, + [3106] = {.lex_state = 0, .external_lex_state = 79}, + [3107] = {.lex_state = 2050, .external_lex_state = 78}, + [3108] = {.lex_state = 386}, + [3109] = {.lex_state = 0, .external_lex_state = 79}, + [3110] = {.lex_state = 2050, .external_lex_state = 53}, + [3111] = {.lex_state = 0, .external_lex_state = 79}, + [3112] = {.lex_state = 0, .external_lex_state = 80}, + [3113] = {.lex_state = 2}, + [3114] = {.lex_state = 0, .external_lex_state = 79}, + [3115] = {.lex_state = 2}, + [3116] = {.lex_state = 386}, + [3117] = {.lex_state = 2}, + [3118] = {.lex_state = 0, .external_lex_state = 79}, + [3119] = {.lex_state = 0, .external_lex_state = 78}, + [3120] = {.lex_state = 2}, + [3121] = {.lex_state = 2}, + [3122] = {.lex_state = 0, .external_lex_state = 80}, + [3123] = {.lex_state = 2}, + [3124] = {.lex_state = 386}, + [3125] = {.lex_state = 2}, + [3126] = {.lex_state = 0, .external_lex_state = 79}, + [3127] = {.lex_state = 2}, + [3128] = {.lex_state = 6, .external_lex_state = 53}, + [3129] = {.lex_state = 0, .external_lex_state = 80}, + [3130] = {.lex_state = 0, .external_lex_state = 79}, + [3131] = {.lex_state = 0, .external_lex_state = 78}, + [3132] = {.lex_state = 386}, + [3133] = {.lex_state = 0, .external_lex_state = 79}, + [3134] = {.lex_state = 0, .external_lex_state = 80}, + [3135] = {.lex_state = 0, .external_lex_state = 78}, + [3136] = {.lex_state = 0, .external_lex_state = 79}, + [3137] = {.lex_state = 0, .external_lex_state = 79}, + [3138] = {.lex_state = 386}, + [3139] = {.lex_state = 2}, + [3140] = {.lex_state = 0, .external_lex_state = 79}, + [3141] = {.lex_state = 3, .external_lex_state = 53}, + [3142] = {.lex_state = 2}, + [3143] = {.lex_state = 2}, + [3144] = {.lex_state = 0, .external_lex_state = 79}, + [3145] = {.lex_state = 0, .external_lex_state = 79}, + [3146] = {.lex_state = 2}, + [3147] = {.lex_state = 386, .external_lex_state = 63}, + [3148] = {.lex_state = 386}, + [3149] = {.lex_state = 2050, .external_lex_state = 78}, + [3150] = {.lex_state = 0, .external_lex_state = 82}, + [3151] = {.lex_state = 0, .external_lex_state = 78}, + [3152] = {.lex_state = 2}, + [3153] = {.lex_state = 384, .external_lex_state = 54}, + [3154] = {.lex_state = 2}, + [3155] = {.lex_state = 5, .external_lex_state = 61}, + [3156] = {.lex_state = 2}, + [3157] = {.lex_state = 2}, + [3158] = {.lex_state = 386}, + [3159] = {.lex_state = 2}, + [3160] = {.lex_state = 0, .external_lex_state = 80}, + [3161] = {.lex_state = 0, .external_lex_state = 79}, + [3162] = {.lex_state = 0, .external_lex_state = 80}, + [3163] = {.lex_state = 0, .external_lex_state = 80}, + [3164] = {.lex_state = 0, .external_lex_state = 78}, + [3165] = {.lex_state = 0, .external_lex_state = 78}, + [3166] = {.lex_state = 0, .external_lex_state = 80}, + [3167] = {.lex_state = 0, .external_lex_state = 78}, + [3168] = {.lex_state = 2050, .external_lex_state = 81}, + [3169] = {.lex_state = 0, .external_lex_state = 78}, + [3170] = {.lex_state = 386}, + [3171] = {.lex_state = 0, .external_lex_state = 79}, + [3172] = {.lex_state = 0, .external_lex_state = 37}, + [3173] = {.lex_state = 0, .external_lex_state = 80}, + [3174] = {.lex_state = 0, .external_lex_state = 80}, + [3175] = {.lex_state = 0, .external_lex_state = 78}, + [3176] = {.lex_state = 0, .external_lex_state = 78}, + [3177] = {.lex_state = 2050, .external_lex_state = 57}, + [3178] = {.lex_state = 2}, + [3179] = {.lex_state = 0, .external_lex_state = 79}, + [3180] = {.lex_state = 386}, + [3181] = {.lex_state = 2}, + [3182] = {.lex_state = 0, .external_lex_state = 80}, + [3183] = {.lex_state = 2050, .external_lex_state = 81}, + [3184] = {.lex_state = 2}, + [3185] = {.lex_state = 386}, + [3186] = {.lex_state = 0, .external_lex_state = 79}, + [3187] = {.lex_state = 0, .external_lex_state = 46}, + [3188] = {.lex_state = 0, .external_lex_state = 79}, + [3189] = {.lex_state = 386}, + [3190] = {.lex_state = 0, .external_lex_state = 80}, + [3191] = {.lex_state = 2}, + [3192] = {.lex_state = 2}, + [3193] = {.lex_state = 2050, .external_lex_state = 81}, + [3194] = {.lex_state = 0, .external_lex_state = 79}, + [3195] = {.lex_state = 2}, + [3196] = {.lex_state = 2}, + [3197] = {.lex_state = 0, .external_lex_state = 79}, + [3198] = {.lex_state = 0, .external_lex_state = 79}, + [3199] = {.lex_state = 0, .external_lex_state = 79}, + [3200] = {.lex_state = 386}, + [3201] = {.lex_state = 0, .external_lex_state = 80}, + [3202] = {.lex_state = 2}, + [3203] = {.lex_state = 0, .external_lex_state = 78}, + [3204] = {.lex_state = 2}, + [3205] = {.lex_state = 0, .external_lex_state = 80}, + [3206] = {.lex_state = 0, .external_lex_state = 78}, + [3207] = {.lex_state = 0, .external_lex_state = 59}, + [3208] = {.lex_state = 2}, + [3209] = {.lex_state = 2}, + [3210] = {.lex_state = 0, .external_lex_state = 78}, + [3211] = {.lex_state = 0, .external_lex_state = 79}, + [3212] = {.lex_state = 0, .external_lex_state = 79}, + [3213] = {.lex_state = 2}, + [3214] = {.lex_state = 2}, + [3215] = {.lex_state = 2}, + [3216] = {.lex_state = 2}, + [3217] = {.lex_state = 2}, + [3218] = {.lex_state = 0, .external_lex_state = 80}, + [3219] = {.lex_state = 2}, + [3220] = {.lex_state = 2}, + [3221] = {.lex_state = 0, .external_lex_state = 80}, + [3222] = {.lex_state = 0, .external_lex_state = 78}, + [3223] = {.lex_state = 0, .external_lex_state = 80}, + [3224] = {.lex_state = 0, .external_lex_state = 78}, + [3225] = {.lex_state = 0, .external_lex_state = 79}, + [3226] = {.lex_state = 0, .external_lex_state = 78}, + [3227] = {.lex_state = 0, .external_lex_state = 79}, + [3228] = {.lex_state = 0, .external_lex_state = 80}, + [3229] = {.lex_state = 0, .external_lex_state = 78}, + [3230] = {.lex_state = 2}, + [3231] = {.lex_state = 0, .external_lex_state = 79}, + [3232] = {.lex_state = 2}, + [3233] = {.lex_state = 0, .external_lex_state = 79}, + [3234] = {.lex_state = 2}, + [3235] = {.lex_state = 2}, + [3236] = {.lex_state = 0, .external_lex_state = 80}, + [3237] = {.lex_state = 2}, + [3238] = {.lex_state = 2}, + [3239] = {.lex_state = 2}, + [3240] = {.lex_state = 0, .external_lex_state = 79}, + [3241] = {.lex_state = 0, .external_lex_state = 80}, + [3242] = {.lex_state = 0, .external_lex_state = 78}, + [3243] = {.lex_state = 0, .external_lex_state = 80}, + [3244] = {.lex_state = 0, .external_lex_state = 78}, + [3245] = {.lex_state = 0, .external_lex_state = 79}, + [3246] = {.lex_state = 0, .external_lex_state = 78}, + [3247] = {.lex_state = 0, .external_lex_state = 79}, + [3248] = {.lex_state = 2}, + [3249] = {.lex_state = 2050, .external_lex_state = 83}, + [3250] = {.lex_state = 2, .external_lex_state = 53}, + [3251] = {.lex_state = 2050, .external_lex_state = 53}, + [3252] = {.lex_state = 2}, + [3253] = {.lex_state = 2}, + [3254] = {.lex_state = 2}, + [3255] = {.lex_state = 2}, + [3256] = {.lex_state = 2}, + [3257] = {.lex_state = 0, .external_lex_state = 84}, + [3258] = {.lex_state = 2050, .external_lex_state = 53}, + [3259] = {.lex_state = 2050, .external_lex_state = 47}, + [3260] = {.lex_state = 2050, .external_lex_state = 53}, + [3261] = {.lex_state = 2050, .external_lex_state = 53}, + [3262] = {.lex_state = 2050, .external_lex_state = 53}, + [3263] = {.lex_state = 2050, .external_lex_state = 53}, + [3264] = {.lex_state = 2050, .external_lex_state = 53}, + [3265] = {.lex_state = 2050, .external_lex_state = 53}, + [3266] = {.lex_state = 6}, + [3267] = {.lex_state = 0, .external_lex_state = 78}, + [3268] = {.lex_state = 2050, .external_lex_state = 53}, + [3269] = {.lex_state = 0, .external_lex_state = 65}, + [3270] = {.lex_state = 2050, .external_lex_state = 53}, + [3271] = {.lex_state = 0, .external_lex_state = 81}, + [3272] = {.lex_state = 0, .external_lex_state = 81}, + [3273] = {.lex_state = 0, .external_lex_state = 71}, + [3274] = {.lex_state = 2050, .external_lex_state = 47}, + [3275] = {.lex_state = 1, .external_lex_state = 53}, + [3276] = {.lex_state = 2050, .external_lex_state = 53}, + [3277] = {.lex_state = 0, .external_lex_state = 85}, + [3278] = {.lex_state = 5, .external_lex_state = 57}, + [3279] = {.lex_state = 2050, .external_lex_state = 53}, + [3280] = {.lex_state = 0, .external_lex_state = 55}, + [3281] = {.lex_state = 0, .external_lex_state = 55}, + [3282] = {.lex_state = 0, .external_lex_state = 81}, + [3283] = {.lex_state = 2050, .external_lex_state = 47}, [3284] = {.lex_state = 0, .external_lex_state = 84}, - [3285] = {.lex_state = 8}, - [3286] = {.lex_state = 2050}, - [3287] = {.lex_state = 0, .external_lex_state = 85}, - [3288] = {.lex_state = 0, .external_lex_state = 86}, + [3285] = {.lex_state = 2050, .external_lex_state = 53}, + [3286] = {.lex_state = 0, .external_lex_state = 81}, + [3287] = {.lex_state = 0, .external_lex_state = 80}, + [3288] = {.lex_state = 9}, [3289] = {.lex_state = 2050}, - [3290] = {.lex_state = 5}, - [3291] = {.lex_state = 1}, - [3292] = {.lex_state = 8}, - [3293] = {.lex_state = 8}, - [3294] = {.lex_state = 2050}, - [3295] = {.lex_state = 6}, - [3296] = {.lex_state = 1}, - [3297] = {.lex_state = 0, .external_lex_state = 87}, - [3298] = {.lex_state = 0, .external_lex_state = 88}, - [3299] = {.lex_state = 1}, - [3300] = {.lex_state = 0, .external_lex_state = 82}, - [3301] = {.lex_state = 1}, - [3302] = {.lex_state = 0, .external_lex_state = 89}, - [3303] = {.lex_state = 1}, - [3304] = {.lex_state = 0, .external_lex_state = 90}, - [3305] = {.lex_state = 1}, - [3306] = {.lex_state = 0, .external_lex_state = 82}, - [3307] = {.lex_state = 0, .external_lex_state = 83}, - [3308] = {.lex_state = 0, .external_lex_state = 81}, + [3290] = {.lex_state = 0, .external_lex_state = 68}, + [3291] = {.lex_state = 2050, .external_lex_state = 47}, + [3292] = {.lex_state = 0, .external_lex_state = 79}, + [3293] = {.lex_state = 0, .external_lex_state = 84}, + [3294] = {.lex_state = 0, .external_lex_state = 86}, + [3295] = {.lex_state = 3, .external_lex_state = 49}, + [3296] = {.lex_state = 2050}, + [3297] = {.lex_state = 2050, .external_lex_state = 47}, + [3298] = {.lex_state = 0, .external_lex_state = 55}, + [3299] = {.lex_state = 0, .external_lex_state = 84}, + [3300] = {.lex_state = 0, .external_lex_state = 55}, + [3301] = {.lex_state = 0, .external_lex_state = 55}, + [3302] = {.lex_state = 2050, .external_lex_state = 53}, + [3303] = {.lex_state = 0, .external_lex_state = 85}, + [3304] = {.lex_state = 0, .external_lex_state = 55}, + [3305] = {.lex_state = 0, .external_lex_state = 55}, + [3306] = {.lex_state = 0, .external_lex_state = 55}, + [3307] = {.lex_state = 2050, .external_lex_state = 53}, + [3308] = {.lex_state = 0, .external_lex_state = 64}, [3309] = {.lex_state = 2050}, [3310] = {.lex_state = 2050}, [3311] = {.lex_state = 0, .external_lex_state = 84}, - [3312] = {.lex_state = 0, .external_lex_state = 85}, - [3313] = {.lex_state = 0, .external_lex_state = 86}, - [3314] = {.lex_state = 2050}, - [3315] = {.lex_state = 0, .external_lex_state = 87}, - [3316] = {.lex_state = 0, .external_lex_state = 88}, - [3317] = {.lex_state = 0, .external_lex_state = 89}, - [3318] = {.lex_state = 0, .external_lex_state = 90}, - [3319] = {.lex_state = 2050}, - [3320] = {.lex_state = 1}, - [3321] = {.lex_state = 1}, - [3322] = {.lex_state = 1}, - [3323] = {.lex_state = 8}, - [3324] = {.lex_state = 2050}, + [3312] = {.lex_state = 2050, .external_lex_state = 53}, + [3313] = {.lex_state = 2050}, + [3314] = {.lex_state = 0, .external_lex_state = 73}, + [3315] = {.lex_state = 0, .external_lex_state = 84}, + [3316] = {.lex_state = 2050, .external_lex_state = 47}, + [3317] = {.lex_state = 0, .external_lex_state = 55}, + [3318] = {.lex_state = 0, .external_lex_state = 55}, + [3319] = {.lex_state = 0, .external_lex_state = 55}, + [3320] = {.lex_state = 0, .external_lex_state = 79}, + [3321] = {.lex_state = 0, .external_lex_state = 81}, + [3322] = {.lex_state = 0, .external_lex_state = 55}, + [3323] = {.lex_state = 0, .external_lex_state = 55}, + [3324] = {.lex_state = 0, .external_lex_state = 55}, [3325] = {.lex_state = 2050}, [3326] = {.lex_state = 2050}, [3327] = {.lex_state = 2050}, [3328] = {.lex_state = 2050}, - [3329] = {.lex_state = 1}, - [3330] = {.lex_state = 1}, - [3331] = {.lex_state = 1}, - [3332] = {.lex_state = 1}, - [3333] = {.lex_state = 3}, - [3334] = {.lex_state = 8}, + [3329] = {.lex_state = 2050}, + [3330] = {.lex_state = 2050}, + [3331] = {.lex_state = 0, .external_lex_state = 57}, + [3332] = {.lex_state = 0, .external_lex_state = 81}, + [3333] = {.lex_state = 2050, .external_lex_state = 53}, + [3334] = {.lex_state = 2050}, [3335] = {.lex_state = 2050}, [3336] = {.lex_state = 2050}, - [3337] = {.lex_state = 2050}, - [3338] = {.lex_state = 2050}, - [3339] = {.lex_state = 2050}, - [3340] = {.lex_state = 3}, - [3341] = {.lex_state = 0, .external_lex_state = 82}, - [3342] = {.lex_state = 0, .external_lex_state = 82}, - [3343] = {.lex_state = 1}, - [3344] = {.lex_state = 2050}, - [3345] = {.lex_state = 1}, - [3346] = {.lex_state = 8}, - [3347] = {.lex_state = 1}, - [3348] = {.lex_state = 1}, - [3349] = {.lex_state = 8}, - [3350] = {.lex_state = 3}, - [3351] = {.lex_state = 1}, - [3352] = {.lex_state = 3}, - [3353] = {.lex_state = 1}, - [3354] = {.lex_state = 0, .external_lex_state = 91}, - [3355] = {.lex_state = 3}, - [3356] = {.lex_state = 8}, - [3357] = {.lex_state = 8}, - [3358] = {.lex_state = 1}, - [3359] = {.lex_state = 0, .external_lex_state = 82}, - [3360] = {.lex_state = 1}, - [3361] = {.lex_state = 1}, - [3362] = {.lex_state = 0, .external_lex_state = 48}, - [3363] = {.lex_state = 1}, - [3364] = {.lex_state = 3}, - [3365] = {.lex_state = 1}, - [3366] = {.lex_state = 1}, - [3367] = {.lex_state = 1}, - [3368] = {.lex_state = 2044}, - [3369] = {.lex_state = 1}, - [3370] = {.lex_state = 3}, - [3371] = {.lex_state = 0, .external_lex_state = 83}, - [3372] = {.lex_state = 0, .external_lex_state = 81}, + [3337] = {.lex_state = 2050, .external_lex_state = 53}, + [3338] = {.lex_state = 0, .external_lex_state = 66}, + [3339] = {.lex_state = 0, .external_lex_state = 57}, + [3340] = {.lex_state = 2050}, + [3341] = {.lex_state = 2050}, + [3342] = {.lex_state = 2050}, + [3343] = {.lex_state = 0, .external_lex_state = 81}, + [3344] = {.lex_state = 0, .external_lex_state = 67}, + [3345] = {.lex_state = 2050}, + [3346] = {.lex_state = 2050}, + [3347] = {.lex_state = 2050}, + [3348] = {.lex_state = 9}, + [3349] = {.lex_state = 2050}, + [3350] = {.lex_state = 2050}, + [3351] = {.lex_state = 2050}, + [3352] = {.lex_state = 0, .external_lex_state = 84}, + [3353] = {.lex_state = 2050, .external_lex_state = 47}, + [3354] = {.lex_state = 2050}, + [3355] = {.lex_state = 2050}, + [3356] = {.lex_state = 2050}, + [3357] = {.lex_state = 2050}, + [3358] = {.lex_state = 2050}, + [3359] = {.lex_state = 2050}, + [3360] = {.lex_state = 0, .external_lex_state = 84}, + [3361] = {.lex_state = 2050, .external_lex_state = 53}, + [3362] = {.lex_state = 0, .external_lex_state = 87}, + [3363] = {.lex_state = 0, .external_lex_state = 57}, + [3364] = {.lex_state = 0, .external_lex_state = 84}, + [3365] = {.lex_state = 2050}, + [3366] = {.lex_state = 2050}, + [3367] = {.lex_state = 0, .external_lex_state = 55}, + [3368] = {.lex_state = 2050}, + [3369] = {.lex_state = 2050, .external_lex_state = 53}, + [3370] = {.lex_state = 2050}, + [3371] = {.lex_state = 0, .external_lex_state = 55}, + [3372] = {.lex_state = 2050, .external_lex_state = 47}, [3373] = {.lex_state = 2050}, [3374] = {.lex_state = 2050}, - [3375] = {.lex_state = 0, .external_lex_state = 84}, - [3376] = {.lex_state = 0, .external_lex_state = 85}, - [3377] = {.lex_state = 0, .external_lex_state = 86}, - [3378] = {.lex_state = 0, .external_lex_state = 82}, - [3379] = {.lex_state = 0, .external_lex_state = 87}, - [3380] = {.lex_state = 0, .external_lex_state = 88}, - [3381] = {.lex_state = 0, .external_lex_state = 89}, - [3382] = {.lex_state = 0, .external_lex_state = 90}, - [3383] = {.lex_state = 2050}, - [3384] = {.lex_state = 0, .external_lex_state = 44}, - [3385] = {.lex_state = 0, .external_lex_state = 82}, - [3386] = {.lex_state = 0, .external_lex_state = 82}, - [3387] = {.lex_state = 8}, + [3375] = {.lex_state = 2050}, + [3376] = {.lex_state = 2050, .external_lex_state = 57}, + [3377] = {.lex_state = 0, .external_lex_state = 79}, + [3378] = {.lex_state = 2050}, + [3379] = {.lex_state = 2050}, + [3380] = {.lex_state = 2050}, + [3381] = {.lex_state = 0, .external_lex_state = 55}, + [3382] = {.lex_state = 0, .external_lex_state = 55}, + [3383] = {.lex_state = 2050, .external_lex_state = 53}, + [3384] = {.lex_state = 2050}, + [3385] = {.lex_state = 2050}, + [3386] = {.lex_state = 2050}, + [3387] = {.lex_state = 2050}, [3388] = {.lex_state = 2050}, [3389] = {.lex_state = 2050}, [3390] = {.lex_state = 2050}, [3391] = {.lex_state = 2050}, [3392] = {.lex_state = 2050}, - [3393] = {.lex_state = 1}, - [3394] = {.lex_state = 1}, - [3395] = {.lex_state = 1}, - [3396] = {.lex_state = 1}, - [3397] = {.lex_state = 3}, - [3398] = {.lex_state = 8}, - [3399] = {.lex_state = 3}, - [3400] = {.lex_state = 0, .external_lex_state = 82}, - [3401] = {.lex_state = 8}, - [3402] = {.lex_state = 2050}, - [3403] = {.lex_state = 1}, - [3404] = {.lex_state = 3}, - [3405] = {.lex_state = 0, .external_lex_state = 82}, - [3406] = {.lex_state = 3}, - [3407] = {.lex_state = 8}, - [3408] = {.lex_state = 0, .external_lex_state = 82}, - [3409] = {.lex_state = 0, .external_lex_state = 82}, - [3410] = {.lex_state = 8}, - [3411] = {.lex_state = 2050}, - [3412] = {.lex_state = 8}, - [3413] = {.lex_state = 8}, - [3414] = {.lex_state = 2050}, - [3415] = {.lex_state = 0, .external_lex_state = 44}, - [3416] = {.lex_state = 2050}, - [3417] = {.lex_state = 2050}, - [3418] = {.lex_state = 2050}, - [3419] = {.lex_state = 2050}, - [3420] = {.lex_state = 8}, + [3393] = {.lex_state = 0, .external_lex_state = 74}, + [3394] = {.lex_state = 0, .external_lex_state = 88}, + [3395] = {.lex_state = 0, .external_lex_state = 76}, + [3396] = {.lex_state = 0, .external_lex_state = 81}, + [3397] = {.lex_state = 2050, .external_lex_state = 47}, + [3398] = {.lex_state = 9}, + [3399] = {.lex_state = 9}, + [3400] = {.lex_state = 1}, + [3401] = {.lex_state = 1}, + [3402] = {.lex_state = 0, .external_lex_state = 89}, + [3403] = {.lex_state = 0, .external_lex_state = 90}, + [3404] = {.lex_state = 2050}, + [3405] = {.lex_state = 2050}, + [3406] = {.lex_state = 0, .external_lex_state = 91}, + [3407] = {.lex_state = 0, .external_lex_state = 92}, + [3408] = {.lex_state = 0, .external_lex_state = 93}, + [3409] = {.lex_state = 0, .external_lex_state = 90}, + [3410] = {.lex_state = 0, .external_lex_state = 94}, + [3411] = {.lex_state = 0, .external_lex_state = 95}, + [3412] = {.lex_state = 0, .external_lex_state = 96}, + [3413] = {.lex_state = 0, .external_lex_state = 97}, + [3414] = {.lex_state = 0, .external_lex_state = 91}, + [3415] = {.lex_state = 9}, + [3416] = {.lex_state = 1}, + [3417] = {.lex_state = 1}, + [3418] = {.lex_state = 0, .external_lex_state = 92}, + [3419] = {.lex_state = 9}, + [3420] = {.lex_state = 2050}, [3421] = {.lex_state = 2050}, - [3422] = {.lex_state = 3}, - [3423] = {.lex_state = 1}, + [3422] = {.lex_state = 2050}, + [3423] = {.lex_state = 2050}, [3424] = {.lex_state = 2050}, - [3425] = {.lex_state = 2050}, - [3426] = {.lex_state = 2050}, + [3425] = {.lex_state = 1}, + [3426] = {.lex_state = 1}, [3427] = {.lex_state = 1}, - [3428] = {.lex_state = 8}, - [3429] = {.lex_state = 1}, - [3430] = {.lex_state = 3}, + [3428] = {.lex_state = 1}, + [3429] = {.lex_state = 3}, + [3430] = {.lex_state = 9}, [3431] = {.lex_state = 1}, - [3432] = {.lex_state = 2050}, - [3433] = {.lex_state = 1}, - [3434] = {.lex_state = 1}, - [3435] = {.lex_state = 1}, - [3436] = {.lex_state = 1}, - [3437] = {.lex_state = 2050}, - [3438] = {.lex_state = 0, .external_lex_state = 83}, - [3439] = {.lex_state = 2044}, - [3440] = {.lex_state = 2044}, - [3441] = {.lex_state = 0, .external_lex_state = 81}, - [3442] = {.lex_state = 2050}, - [3443] = {.lex_state = 2050}, - [3444] = {.lex_state = 0, .external_lex_state = 84}, - [3445] = {.lex_state = 0, .external_lex_state = 85}, - [3446] = {.lex_state = 0, .external_lex_state = 86}, - [3447] = {.lex_state = 8}, - [3448] = {.lex_state = 8}, - [3449] = {.lex_state = 0, .external_lex_state = 87}, - [3450] = {.lex_state = 2045}, - [3451] = {.lex_state = 9}, - [3452] = {.lex_state = 0, .external_lex_state = 88}, - [3453] = {.lex_state = 0, .external_lex_state = 89}, - [3454] = {.lex_state = 1}, - [3455] = {.lex_state = 0, .external_lex_state = 44}, - [3456] = {.lex_state = 8}, - [3457] = {.lex_state = 8}, - [3458] = {.lex_state = 1}, - [3459] = {.lex_state = 0, .external_lex_state = 90}, - [3460] = {.lex_state = 8}, - [3461] = {.lex_state = 0, .external_lex_state = 83}, - [3462] = {.lex_state = 0, .external_lex_state = 44}, - [3463] = {.lex_state = 0, .external_lex_state = 82}, - [3464] = {.lex_state = 0, .external_lex_state = 48}, + [3432] = {.lex_state = 1}, + [3433] = {.lex_state = 9}, + [3434] = {.lex_state = 9}, + [3435] = {.lex_state = 0, .external_lex_state = 89}, + [3436] = {.lex_state = 0, .external_lex_state = 90}, + [3437] = {.lex_state = 3}, + [3438] = {.lex_state = 9}, + [3439] = {.lex_state = 2050}, + [3440] = {.lex_state = 2050}, + [3441] = {.lex_state = 9}, + [3442] = {.lex_state = 0, .external_lex_state = 91}, + [3443] = {.lex_state = 6}, + [3444] = {.lex_state = 9}, + [3445] = {.lex_state = 9}, + [3446] = {.lex_state = 6}, + [3447] = {.lex_state = 9}, + [3448] = {.lex_state = 9}, + [3449] = {.lex_state = 1}, + [3450] = {.lex_state = 0, .external_lex_state = 92}, + [3451] = {.lex_state = 0, .external_lex_state = 93}, + [3452] = {.lex_state = 0, .external_lex_state = 47}, + [3453] = {.lex_state = 0, .external_lex_state = 94}, + [3454] = {.lex_state = 0, .external_lex_state = 95}, + [3455] = {.lex_state = 9}, + [3456] = {.lex_state = 9}, + [3457] = {.lex_state = 0, .external_lex_state = 96}, + [3458] = {.lex_state = 0, .external_lex_state = 97}, + [3459] = {.lex_state = 1}, + [3460] = {.lex_state = 9}, + [3461] = {.lex_state = 1}, + [3462] = {.lex_state = 1}, + [3463] = {.lex_state = 2050}, + [3464] = {.lex_state = 1}, [3465] = {.lex_state = 1}, - [3466] = {.lex_state = 0, .external_lex_state = 81}, - [3467] = {.lex_state = 8}, - [3468] = {.lex_state = 0, .external_lex_state = 83}, - [3469] = {.lex_state = 0, .external_lex_state = 91}, - [3470] = {.lex_state = 8}, - [3471] = {.lex_state = 0, .external_lex_state = 91}, + [3466] = {.lex_state = 1}, + [3467] = {.lex_state = 2050}, + [3468] = {.lex_state = 1}, + [3469] = {.lex_state = 9}, + [3470] = {.lex_state = 0, .external_lex_state = 89}, + [3471] = {.lex_state = 0, .external_lex_state = 90}, [3472] = {.lex_state = 2050}, - [3473] = {.lex_state = 0, .external_lex_state = 84}, - [3474] = {.lex_state = 2050}, - [3475] = {.lex_state = 2050}, - [3476] = {.lex_state = 2050}, - [3477] = {.lex_state = 2050}, - [3478] = {.lex_state = 6}, - [3479] = {.lex_state = 2050}, - [3480] = {.lex_state = 2050}, - [3481] = {.lex_state = 1}, - [3482] = {.lex_state = 0, .external_lex_state = 84}, - [3483] = {.lex_state = 1}, - [3484] = {.lex_state = 0, .external_lex_state = 85}, - [3485] = {.lex_state = 0, .external_lex_state = 44}, - [3486] = {.lex_state = 1}, - [3487] = {.lex_state = 1}, - [3488] = {.lex_state = 3}, + [3473] = {.lex_state = 2050}, + [3474] = {.lex_state = 0, .external_lex_state = 91}, + [3475] = {.lex_state = 0, .external_lex_state = 92}, + [3476] = {.lex_state = 0, .external_lex_state = 93}, + [3477] = {.lex_state = 0, .external_lex_state = 89}, + [3478] = {.lex_state = 0, .external_lex_state = 94}, + [3479] = {.lex_state = 0, .external_lex_state = 95}, + [3480] = {.lex_state = 0, .external_lex_state = 96}, + [3481] = {.lex_state = 0, .external_lex_state = 97}, + [3482] = {.lex_state = 9}, + [3483] = {.lex_state = 0, .external_lex_state = 90}, + [3484] = {.lex_state = 2050}, + [3485] = {.lex_state = 2050}, + [3486] = {.lex_state = 2050}, + [3487] = {.lex_state = 9}, + [3488] = {.lex_state = 2050}, [3489] = {.lex_state = 2050}, - [3490] = {.lex_state = 8}, - [3491] = {.lex_state = 8}, - [3492] = {.lex_state = 0, .external_lex_state = 85}, - [3493] = {.lex_state = 0, .external_lex_state = 82}, - [3494] = {.lex_state = 0, .external_lex_state = 86}, - [3495] = {.lex_state = 3}, - [3496] = {.lex_state = 2050}, - [3497] = {.lex_state = 2050}, - [3498] = {.lex_state = 3}, - [3499] = {.lex_state = 8}, - [3500] = {.lex_state = 2050}, - [3501] = {.lex_state = 0, .external_lex_state = 86}, - [3502] = {.lex_state = 2044}, - [3503] = {.lex_state = 2044}, - [3504] = {.lex_state = 8}, - [3505] = {.lex_state = 1}, - [3506] = {.lex_state = 0, .external_lex_state = 91}, - [3507] = {.lex_state = 1}, - [3508] = {.lex_state = 0, .external_lex_state = 82}, - [3509] = {.lex_state = 1}, - [3510] = {.lex_state = 8}, - [3511] = {.lex_state = 1}, - [3512] = {.lex_state = 0, .external_lex_state = 91}, - [3513] = {.lex_state = 2045}, - [3514] = {.lex_state = 9}, - [3515] = {.lex_state = 1}, - [3516] = {.lex_state = 0, .external_lex_state = 83}, - [3517] = {.lex_state = 0, .external_lex_state = 81}, - [3518] = {.lex_state = 2050}, + [3490] = {.lex_state = 2050}, + [3491] = {.lex_state = 2050}, + [3492] = {.lex_state = 2050}, + [3493] = {.lex_state = 1}, + [3494] = {.lex_state = 1}, + [3495] = {.lex_state = 1}, + [3496] = {.lex_state = 1}, + [3497] = {.lex_state = 3}, + [3498] = {.lex_state = 2050}, + [3499] = {.lex_state = 2050}, + [3500] = {.lex_state = 0, .external_lex_state = 91}, + [3501] = {.lex_state = 0, .external_lex_state = 92}, + [3502] = {.lex_state = 0, .external_lex_state = 93}, + [3503] = {.lex_state = 2050}, + [3504] = {.lex_state = 0, .external_lex_state = 98}, + [3505] = {.lex_state = 3}, + [3506] = {.lex_state = 9}, + [3507] = {.lex_state = 0, .external_lex_state = 98}, + [3508] = {.lex_state = 0, .external_lex_state = 98}, + [3509] = {.lex_state = 0, .external_lex_state = 94}, + [3510] = {.lex_state = 0, .external_lex_state = 98}, + [3511] = {.lex_state = 0, .external_lex_state = 95}, + [3512] = {.lex_state = 9}, + [3513] = {.lex_state = 9}, + [3514] = {.lex_state = 0, .external_lex_state = 96}, + [3515] = {.lex_state = 0, .external_lex_state = 97}, + [3516] = {.lex_state = 9}, + [3517] = {.lex_state = 0, .external_lex_state = 98}, + [3518] = {.lex_state = 0, .external_lex_state = 98}, [3519] = {.lex_state = 2050}, - [3520] = {.lex_state = 0, .external_lex_state = 84}, + [3520] = {.lex_state = 2050}, [3521] = {.lex_state = 2050}, - [3522] = {.lex_state = 0, .external_lex_state = 82}, - [3523] = {.lex_state = 1}, - [3524] = {.lex_state = 0, .external_lex_state = 91}, - [3525] = {.lex_state = 0, .external_lex_state = 85}, - [3526] = {.lex_state = 0, .external_lex_state = 86}, - [3527] = {.lex_state = 8}, - [3528] = {.lex_state = 0, .external_lex_state = 87}, - [3529] = {.lex_state = 0, .external_lex_state = 88}, - [3530] = {.lex_state = 0, .external_lex_state = 89}, - [3531] = {.lex_state = 0, .external_lex_state = 90}, - [3532] = {.lex_state = 0, .external_lex_state = 82}, + [3522] = {.lex_state = 6}, + [3523] = {.lex_state = 9}, + [3524] = {.lex_state = 9}, + [3525] = {.lex_state = 2050}, + [3526] = {.lex_state = 9}, + [3527] = {.lex_state = 9}, + [3528] = {.lex_state = 1}, + [3529] = {.lex_state = 2050}, + [3530] = {.lex_state = 1}, + [3531] = {.lex_state = 1}, + [3532] = {.lex_state = 1}, [3533] = {.lex_state = 1}, - [3534] = {.lex_state = 0, .external_lex_state = 87}, + [3534] = {.lex_state = 1}, [3535] = {.lex_state = 1}, - [3536] = {.lex_state = 0, .external_lex_state = 88}, - [3537] = {.lex_state = 1}, - [3538] = {.lex_state = 8}, - [3539] = {.lex_state = 1}, - [3540] = {.lex_state = 1}, - [3541] = {.lex_state = 1}, - [3542] = {.lex_state = 0, .external_lex_state = 48}, - [3543] = {.lex_state = 0, .external_lex_state = 89}, - [3544] = {.lex_state = 0, .external_lex_state = 83}, - [3545] = {.lex_state = 0, .external_lex_state = 48}, - [3546] = {.lex_state = 8}, - [3547] = {.lex_state = 0, .external_lex_state = 81}, - [3548] = {.lex_state = 2050}, - [3549] = {.lex_state = 2050}, - [3550] = {.lex_state = 8}, - [3551] = {.lex_state = 0, .external_lex_state = 82}, - [3552] = {.lex_state = 1}, - [3553] = {.lex_state = 0, .external_lex_state = 82}, + [3536] = {.lex_state = 1}, + [3537] = {.lex_state = 3}, + [3538] = {.lex_state = 0, .external_lex_state = 89}, + [3539] = {.lex_state = 0, .external_lex_state = 90}, + [3540] = {.lex_state = 2050}, + [3541] = {.lex_state = 2050}, + [3542] = {.lex_state = 0, .external_lex_state = 91}, + [3543] = {.lex_state = 0, .external_lex_state = 92}, + [3544] = {.lex_state = 0, .external_lex_state = 93}, + [3545] = {.lex_state = 9}, + [3546] = {.lex_state = 0, .external_lex_state = 94}, + [3547] = {.lex_state = 0, .external_lex_state = 95}, + [3548] = {.lex_state = 0, .external_lex_state = 96}, + [3549] = {.lex_state = 0, .external_lex_state = 97}, + [3550] = {.lex_state = 2050}, + [3551] = {.lex_state = 2050}, + [3552] = {.lex_state = 6}, + [3553] = {.lex_state = 2050}, [3554] = {.lex_state = 2050}, - [3555] = {.lex_state = 1}, - [3556] = {.lex_state = 1}, - [3557] = {.lex_state = 2044}, - [3558] = {.lex_state = 2044}, - [3559] = {.lex_state = 0, .external_lex_state = 82}, - [3560] = {.lex_state = 0, .external_lex_state = 84}, + [3555] = {.lex_state = 9}, + [3556] = {.lex_state = 2050}, + [3557] = {.lex_state = 2050}, + [3558] = {.lex_state = 2050}, + [3559] = {.lex_state = 2050}, + [3560] = {.lex_state = 2050}, [3561] = {.lex_state = 1}, - [3562] = {.lex_state = 2050}, - [3563] = {.lex_state = 8}, - [3564] = {.lex_state = 2050}, - [3565] = {.lex_state = 2050}, + [3562] = {.lex_state = 1}, + [3563] = {.lex_state = 1}, + [3564] = {.lex_state = 1}, + [3565] = {.lex_state = 3}, [3566] = {.lex_state = 2050}, - [3567] = {.lex_state = 0, .external_lex_state = 85}, - [3568] = {.lex_state = 2045}, - [3569] = {.lex_state = 9}, + [3567] = {.lex_state = 1}, + [3568] = {.lex_state = 1}, + [3569] = {.lex_state = 1}, [3570] = {.lex_state = 1}, - [3571] = {.lex_state = 0, .external_lex_state = 83}, - [3572] = {.lex_state = 1}, - [3573] = {.lex_state = 0, .external_lex_state = 81}, - [3574] = {.lex_state = 0, .external_lex_state = 83}, - [3575] = {.lex_state = 0, .external_lex_state = 81}, - [3576] = {.lex_state = 0, .external_lex_state = 86}, - [3577] = {.lex_state = 2050}, - [3578] = {.lex_state = 0, .external_lex_state = 90}, - [3579] = {.lex_state = 0, .external_lex_state = 87}, - [3580] = {.lex_state = 0, .external_lex_state = 88}, - [3581] = {.lex_state = 0, .external_lex_state = 89}, - [3582] = {.lex_state = 0, .external_lex_state = 90}, + [3571] = {.lex_state = 1}, + [3572] = {.lex_state = 3}, + [3573] = {.lex_state = 3}, + [3574] = {.lex_state = 9}, + [3575] = {.lex_state = 0, .external_lex_state = 47}, + [3576] = {.lex_state = 0, .external_lex_state = 98}, + [3577] = {.lex_state = 9}, + [3578] = {.lex_state = 0, .external_lex_state = 98}, + [3579] = {.lex_state = 9}, + [3580] = {.lex_state = 9}, + [3581] = {.lex_state = 9}, + [3582] = {.lex_state = 1}, [3583] = {.lex_state = 2050}, - [3584] = {.lex_state = 2044}, - [3585] = {.lex_state = 2044}, - [3586] = {.lex_state = 0, .external_lex_state = 82}, - [3587] = {.lex_state = 0, .external_lex_state = 82}, - [3588] = {.lex_state = 0, .external_lex_state = 82}, - [3589] = {.lex_state = 0, .external_lex_state = 82}, - [3590] = {.lex_state = 0, .external_lex_state = 82}, - [3591] = {.lex_state = 0, .external_lex_state = 82}, - [3592] = {.lex_state = 0, .external_lex_state = 81}, - [3593] = {.lex_state = 2050}, - [3594] = {.lex_state = 2045}, - [3595] = {.lex_state = 9}, - [3596] = {.lex_state = 2050}, - [3597] = {.lex_state = 6}, - [3598] = {.lex_state = 0, .external_lex_state = 84}, - [3599] = {.lex_state = 0, .external_lex_state = 85}, - [3600] = {.lex_state = 0, .external_lex_state = 86}, + [3584] = {.lex_state = 9}, + [3585] = {.lex_state = 0, .external_lex_state = 98}, + [3586] = {.lex_state = 0, .external_lex_state = 98}, + [3587] = {.lex_state = 2050}, + [3588] = {.lex_state = 2050}, + [3589] = {.lex_state = 2050}, + [3590] = {.lex_state = 2050}, + [3591] = {.lex_state = 0, .external_lex_state = 98}, + [3592] = {.lex_state = 0, .external_lex_state = 98}, + [3593] = {.lex_state = 0, .external_lex_state = 55}, + [3594] = {.lex_state = 0, .external_lex_state = 47}, + [3595] = {.lex_state = 1}, + [3596] = {.lex_state = 3}, + [3597] = {.lex_state = 9}, + [3598] = {.lex_state = 0, .external_lex_state = 98}, + [3599] = {.lex_state = 1}, + [3600] = {.lex_state = 0, .external_lex_state = 99}, [3601] = {.lex_state = 2050}, - [3602] = {.lex_state = 1}, - [3603] = {.lex_state = 0, .external_lex_state = 87}, - [3604] = {.lex_state = 0, .external_lex_state = 48}, - [3605] = {.lex_state = 2050}, - [3606] = {.lex_state = 0, .external_lex_state = 78}, - [3607] = {.lex_state = 8}, + [3602] = {.lex_state = 2050}, + [3603] = {.lex_state = 1}, + [3604] = {.lex_state = 3}, + [3605] = {.lex_state = 9}, + [3606] = {.lex_state = 9}, + [3607] = {.lex_state = 1}, [3608] = {.lex_state = 2050}, - [3609] = {.lex_state = 0, .external_lex_state = 88}, + [3609] = {.lex_state = 3}, [3610] = {.lex_state = 2044}, [3611] = {.lex_state = 2044}, - [3612] = {.lex_state = 2050}, - [3613] = {.lex_state = 6}, - [3614] = {.lex_state = 0, .external_lex_state = 89}, - [3615] = {.lex_state = 1}, - [3616] = {.lex_state = 1}, + [3612] = {.lex_state = 0, .external_lex_state = 93}, + [3613] = {.lex_state = 3}, + [3614] = {.lex_state = 9}, + [3615] = {.lex_state = 9}, + [3616] = {.lex_state = 9}, [3617] = {.lex_state = 1}, - [3618] = {.lex_state = 1}, - [3619] = {.lex_state = 3}, - [3620] = {.lex_state = 2045}, - [3621] = {.lex_state = 9}, - [3622] = {.lex_state = 0, .external_lex_state = 90}, - [3623] = {.lex_state = 2050}, - [3624] = {.lex_state = 0, .external_lex_state = 82}, - [3625] = {.lex_state = 0, .external_lex_state = 84}, - [3626] = {.lex_state = 0, .external_lex_state = 85}, - [3627] = {.lex_state = 0, .external_lex_state = 86}, - [3628] = {.lex_state = 2050}, - [3629] = {.lex_state = 8}, - [3630] = {.lex_state = 2050}, - [3631] = {.lex_state = 1}, - [3632] = {.lex_state = 1}, - [3633] = {.lex_state = 1}, - [3634] = {.lex_state = 1}, - [3635] = {.lex_state = 2050}, - [3636] = {.lex_state = 2044}, - [3637] = {.lex_state = 2044}, - [3638] = {.lex_state = 2050}, + [3618] = {.lex_state = 2050}, + [3619] = {.lex_state = 1}, + [3620] = {.lex_state = 1}, + [3621] = {.lex_state = 2045}, + [3622] = {.lex_state = 10}, + [3623] = {.lex_state = 0, .external_lex_state = 98}, + [3624] = {.lex_state = 0, .external_lex_state = 94}, + [3625] = {.lex_state = 0, .external_lex_state = 95}, + [3626] = {.lex_state = 0, .external_lex_state = 96}, + [3627] = {.lex_state = 2050}, + [3628] = {.lex_state = 9}, + [3629] = {.lex_state = 3}, + [3630] = {.lex_state = 9}, + [3631] = {.lex_state = 0, .external_lex_state = 89}, + [3632] = {.lex_state = 0, .external_lex_state = 90}, + [3633] = {.lex_state = 0, .external_lex_state = 88}, + [3634] = {.lex_state = 0, .external_lex_state = 99}, + [3635] = {.lex_state = 0, .external_lex_state = 97}, + [3636] = {.lex_state = 3}, + [3637] = {.lex_state = 0, .external_lex_state = 98}, + [3638] = {.lex_state = 0, .external_lex_state = 55}, [3639] = {.lex_state = 2050}, - [3640] = {.lex_state = 8}, + [3640] = {.lex_state = 2050}, [3641] = {.lex_state = 2050}, - [3642] = {.lex_state = 0, .external_lex_state = 82}, - [3643] = {.lex_state = 0, .external_lex_state = 82}, - [3644] = {.lex_state = 0, .external_lex_state = 82}, - [3645] = {.lex_state = 0, .external_lex_state = 82}, - [3646] = {.lex_state = 2045}, - [3647] = {.lex_state = 9}, - [3648] = {.lex_state = 0, .external_lex_state = 82}, - [3649] = {.lex_state = 0, .external_lex_state = 82}, - [3650] = {.lex_state = 2050}, + [3642] = {.lex_state = 2050}, + [3643] = {.lex_state = 9}, + [3644] = {.lex_state = 9}, + [3645] = {.lex_state = 9}, + [3646] = {.lex_state = 9}, + [3647] = {.lex_state = 6}, + [3648] = {.lex_state = 1}, + [3649] = {.lex_state = 2050}, + [3650] = {.lex_state = 9}, [3651] = {.lex_state = 1}, - [3652] = {.lex_state = 1}, + [3652] = {.lex_state = 9}, [3653] = {.lex_state = 1}, - [3654] = {.lex_state = 3}, - [3655] = {.lex_state = 1}, - [3656] = {.lex_state = 8}, - [3657] = {.lex_state = 2050}, - [3658] = {.lex_state = 2050}, - [3659] = {.lex_state = 2050}, - [3660] = {.lex_state = 0, .external_lex_state = 82}, - [3661] = {.lex_state = 3}, - [3662] = {.lex_state = 2044}, - [3663] = {.lex_state = 2044}, - [3664] = {.lex_state = 0, .external_lex_state = 83}, - [3665] = {.lex_state = 0, .external_lex_state = 86}, - [3666] = {.lex_state = 0, .external_lex_state = 82}, - [3667] = {.lex_state = 3}, - [3668] = {.lex_state = 8}, - [3669] = {.lex_state = 0, .external_lex_state = 87}, - [3670] = {.lex_state = 0, .external_lex_state = 88}, - [3671] = {.lex_state = 0, .external_lex_state = 89}, - [3672] = {.lex_state = 2045}, - [3673] = {.lex_state = 9}, - [3674] = {.lex_state = 2044}, - [3675] = {.lex_state = 3}, - [3676] = {.lex_state = 3}, - [3677] = {.lex_state = 1}, - [3678] = {.lex_state = 2050}, - [3679] = {.lex_state = 0, .external_lex_state = 90}, - [3680] = {.lex_state = 2050}, - [3681] = {.lex_state = 1}, - [3682] = {.lex_state = 8}, - [3683] = {.lex_state = 1}, - [3684] = {.lex_state = 8}, - [3685] = {.lex_state = 1}, - [3686] = {.lex_state = 1}, - [3687] = {.lex_state = 0, .external_lex_state = 82}, - [3688] = {.lex_state = 2044}, - [3689] = {.lex_state = 2044}, - [3690] = {.lex_state = 8}, - [3691] = {.lex_state = 0, .external_lex_state = 44}, - [3692] = {.lex_state = 0, .external_lex_state = 82}, - [3693] = {.lex_state = 2050}, - [3694] = {.lex_state = 8}, - [3695] = {.lex_state = 0, .external_lex_state = 82}, - [3696] = {.lex_state = 8}, - [3697] = {.lex_state = 3}, - [3698] = {.lex_state = 2045}, - [3699] = {.lex_state = 9}, + [3654] = {.lex_state = 0, .external_lex_state = 47}, + [3655] = {.lex_state = 9}, + [3656] = {.lex_state = 1}, + [3657] = {.lex_state = 1}, + [3658] = {.lex_state = 0, .external_lex_state = 91}, + [3659] = {.lex_state = 1}, + [3660] = {.lex_state = 2050}, + [3661] = {.lex_state = 1}, + [3662] = {.lex_state = 9}, + [3663] = {.lex_state = 2050}, + [3664] = {.lex_state = 1}, + [3665] = {.lex_state = 0, .external_lex_state = 89}, + [3666] = {.lex_state = 0, .external_lex_state = 89}, + [3667] = {.lex_state = 0, .external_lex_state = 90}, + [3668] = {.lex_state = 2050}, + [3669] = {.lex_state = 2050}, + [3670] = {.lex_state = 2050}, + [3671] = {.lex_state = 0, .external_lex_state = 91}, + [3672] = {.lex_state = 2044}, + [3673] = {.lex_state = 2044}, + [3674] = {.lex_state = 0, .external_lex_state = 92}, + [3675] = {.lex_state = 0, .external_lex_state = 98}, + [3676] = {.lex_state = 0, .external_lex_state = 93}, + [3677] = {.lex_state = 0, .external_lex_state = 98}, + [3678] = {.lex_state = 0, .external_lex_state = 90}, + [3679] = {.lex_state = 0, .external_lex_state = 55}, + [3680] = {.lex_state = 1}, + [3681] = {.lex_state = 0, .external_lex_state = 94}, + [3682] = {.lex_state = 0, .external_lex_state = 95}, + [3683] = {.lex_state = 2045}, + [3684] = {.lex_state = 10}, + [3685] = {.lex_state = 0, .external_lex_state = 96}, + [3686] = {.lex_state = 0, .external_lex_state = 99}, + [3687] = {.lex_state = 9}, + [3688] = {.lex_state = 2050}, + [3689] = {.lex_state = 9}, + [3690] = {.lex_state = 2050}, + [3691] = {.lex_state = 2050}, + [3692] = {.lex_state = 0, .external_lex_state = 97}, + [3693] = {.lex_state = 9}, + [3694] = {.lex_state = 9}, + [3695] = {.lex_state = 2050}, + [3696] = {.lex_state = 0, .external_lex_state = 98}, + [3697] = {.lex_state = 0, .external_lex_state = 98}, + [3698] = {.lex_state = 0, .external_lex_state = 98}, + [3699] = {.lex_state = 0, .external_lex_state = 98}, [3700] = {.lex_state = 2050}, - [3701] = {.lex_state = 0, .external_lex_state = 78}, - [3702] = {.lex_state = 8}, + [3701] = {.lex_state = 0, .external_lex_state = 92}, + [3702] = {.lex_state = 1}, [3703] = {.lex_state = 1}, - [3704] = {.lex_state = 8}, - [3705] = {.lex_state = 2050}, - [3706] = {.lex_state = 2050}, - [3707] = {.lex_state = 2050}, - [3708] = {.lex_state = 0, .external_lex_state = 91}, - [3709] = {.lex_state = 0, .external_lex_state = 87}, - [3710] = {.lex_state = 0, .external_lex_state = 83}, - [3711] = {.lex_state = 0}, - [3712] = {.lex_state = 0, .external_lex_state = 88}, - [3713] = {.lex_state = 2045}, - [3714] = {.lex_state = 2044}, - [3715] = {.lex_state = 2044}, + [3704] = {.lex_state = 1}, + [3705] = {.lex_state = 0, .external_lex_state = 98}, + [3706] = {.lex_state = 0, .external_lex_state = 98}, + [3707] = {.lex_state = 0, .external_lex_state = 98}, + [3708] = {.lex_state = 0, .external_lex_state = 55}, + [3709] = {.lex_state = 2050}, + [3710] = {.lex_state = 0, .external_lex_state = 91}, + [3711] = {.lex_state = 9}, + [3712] = {.lex_state = 2050}, + [3713] = {.lex_state = 1}, + [3714] = {.lex_state = 1}, + [3715] = {.lex_state = 2050}, [3716] = {.lex_state = 2050}, [3717] = {.lex_state = 2050}, - [3718] = {.lex_state = 8}, - [3719] = {.lex_state = 8}, - [3720] = {.lex_state = 8}, + [3718] = {.lex_state = 2050}, + [3719] = {.lex_state = 1}, + [3720] = {.lex_state = 1}, [3721] = {.lex_state = 1}, - [3722] = {.lex_state = 8}, - [3723] = {.lex_state = 0, .external_lex_state = 82}, - [3724] = {.lex_state = 2045}, - [3725] = {.lex_state = 9}, - [3726] = {.lex_state = 2050}, - [3727] = {.lex_state = 0, .external_lex_state = 82}, - [3728] = {.lex_state = 2050}, - [3729] = {.lex_state = 2050}, - [3730] = {.lex_state = 1}, - [3731] = {.lex_state = 1}, - [3732] = {.lex_state = 8}, - [3733] = {.lex_state = 9}, + [3722] = {.lex_state = 1}, + [3723] = {.lex_state = 1}, + [3724] = {.lex_state = 3}, + [3725] = {.lex_state = 0, .external_lex_state = 92}, + [3726] = {.lex_state = 0, .external_lex_state = 93}, + [3727] = {.lex_state = 2044}, + [3728] = {.lex_state = 2044}, + [3729] = {.lex_state = 3}, + [3730] = {.lex_state = 0, .external_lex_state = 98}, + [3731] = {.lex_state = 0, .external_lex_state = 94}, + [3732] = {.lex_state = 0, .external_lex_state = 95}, + [3733] = {.lex_state = 2050}, [3734] = {.lex_state = 2050}, [3735] = {.lex_state = 2050}, - [3736] = {.lex_state = 0, .external_lex_state = 89}, - [3737] = {.lex_state = 0, .external_lex_state = 81}, - [3738] = {.lex_state = 2050}, - [3739] = {.lex_state = 1}, - [3740] = {.lex_state = 2044}, - [3741] = {.lex_state = 2044}, - [3742] = {.lex_state = 1}, - [3743] = {.lex_state = 1}, - [3744] = {.lex_state = 8}, - [3745] = {.lex_state = 2050}, - [3746] = {.lex_state = 1}, - [3747] = {.lex_state = 0, .external_lex_state = 82}, - [3748] = {.lex_state = 0, .external_lex_state = 82}, - [3749] = {.lex_state = 0, .external_lex_state = 82}, - [3750] = {.lex_state = 2045}, - [3751] = {.lex_state = 9}, - [3752] = {.lex_state = 0, .external_lex_state = 82}, - [3753] = {.lex_state = 0, .external_lex_state = 82}, - [3754] = {.lex_state = 1}, - [3755] = {.lex_state = 0, .external_lex_state = 83}, - [3756] = {.lex_state = 0, .external_lex_state = 81}, - [3757] = {.lex_state = 2050}, + [3736] = {.lex_state = 0, .external_lex_state = 99}, + [3737] = {.lex_state = 3}, + [3738] = {.lex_state = 2045}, + [3739] = {.lex_state = 10}, + [3740] = {.lex_state = 0, .external_lex_state = 98}, + [3741] = {.lex_state = 9}, + [3742] = {.lex_state = 9}, + [3743] = {.lex_state = 9}, + [3744] = {.lex_state = 2050}, + [3745] = {.lex_state = 0, .external_lex_state = 96}, + [3746] = {.lex_state = 0, .external_lex_state = 97}, + [3747] = {.lex_state = 3}, + [3748] = {.lex_state = 1}, + [3749] = {.lex_state = 1}, + [3750] = {.lex_state = 0, .external_lex_state = 90}, + [3751] = {.lex_state = 0, .external_lex_state = 98}, + [3752] = {.lex_state = 9}, + [3753] = {.lex_state = 2044}, + [3754] = {.lex_state = 2044}, + [3755] = {.lex_state = 9}, + [3756] = {.lex_state = 5}, + [3757] = {.lex_state = 1}, [3758] = {.lex_state = 1}, - [3759] = {.lex_state = 2050}, - [3760] = {.lex_state = 2050}, - [3761] = {.lex_state = 1}, + [3759] = {.lex_state = 0, .external_lex_state = 98}, + [3760] = {.lex_state = 9}, + [3761] = {.lex_state = 0, .external_lex_state = 98}, [3762] = {.lex_state = 2050}, - [3763] = {.lex_state = 1}, - [3764] = {.lex_state = 0, .external_lex_state = 91}, - [3765] = {.lex_state = 0, .external_lex_state = 84}, - [3766] = {.lex_state = 2044}, - [3767] = {.lex_state = 2044}, - [3768] = {.lex_state = 0, .external_lex_state = 82}, - [3769] = {.lex_state = 0, .external_lex_state = 85}, + [3763] = {.lex_state = 2045}, + [3764] = {.lex_state = 10}, + [3765] = {.lex_state = 0, .external_lex_state = 97}, + [3766] = {.lex_state = 1}, + [3767] = {.lex_state = 2050}, + [3768] = {.lex_state = 1}, + [3769] = {.lex_state = 2050}, [3770] = {.lex_state = 2050}, - [3771] = {.lex_state = 0, .external_lex_state = 86}, - [3772] = {.lex_state = 0, .external_lex_state = 82}, - [3773] = {.lex_state = 1}, - [3774] = {.lex_state = 0, .external_lex_state = 87}, - [3775] = {.lex_state = 0, .external_lex_state = 88}, - [3776] = {.lex_state = 2045}, + [3771] = {.lex_state = 0, .external_lex_state = 89}, + [3772] = {.lex_state = 0, .external_lex_state = 90}, + [3773] = {.lex_state = 2050}, + [3774] = {.lex_state = 0, .external_lex_state = 55}, + [3775] = {.lex_state = 0, .external_lex_state = 55}, + [3776] = {.lex_state = 2050}, [3777] = {.lex_state = 9}, - [3778] = {.lex_state = 0, .external_lex_state = 89}, - [3779] = {.lex_state = 1}, - [3780] = {.lex_state = 0, .external_lex_state = 90}, - [3781] = {.lex_state = 3}, - [3782] = {.lex_state = 0, .external_lex_state = 82}, - [3783] = {.lex_state = 0, .external_lex_state = 87}, - [3784] = {.lex_state = 0, .external_lex_state = 90}, - [3785] = {.lex_state = 0, .external_lex_state = 91}, - [3786] = {.lex_state = 0, .external_lex_state = 83}, - [3787] = {.lex_state = 0, .external_lex_state = 81}, - [3788] = {.lex_state = 2050}, - [3789] = {.lex_state = 2050}, - [3790] = {.lex_state = 0, .external_lex_state = 84}, - [3791] = {.lex_state = 8}, - [3792] = {.lex_state = 2044}, - [3793] = {.lex_state = 2044}, - [3794] = {.lex_state = 2050}, - [3795] = {.lex_state = 8}, - [3796] = {.lex_state = 8}, - [3797] = {.lex_state = 2050}, - [3798] = {.lex_state = 6}, + [3778] = {.lex_state = 2044}, + [3779] = {.lex_state = 2044}, + [3780] = {.lex_state = 1}, + [3781] = {.lex_state = 0, .external_lex_state = 98}, + [3782] = {.lex_state = 9}, + [3783] = {.lex_state = 0, .external_lex_state = 91}, + [3784] = {.lex_state = 1}, + [3785] = {.lex_state = 0}, + [3786] = {.lex_state = 1}, + [3787] = {.lex_state = 0, .external_lex_state = 92}, + [3788] = {.lex_state = 2045}, + [3789] = {.lex_state = 10}, + [3790] = {.lex_state = 2050}, + [3791] = {.lex_state = 0, .external_lex_state = 93}, + [3792] = {.lex_state = 0, .external_lex_state = 89}, + [3793] = {.lex_state = 0, .external_lex_state = 90}, + [3794] = {.lex_state = 0, .external_lex_state = 47}, + [3795] = {.lex_state = 2050}, + [3796] = {.lex_state = 6}, + [3797] = {.lex_state = 1}, + [3798] = {.lex_state = 0, .external_lex_state = 94}, [3799] = {.lex_state = 2050}, - [3800] = {.lex_state = 2050}, - [3801] = {.lex_state = 2050}, - [3802] = {.lex_state = 2045}, - [3803] = {.lex_state = 9}, - [3804] = {.lex_state = 0, .external_lex_state = 85}, + [3800] = {.lex_state = 1}, + [3801] = {.lex_state = 0, .external_lex_state = 95}, + [3802] = {.lex_state = 1}, + [3803] = {.lex_state = 2044}, + [3804] = {.lex_state = 2044}, [3805] = {.lex_state = 2050}, - [3806] = {.lex_state = 1}, - [3807] = {.lex_state = 1}, - [3808] = {.lex_state = 1}, + [3806] = {.lex_state = 0, .external_lex_state = 91}, + [3807] = {.lex_state = 0, .external_lex_state = 92}, + [3808] = {.lex_state = 0, .external_lex_state = 93}, [3809] = {.lex_state = 1}, - [3810] = {.lex_state = 0, .external_lex_state = 86}, - [3811] = {.lex_state = 3}, - [3812] = {.lex_state = 0, .external_lex_state = 82}, - [3813] = {.lex_state = 2050}, - [3814] = {.lex_state = 0, .external_lex_state = 87}, - [3815] = {.lex_state = 0, .external_lex_state = 88}, - [3816] = {.lex_state = 0, .external_lex_state = 89}, - [3817] = {.lex_state = 2050}, - [3818] = {.lex_state = 2044}, - [3819] = {.lex_state = 2044}, - [3820] = {.lex_state = 0, .external_lex_state = 90}, - [3821] = {.lex_state = 0, .external_lex_state = 82}, - [3822] = {.lex_state = 1}, - [3823] = {.lex_state = 0, .external_lex_state = 82}, + [3810] = {.lex_state = 0, .external_lex_state = 94}, + [3811] = {.lex_state = 0, .external_lex_state = 95}, + [3812] = {.lex_state = 0, .external_lex_state = 96}, + [3813] = {.lex_state = 2045}, + [3814] = {.lex_state = 10}, + [3815] = {.lex_state = 0, .external_lex_state = 96}, + [3816] = {.lex_state = 0, .external_lex_state = 97}, + [3817] = {.lex_state = 9}, + [3818] = {.lex_state = 1}, + [3819] = {.lex_state = 1}, + [3820] = {.lex_state = 0, .external_lex_state = 97}, + [3821] = {.lex_state = 1}, + [3822] = {.lex_state = 0, .external_lex_state = 93}, + [3823] = {.lex_state = 1}, [3824] = {.lex_state = 1}, - [3825] = {.lex_state = 3}, + [3825] = {.lex_state = 0, .external_lex_state = 89}, [3826] = {.lex_state = 1}, - [3827] = {.lex_state = 8}, - [3828] = {.lex_state = 2045}, - [3829] = {.lex_state = 9}, - [3830] = {.lex_state = 1}, - [3831] = {.lex_state = 0, .external_lex_state = 91}, - [3832] = {.lex_state = 0, .external_lex_state = 88}, - [3833] = {.lex_state = 3}, + [3827] = {.lex_state = 0, .external_lex_state = 90}, + [3828] = {.lex_state = 2044}, + [3829] = {.lex_state = 2044}, + [3830] = {.lex_state = 0, .external_lex_state = 98}, + [3831] = {.lex_state = 2050}, + [3832] = {.lex_state = 2050}, + [3833] = {.lex_state = 9}, [3834] = {.lex_state = 3}, - [3835] = {.lex_state = 0, .external_lex_state = 48}, + [3835] = {.lex_state = 2050}, [3836] = {.lex_state = 2050}, - [3837] = {.lex_state = 0, .external_lex_state = 89}, - [3838] = {.lex_state = 0, .external_lex_state = 90}, - [3839] = {.lex_state = 8}, + [3837] = {.lex_state = 0, .external_lex_state = 91}, + [3838] = {.lex_state = 2045}, + [3839] = {.lex_state = 10}, [3840] = {.lex_state = 2050}, - [3841] = {.lex_state = 2050}, - [3842] = {.lex_state = 2050}, - [3843] = {.lex_state = 0, .external_lex_state = 82}, - [3844] = {.lex_state = 2044}, - [3845] = {.lex_state = 2044}, - [3846] = {.lex_state = 0, .external_lex_state = 83}, - [3847] = {.lex_state = 0, .external_lex_state = 81}, - [3848] = {.lex_state = 2050}, - [3849] = {.lex_state = 2050}, - [3850] = {.lex_state = 0, .external_lex_state = 84}, - [3851] = {.lex_state = 0, .external_lex_state = 85}, - [3852] = {.lex_state = 0, .external_lex_state = 86}, - [3853] = {.lex_state = 0, .external_lex_state = 82}, - [3854] = {.lex_state = 2045}, - [3855] = {.lex_state = 9}, - [3856] = {.lex_state = 0, .external_lex_state = 87}, - [3857] = {.lex_state = 0, .external_lex_state = 88}, - [3858] = {.lex_state = 8}, + [3841] = {.lex_state = 0, .external_lex_state = 98}, + [3842] = {.lex_state = 0, .external_lex_state = 98}, + [3843] = {.lex_state = 0, .external_lex_state = 98}, + [3844] = {.lex_state = 0, .external_lex_state = 92}, + [3845] = {.lex_state = 0, .external_lex_state = 98}, + [3846] = {.lex_state = 0, .external_lex_state = 93}, + [3847] = {.lex_state = 0, .external_lex_state = 98}, + [3848] = {.lex_state = 9}, + [3849] = {.lex_state = 1}, + [3850] = {.lex_state = 0, .external_lex_state = 94}, + [3851] = {.lex_state = 2050}, + [3852] = {.lex_state = 0, .external_lex_state = 95}, + [3853] = {.lex_state = 2044}, + [3854] = {.lex_state = 2044}, + [3855] = {.lex_state = 0, .external_lex_state = 98}, + [3856] = {.lex_state = 0, .external_lex_state = 98}, + [3857] = {.lex_state = 0, .external_lex_state = 98}, + [3858] = {.lex_state = 2050}, [3859] = {.lex_state = 2050}, - [3860] = {.lex_state = 0, .external_lex_state = 82}, - [3861] = {.lex_state = 8}, + [3860] = {.lex_state = 1}, + [3861] = {.lex_state = 2050}, [3862] = {.lex_state = 2050}, - [3863] = {.lex_state = 8}, - [3864] = {.lex_state = 2050}, - [3865] = {.lex_state = 1}, - [3866] = {.lex_state = 1}, + [3863] = {.lex_state = 2045}, + [3864] = {.lex_state = 10}, + [3865] = {.lex_state = 0, .external_lex_state = 98}, + [3866] = {.lex_state = 0, .external_lex_state = 96}, [3867] = {.lex_state = 1}, [3868] = {.lex_state = 1}, - [3869] = {.lex_state = 0, .external_lex_state = 82}, - [3870] = {.lex_state = 2044}, - [3871] = {.lex_state = 2044}, - [3872] = {.lex_state = 0, .external_lex_state = 89}, - [3873] = {.lex_state = 0, .external_lex_state = 90}, - [3874] = {.lex_state = 3}, - [3875] = {.lex_state = 0, .external_lex_state = 91}, - [3876] = {.lex_state = 0, .external_lex_state = 82}, - [3877] = {.lex_state = 8}, - [3878] = {.lex_state = 8}, - [3879] = {.lex_state = 8}, - [3880] = {.lex_state = 2045}, - [3881] = {.lex_state = 9}, - [3882] = {.lex_state = 2050}, - [3883] = {.lex_state = 2050}, - [3884] = {.lex_state = 0, .external_lex_state = 84}, - [3885] = {.lex_state = 0, .external_lex_state = 85}, - [3886] = {.lex_state = 8}, - [3887] = {.lex_state = 8}, - [3888] = {.lex_state = 0, .external_lex_state = 86}, - [3889] = {.lex_state = 8}, - [3890] = {.lex_state = 8}, - [3891] = {.lex_state = 1}, - [3892] = {.lex_state = 0, .external_lex_state = 82}, - [3893] = {.lex_state = 3}, - [3894] = {.lex_state = 0, .external_lex_state = 87}, - [3895] = {.lex_state = 8}, - [3896] = {.lex_state = 0, .external_lex_state = 82}, - [3897] = {.lex_state = 2050}, - [3898] = {.lex_state = 0, .external_lex_state = 88}, - [3899] = {.lex_state = 8}, - [3900] = {.lex_state = 0, .external_lex_state = 82}, - [3901] = {.lex_state = 0, .external_lex_state = 89}, - [3902] = {.lex_state = 8}, - [3903] = {.lex_state = 1}, - [3904] = {.lex_state = 0, .external_lex_state = 84}, - [3905] = {.lex_state = 2050}, - [3906] = {.lex_state = 0, .external_lex_state = 90}, - [3907] = {.lex_state = 1}, - [3908] = {.lex_state = 0, .external_lex_state = 85}, - [3909] = {.lex_state = 8}, - [3910] = {.lex_state = 0, .external_lex_state = 91}, - [3911] = {.lex_state = 2050}, - [3912] = {.lex_state = 1}, - [3913] = {.lex_state = 2050}, - [3914] = {.lex_state = 6}, - [3915] = {.lex_state = 6}, - [3916] = {.lex_state = 0, .external_lex_state = 91}, - [3917] = {.lex_state = 0, .external_lex_state = 91}, - [3918] = {.lex_state = 0, .external_lex_state = 91}, - [3919] = {.lex_state = 0, .external_lex_state = 91}, - [3920] = {.lex_state = 0, .external_lex_state = 91}, - [3921] = {.lex_state = 0, .external_lex_state = 91}, - [3922] = {.lex_state = 0, .external_lex_state = 91}, - [3923] = {.lex_state = 0, .external_lex_state = 91}, - [3924] = {.lex_state = 0, .external_lex_state = 91}, - [3925] = {.lex_state = 0, .external_lex_state = 82}, - [3926] = {.lex_state = 1}, - [3927] = {.lex_state = 0, .external_lex_state = 82}, - [3928] = {.lex_state = 6}, - [3929] = {.lex_state = 6}, - [3930] = {.lex_state = 0, .external_lex_state = 91}, - [3931] = {.lex_state = 0, .external_lex_state = 91}, - [3932] = {.lex_state = 0, .external_lex_state = 91}, - [3933] = {.lex_state = 0, .external_lex_state = 91}, - [3934] = {.lex_state = 0, .external_lex_state = 91}, - [3935] = {.lex_state = 0, .external_lex_state = 91}, - [3936] = {.lex_state = 0, .external_lex_state = 91}, - [3937] = {.lex_state = 0, .external_lex_state = 91}, - [3938] = {.lex_state = 0, .external_lex_state = 91}, - [3939] = {.lex_state = 6}, - [3940] = {.lex_state = 6}, - [3941] = {.lex_state = 6}, - [3942] = {.lex_state = 6}, - [3943] = {.lex_state = 6}, - [3944] = {.lex_state = 6}, - [3945] = {.lex_state = 6}, - [3946] = {.lex_state = 6}, - [3947] = {.lex_state = 6}, - [3948] = {.lex_state = 6}, - [3949] = {.lex_state = 6}, - [3950] = {.lex_state = 6}, - [3951] = {.lex_state = 6}, - [3952] = {.lex_state = 6}, - [3953] = {.lex_state = 6}, - [3954] = {.lex_state = 6}, - [3955] = {.lex_state = 6}, - [3956] = {.lex_state = 6}, - [3957] = {.lex_state = 6}, - [3958] = {.lex_state = 6}, - [3959] = {.lex_state = 6}, - [3960] = {.lex_state = 6}, - [3961] = {.lex_state = 6}, - [3962] = {.lex_state = 6}, - [3963] = {.lex_state = 6}, - [3964] = {.lex_state = 6}, - [3965] = {.lex_state = 6}, - [3966] = {.lex_state = 6}, - [3967] = {.lex_state = 6}, - [3968] = {.lex_state = 6}, - [3969] = {.lex_state = 2050}, - [3970] = {.lex_state = 2050}, - [3971] = {.lex_state = 2050}, - [3972] = {.lex_state = 2050}, - [3973] = {.lex_state = 2050}, - [3974] = {.lex_state = 2050}, - [3975] = {.lex_state = 2050}, - [3976] = {.lex_state = 2050}, - [3977] = {.lex_state = 2050}, - [3978] = {.lex_state = 2050}, - [3979] = {.lex_state = 2050}, - [3980] = {.lex_state = 2050}, + [3869] = {.lex_state = 0, .external_lex_state = 97}, + [3870] = {.lex_state = 1}, + [3871] = {.lex_state = 3}, + [3872] = {.lex_state = 2050}, + [3873] = {.lex_state = 2050}, + [3874] = {.lex_state = 1}, + [3875] = {.lex_state = 10}, + [3876] = {.lex_state = 1}, + [3877] = {.lex_state = 0, .external_lex_state = 99}, + [3878] = {.lex_state = 2044}, + [3879] = {.lex_state = 2044}, + [3880] = {.lex_state = 1}, + [3881] = {.lex_state = 3}, + [3882] = {.lex_state = 0, .external_lex_state = 98}, + [3883] = {.lex_state = 9}, + [3884] = {.lex_state = 2050}, + [3885] = {.lex_state = 2050}, + [3886] = {.lex_state = 2050}, + [3887] = {.lex_state = 0, .external_lex_state = 98}, + [3888] = {.lex_state = 2045}, + [3889] = {.lex_state = 10}, + [3890] = {.lex_state = 0, .external_lex_state = 98}, + [3891] = {.lex_state = 0, .external_lex_state = 98}, + [3892] = {.lex_state = 0, .external_lex_state = 98}, + [3893] = {.lex_state = 0, .external_lex_state = 98}, + [3894] = {.lex_state = 2050}, + [3895] = {.lex_state = 0, .external_lex_state = 98}, + [3896] = {.lex_state = 2050}, + [3897] = {.lex_state = 1}, + [3898] = {.lex_state = 1}, + [3899] = {.lex_state = 1}, + [3900] = {.lex_state = 1}, + [3901] = {.lex_state = 1}, + [3902] = {.lex_state = 1}, + [3903] = {.lex_state = 2044}, + [3904] = {.lex_state = 2044}, + [3905] = {.lex_state = 3}, + [3906] = {.lex_state = 1}, + [3907] = {.lex_state = 3}, + [3908] = {.lex_state = 9}, + [3909] = {.lex_state = 0, .external_lex_state = 91}, + [3910] = {.lex_state = 1}, + [3911] = {.lex_state = 9}, + [3912] = {.lex_state = 3}, + [3913] = {.lex_state = 2045}, + [3914] = {.lex_state = 10}, + [3915] = {.lex_state = 0, .external_lex_state = 99}, + [3916] = {.lex_state = 9}, + [3917] = {.lex_state = 9}, + [3918] = {.lex_state = 2050}, + [3919] = {.lex_state = 9}, + [3920] = {.lex_state = 0, .external_lex_state = 98}, + [3921] = {.lex_state = 0, .external_lex_state = 89}, + [3922] = {.lex_state = 3}, + [3923] = {.lex_state = 9}, + [3924] = {.lex_state = 9}, + [3925] = {.lex_state = 9}, + [3926] = {.lex_state = 3}, + [3927] = {.lex_state = 3}, + [3928] = {.lex_state = 2044}, + [3929] = {.lex_state = 2044}, + [3930] = {.lex_state = 9}, + [3931] = {.lex_state = 1}, + [3932] = {.lex_state = 9}, + [3933] = {.lex_state = 3}, + [3934] = {.lex_state = 0, .external_lex_state = 99}, + [3935] = {.lex_state = 9}, + [3936] = {.lex_state = 0, .external_lex_state = 99}, + [3937] = {.lex_state = 9}, + [3938] = {.lex_state = 2045}, + [3939] = {.lex_state = 10}, + [3940] = {.lex_state = 0, .external_lex_state = 94}, + [3941] = {.lex_state = 3}, + [3942] = {.lex_state = 2050}, + [3943] = {.lex_state = 9}, + [3944] = {.lex_state = 9}, + [3945] = {.lex_state = 9}, + [3946] = {.lex_state = 0, .external_lex_state = 90}, + [3947] = {.lex_state = 9}, + [3948] = {.lex_state = 3}, + [3949] = {.lex_state = 2050}, + [3950] = {.lex_state = 9}, + [3951] = {.lex_state = 9}, + [3952] = {.lex_state = 0, .external_lex_state = 88}, + [3953] = {.lex_state = 2044}, + [3954] = {.lex_state = 2044}, + [3955] = {.lex_state = 2050}, + [3956] = {.lex_state = 9}, + [3957] = {.lex_state = 9}, + [3958] = {.lex_state = 0, .external_lex_state = 98}, + [3959] = {.lex_state = 9}, + [3960] = {.lex_state = 0, .external_lex_state = 98}, + [3961] = {.lex_state = 0, .external_lex_state = 91}, + [3962] = {.lex_state = 0, .external_lex_state = 99}, + [3963] = {.lex_state = 2045}, + [3964] = {.lex_state = 10}, + [3965] = {.lex_state = 0, .external_lex_state = 98}, + [3966] = {.lex_state = 0, .external_lex_state = 99}, + [3967] = {.lex_state = 0, .external_lex_state = 92}, + [3968] = {.lex_state = 9}, + [3969] = {.lex_state = 9}, + [3970] = {.lex_state = 9}, + [3971] = {.lex_state = 9}, + [3972] = {.lex_state = 9}, + [3973] = {.lex_state = 9}, + [3974] = {.lex_state = 9}, + [3975] = {.lex_state = 9}, + [3976] = {.lex_state = 9}, + [3977] = {.lex_state = 0, .external_lex_state = 93}, + [3978] = {.lex_state = 2044}, + [3979] = {.lex_state = 2044}, + [3980] = {.lex_state = 0, .external_lex_state = 98}, [3981] = {.lex_state = 2050}, - [3982] = {.lex_state = 2050}, - [3983] = {.lex_state = 2050}, - [3984] = {.lex_state = 2050}, - [3985] = {.lex_state = 2050}, - [3986] = {.lex_state = 2050}, - [3987] = {.lex_state = 2050}, - [3988] = {.lex_state = 2050}, - [3989] = {.lex_state = 2050}, - [3990] = {.lex_state = 2050}, - [3991] = {.lex_state = 2050}, - [3992] = {.lex_state = 2050}, - [3993] = {.lex_state = 2050}, - [3994] = {.lex_state = 2050}, - [3995] = {.lex_state = 2050}, + [3982] = {.lex_state = 0, .external_lex_state = 98}, + [3983] = {.lex_state = 0, .external_lex_state = 98}, + [3984] = {.lex_state = 1}, + [3985] = {.lex_state = 0, .external_lex_state = 98}, + [3986] = {.lex_state = 0, .external_lex_state = 98}, + [3987] = {.lex_state = 2044}, + [3988] = {.lex_state = 2045}, + [3989] = {.lex_state = 10}, + [3990] = {.lex_state = 0, .external_lex_state = 98}, + [3991] = {.lex_state = 0, .external_lex_state = 98}, + [3992] = {.lex_state = 0, .external_lex_state = 98}, + [3993] = {.lex_state = 9}, + [3994] = {.lex_state = 1}, + [3995] = {.lex_state = 0, .external_lex_state = 95}, [3996] = {.lex_state = 2050}, - [3997] = {.lex_state = 2050}, - [3998] = {.lex_state = 2050}, - [3999] = {.lex_state = 2050}, - [4000] = {.lex_state = 2050}, - [4001] = {.lex_state = 2050}, - [4002] = {.lex_state = 2050}, - [4003] = {.lex_state = 0, .external_lex_state = 82}, + [3997] = {.lex_state = 9}, + [3998] = {.lex_state = 0, .external_lex_state = 96}, + [3999] = {.lex_state = 1}, + [4000] = {.lex_state = 0, .external_lex_state = 99}, + [4001] = {.lex_state = 9}, + [4002] = {.lex_state = 1}, + [4003] = {.lex_state = 2044}, + [4004] = {.lex_state = 2044}, + [4005] = {.lex_state = 1}, + [4006] = {.lex_state = 0, .external_lex_state = 98}, + [4007] = {.lex_state = 2050}, + [4008] = {.lex_state = 1}, + [4009] = {.lex_state = 2044}, + [4010] = {.lex_state = 0, .external_lex_state = 99}, + [4011] = {.lex_state = 0, .external_lex_state = 94}, + [4012] = {.lex_state = 0, .external_lex_state = 89}, + [4013] = {.lex_state = 2045}, + [4014] = {.lex_state = 10}, + [4015] = {.lex_state = 2050}, + [4016] = {.lex_state = 9}, + [4017] = {.lex_state = 9}, + [4018] = {.lex_state = 0, .external_lex_state = 90}, + [4019] = {.lex_state = 2050}, + [4020] = {.lex_state = 2050}, + [4021] = {.lex_state = 0, .external_lex_state = 91}, + [4022] = {.lex_state = 9}, + [4023] = {.lex_state = 2050}, + [4024] = {.lex_state = 0, .external_lex_state = 92}, + [4025] = {.lex_state = 0, .external_lex_state = 93}, + [4026] = {.lex_state = 0, .external_lex_state = 97}, + [4027] = {.lex_state = 0, .external_lex_state = 95}, + [4028] = {.lex_state = 2044}, + [4029] = {.lex_state = 2044}, + [4030] = {.lex_state = 0, .external_lex_state = 92}, + [4031] = {.lex_state = 0, .external_lex_state = 57}, + [4032] = {.lex_state = 0, .external_lex_state = 94}, + [4033] = {.lex_state = 0, .external_lex_state = 95}, + [4034] = {.lex_state = 1}, + [4035] = {.lex_state = 0, .external_lex_state = 93}, + [4036] = {.lex_state = 1}, + [4037] = {.lex_state = 0, .external_lex_state = 96}, + [4038] = {.lex_state = 2045}, + [4039] = {.lex_state = 10}, + [4040] = {.lex_state = 1}, + [4041] = {.lex_state = 0, .external_lex_state = 97}, + [4042] = {.lex_state = 1}, + [4043] = {.lex_state = 2050}, + [4044] = {.lex_state = 0, .external_lex_state = 96}, + [4045] = {.lex_state = 0, .external_lex_state = 89}, + [4046] = {.lex_state = 0, .external_lex_state = 97}, + [4047] = {.lex_state = 0, .external_lex_state = 98}, + [4048] = {.lex_state = 0, .external_lex_state = 89}, + [4049] = {.lex_state = 2050}, + [4050] = {.lex_state = 2045}, + [4051] = {.lex_state = 0, .external_lex_state = 47}, + [4052] = {.lex_state = 0, .external_lex_state = 90}, + [4053] = {.lex_state = 2050}, + [4054] = {.lex_state = 9}, + [4055] = {.lex_state = 2050}, + [4056] = {.lex_state = 2050}, + [4057] = {.lex_state = 0, .external_lex_state = 91}, + [4058] = {.lex_state = 2050}, + [4059] = {.lex_state = 2050}, + [4060] = {.lex_state = 0, .external_lex_state = 92}, + [4061] = {.lex_state = 0, .external_lex_state = 93}, + [4062] = {.lex_state = 2050}, + [4063] = {.lex_state = 2050}, + [4064] = {.lex_state = 1}, + [4065] = {.lex_state = 0, .external_lex_state = 94}, + [4066] = {.lex_state = 1}, + [4067] = {.lex_state = 1}, + [4068] = {.lex_state = 0, .external_lex_state = 95}, + [4069] = {.lex_state = 1}, + [4070] = {.lex_state = 3}, + [4071] = {.lex_state = 6}, + [4072] = {.lex_state = 6}, + [4073] = {.lex_state = 0, .external_lex_state = 99}, + [4074] = {.lex_state = 0, .external_lex_state = 99}, + [4075] = {.lex_state = 0, .external_lex_state = 99}, + [4076] = {.lex_state = 0, .external_lex_state = 99}, + [4077] = {.lex_state = 0, .external_lex_state = 99}, + [4078] = {.lex_state = 0, .external_lex_state = 99}, + [4079] = {.lex_state = 0, .external_lex_state = 99}, + [4080] = {.lex_state = 0, .external_lex_state = 99}, + [4081] = {.lex_state = 0, .external_lex_state = 99}, + [4082] = {.lex_state = 0, .external_lex_state = 96}, + [4083] = {.lex_state = 1}, + [4084] = {.lex_state = 1}, + [4085] = {.lex_state = 6}, + [4086] = {.lex_state = 6}, + [4087] = {.lex_state = 0, .external_lex_state = 99}, + [4088] = {.lex_state = 0, .external_lex_state = 99}, + [4089] = {.lex_state = 0, .external_lex_state = 99}, + [4090] = {.lex_state = 0, .external_lex_state = 99}, + [4091] = {.lex_state = 0, .external_lex_state = 99}, + [4092] = {.lex_state = 0, .external_lex_state = 99}, + [4093] = {.lex_state = 0, .external_lex_state = 99}, + [4094] = {.lex_state = 0, .external_lex_state = 99}, + [4095] = {.lex_state = 0, .external_lex_state = 99}, + [4096] = {.lex_state = 6}, + [4097] = {.lex_state = 6}, + [4098] = {.lex_state = 6}, + [4099] = {.lex_state = 6}, + [4100] = {.lex_state = 6}, + [4101] = {.lex_state = 6}, + [4102] = {.lex_state = 6}, + [4103] = {.lex_state = 6}, + [4104] = {.lex_state = 6}, + [4105] = {.lex_state = 6}, + [4106] = {.lex_state = 6}, + [4107] = {.lex_state = 6}, + [4108] = {.lex_state = 6}, + [4109] = {.lex_state = 6}, + [4110] = {.lex_state = 6}, + [4111] = {.lex_state = 6}, + [4112] = {.lex_state = 6}, + [4113] = {.lex_state = 6}, + [4114] = {.lex_state = 6}, + [4115] = {.lex_state = 6}, + [4116] = {.lex_state = 6}, + [4117] = {.lex_state = 6}, + [4118] = {.lex_state = 6}, + [4119] = {.lex_state = 6}, + [4120] = {.lex_state = 6}, + [4121] = {.lex_state = 6}, + [4122] = {.lex_state = 6}, + [4123] = {.lex_state = 6}, + [4124] = {.lex_state = 6}, + [4125] = {.lex_state = 6}, + [4126] = {.lex_state = 9}, + [4127] = {.lex_state = 9}, + [4128] = {.lex_state = 1}, + [4129] = {.lex_state = 0, .external_lex_state = 94}, + [4130] = {.lex_state = 0, .external_lex_state = 98}, + [4131] = {.lex_state = 3}, + [4132] = {.lex_state = 9}, + [4133] = {.lex_state = 2050}, + [4134] = {.lex_state = 0, .external_lex_state = 95}, + [4135] = {.lex_state = 9}, + [4136] = {.lex_state = 1}, + [4137] = {.lex_state = 9}, + [4138] = {.lex_state = 9}, + [4139] = {.lex_state = 9}, + [4140] = {.lex_state = 1}, + [4141] = {.lex_state = 2050}, + [4142] = {.lex_state = 9}, + [4143] = {.lex_state = 0, .external_lex_state = 98}, + [4144] = {.lex_state = 1}, + [4145] = {.lex_state = 2050}, + [4146] = {.lex_state = 1}, + [4147] = {.lex_state = 0, .external_lex_state = 98}, + [4148] = {.lex_state = 1}, + [4149] = {.lex_state = 0, .external_lex_state = 96}, + [4150] = {.lex_state = 1}, + [4151] = {.lex_state = 9}, + [4152] = {.lex_state = 9}, + [4153] = {.lex_state = 2050}, + [4154] = {.lex_state = 0, .external_lex_state = 97}, + [4155] = {.lex_state = 1}, + [4156] = {.lex_state = 1}, + [4157] = {.lex_state = 0, .external_lex_state = 89}, + [4158] = {.lex_state = 1}, + [4159] = {.lex_state = 0, .external_lex_state = 98}, + [4160] = {.lex_state = 3}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -19781,87 +21269,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(1), [sym__pipe_table_delimiter] = ACTIONS(1), [sym__pandoc_line_break] = ACTIONS(1), + [sym__triple_star_error] = ACTIONS(1), }, [STATE(1)] = { - [sym_document] = STATE(3711), - [sym__block_not_section] = STATE(456), - [sym_section] = STATE(2303), - [sym__section1] = STATE(2484), - [sym__section2] = STATE(2484), - [sym__section3] = STATE(2484), - [sym__section4] = STATE(2484), - [sym__section5] = STATE(2484), - [sym__section6] = STATE(2484), + [sym_document] = STATE(3785), + [sym__block_not_section] = STATE(354), + [sym_section] = STATE(2371), + [sym__section1] = STATE(2594), + [sym__section2] = STATE(2594), + [sym__section3] = STATE(2594), + [sym__section4] = STATE(2594), + [sym__section5] = STATE(2594), + [sym__section6] = STATE(2594), [sym__atx_heading1] = STATE(82), - [sym__atx_heading2] = STATE(89), - [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(456), - [sym_pandoc_paragraph] = STATE(456), - [sym_inline_ref_def] = STATE(456), - [sym_caption] = STATE(456), - [sym_pipe_table] = STATE(456), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(456), - [sym_pandoc_list] = STATE(456), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(100), + [sym__atx_heading4] = STATE(105), + [sym__atx_heading5] = STATE(116), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(354), + [sym_pandoc_paragraph] = STATE(354), + [sym_inline_ref_def] = STATE(354), + [sym_caption] = STATE(354), + [sym_pipe_table] = STATE(354), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(354), + [sym_pandoc_list] = STATE(354), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(456), - [sym_pandoc_div] = STATE(456), - [sym_note_definition_fenced_block] = STATE(456), - [sym__newline] = STATE(456), - [sym__soft_line_break] = STATE(456), - [aux_sym_document_repeat1] = STATE(69), - [aux_sym_document_repeat2] = STATE(2303), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(354), + [sym_pandoc_div] = STATE(354), + [sym_note_definition_fenced_block] = STATE(354), + [sym__newline] = STATE(354), + [sym__soft_line_break] = STATE(354), + [sym__inline_whitespace] = STATE(765), + [aux_sym_document_repeat1] = STATE(62), + [aux_sym_document_repeat2] = STATE(2371), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), @@ -19873,7 +21362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), + [sym__whitespace] = ACTIONS(23), [sym__line_ending] = ACTIONS(25), [sym__soft_line_ending] = ACTIONS(27), [sym__block_quote_start] = ACTIONS(29), @@ -19929,86 +21418,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(2)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3532), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3759), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -20019,18 +21508,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -20043,12 +21532,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -20077,86 +21566,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(3)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3660), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3958), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -20167,18 +21656,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(145), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(147), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -20191,12 +21680,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -20225,86 +21714,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(4)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3927), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(4143), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -20315,18 +21804,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(147), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(149), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -20339,12 +21828,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -20373,86 +21862,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(5)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3271), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3637), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -20463,18 +21952,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(149), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(151), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -20487,12 +21976,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -20521,86 +22010,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(6)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3280), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3730), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -20611,18 +22100,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(151), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(153), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -20635,12 +22124,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -20669,86 +22158,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(7)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3341), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3781), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -20759,18 +22248,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(153), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(155), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -20783,12 +22272,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -20817,86 +22306,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(8)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3386), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3504), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -20907,18 +22396,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(155), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(157), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -20931,12 +22420,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -20965,86 +22454,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(9)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3586), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3507), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -21055,18 +22544,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(157), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(159), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -21079,12 +22568,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -21113,86 +22602,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(10)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3587), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3508), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -21203,18 +22692,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(159), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(161), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -21227,12 +22716,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -21261,86 +22750,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(11)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3588), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3510), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -21351,18 +22840,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(161), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(163), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -21375,12 +22864,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -21409,86 +22898,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(12)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3590), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3518), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -21499,18 +22988,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(163), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(165), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -21523,12 +23012,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -21557,86 +23046,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(13)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3589), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3841), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -21647,18 +23136,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(165), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(167), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -21671,12 +23160,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -21705,86 +23194,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(14)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3591), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3842), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -21795,18 +23284,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(167), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(169), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -21819,12 +23308,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -21853,86 +23342,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(15)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3925), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3843), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -21943,18 +23432,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(169), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(171), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -21967,12 +23456,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22001,86 +23490,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(16)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3812), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3845), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -22091,18 +23580,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(171), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(173), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -22115,12 +23604,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22149,86 +23638,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(17)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3624), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3855), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -22239,18 +23728,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(173), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(175), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -22263,12 +23752,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22297,86 +23786,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(18)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3232), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3856), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -22387,18 +23876,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(175), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(177), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -22411,12 +23900,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22445,86 +23934,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(19)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3522), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3517), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -22535,18 +24024,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym_block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym_block_continuation] = ACTIONS(179), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -22559,12 +24048,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22593,86 +24082,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(20)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3896), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3751), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -22683,17 +24172,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -22706,12 +24195,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22740,86 +24229,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(21)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3860), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3576), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -22830,17 +24319,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -22853,12 +24342,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -22887,86 +24376,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(22)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3642), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3578), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -22977,17 +24466,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23000,12 +24489,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23034,86 +24523,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(23)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3876), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3585), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -23124,17 +24613,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23147,12 +24636,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23181,86 +24670,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(24)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3892), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3586), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -23271,17 +24760,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23294,12 +24783,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23328,86 +24817,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(25)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3378), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3591), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -23418,17 +24907,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23441,12 +24930,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23475,86 +24964,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(26)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3405), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3592), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -23565,17 +25054,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23588,12 +25077,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23622,86 +25111,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(27)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3900), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3847), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -23712,17 +25201,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23735,12 +25224,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23769,86 +25258,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(28)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3643), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3882), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -23859,17 +25348,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -23882,12 +25371,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -23916,86 +25405,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(29)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3644), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(4006), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -24006,17 +25495,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24029,12 +25518,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24063,86 +25552,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(30)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3645), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(4147), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -24153,17 +25642,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24176,12 +25665,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24210,86 +25699,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(31)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3648), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(4159), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -24300,17 +25789,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24323,12 +25812,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24357,86 +25846,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(32)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3649), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3895), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -24447,17 +25936,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24470,12 +25959,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24504,86 +25993,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(33)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(4003), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3887), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -24594,17 +26083,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24617,12 +26106,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24651,86 +26140,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(34)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3821), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3890), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -24741,17 +26230,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24764,12 +26253,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24798,86 +26287,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(35)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3823), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3891), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -24888,17 +26377,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -24911,12 +26400,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -24945,86 +26434,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(36)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3853), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3892), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -25035,17 +26524,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25058,12 +26547,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25092,86 +26581,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(37)] = { - [sym__block] = STATE(63), - [sym__block_not_section] = STATE(63), - [sym_section] = STATE(63), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(63), - [sym_pandoc_paragraph] = STATE(63), - [sym_inline_ref_def] = STATE(63), - [sym_caption] = STATE(63), - [sym_pipe_table] = STATE(63), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(63), - [sym_pandoc_list] = STATE(63), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym__list_item_content] = STATE(3869), - [sym_pandoc_code_block] = STATE(63), - [sym_pandoc_div] = STATE(63), - [sym_note_definition_fenced_block] = STATE(63), - [sym__blank_line] = STATE(3053), - [sym__newline] = STATE(63), - [sym__soft_line_break] = STATE(63), - [aux_sym_pandoc_block_quote_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(73), + [sym__block_not_section] = STATE(73), + [sym_section] = STATE(73), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(73), + [sym_pandoc_paragraph] = STATE(73), + [sym_inline_ref_def] = STATE(73), + [sym_caption] = STATE(73), + [sym_pipe_table] = STATE(73), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(73), + [sym_pandoc_list] = STATE(73), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym__list_item_content] = STATE(3893), + [sym_pandoc_code_block] = STATE(73), + [sym_pandoc_div] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(3394), + [sym__newline] = STATE(73), + [sym__soft_line_break] = STATE(73), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(73), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -25182,17 +26671,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25205,12 +26694,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym__blank_line_start] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(137), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym__blank_line_start] = ACTIONS(137), + [sym_minus_metadata] = ACTIONS(139), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25239,85 +26728,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(38)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(39), - [sym_pandoc_paragraph] = STATE(39), - [sym_inline_ref_def] = STATE(39), - [sym_caption] = STATE(39), - [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), + [sym__block] = STATE(70), + [sym__block_not_section] = STATE(70), + [sym_section] = STATE(70), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(70), + [sym_pandoc_paragraph] = STATE(70), + [sym_inline_ref_def] = STATE(70), + [sym_caption] = STATE(70), + [sym_pipe_table] = STATE(70), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(70), + [sym_pandoc_list] = STATE(70), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(70), + [sym_pandoc_div] = STATE(70), + [sym_note_definition_fenced_block] = STATE(70), + [sym__newline] = STATE(70), + [sym__soft_line_break] = STATE(70), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(70), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(181), + [sym_block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), + [sym__list_marker_minus] = ACTIONS(45), + [sym__list_marker_plus] = ACTIONS(47), + [sym__list_marker_star] = ACTIONS(49), + [sym__list_marker_parenthesis] = ACTIONS(51), + [sym__list_marker_dot] = ACTIONS(53), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), + [sym__list_marker_star_dont_interrupt] = ACTIONS(49), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(55), + [sym__list_marker_example_dont_interrupt] = ACTIONS(55), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(185), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(39)] = { + [sym__block] = STATE(46), + [sym__block_not_section] = STATE(46), + [sym_section] = STATE(46), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(84), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(46), + [sym_pandoc_paragraph] = STATE(46), + [sym_inline_ref_def] = STATE(46), + [sym_caption] = STATE(46), + [sym_pipe_table] = STATE(46), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(46), + [sym_pandoc_list] = STATE(46), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(39), - [sym_pandoc_div] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__newline] = STATE(39), - [sym__soft_line_break] = STATE(39), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(46), + [sym_pandoc_div] = STATE(46), + [sym_note_definition_fenced_block] = STATE(46), + [sym__newline] = STATE(46), + [sym__soft_line_break] = STATE(46), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25327,18 +26962,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(185), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(195), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25351,12 +26986,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(205), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(211), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(215), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(221), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25384,232 +27019,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(39)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [STATE(40)] = { + [sym__block] = STATE(41), + [sym__block_not_section] = STATE(41), + [sym_section] = STATE(41), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(39), - [sym_pandoc_paragraph] = STATE(39), - [sym_inline_ref_def] = STATE(39), - [sym_caption] = STATE(39), - [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(41), + [sym_pandoc_paragraph] = STATE(41), + [sym_inline_ref_def] = STATE(41), + [sym_caption] = STATE(41), + [sym_pipe_table] = STATE(41), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(41), + [sym_pandoc_list] = STATE(41), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(39), - [sym_pandoc_div] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__newline] = STATE(39), - [sym__soft_line_break] = STATE(39), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(41), + [sym_pandoc_div] = STATE(41), + [sym_note_definition_fenced_block] = STATE(41), + [sym__newline] = STATE(41), + [sym__soft_line_break] = STATE(41), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(41), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(215), - [sym_entity_reference] = ACTIONS(218), - [sym_numeric_character_reference] = ACTIONS(218), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_BANG_LBRACK] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(233), - [aux_sym_pandoc_str_token1] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(239), - [aux_sym__prose_punctuation_token1] = ACTIONS(242), - [sym__line_ending] = ACTIONS(245), - [sym__soft_line_ending] = ACTIONS(248), - [sym__block_close] = ACTIONS(251), - [sym__block_quote_start] = ACTIONS(253), - [sym_atx_h1_marker] = ACTIONS(256), - [sym_atx_h2_marker] = ACTIONS(259), - [sym_atx_h3_marker] = ACTIONS(262), - [sym_atx_h4_marker] = ACTIONS(265), - [sym_atx_h5_marker] = ACTIONS(268), - [sym_atx_h6_marker] = ACTIONS(271), - [sym__thematic_break] = ACTIONS(274), - [sym__list_marker_minus] = ACTIONS(277), - [sym__list_marker_plus] = ACTIONS(280), - [sym__list_marker_star] = ACTIONS(283), - [sym__list_marker_parenthesis] = ACTIONS(286), - [sym__list_marker_dot] = ACTIONS(289), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(277), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(280), - [sym__list_marker_star_dont_interrupt] = ACTIONS(283), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(286), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(289), - [sym__list_marker_example] = ACTIONS(292), - [sym__list_marker_example_dont_interrupt] = ACTIONS(292), - [sym__fenced_code_block_start_backtick] = ACTIONS(295), - [sym_minus_metadata] = ACTIONS(298), - [sym__pipe_table_start] = ACTIONS(301), - [sym__fenced_div_start] = ACTIONS(304), - [sym__fenced_div_end] = ACTIONS(251), - [sym_ref_id_specifier] = ACTIONS(307), - [sym__code_span_start] = ACTIONS(310), - [sym__html_comment] = ACTIONS(218), - [sym__autolink] = ACTIONS(218), - [sym__highlight_span_start] = ACTIONS(313), - [sym__insert_span_start] = ACTIONS(316), - [sym__delete_span_start] = ACTIONS(319), - [sym__edit_comment_span_start] = ACTIONS(322), - [sym__single_quote_span_open] = ACTIONS(325), - [sym__double_quote_span_open] = ACTIONS(328), - [sym__shortcode_open_escaped] = ACTIONS(331), - [sym__shortcode_open] = ACTIONS(334), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(340), - [sym__cite_author_in_text] = ACTIONS(343), - [sym__cite_suppress_author] = ACTIONS(346), - [sym__strikeout_open] = ACTIONS(349), - [sym__subscript_open] = ACTIONS(352), - [sym__superscript_open] = ACTIONS(355), - [sym__inline_note_start_token] = ACTIONS(358), - [sym__strong_emphasis_open_star] = ACTIONS(361), - [sym__strong_emphasis_open_underscore] = ACTIONS(364), - [sym__emphasis_open_star] = ACTIONS(367), - [sym__emphasis_open_underscore] = ACTIONS(370), - [sym_inline_note_reference] = ACTIONS(218), - [sym_html_element] = ACTIONS(218), - [sym__pandoc_line_break] = ACTIONS(218), - }, - [STATE(40)] = { - [sym__block] = STATE(65), - [sym__block_not_section] = STATE(65), - [sym_section] = STATE(65), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(65), - [sym_pandoc_paragraph] = STATE(65), - [sym_inline_ref_def] = STATE(65), - [sym_caption] = STATE(65), - [sym_pipe_table] = STATE(65), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(65), - [sym_pandoc_list] = STATE(65), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(65), - [sym_pandoc_div] = STATE(65), - [sym_note_definition_fenced_block] = STATE(65), - [sym__newline] = STATE(65), - [sym__soft_line_break] = STATE(65), - [aux_sym_pandoc_block_quote_repeat1] = STATE(65), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25619,19 +27108,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(373), - [sym_block_continuation] = ACTIONS(375), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(225), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25644,11 +27132,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(377), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(227), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(229), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25677,85 +27166,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(41)] = { - [sym__block] = STATE(68), - [sym__block_not_section] = STATE(68), - [sym_section] = STATE(68), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(68), - [sym_pandoc_paragraph] = STATE(68), - [sym_inline_ref_def] = STATE(68), - [sym_caption] = STATE(68), - [sym_pipe_table] = STATE(68), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(68), - [sym_pandoc_list] = STATE(68), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(68), - [sym_pandoc_div] = STATE(68), - [sym_note_definition_fenced_block] = STATE(68), - [sym__newline] = STATE(68), - [sym__soft_line_break] = STATE(68), - [aux_sym_pandoc_block_quote_repeat1] = STATE(68), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), + [sym__block] = STATE(46), + [sym__block_not_section] = STATE(46), + [sym_section] = STATE(46), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(84), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(46), + [sym_pandoc_paragraph] = STATE(46), + [sym_inline_ref_def] = STATE(46), + [sym_caption] = STATE(46), + [sym_pipe_table] = STATE(46), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(46), + [sym_pandoc_list] = STATE(46), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), + [sym__list_item_parenthesis] = STATE(142), + [sym__list_item_example] = STATE(143), + [sym_pandoc_code_block] = STATE(46), + [sym_pandoc_div] = STATE(46), + [sym_note_definition_fenced_block] = STATE(46), + [sym__newline] = STATE(46), + [sym__soft_line_break] = STATE(46), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), + [aux_sym__list_parenthesis_repeat1] = STATE(142), + [aux_sym__list_example_repeat1] = STATE(143), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25765,19 +27254,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(379), - [sym_block_continuation] = ACTIONS(381), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(231), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25790,11 +27278,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(383), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(215), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(233), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25823,85 +27312,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(42)] = { - [sym__block] = STATE(43), - [sym__block_not_section] = STATE(43), - [sym_section] = STATE(43), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(43), - [sym_pandoc_paragraph] = STATE(43), - [sym_inline_ref_def] = STATE(43), - [sym_caption] = STATE(43), - [sym_pipe_table] = STATE(43), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(43), - [sym_pandoc_list] = STATE(43), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(44), + [sym_pandoc_paragraph] = STATE(44), + [sym_inline_ref_def] = STATE(44), + [sym_caption] = STATE(44), + [sym_pipe_table] = STATE(44), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(44), + [sym_pandoc_list] = STATE(44), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(43), - [sym_pandoc_div] = STATE(43), - [sym_note_definition_fenced_block] = STATE(43), - [sym__newline] = STATE(43), - [sym__soft_line_break] = STATE(43), - [aux_sym_pandoc_block_quote_repeat1] = STATE(43), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(44), + [sym_pandoc_div] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__newline] = STATE(44), + [sym__soft_line_break] = STATE(44), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(44), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25911,18 +27400,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(385), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(235), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -25935,12 +27424,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(387), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(389), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(237), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(239), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -25969,85 +27458,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(43)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [sym__block] = STATE(45), + [sym__block_not_section] = STATE(45), + [sym_section] = STATE(45), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(39), - [sym_pandoc_paragraph] = STATE(39), - [sym_inline_ref_def] = STATE(39), - [sym_caption] = STATE(39), - [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(45), + [sym_pandoc_paragraph] = STATE(45), + [sym_inline_ref_def] = STATE(45), + [sym_caption] = STATE(45), + [sym_pipe_table] = STATE(45), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(45), + [sym_pandoc_list] = STATE(45), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(39), - [sym_pandoc_div] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__newline] = STATE(39), - [sym__soft_line_break] = STATE(39), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(45), + [sym_pandoc_div] = STATE(45), + [sym_note_definition_fenced_block] = STATE(45), + [sym__newline] = STATE(45), + [sym__soft_line_break] = STATE(45), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(45), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26057,18 +27546,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(391), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(231), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26081,12 +27570,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(205), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(393), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(241), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(233), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26118,67 +27607,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(46), [sym__block_not_section] = STATE(46), [sym_section] = STATE(46), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(46), [sym_pandoc_paragraph] = STATE(46), [sym_inline_ref_def] = STATE(46), [sym_caption] = STATE(46), [sym_pipe_table] = STATE(46), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(46), [sym_pandoc_list] = STATE(46), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), [sym_pandoc_code_block] = STATE(46), @@ -26186,14 +27674,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_definition_fenced_block] = STATE(46), [sym__newline] = STATE(46), [sym__soft_line_break] = STATE(46), + [sym__inline_whitespace] = STATE(755), [aux_sym_pandoc_block_quote_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26203,18 +27692,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(395), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(243), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26227,12 +27716,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(397), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(399), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(215), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(245), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26261,85 +27750,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(45)] = { - [sym__block] = STATE(47), - [sym__block_not_section] = STATE(47), - [sym_section] = STATE(47), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [sym__block] = STATE(46), + [sym__block_not_section] = STATE(46), + [sym_section] = STATE(46), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(47), - [sym_pandoc_paragraph] = STATE(47), - [sym_inline_ref_def] = STATE(47), - [sym_caption] = STATE(47), - [sym_pipe_table] = STATE(47), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(47), - [sym_pandoc_list] = STATE(47), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(46), + [sym_pandoc_paragraph] = STATE(46), + [sym_inline_ref_def] = STATE(46), + [sym_caption] = STATE(46), + [sym_pipe_table] = STATE(46), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(46), + [sym_pandoc_list] = STATE(46), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(47), - [sym_pandoc_div] = STATE(47), - [sym_note_definition_fenced_block] = STATE(47), - [sym__newline] = STATE(47), - [sym__soft_line_break] = STATE(47), - [aux_sym_pandoc_block_quote_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(46), + [sym_pandoc_div] = STATE(46), + [sym_note_definition_fenced_block] = STATE(46), + [sym__newline] = STATE(46), + [sym__soft_line_break] = STATE(46), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26349,18 +27838,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(391), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(247), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26373,12 +27862,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(401), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(393), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(215), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(249), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26407,85 +27896,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(46)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [sym__block] = STATE(46), + [sym__block_not_section] = STATE(46), + [sym_section] = STATE(46), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(39), - [sym_pandoc_paragraph] = STATE(39), - [sym_inline_ref_def] = STATE(39), - [sym_caption] = STATE(39), - [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(46), + [sym_pandoc_paragraph] = STATE(46), + [sym_inline_ref_def] = STATE(46), + [sym_caption] = STATE(46), + [sym_pipe_table] = STATE(46), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(46), + [sym_pandoc_list] = STATE(46), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(39), - [sym_pandoc_div] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__newline] = STATE(39), - [sym__soft_line_break] = STATE(39), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(46), + [sym_pandoc_div] = STATE(46), + [sym_note_definition_fenced_block] = STATE(46), + [sym__newline] = STATE(46), + [sym__soft_line_break] = STATE(46), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(251), + [sym_entity_reference] = ACTIONS(254), + [sym_numeric_character_reference] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_BANG_LBRACK] = ACTIONS(260), + [anon_sym_DOLLAR] = ACTIONS(263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(266), + [anon_sym_LBRACE] = ACTIONS(269), + [aux_sym_pandoc_str_token1] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(275), + [sym__whitespace] = ACTIONS(278), + [sym__line_ending] = ACTIONS(281), + [sym__soft_line_ending] = ACTIONS(284), + [sym__block_close] = ACTIONS(287), + [sym__block_quote_start] = ACTIONS(289), + [sym_atx_h1_marker] = ACTIONS(292), + [sym_atx_h2_marker] = ACTIONS(295), + [sym_atx_h3_marker] = ACTIONS(298), + [sym_atx_h4_marker] = ACTIONS(301), + [sym_atx_h5_marker] = ACTIONS(304), + [sym_atx_h6_marker] = ACTIONS(307), + [sym__thematic_break] = ACTIONS(310), + [sym__list_marker_minus] = ACTIONS(313), + [sym__list_marker_plus] = ACTIONS(316), + [sym__list_marker_star] = ACTIONS(319), + [sym__list_marker_parenthesis] = ACTIONS(322), + [sym__list_marker_dot] = ACTIONS(325), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(313), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(316), + [sym__list_marker_star_dont_interrupt] = ACTIONS(319), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(322), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(325), + [sym__list_marker_example] = ACTIONS(328), + [sym__list_marker_example_dont_interrupt] = ACTIONS(328), + [sym__fenced_code_block_start_backtick] = ACTIONS(331), + [sym_minus_metadata] = ACTIONS(334), + [sym__pipe_table_start] = ACTIONS(337), + [sym__fenced_div_start] = ACTIONS(340), + [sym__fenced_div_end] = ACTIONS(287), + [sym_ref_id_specifier] = ACTIONS(343), + [sym__code_span_start] = ACTIONS(346), + [sym__html_comment] = ACTIONS(254), + [sym__autolink] = ACTIONS(254), + [sym__highlight_span_start] = ACTIONS(349), + [sym__insert_span_start] = ACTIONS(352), + [sym__delete_span_start] = ACTIONS(355), + [sym__edit_comment_span_start] = ACTIONS(358), + [sym__single_quote_span_open] = ACTIONS(361), + [sym__double_quote_span_open] = ACTIONS(364), + [sym__shortcode_open_escaped] = ACTIONS(367), + [sym__shortcode_open] = ACTIONS(370), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(376), + [sym__cite_author_in_text] = ACTIONS(379), + [sym__cite_suppress_author] = ACTIONS(382), + [sym__strikeout_open] = ACTIONS(385), + [sym__subscript_open] = ACTIONS(388), + [sym__superscript_open] = ACTIONS(391), + [sym__inline_note_start_token] = ACTIONS(394), + [sym__strong_emphasis_open_star] = ACTIONS(397), + [sym__strong_emphasis_open_underscore] = ACTIONS(400), + [sym__emphasis_open_star] = ACTIONS(403), + [sym__emphasis_open_underscore] = ACTIONS(406), + [sym_inline_note_reference] = ACTIONS(254), + [sym_html_element] = ACTIONS(254), + [sym__pandoc_line_break] = ACTIONS(254), + }, + [STATE(47)] = { + [sym__block] = STATE(65), + [sym__block_not_section] = STATE(65), + [sym_section] = STATE(65), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(65), + [sym_pandoc_paragraph] = STATE(65), + [sym_inline_ref_def] = STATE(65), + [sym_caption] = STATE(65), + [sym_pipe_table] = STATE(65), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(65), + [sym_pandoc_list] = STATE(65), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(65), + [sym_pandoc_div] = STATE(65), + [sym_note_definition_fenced_block] = STATE(65), + [sym__newline] = STATE(65), + [sym__soft_line_break] = STATE(65), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(65), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26495,18 +28130,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(403), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(409), + [sym_block_continuation] = ACTIONS(411), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26519,12 +28155,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(205), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(405), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(413), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26552,86 +28187,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(47)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [STATE(48)] = { + [sym__block] = STATE(49), + [sym__block_not_section] = STATE(49), + [sym_section] = STATE(49), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(39), - [sym_pandoc_paragraph] = STATE(39), - [sym_inline_ref_def] = STATE(39), - [sym_caption] = STATE(39), - [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(49), + [sym_pandoc_paragraph] = STATE(49), + [sym_inline_ref_def] = STATE(49), + [sym_caption] = STATE(49), + [sym_pipe_table] = STATE(49), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(49), + [sym_pandoc_list] = STATE(49), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(39), - [sym_pandoc_div] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__newline] = STATE(39), - [sym__soft_line_break] = STATE(39), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(49), + [sym_pandoc_div] = STATE(49), + [sym_note_definition_fenced_block] = STATE(49), + [sym__newline] = STATE(49), + [sym__soft_line_break] = STATE(49), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(49), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26641,18 +28276,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(407), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(415), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26665,12 +28300,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(205), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(409), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(417), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(419), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26698,86 +28333,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(48)] = { - [sym__block] = STATE(60), - [sym__block_not_section] = STATE(60), - [sym_section] = STATE(60), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(60), - [sym_pandoc_paragraph] = STATE(60), - [sym_inline_ref_def] = STATE(60), - [sym_caption] = STATE(60), - [sym_pipe_table] = STATE(60), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(60), - [sym_pandoc_list] = STATE(60), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(60), - [sym_pandoc_div] = STATE(60), - [sym_note_definition_fenced_block] = STATE(60), - [sym__newline] = STATE(60), - [sym__soft_line_break] = STATE(60), - [aux_sym_pandoc_block_quote_repeat1] = STATE(60), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), + [STATE(49)] = { + [sym__block] = STATE(46), + [sym__block_not_section] = STATE(46), + [sym_section] = STATE(46), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(84), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(46), + [sym_pandoc_paragraph] = STATE(46), + [sym_inline_ref_def] = STATE(46), + [sym_caption] = STATE(46), + [sym_pipe_table] = STATE(46), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(46), + [sym_pandoc_list] = STATE(46), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), + [sym__list_item_parenthesis] = STATE(142), + [sym__list_item_example] = STATE(143), + [sym_pandoc_code_block] = STATE(46), + [sym_pandoc_div] = STATE(46), + [sym_note_definition_fenced_block] = STATE(46), + [sym__newline] = STATE(46), + [sym__soft_line_break] = STATE(46), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), + [aux_sym__list_parenthesis_repeat1] = STATE(142), + [aux_sym__list_example_repeat1] = STATE(143), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26787,19 +28422,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(411), - [sym_block_continuation] = ACTIONS(413), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(421), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26812,11 +28446,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(415), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(215), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(423), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26844,86 +28479,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(49)] = { - [sym__block] = STATE(50), - [sym__block_not_section] = STATE(50), - [sym_section] = STATE(50), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [STATE(50)] = { + [sym__block] = STATE(52), + [sym__block_not_section] = STATE(52), + [sym_section] = STATE(52), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(50), - [sym_pandoc_paragraph] = STATE(50), - [sym_inline_ref_def] = STATE(50), - [sym_caption] = STATE(50), - [sym_pipe_table] = STATE(50), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(50), - [sym_pandoc_list] = STATE(50), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(52), + [sym_pandoc_paragraph] = STATE(52), + [sym_inline_ref_def] = STATE(52), + [sym_caption] = STATE(52), + [sym_pipe_table] = STATE(52), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(52), + [sym_pandoc_list] = STATE(52), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(50), - [sym_pandoc_div] = STATE(50), - [sym_note_definition_fenced_block] = STATE(50), - [sym__newline] = STATE(50), - [sym__soft_line_break] = STATE(50), - [aux_sym_pandoc_block_quote_repeat1] = STATE(50), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(52), + [sym_pandoc_div] = STATE(52), + [sym_note_definition_fenced_block] = STATE(52), + [sym__newline] = STATE(52), + [sym__soft_line_break] = STATE(52), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(52), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26933,18 +28568,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(417), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(425), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -26957,12 +28592,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(419), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(421), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(427), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(429), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -26990,86 +28625,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(50)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [STATE(51)] = { + [sym__block] = STATE(53), + [sym__block_not_section] = STATE(53), + [sym_section] = STATE(53), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(39), - [sym_pandoc_paragraph] = STATE(39), - [sym_inline_ref_def] = STATE(39), - [sym_caption] = STATE(39), - [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(53), + [sym_pandoc_paragraph] = STATE(53), + [sym_inline_ref_def] = STATE(53), + [sym_caption] = STATE(53), + [sym_pipe_table] = STATE(53), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(53), + [sym_pandoc_list] = STATE(53), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(39), - [sym_pandoc_div] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__newline] = STATE(39), - [sym__soft_line_break] = STATE(39), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(53), + [sym_pandoc_div] = STATE(53), + [sym_note_definition_fenced_block] = STATE(53), + [sym__newline] = STATE(53), + [sym__soft_line_break] = STATE(53), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27079,18 +28714,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(423), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(421), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -27103,12 +28738,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(205), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(425), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(431), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(423), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -27136,86 +28771,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(51)] = { - [sym__block] = STATE(53), - [sym__block_not_section] = STATE(53), - [sym_section] = STATE(53), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [STATE(52)] = { + [sym__block] = STATE(46), + [sym__block_not_section] = STATE(46), + [sym_section] = STATE(46), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(53), - [sym_pandoc_paragraph] = STATE(53), - [sym_inline_ref_def] = STATE(53), - [sym_caption] = STATE(53), - [sym_pipe_table] = STATE(53), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(53), - [sym_pandoc_list] = STATE(53), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(46), + [sym_pandoc_paragraph] = STATE(46), + [sym_inline_ref_def] = STATE(46), + [sym_caption] = STATE(46), + [sym_pipe_table] = STATE(46), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(46), + [sym_pandoc_list] = STATE(46), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(53), - [sym_pandoc_div] = STATE(53), - [sym_note_definition_fenced_block] = STATE(53), - [sym__newline] = STATE(53), - [sym__soft_line_break] = STATE(53), - [aux_sym_pandoc_block_quote_repeat1] = STATE(53), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(46), + [sym_pandoc_div] = STATE(46), + [sym_note_definition_fenced_block] = STATE(46), + [sym__newline] = STATE(46), + [sym__soft_line_break] = STATE(46), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27225,18 +28860,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(427), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(433), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -27249,12 +28884,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(429), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(431), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(215), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(435), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -27282,86 +28917,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(52)] = { - [sym__block] = STATE(54), - [sym__block_not_section] = STATE(54), - [sym_section] = STATE(54), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [STATE(53)] = { + [sym__block] = STATE(46), + [sym__block_not_section] = STATE(46), + [sym_section] = STATE(46), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(54), - [sym_pandoc_paragraph] = STATE(54), - [sym_inline_ref_def] = STATE(54), - [sym_caption] = STATE(54), - [sym_pipe_table] = STATE(54), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(54), - [sym_pandoc_list] = STATE(54), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(46), + [sym_pandoc_paragraph] = STATE(46), + [sym_inline_ref_def] = STATE(46), + [sym_caption] = STATE(46), + [sym_pipe_table] = STATE(46), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(46), + [sym_pandoc_list] = STATE(46), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(54), - [sym_pandoc_div] = STATE(54), - [sym_note_definition_fenced_block] = STATE(54), - [sym__newline] = STATE(54), - [sym__soft_line_break] = STATE(54), - [aux_sym_pandoc_block_quote_repeat1] = STATE(54), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(46), + [sym_pandoc_div] = STATE(46), + [sym_note_definition_fenced_block] = STATE(46), + [sym__newline] = STATE(46), + [sym__soft_line_break] = STATE(46), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27371,18 +29006,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(423), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(437), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -27395,12 +29030,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(433), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(425), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(215), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(439), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -27428,86 +29063,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(53)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(39), - [sym_pandoc_paragraph] = STATE(39), - [sym_inline_ref_def] = STATE(39), - [sym_caption] = STATE(39), - [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), + [STATE(54)] = { + [sym__block] = STATE(68), + [sym__block_not_section] = STATE(68), + [sym_section] = STATE(68), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(68), + [sym_pandoc_paragraph] = STATE(68), + [sym_inline_ref_def] = STATE(68), + [sym_caption] = STATE(68), + [sym_pipe_table] = STATE(68), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(68), + [sym_pandoc_list] = STATE(68), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), - [sym__list_item_parenthesis] = STATE(142), - [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(39), - [sym_pandoc_div] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__newline] = STATE(39), - [sym__soft_line_break] = STATE(39), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), - [aux_sym__list_parenthesis_repeat1] = STATE(142), - [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(68), + [sym_pandoc_div] = STATE(68), + [sym_note_definition_fenced_block] = STATE(68), + [sym__newline] = STATE(68), + [sym__soft_line_break] = STATE(68), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(68), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27517,18 +29152,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(435), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(441), + [sym_block_continuation] = ACTIONS(443), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -27541,12 +29177,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(205), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(437), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(445), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -27574,86 +29209,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(54)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [STATE(55)] = { + [sym__block] = STATE(56), + [sym__block_not_section] = STATE(56), + [sym_section] = STATE(56), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(39), - [sym_pandoc_paragraph] = STATE(39), - [sym_inline_ref_def] = STATE(39), - [sym_caption] = STATE(39), - [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(56), + [sym_pandoc_paragraph] = STATE(56), + [sym_inline_ref_def] = STATE(56), + [sym_caption] = STATE(56), + [sym_pipe_table] = STATE(56), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(56), + [sym_pandoc_list] = STATE(56), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(39), - [sym_pandoc_div] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__newline] = STATE(39), - [sym__soft_line_break] = STATE(39), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(56), + [sym_pandoc_div] = STATE(56), + [sym_note_definition_fenced_block] = STATE(56), + [sym__newline] = STATE(56), + [sym__soft_line_break] = STATE(56), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(56), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27663,18 +29298,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(439), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(447), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -27687,12 +29322,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(205), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(441), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(449), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(451), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -27720,86 +29355,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(55)] = { - [sym__block] = STATE(56), - [sym__block_not_section] = STATE(56), - [sym_section] = STATE(56), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [STATE(56)] = { + [sym__block] = STATE(46), + [sym__block_not_section] = STATE(46), + [sym_section] = STATE(46), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(56), - [sym_pandoc_paragraph] = STATE(56), - [sym_inline_ref_def] = STATE(56), - [sym_caption] = STATE(56), - [sym_pipe_table] = STATE(56), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(56), - [sym_pandoc_list] = STATE(56), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(46), + [sym_pandoc_paragraph] = STATE(46), + [sym_inline_ref_def] = STATE(46), + [sym_caption] = STATE(46), + [sym_pipe_table] = STATE(46), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(46), + [sym_pandoc_list] = STATE(46), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(56), - [sym_pandoc_div] = STATE(56), - [sym_note_definition_fenced_block] = STATE(56), - [sym__newline] = STATE(56), - [sym__soft_line_break] = STATE(56), - [aux_sym_pandoc_block_quote_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(46), + [sym_pandoc_div] = STATE(46), + [sym_note_definition_fenced_block] = STATE(46), + [sym__newline] = STATE(46), + [sym__soft_line_break] = STATE(46), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -27809,18 +29444,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(443), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(453), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -27833,158 +29468,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(445), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(447), - [sym_ref_id_specifier] = ACTIONS(213), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), - }, - [STATE(56)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), - [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(39), - [sym_pandoc_paragraph] = STATE(39), - [sym_inline_ref_def] = STATE(39), - [sym_caption] = STATE(39), - [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), - [sym__list_item_parenthesis] = STATE(142), - [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(39), - [sym_pandoc_div] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__newline] = STATE(39), - [sym__soft_line_break] = STATE(39), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), - [aux_sym__list_parenthesis_repeat1] = STATE(142), - [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(449), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), - [sym__list_marker_minus] = ACTIONS(45), - [sym__list_marker_plus] = ACTIONS(47), - [sym__list_marker_star] = ACTIONS(49), - [sym__list_marker_parenthesis] = ACTIONS(51), - [sym__list_marker_dot] = ACTIONS(53), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_star_dont_interrupt] = ACTIONS(49), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), - [sym__list_marker_example] = ACTIONS(55), - [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(205), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(451), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(215), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(455), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -28016,67 +29505,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(59), [sym__block_not_section] = STATE(59), [sym_section] = STATE(59), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(59), [sym_pandoc_paragraph] = STATE(59), [sym_inline_ref_def] = STATE(59), [sym_caption] = STATE(59), [sym_pipe_table] = STATE(59), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(59), [sym_pandoc_list] = STATE(59), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), [sym_pandoc_code_block] = STATE(59), @@ -28084,14 +29572,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_definition_fenced_block] = STATE(59), [sym__newline] = STATE(59), [sym__soft_line_break] = STATE(59), + [sym__inline_whitespace] = STATE(755), [aux_sym_pandoc_block_quote_repeat1] = STATE(59), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -28101,18 +29590,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(453), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(457), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -28125,12 +29614,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(455), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(457), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(459), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(461), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -28159,85 +29648,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(58)] = { - [sym__block] = STATE(38), - [sym__block_not_section] = STATE(38), - [sym_section] = STATE(38), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [sym__block] = STATE(39), + [sym__block_not_section] = STATE(39), + [sym_section] = STATE(39), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(38), - [sym_pandoc_paragraph] = STATE(38), - [sym_inline_ref_def] = STATE(38), - [sym_caption] = STATE(38), - [sym_pipe_table] = STATE(38), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(38), - [sym_pandoc_list] = STATE(38), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(39), + [sym_pandoc_paragraph] = STATE(39), + [sym_inline_ref_def] = STATE(39), + [sym_caption] = STATE(39), + [sym_pipe_table] = STATE(39), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(39), + [sym_pandoc_list] = STATE(39), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(38), - [sym_pandoc_div] = STATE(38), - [sym_note_definition_fenced_block] = STATE(38), - [sym__newline] = STATE(38), - [sym__soft_line_break] = STATE(38), - [aux_sym_pandoc_block_quote_repeat1] = STATE(38), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(39), + [sym_pandoc_div] = STATE(39), + [sym_note_definition_fenced_block] = STATE(39), + [sym__newline] = STATE(39), + [sym__soft_line_break] = STATE(39), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(39), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -28247,18 +29736,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(449), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(453), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -28271,12 +29760,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(459), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(451), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(463), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(455), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -28305,85 +29794,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(59)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(357), - [sym__section2] = STATE(357), - [sym__section3] = STATE(357), - [sym__section4] = STATE(357), - [sym__section5] = STATE(357), - [sym__section6] = STATE(357), - [sym__atx_heading1] = STATE(76), + [sym__block] = STATE(46), + [sym__block_not_section] = STATE(46), + [sym_section] = STATE(46), + [sym__section1] = STATE(251), + [sym__section2] = STATE(251), + [sym__section3] = STATE(251), + [sym__section4] = STATE(251), + [sym__section5] = STATE(251), + [sym__section6] = STATE(251), + [sym__atx_heading1] = STATE(74), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(39), - [sym_pandoc_paragraph] = STATE(39), - [sym_inline_ref_def] = STATE(39), - [sym_caption] = STATE(39), - [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(46), + [sym_pandoc_paragraph] = STATE(46), + [sym_inline_ref_def] = STATE(46), + [sym_caption] = STATE(46), + [sym_pipe_table] = STATE(46), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(46), + [sym_pandoc_list] = STATE(46), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(39), - [sym_pandoc_div] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__newline] = STATE(39), - [sym__soft_line_break] = STATE(39), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(46), + [sym_pandoc_div] = STATE(46), + [sym_note_definition_fenced_block] = STATE(46), + [sym__newline] = STATE(46), + [sym__soft_line_break] = STATE(46), + [sym__inline_whitespace] = STATE(755), + [aux_sym_pandoc_block_quote_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -28393,18 +29882,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(461), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(189), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(465), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(199), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -28417,12 +29906,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(205), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(463), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(215), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(467), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -28451,84 +29940,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(60)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(67), - [sym_pandoc_div] = STATE(67), - [sym_note_definition_fenced_block] = STATE(67), - [sym__newline] = STATE(67), - [sym__soft_line_break] = STATE(67), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(72), + [sym_pandoc_paragraph] = STATE(72), + [sym_inline_ref_def] = STATE(72), + [sym_caption] = STATE(72), + [sym_pipe_table] = STATE(72), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -28539,18 +30028,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(465), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(469), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -28563,11 +30052,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(467), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(471), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -28596,85 +30085,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(61)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), + [sym__block_not_section] = STATE(354), + [sym_section] = STATE(2372), + [sym__section1] = STATE(2594), + [sym__section2] = STATE(2594), + [sym__section3] = STATE(2594), + [sym__section4] = STATE(2594), + [sym__section5] = STATE(2594), + [sym__section6] = STATE(2594), + [sym__atx_heading1] = STATE(82), + [sym__atx_heading2] = STATE(90), [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), + [sym__atx_heading4] = STATE(105), [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(67), - [sym_pandoc_div] = STATE(67), - [sym_note_definition_fenced_block] = STATE(67), - [sym__newline] = STATE(67), - [sym__soft_line_break] = STATE(67), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(354), + [sym_pandoc_paragraph] = STATE(354), + [sym_inline_ref_def] = STATE(354), + [sym_caption] = STATE(354), + [sym_pipe_table] = STATE(354), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(354), + [sym_pandoc_list] = STATE(354), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), + [sym_list_marker_plus] = STATE(3), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(354), + [sym_pandoc_div] = STATE(354), + [sym_note_definition_fenced_block] = STATE(354), + [sym__newline] = STATE(354), + [sym__soft_line_break] = STATE(354), + [sym__inline_whitespace] = STATE(765), + [aux_sym_document_repeat1] = STATE(71), + [aux_sym_document_repeat2] = STATE(2372), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(473), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -28684,18 +30174,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(469), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(31), + [sym_atx_h2_marker] = ACTIONS(33), + [sym_atx_h3_marker] = ACTIONS(35), + [sym_atx_h4_marker] = ACTIONS(37), + [sym_atx_h5_marker] = ACTIONS(39), + [sym_atx_h6_marker] = ACTIONS(41), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -28708,11 +30197,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(467), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym_minus_metadata] = ACTIONS(475), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -28741,85 +30230,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(62)] = { - [sym__block_not_section] = STATE(456), - [sym_section] = STATE(2300), - [sym__section1] = STATE(2484), - [sym__section2] = STATE(2484), - [sym__section3] = STATE(2484), - [sym__section4] = STATE(2484), - [sym__section5] = STATE(2484), - [sym__section6] = STATE(2484), + [sym__block_not_section] = STATE(354), + [sym_section] = STATE(2373), + [sym__section1] = STATE(2594), + [sym__section2] = STATE(2594), + [sym__section3] = STATE(2594), + [sym__section4] = STATE(2594), + [sym__section5] = STATE(2594), + [sym__section6] = STATE(2594), [sym__atx_heading1] = STATE(82), - [sym__atx_heading2] = STATE(89), - [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(456), - [sym_pandoc_paragraph] = STATE(456), - [sym_inline_ref_def] = STATE(456), - [sym_caption] = STATE(456), - [sym_pipe_table] = STATE(456), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(456), - [sym_pandoc_list] = STATE(456), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(100), + [sym__atx_heading4] = STATE(105), + [sym__atx_heading5] = STATE(116), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(354), + [sym_pandoc_paragraph] = STATE(354), + [sym_inline_ref_def] = STATE(354), + [sym_caption] = STATE(354), + [sym_pipe_table] = STATE(354), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(354), + [sym_pandoc_list] = STATE(354), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(456), - [sym_pandoc_div] = STATE(456), - [sym_note_definition_fenced_block] = STATE(456), - [sym__newline] = STATE(456), - [sym__soft_line_break] = STATE(456), - [aux_sym_document_repeat1] = STATE(64), - [aux_sym_document_repeat2] = STATE(2300), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(471), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(354), + [sym_pandoc_div] = STATE(354), + [sym_note_definition_fenced_block] = STATE(354), + [sym__newline] = STATE(354), + [sym__soft_line_break] = STATE(354), + [sym__inline_whitespace] = STATE(765), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_document_repeat2] = STATE(2373), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(477), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -28830,7 +30319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), + [sym__whitespace] = ACTIONS(23), [sym__line_ending] = ACTIONS(25), [sym__soft_line_ending] = ACTIONS(27), [sym__block_quote_start] = ACTIONS(29), @@ -28854,7 +30343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(473), + [sym_minus_metadata] = ACTIONS(475), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -28886,84 +30375,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(63)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(67), - [sym_pandoc_div] = STATE(67), - [sym_note_definition_fenced_block] = STATE(67), - [sym__newline] = STATE(67), - [sym__soft_line_break] = STATE(67), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(60), + [sym__block_not_section] = STATE(60), + [sym_section] = STATE(60), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(60), + [sym_pandoc_paragraph] = STATE(60), + [sym_inline_ref_def] = STATE(60), + [sym_caption] = STATE(60), + [sym_pipe_table] = STATE(60), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(60), + [sym_pandoc_list] = STATE(60), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(60), + [sym_pandoc_div] = STATE(60), + [sym_note_definition_fenced_block] = STATE(60), + [sym__newline] = STATE(60), + [sym__soft_line_break] = STATE(60), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(60), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -28974,18 +30463,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(475), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(479), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -28998,11 +30487,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(467), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(481), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29031,86 +30520,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(64)] = { - [sym__block_not_section] = STATE(456), - [sym_section] = STATE(2299), - [sym__section1] = STATE(2484), - [sym__section2] = STATE(2484), - [sym__section3] = STATE(2484), - [sym__section4] = STATE(2484), - [sym__section5] = STATE(2484), - [sym__section6] = STATE(2484), - [sym__atx_heading1] = STATE(82), + [sym__block] = STATE(69), + [sym__block_not_section] = STATE(69), + [sym_section] = STATE(69), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), [sym__atx_heading2] = STATE(89), - [sym__atx_heading3] = STATE(97), + [sym__atx_heading3] = STATE(98), [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(456), - [sym_pandoc_paragraph] = STATE(456), - [sym_inline_ref_def] = STATE(456), - [sym_caption] = STATE(456), - [sym_pipe_table] = STATE(456), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(456), - [sym_pandoc_list] = STATE(456), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), - [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(456), - [sym_pandoc_div] = STATE(456), - [sym_note_definition_fenced_block] = STATE(456), - [sym__newline] = STATE(456), - [sym__soft_line_break] = STATE(456), - [aux_sym_document_repeat1] = STATE(124), - [aux_sym_document_repeat2] = STATE(2299), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(477), - [anon_sym_COLON] = ACTIONS(5), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(69), + [sym_pandoc_paragraph] = STATE(69), + [sym_inline_ref_def] = STATE(69), + [sym_caption] = STATE(69), + [sym_pipe_table] = STATE(69), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(69), + [sym_pandoc_list] = STATE(69), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(69), + [sym_pandoc_div] = STATE(69), + [sym_note_definition_fenced_block] = STATE(69), + [sym__newline] = STATE(69), + [sym__soft_line_break] = STATE(69), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(69), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29120,17 +30608,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(31), - [sym_atx_h2_marker] = ACTIONS(33), - [sym_atx_h3_marker] = ACTIONS(35), - [sym_atx_h4_marker] = ACTIONS(37), - [sym_atx_h5_marker] = ACTIONS(39), - [sym_atx_h6_marker] = ACTIONS(41), - [sym__thematic_break] = ACTIONS(43), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(483), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -29143,11 +30632,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(473), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(485), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29176,84 +30665,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(65)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(67), - [sym_pandoc_div] = STATE(67), - [sym_note_definition_fenced_block] = STATE(67), - [sym__newline] = STATE(67), - [sym__soft_line_break] = STATE(67), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(72), + [sym_pandoc_paragraph] = STATE(72), + [sym_inline_ref_def] = STATE(72), + [sym_caption] = STATE(72), + [sym_pipe_table] = STATE(72), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -29264,18 +30753,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), [sym__block_close] = ACTIONS(479), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -29288,11 +30777,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(467), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(471), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29321,84 +30810,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(66)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(67), - [sym_pandoc_div] = STATE(67), - [sym_note_definition_fenced_block] = STATE(67), - [sym__newline] = STATE(67), - [sym__soft_line_break] = STATE(67), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(72), + [sym_pandoc_paragraph] = STATE(72), + [sym_inline_ref_def] = STATE(72), + [sym_caption] = STATE(72), + [sym_pipe_table] = STATE(72), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -29409,18 +30898,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(481), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(487), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -29433,11 +30922,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(467), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(471), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29466,229 +30955,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(67)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(67), - [sym_pandoc_div] = STATE(67), - [sym_note_definition_fenced_block] = STATE(67), - [sym__newline] = STATE(67), - [sym__soft_line_break] = STATE(67), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(483), - [sym_entity_reference] = ACTIONS(218), - [sym_numeric_character_reference] = ACTIONS(218), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_BANG_LBRACK] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(233), - [aux_sym_pandoc_str_token1] = ACTIONS(236), - [anon_sym_PIPE] = ACTIONS(239), - [aux_sym__prose_punctuation_token1] = ACTIONS(242), - [sym__line_ending] = ACTIONS(486), - [sym__soft_line_ending] = ACTIONS(489), - [sym__block_close] = ACTIONS(251), - [sym__block_quote_start] = ACTIONS(492), - [sym_atx_h1_marker] = ACTIONS(495), - [sym_atx_h2_marker] = ACTIONS(498), - [sym_atx_h3_marker] = ACTIONS(501), - [sym_atx_h4_marker] = ACTIONS(504), - [sym_atx_h5_marker] = ACTIONS(507), - [sym_atx_h6_marker] = ACTIONS(510), - [sym__thematic_break] = ACTIONS(513), - [sym__list_marker_minus] = ACTIONS(277), - [sym__list_marker_plus] = ACTIONS(280), - [sym__list_marker_star] = ACTIONS(283), - [sym__list_marker_parenthesis] = ACTIONS(286), - [sym__list_marker_dot] = ACTIONS(289), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(277), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(280), - [sym__list_marker_star_dont_interrupt] = ACTIONS(283), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(286), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(289), - [sym__list_marker_example] = ACTIONS(292), - [sym__list_marker_example_dont_interrupt] = ACTIONS(292), - [sym__fenced_code_block_start_backtick] = ACTIONS(516), - [sym_minus_metadata] = ACTIONS(519), - [sym__pipe_table_start] = ACTIONS(522), - [sym__fenced_div_start] = ACTIONS(525), - [sym_ref_id_specifier] = ACTIONS(528), - [sym__code_span_start] = ACTIONS(310), - [sym__html_comment] = ACTIONS(218), - [sym__autolink] = ACTIONS(218), - [sym__highlight_span_start] = ACTIONS(313), - [sym__insert_span_start] = ACTIONS(316), - [sym__delete_span_start] = ACTIONS(319), - [sym__edit_comment_span_start] = ACTIONS(322), - [sym__single_quote_span_open] = ACTIONS(325), - [sym__double_quote_span_open] = ACTIONS(328), - [sym__shortcode_open_escaped] = ACTIONS(331), - [sym__shortcode_open] = ACTIONS(334), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(337), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(340), - [sym__cite_author_in_text] = ACTIONS(343), - [sym__cite_suppress_author] = ACTIONS(346), - [sym__strikeout_open] = ACTIONS(349), - [sym__subscript_open] = ACTIONS(352), - [sym__superscript_open] = ACTIONS(355), - [sym__inline_note_start_token] = ACTIONS(358), - [sym__strong_emphasis_open_star] = ACTIONS(361), - [sym__strong_emphasis_open_underscore] = ACTIONS(364), - [sym__emphasis_open_star] = ACTIONS(367), - [sym__emphasis_open_underscore] = ACTIONS(370), - [sym_inline_note_reference] = ACTIONS(218), - [sym_html_element] = ACTIONS(218), - [sym__pandoc_line_break] = ACTIONS(218), - }, - [STATE(68)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(67), - [sym_pandoc_div] = STATE(67), - [sym_note_definition_fenced_block] = STATE(67), - [sym__newline] = STATE(67), - [sym__soft_line_break] = STATE(67), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(66), + [sym__block_not_section] = STATE(66), + [sym_section] = STATE(66), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(66), + [sym_pandoc_paragraph] = STATE(66), + [sym_inline_ref_def] = STATE(66), + [sym_caption] = STATE(66), + [sym_pipe_table] = STATE(66), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(66), + [sym_pandoc_list] = STATE(66), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(66), + [sym_pandoc_div] = STATE(66), + [sym_note_definition_fenced_block] = STATE(66), + [sym__newline] = STATE(66), + [sym__soft_line_break] = STATE(66), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(66), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -29699,18 +31043,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(531), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(489), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -29723,11 +31067,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(467), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(491), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29755,87 +31099,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(69)] = { - [sym__block_not_section] = STATE(456), - [sym_section] = STATE(2301), - [sym__section1] = STATE(2484), - [sym__section2] = STATE(2484), - [sym__section3] = STATE(2484), - [sym__section4] = STATE(2484), - [sym__section5] = STATE(2484), - [sym__section6] = STATE(2484), - [sym__atx_heading1] = STATE(82), + [STATE(68)] = { + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), [sym__atx_heading2] = STATE(89), - [sym__atx_heading3] = STATE(97), + [sym__atx_heading3] = STATE(98), [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(456), - [sym_pandoc_paragraph] = STATE(456), - [sym_inline_ref_def] = STATE(456), - [sym_caption] = STATE(456), - [sym_pipe_table] = STATE(456), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(456), - [sym_pandoc_list] = STATE(456), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), - [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(456), - [sym_pandoc_div] = STATE(456), - [sym_note_definition_fenced_block] = STATE(456), - [sym__newline] = STATE(456), - [sym__soft_line_break] = STATE(456), - [aux_sym_document_repeat1] = STATE(124), - [aux_sym_document_repeat2] = STATE(2301), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(533), - [anon_sym_COLON] = ACTIONS(5), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(72), + [sym_pandoc_paragraph] = STATE(72), + [sym_inline_ref_def] = STATE(72), + [sym_caption] = STATE(72), + [sym_pipe_table] = STATE(72), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29845,17 +31188,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(31), - [sym_atx_h2_marker] = ACTIONS(33), - [sym_atx_h3_marker] = ACTIONS(35), - [sym_atx_h4_marker] = ACTIONS(37), - [sym_atx_h5_marker] = ACTIONS(39), - [sym_atx_h6_marker] = ACTIONS(41), - [sym__thematic_break] = ACTIONS(43), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(483), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -29868,11 +31212,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(473), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(471), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -29900,85 +31244,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(70)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(67), - [sym_pandoc_paragraph] = STATE(67), - [sym_inline_ref_def] = STATE(67), - [sym_caption] = STATE(67), - [sym_pipe_table] = STATE(67), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(67), - [sym_pandoc_div] = STATE(67), - [sym_note_definition_fenced_block] = STATE(67), - [sym__newline] = STATE(67), - [sym__soft_line_break] = STATE(67), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [STATE(69)] = { + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(72), + [sym_pandoc_paragraph] = STATE(72), + [sym_inline_ref_def] = STATE(72), + [sym_caption] = STATE(72), + [sym_pipe_table] = STATE(72), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -29989,18 +31333,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(535), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(493), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -30013,11 +31357,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(467), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(471), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -30045,85 +31389,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(71)] = { - [sym__block] = STATE(70), - [sym__block_not_section] = STATE(70), - [sym_section] = STATE(70), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(70), - [sym_pandoc_paragraph] = STATE(70), - [sym_inline_ref_def] = STATE(70), - [sym_caption] = STATE(70), - [sym_pipe_table] = STATE(70), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(70), - [sym_pandoc_list] = STATE(70), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(70), - [sym_pandoc_div] = STATE(70), - [sym_note_definition_fenced_block] = STATE(70), - [sym__newline] = STATE(70), - [sym__soft_line_break] = STATE(70), - [aux_sym_pandoc_block_quote_repeat1] = STATE(70), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [STATE(70)] = { + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(72), + [sym_pandoc_paragraph] = STATE(72), + [sym_inline_ref_def] = STATE(72), + [sym_caption] = STATE(72), + [sym_pipe_table] = STATE(72), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -30134,18 +31478,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(531), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(489), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -30158,11 +31502,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(537), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(471), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -30190,86 +31534,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(72)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), + [STATE(71)] = { + [sym__block_not_section] = STATE(354), + [sym_section] = STATE(2370), + [sym__section1] = STATE(2594), + [sym__section2] = STATE(2594), + [sym__section3] = STATE(2594), + [sym__section4] = STATE(2594), + [sym__section5] = STATE(2594), + [sym__section6] = STATE(2594), + [sym__atx_heading1] = STATE(82), + [sym__atx_heading2] = STATE(90), [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), + [sym__atx_heading4] = STATE(105), [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(61), - [sym_pandoc_paragraph] = STATE(61), - [sym_inline_ref_def] = STATE(61), - [sym_caption] = STATE(61), - [sym_pipe_table] = STATE(61), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(61), - [sym_pandoc_div] = STATE(61), - [sym_note_definition_fenced_block] = STATE(61), - [sym__newline] = STATE(61), - [sym__soft_line_break] = STATE(61), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(354), + [sym_pandoc_paragraph] = STATE(354), + [sym_inline_ref_def] = STATE(354), + [sym_caption] = STATE(354), + [sym_pipe_table] = STATE(354), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(354), + [sym_pandoc_list] = STATE(354), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), + [sym_list_marker_plus] = STATE(3), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(354), + [sym_pandoc_div] = STATE(354), + [sym_note_definition_fenced_block] = STATE(354), + [sym__newline] = STATE(354), + [sym__soft_line_break] = STATE(354), + [sym__inline_whitespace] = STATE(765), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_document_repeat2] = STATE(2370), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30279,18 +31624,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(465), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(31), + [sym_atx_h2_marker] = ACTIONS(33), + [sym_atx_h3_marker] = ACTIONS(35), + [sym_atx_h4_marker] = ACTIONS(37), + [sym_atx_h5_marker] = ACTIONS(39), + [sym_atx_h6_marker] = ACTIONS(41), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -30303,11 +31647,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(539), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym_minus_metadata] = ACTIONS(475), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -30335,85 +31679,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, + [STATE(72)] = { + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(72), + [sym_pandoc_paragraph] = STATE(72), + [sym_inline_ref_def] = STATE(72), + [sym_caption] = STATE(72), + [sym_pipe_table] = STATE(72), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(497), + [sym_entity_reference] = ACTIONS(254), + [sym_numeric_character_reference] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_BANG_LBRACK] = ACTIONS(260), + [anon_sym_DOLLAR] = ACTIONS(263), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(266), + [anon_sym_LBRACE] = ACTIONS(269), + [aux_sym_pandoc_str_token1] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(275), + [sym__whitespace] = ACTIONS(500), + [sym__line_ending] = ACTIONS(503), + [sym__soft_line_ending] = ACTIONS(506), + [sym__block_close] = ACTIONS(287), + [sym__block_quote_start] = ACTIONS(509), + [sym_atx_h1_marker] = ACTIONS(512), + [sym_atx_h2_marker] = ACTIONS(515), + [sym_atx_h3_marker] = ACTIONS(518), + [sym_atx_h4_marker] = ACTIONS(521), + [sym_atx_h5_marker] = ACTIONS(524), + [sym_atx_h6_marker] = ACTIONS(527), + [sym__thematic_break] = ACTIONS(530), + [sym__list_marker_minus] = ACTIONS(313), + [sym__list_marker_plus] = ACTIONS(316), + [sym__list_marker_star] = ACTIONS(319), + [sym__list_marker_parenthesis] = ACTIONS(322), + [sym__list_marker_dot] = ACTIONS(325), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(313), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(316), + [sym__list_marker_star_dont_interrupt] = ACTIONS(319), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(322), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(325), + [sym__list_marker_example] = ACTIONS(328), + [sym__list_marker_example_dont_interrupt] = ACTIONS(328), + [sym__fenced_code_block_start_backtick] = ACTIONS(533), + [sym_minus_metadata] = ACTIONS(536), + [sym__pipe_table_start] = ACTIONS(539), + [sym__fenced_div_start] = ACTIONS(542), + [sym_ref_id_specifier] = ACTIONS(545), + [sym__code_span_start] = ACTIONS(346), + [sym__html_comment] = ACTIONS(254), + [sym__autolink] = ACTIONS(254), + [sym__highlight_span_start] = ACTIONS(349), + [sym__insert_span_start] = ACTIONS(352), + [sym__delete_span_start] = ACTIONS(355), + [sym__edit_comment_span_start] = ACTIONS(358), + [sym__single_quote_span_open] = ACTIONS(361), + [sym__double_quote_span_open] = ACTIONS(364), + [sym__shortcode_open_escaped] = ACTIONS(367), + [sym__shortcode_open] = ACTIONS(370), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(373), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(376), + [sym__cite_author_in_text] = ACTIONS(379), + [sym__cite_suppress_author] = ACTIONS(382), + [sym__strikeout_open] = ACTIONS(385), + [sym__subscript_open] = ACTIONS(388), + [sym__superscript_open] = ACTIONS(391), + [sym__inline_note_start_token] = ACTIONS(394), + [sym__strong_emphasis_open_star] = ACTIONS(397), + [sym__strong_emphasis_open_underscore] = ACTIONS(400), + [sym__emphasis_open_star] = ACTIONS(403), + [sym__emphasis_open_underscore] = ACTIONS(406), + [sym_inline_note_reference] = ACTIONS(254), + [sym_html_element] = ACTIONS(254), + [sym__pandoc_line_break] = ACTIONS(254), + }, [STATE(73)] = { - [sym__block] = STATE(66), - [sym__block_not_section] = STATE(66), - [sym_section] = STATE(66), - [sym__section1] = STATE(596), - [sym__section2] = STATE(596), - [sym__section3] = STATE(596), - [sym__section4] = STATE(596), - [sym__section5] = STATE(596), - [sym__section6] = STATE(596), - [sym__atx_heading1] = STATE(80), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(66), - [sym_pandoc_paragraph] = STATE(66), - [sym_inline_ref_def] = STATE(66), - [sym_caption] = STATE(66), - [sym_pipe_table] = STATE(66), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(66), - [sym_pandoc_list] = STATE(66), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(66), - [sym_pandoc_div] = STATE(66), - [sym_note_definition_fenced_block] = STATE(66), - [sym__newline] = STATE(66), - [sym__soft_line_break] = STATE(66), - [aux_sym_pandoc_block_quote_repeat1] = STATE(66), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block] = STATE(72), + [sym__block_not_section] = STATE(72), + [sym_section] = STATE(72), + [sym__section1] = STATE(526), + [sym__section2] = STATE(526), + [sym__section3] = STATE(526), + [sym__section4] = STATE(526), + [sym__section5] = STATE(526), + [sym__section6] = STATE(526), + [sym__atx_heading1] = STATE(81), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(72), + [sym_pandoc_paragraph] = STATE(72), + [sym_inline_ref_def] = STATE(72), + [sym_caption] = STATE(72), + [sym_pipe_table] = STATE(72), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(72), + [sym_pandoc_list] = STATE(72), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(72), + [sym_pandoc_div] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__newline] = STATE(72), + [sym__soft_line_break] = STATE(72), + [sym__inline_whitespace] = STATE(753), + [aux_sym_pandoc_block_quote_repeat1] = STATE(72), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -30424,18 +31913,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(479), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(119), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(548), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(121), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -30448,11 +31937,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(541), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(471), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -30481,81 +31970,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(74)] = { - [sym__block_not_section] = STATE(75), - [sym__section2] = STATE(377), - [sym__section3] = STATE(377), - [sym__section4] = STATE(377), - [sym__section5] = STATE(377), - [sym__section6] = STATE(377), + [sym__block_not_section] = STATE(76), + [sym__section2] = STATE(261), + [sym__section3] = STATE(261), + [sym__section4] = STATE(261), + [sym__section5] = STATE(261), + [sym__section6] = STATE(261), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(75), - [sym_pandoc_paragraph] = STATE(75), - [sym_inline_ref_def] = STATE(75), - [sym_caption] = STATE(75), - [sym_pipe_table] = STATE(75), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(75), - [sym_pandoc_list] = STATE(75), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(76), + [sym_pandoc_paragraph] = STATE(76), + [sym_inline_ref_def] = STATE(76), + [sym_caption] = STATE(76), + [sym_pipe_table] = STATE(76), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(76), + [sym_pandoc_list] = STATE(76), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(75), - [sym_pandoc_div] = STATE(75), - [sym_note_definition_fenced_block] = STATE(75), - [sym__newline] = STATE(75), - [sym__soft_line_break] = STATE(75), - [aux_sym__section1_repeat1] = STATE(75), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(76), + [sym_pandoc_div] = STATE(76), + [sym_note_definition_fenced_block] = STATE(76), + [sym__newline] = STATE(76), + [sym__soft_line_break] = STATE(76), + [sym__inline_whitespace] = STATE(755), + [aux_sym__section1_repeat1] = STATE(76), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30565,18 +32054,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(543), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(543), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(550), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(550), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -30589,12 +32078,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(545), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(543), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(552), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(550), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -30624,65 +32113,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(75)] = { [sym__block_not_section] = STATE(75), - [sym__section2] = STATE(377), - [sym__section3] = STATE(377), - [sym__section4] = STATE(377), - [sym__section5] = STATE(377), - [sym__section6] = STATE(377), + [sym__section2] = STATE(261), + [sym__section3] = STATE(261), + [sym__section4] = STATE(261), + [sym__section5] = STATE(261), + [sym__section6] = STATE(261), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(75), [sym_pandoc_paragraph] = STATE(75), [sym_inline_ref_def] = STATE(75), [sym_caption] = STATE(75), [sym_pipe_table] = STATE(75), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(75), [sym_pandoc_list] = STATE(75), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), [sym_pandoc_code_block] = STATE(75), @@ -30690,156 +32178,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_definition_fenced_block] = STATE(75), [sym__newline] = STATE(75), [sym__soft_line_break] = STATE(75), + [sym__inline_whitespace] = STATE(755), [aux_sym__section1_repeat1] = STATE(75), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(547), - [sym_entity_reference] = ACTIONS(550), - [sym_numeric_character_reference] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_BANG_LBRACK] = ACTIONS(556), - [anon_sym_DOLLAR] = ACTIONS(559), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(565), - [aux_sym_pandoc_str_token1] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(571), - [aux_sym__prose_punctuation_token1] = ACTIONS(574), - [sym__line_ending] = ACTIONS(577), - [sym__soft_line_ending] = ACTIONS(580), - [sym__block_close] = ACTIONS(583), - [sym__block_quote_start] = ACTIONS(585), - [sym_atx_h1_marker] = ACTIONS(583), - [sym_atx_h2_marker] = ACTIONS(588), - [sym_atx_h3_marker] = ACTIONS(591), - [sym_atx_h4_marker] = ACTIONS(594), - [sym_atx_h5_marker] = ACTIONS(597), - [sym_atx_h6_marker] = ACTIONS(600), - [sym__thematic_break] = ACTIONS(603), - [sym__list_marker_minus] = ACTIONS(606), - [sym__list_marker_plus] = ACTIONS(609), - [sym__list_marker_star] = ACTIONS(612), - [sym__list_marker_parenthesis] = ACTIONS(615), - [sym__list_marker_dot] = ACTIONS(618), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(606), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(609), - [sym__list_marker_star_dont_interrupt] = ACTIONS(612), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(615), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(618), - [sym__list_marker_example] = ACTIONS(621), - [sym__list_marker_example_dont_interrupt] = ACTIONS(621), - [sym__fenced_code_block_start_backtick] = ACTIONS(624), - [sym_minus_metadata] = ACTIONS(627), - [sym__pipe_table_start] = ACTIONS(630), - [sym__fenced_div_start] = ACTIONS(633), - [sym__fenced_div_end] = ACTIONS(583), - [sym_ref_id_specifier] = ACTIONS(636), - [sym__code_span_start] = ACTIONS(639), - [sym__html_comment] = ACTIONS(550), - [sym__autolink] = ACTIONS(550), - [sym__highlight_span_start] = ACTIONS(642), - [sym__insert_span_start] = ACTIONS(645), - [sym__delete_span_start] = ACTIONS(648), - [sym__edit_comment_span_start] = ACTIONS(651), - [sym__single_quote_span_open] = ACTIONS(654), - [sym__double_quote_span_open] = ACTIONS(657), - [sym__shortcode_open_escaped] = ACTIONS(660), - [sym__shortcode_open] = ACTIONS(663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(666), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(669), - [sym__cite_author_in_text] = ACTIONS(672), - [sym__cite_suppress_author] = ACTIONS(675), - [sym__strikeout_open] = ACTIONS(678), - [sym__subscript_open] = ACTIONS(681), - [sym__superscript_open] = ACTIONS(684), - [sym__inline_note_start_token] = ACTIONS(687), - [sym__strong_emphasis_open_star] = ACTIONS(690), - [sym__strong_emphasis_open_underscore] = ACTIONS(693), - [sym__emphasis_open_star] = ACTIONS(696), - [sym__emphasis_open_underscore] = ACTIONS(699), - [sym_inline_note_reference] = ACTIONS(550), - [sym_html_element] = ACTIONS(550), - [sym__pandoc_line_break] = ACTIONS(550), + [anon_sym_COLON] = ACTIONS(554), + [sym_entity_reference] = ACTIONS(557), + [sym_numeric_character_reference] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_BANG_LBRACK] = ACTIONS(563), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(572), + [aux_sym_pandoc_str_token1] = ACTIONS(575), + [anon_sym_PIPE] = ACTIONS(578), + [sym__whitespace] = ACTIONS(581), + [sym__line_ending] = ACTIONS(584), + [sym__soft_line_ending] = ACTIONS(587), + [sym__block_close] = ACTIONS(590), + [sym__block_quote_start] = ACTIONS(592), + [sym_atx_h1_marker] = ACTIONS(590), + [sym_atx_h2_marker] = ACTIONS(595), + [sym_atx_h3_marker] = ACTIONS(598), + [sym_atx_h4_marker] = ACTIONS(601), + [sym_atx_h5_marker] = ACTIONS(604), + [sym_atx_h6_marker] = ACTIONS(607), + [sym__thematic_break] = ACTIONS(610), + [sym__list_marker_minus] = ACTIONS(613), + [sym__list_marker_plus] = ACTIONS(616), + [sym__list_marker_star] = ACTIONS(619), + [sym__list_marker_parenthesis] = ACTIONS(622), + [sym__list_marker_dot] = ACTIONS(625), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(613), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(619), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(625), + [sym__list_marker_example] = ACTIONS(628), + [sym__list_marker_example_dont_interrupt] = ACTIONS(628), + [sym__fenced_code_block_start_backtick] = ACTIONS(631), + [sym_minus_metadata] = ACTIONS(634), + [sym__pipe_table_start] = ACTIONS(637), + [sym__fenced_div_start] = ACTIONS(640), + [sym__fenced_div_end] = ACTIONS(590), + [sym_ref_id_specifier] = ACTIONS(643), + [sym__code_span_start] = ACTIONS(646), + [sym__html_comment] = ACTIONS(557), + [sym__autolink] = ACTIONS(557), + [sym__highlight_span_start] = ACTIONS(649), + [sym__insert_span_start] = ACTIONS(652), + [sym__delete_span_start] = ACTIONS(655), + [sym__edit_comment_span_start] = ACTIONS(658), + [sym__single_quote_span_open] = ACTIONS(661), + [sym__double_quote_span_open] = ACTIONS(664), + [sym__shortcode_open_escaped] = ACTIONS(667), + [sym__shortcode_open] = ACTIONS(670), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(673), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(676), + [sym__cite_author_in_text] = ACTIONS(679), + [sym__cite_suppress_author] = ACTIONS(682), + [sym__strikeout_open] = ACTIONS(685), + [sym__subscript_open] = ACTIONS(688), + [sym__superscript_open] = ACTIONS(691), + [sym__inline_note_start_token] = ACTIONS(694), + [sym__strong_emphasis_open_star] = ACTIONS(697), + [sym__strong_emphasis_open_underscore] = ACTIONS(700), + [sym__emphasis_open_star] = ACTIONS(703), + [sym__emphasis_open_underscore] = ACTIONS(706), + [sym_inline_note_reference] = ACTIONS(557), + [sym_html_element] = ACTIONS(557), + [sym__pandoc_line_break] = ACTIONS(557), }, [STATE(76)] = { - [sym__block_not_section] = STATE(74), - [sym__section2] = STATE(377), - [sym__section3] = STATE(377), - [sym__section4] = STATE(377), - [sym__section5] = STATE(377), - [sym__section6] = STATE(377), + [sym__block_not_section] = STATE(75), + [sym__section2] = STATE(261), + [sym__section3] = STATE(261), + [sym__section4] = STATE(261), + [sym__section5] = STATE(261), + [sym__section6] = STATE(261), [sym__atx_heading2] = STATE(84), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(74), - [sym_pandoc_paragraph] = STATE(74), - [sym_inline_ref_def] = STATE(74), - [sym_caption] = STATE(74), - [sym_pipe_table] = STATE(74), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(74), - [sym_pandoc_list] = STATE(74), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(75), + [sym_pandoc_paragraph] = STATE(75), + [sym_inline_ref_def] = STATE(75), + [sym_caption] = STATE(75), + [sym_pipe_table] = STATE(75), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(75), + [sym_pandoc_list] = STATE(75), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(74), - [sym_pandoc_div] = STATE(74), - [sym_note_definition_fenced_block] = STATE(74), - [sym__newline] = STATE(74), - [sym__soft_line_break] = STATE(74), - [aux_sym__section1_repeat1] = STATE(74), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(75), + [sym_pandoc_div] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__newline] = STATE(75), + [sym__soft_line_break] = STATE(75), + [sym__inline_whitespace] = STATE(755), + [aux_sym__section1_repeat1] = STATE(75), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30849,18 +32338,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(702), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(702), - [sym_atx_h2_marker] = ACTIONS(191), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(709), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(709), + [sym_atx_h2_marker] = ACTIONS(201), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -30873,12 +32362,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(704), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(702), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(711), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(709), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -30907,222 +32396,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(77)] = { - [sym__block_not_section] = STATE(77), - [sym__section2] = STATE(455), - [sym__section3] = STATE(455), - [sym__section4] = STATE(455), - [sym__section5] = STATE(455), - [sym__section6] = STATE(455), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(77), - [sym_pandoc_paragraph] = STATE(77), - [sym_inline_ref_def] = STATE(77), - [sym_caption] = STATE(77), - [sym_pipe_table] = STATE(77), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(77), - [sym_pandoc_list] = STATE(77), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(77), - [sym_pandoc_div] = STATE(77), - [sym_note_definition_fenced_block] = STATE(77), - [sym__newline] = STATE(77), - [sym__soft_line_break] = STATE(77), - [aux_sym__section1_repeat1] = STATE(77), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(706), - [sym_entity_reference] = ACTIONS(550), - [sym_numeric_character_reference] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_BANG_LBRACK] = ACTIONS(556), - [anon_sym_DOLLAR] = ACTIONS(559), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(565), - [aux_sym_pandoc_str_token1] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(571), - [aux_sym__prose_punctuation_token1] = ACTIONS(574), - [sym__line_ending] = ACTIONS(709), - [sym__soft_line_ending] = ACTIONS(712), - [sym__block_close] = ACTIONS(583), - [sym__block_quote_start] = ACTIONS(715), - [sym_atx_h1_marker] = ACTIONS(583), - [sym_atx_h2_marker] = ACTIONS(718), - [sym_atx_h3_marker] = ACTIONS(721), - [sym_atx_h4_marker] = ACTIONS(724), - [sym_atx_h5_marker] = ACTIONS(727), - [sym_atx_h6_marker] = ACTIONS(730), - [sym__thematic_break] = ACTIONS(733), - [sym__list_marker_minus] = ACTIONS(606), - [sym__list_marker_plus] = ACTIONS(609), - [sym__list_marker_star] = ACTIONS(612), - [sym__list_marker_parenthesis] = ACTIONS(615), - [sym__list_marker_dot] = ACTIONS(618), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(606), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(609), - [sym__list_marker_star_dont_interrupt] = ACTIONS(612), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(615), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(618), - [sym__list_marker_example] = ACTIONS(621), - [sym__list_marker_example_dont_interrupt] = ACTIONS(621), - [sym__fenced_code_block_start_backtick] = ACTIONS(736), - [sym_minus_metadata] = ACTIONS(739), - [sym__pipe_table_start] = ACTIONS(742), - [sym__fenced_div_start] = ACTIONS(745), - [sym_ref_id_specifier] = ACTIONS(748), - [sym__code_span_start] = ACTIONS(639), - [sym__html_comment] = ACTIONS(550), - [sym__autolink] = ACTIONS(550), - [sym__highlight_span_start] = ACTIONS(642), - [sym__insert_span_start] = ACTIONS(645), - [sym__delete_span_start] = ACTIONS(648), - [sym__edit_comment_span_start] = ACTIONS(651), - [sym__single_quote_span_open] = ACTIONS(654), - [sym__double_quote_span_open] = ACTIONS(657), - [sym__shortcode_open_escaped] = ACTIONS(660), - [sym__shortcode_open] = ACTIONS(663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(666), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(669), - [sym__cite_author_in_text] = ACTIONS(672), - [sym__cite_suppress_author] = ACTIONS(675), - [sym__strikeout_open] = ACTIONS(678), - [sym__subscript_open] = ACTIONS(681), - [sym__superscript_open] = ACTIONS(684), - [sym__inline_note_start_token] = ACTIONS(687), - [sym__strong_emphasis_open_star] = ACTIONS(690), - [sym__strong_emphasis_open_underscore] = ACTIONS(693), - [sym__emphasis_open_star] = ACTIONS(696), - [sym__emphasis_open_underscore] = ACTIONS(699), - [sym_inline_note_reference] = ACTIONS(550), - [sym_html_element] = ACTIONS(550), - [sym__pandoc_line_break] = ACTIONS(550), - }, - [STATE(78)] = { - [sym__block_not_section] = STATE(77), - [sym__section2] = STATE(455), - [sym__section3] = STATE(455), - [sym__section4] = STATE(455), - [sym__section5] = STATE(455), - [sym__section6] = STATE(455), - [sym__atx_heading2] = STATE(91), + [sym__block_not_section] = STATE(80), + [sym__section2] = STATE(529), + [sym__section3] = STATE(529), + [sym__section4] = STATE(529), + [sym__section5] = STATE(529), + [sym__section6] = STATE(529), + [sym__atx_heading2] = STATE(90), [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), + [sym__atx_heading4] = STATE(105), [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(77), - [sym_pandoc_paragraph] = STATE(77), - [sym_inline_ref_def] = STATE(77), - [sym_caption] = STATE(77), - [sym_pipe_table] = STATE(77), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(77), - [sym_pandoc_list] = STATE(77), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(77), - [sym_pandoc_div] = STATE(77), - [sym_note_definition_fenced_block] = STATE(77), - [sym__newline] = STATE(77), - [sym__soft_line_break] = STATE(77), - [aux_sym__section1_repeat1] = STATE(77), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(80), + [sym_pandoc_paragraph] = STATE(80), + [sym_inline_ref_def] = STATE(80), + [sym_caption] = STATE(80), + [sym_pipe_table] = STATE(80), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(80), + [sym_pandoc_list] = STATE(80), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), + [sym_list_marker_plus] = STATE(3), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(80), + [sym_pandoc_div] = STATE(80), + [sym_note_definition_fenced_block] = STATE(80), + [sym__newline] = STATE(80), + [sym__soft_line_break] = STATE(80), + [sym__inline_whitespace] = STATE(765), + [aux_sym__section1_repeat1] = STATE(80), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(709), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -31132,18 +32481,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(543), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(543), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(709), + [sym_atx_h2_marker] = ACTIONS(33), + [sym_atx_h3_marker] = ACTIONS(35), + [sym_atx_h4_marker] = ACTIONS(37), + [sym_atx_h5_marker] = ACTIONS(39), + [sym_atx_h6_marker] = ACTIONS(41), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -31156,11 +32504,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(751), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym_minus_metadata] = ACTIONS(713), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -31188,222 +32536,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(79)] = { + [STATE(78)] = { [sym__block_not_section] = STATE(79), - [sym__section2] = STATE(601), - [sym__section3] = STATE(601), - [sym__section4] = STATE(601), - [sym__section5] = STATE(601), - [sym__section6] = STATE(601), + [sym__section2] = STATE(358), + [sym__section3] = STATE(358), + [sym__section4] = STATE(358), + [sym__section5] = STATE(358), + [sym__section6] = STATE(358), [sym__atx_heading2] = STATE(89), - [sym__atx_heading3] = STATE(97), + [sym__atx_heading3] = STATE(98), [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), [sym_pandoc_horizontal_rule] = STATE(79), [sym_pandoc_paragraph] = STATE(79), [sym_inline_ref_def] = STATE(79), [sym_caption] = STATE(79), [sym_pipe_table] = STATE(79), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(79), [sym_pandoc_list] = STATE(79), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), - [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), [sym_pandoc_code_block] = STATE(79), [sym_pandoc_div] = STATE(79), [sym_note_definition_fenced_block] = STATE(79), [sym__newline] = STATE(79), [sym__soft_line_break] = STATE(79), + [sym__inline_whitespace] = STATE(753), [aux_sym__section1_repeat1] = STATE(79), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(583), - [anon_sym_COLON] = ACTIONS(753), - [sym_entity_reference] = ACTIONS(550), - [sym_numeric_character_reference] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_BANG_LBRACK] = ACTIONS(556), - [anon_sym_DOLLAR] = ACTIONS(559), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(565), - [aux_sym_pandoc_str_token1] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(571), - [aux_sym__prose_punctuation_token1] = ACTIONS(574), - [sym__line_ending] = ACTIONS(756), - [sym__soft_line_ending] = ACTIONS(759), - [sym__block_quote_start] = ACTIONS(762), - [sym_atx_h1_marker] = ACTIONS(583), - [sym_atx_h2_marker] = ACTIONS(765), - [sym_atx_h3_marker] = ACTIONS(768), - [sym_atx_h4_marker] = ACTIONS(771), - [sym_atx_h5_marker] = ACTIONS(774), - [sym_atx_h6_marker] = ACTIONS(777), - [sym__thematic_break] = ACTIONS(780), - [sym__list_marker_minus] = ACTIONS(606), - [sym__list_marker_plus] = ACTIONS(609), - [sym__list_marker_star] = ACTIONS(612), - [sym__list_marker_parenthesis] = ACTIONS(615), - [sym__list_marker_dot] = ACTIONS(618), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(606), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(609), - [sym__list_marker_star_dont_interrupt] = ACTIONS(612), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(615), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(618), - [sym__list_marker_example] = ACTIONS(621), - [sym__list_marker_example_dont_interrupt] = ACTIONS(621), - [sym__fenced_code_block_start_backtick] = ACTIONS(783), - [sym_minus_metadata] = ACTIONS(786), - [sym__pipe_table_start] = ACTIONS(789), - [sym__fenced_div_start] = ACTIONS(792), - [sym_ref_id_specifier] = ACTIONS(795), - [sym__code_span_start] = ACTIONS(639), - [sym__html_comment] = ACTIONS(550), - [sym__autolink] = ACTIONS(550), - [sym__highlight_span_start] = ACTIONS(642), - [sym__insert_span_start] = ACTIONS(645), - [sym__delete_span_start] = ACTIONS(648), - [sym__edit_comment_span_start] = ACTIONS(651), - [sym__single_quote_span_open] = ACTIONS(654), - [sym__double_quote_span_open] = ACTIONS(657), - [sym__shortcode_open_escaped] = ACTIONS(660), - [sym__shortcode_open] = ACTIONS(663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(666), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(669), - [sym__cite_author_in_text] = ACTIONS(672), - [sym__cite_suppress_author] = ACTIONS(675), - [sym__strikeout_open] = ACTIONS(678), - [sym__subscript_open] = ACTIONS(681), - [sym__superscript_open] = ACTIONS(684), - [sym__inline_note_start_token] = ACTIONS(687), - [sym__strong_emphasis_open_star] = ACTIONS(690), - [sym__strong_emphasis_open_underscore] = ACTIONS(693), - [sym__emphasis_open_star] = ACTIONS(696), - [sym__emphasis_open_underscore] = ACTIONS(699), - [sym_inline_note_reference] = ACTIONS(550), - [sym_html_element] = ACTIONS(550), - [sym__pandoc_line_break] = ACTIONS(550), - }, - [STATE(80)] = { - [sym__block_not_section] = STATE(78), - [sym__section2] = STATE(455), - [sym__section3] = STATE(455), - [sym__section4] = STATE(455), - [sym__section5] = STATE(455), - [sym__section6] = STATE(455), - [sym__atx_heading2] = STATE(91), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(78), - [sym_pandoc_paragraph] = STATE(78), - [sym_inline_ref_def] = STATE(78), - [sym_caption] = STATE(78), - [sym_pipe_table] = STATE(78), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(78), - [sym_pandoc_list] = STATE(78), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(78), - [sym_pandoc_div] = STATE(78), - [sym_note_definition_fenced_block] = STATE(78), - [sym__newline] = STATE(78), - [sym__soft_line_break] = STATE(78), - [aux_sym__section1_repeat1] = STATE(78), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -31414,18 +32621,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(702), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(702), - [sym_atx_h2_marker] = ACTIONS(121), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(709), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(709), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -31438,11 +32645,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(798), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(715), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -31470,83 +32677,364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(81)] = { + [STATE(79)] = { [sym__block_not_section] = STATE(79), - [sym__section2] = STATE(601), - [sym__section3] = STATE(601), - [sym__section4] = STATE(601), - [sym__section5] = STATE(601), - [sym__section6] = STATE(601), + [sym__section2] = STATE(358), + [sym__section3] = STATE(358), + [sym__section4] = STATE(358), + [sym__section5] = STATE(358), + [sym__section6] = STATE(358), [sym__atx_heading2] = STATE(89), - [sym__atx_heading3] = STATE(97), + [sym__atx_heading3] = STATE(98), [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), [sym_pandoc_horizontal_rule] = STATE(79), [sym_pandoc_paragraph] = STATE(79), [sym_inline_ref_def] = STATE(79), [sym_caption] = STATE(79), [sym_pipe_table] = STATE(79), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(79), [sym_pandoc_list] = STATE(79), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), - [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), [sym_pandoc_code_block] = STATE(79), [sym_pandoc_div] = STATE(79), [sym_note_definition_fenced_block] = STATE(79), [sym__newline] = STATE(79), [sym__soft_line_break] = STATE(79), + [sym__inline_whitespace] = STATE(753), [aux_sym__section1_repeat1] = STATE(79), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(543), - [anon_sym_COLON] = ACTIONS(5), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(717), + [sym_entity_reference] = ACTIONS(557), + [sym_numeric_character_reference] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_BANG_LBRACK] = ACTIONS(563), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(572), + [aux_sym_pandoc_str_token1] = ACTIONS(575), + [anon_sym_PIPE] = ACTIONS(578), + [sym__whitespace] = ACTIONS(720), + [sym__line_ending] = ACTIONS(723), + [sym__soft_line_ending] = ACTIONS(726), + [sym__block_close] = ACTIONS(590), + [sym__block_quote_start] = ACTIONS(729), + [sym_atx_h1_marker] = ACTIONS(590), + [sym_atx_h2_marker] = ACTIONS(732), + [sym_atx_h3_marker] = ACTIONS(735), + [sym_atx_h4_marker] = ACTIONS(738), + [sym_atx_h5_marker] = ACTIONS(741), + [sym_atx_h6_marker] = ACTIONS(744), + [sym__thematic_break] = ACTIONS(747), + [sym__list_marker_minus] = ACTIONS(613), + [sym__list_marker_plus] = ACTIONS(616), + [sym__list_marker_star] = ACTIONS(619), + [sym__list_marker_parenthesis] = ACTIONS(622), + [sym__list_marker_dot] = ACTIONS(625), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(613), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(619), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(625), + [sym__list_marker_example] = ACTIONS(628), + [sym__list_marker_example_dont_interrupt] = ACTIONS(628), + [sym__fenced_code_block_start_backtick] = ACTIONS(750), + [sym_minus_metadata] = ACTIONS(753), + [sym__pipe_table_start] = ACTIONS(756), + [sym__fenced_div_start] = ACTIONS(759), + [sym_ref_id_specifier] = ACTIONS(762), + [sym__code_span_start] = ACTIONS(646), + [sym__html_comment] = ACTIONS(557), + [sym__autolink] = ACTIONS(557), + [sym__highlight_span_start] = ACTIONS(649), + [sym__insert_span_start] = ACTIONS(652), + [sym__delete_span_start] = ACTIONS(655), + [sym__edit_comment_span_start] = ACTIONS(658), + [sym__single_quote_span_open] = ACTIONS(661), + [sym__double_quote_span_open] = ACTIONS(664), + [sym__shortcode_open_escaped] = ACTIONS(667), + [sym__shortcode_open] = ACTIONS(670), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(673), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(676), + [sym__cite_author_in_text] = ACTIONS(679), + [sym__cite_suppress_author] = ACTIONS(682), + [sym__strikeout_open] = ACTIONS(685), + [sym__subscript_open] = ACTIONS(688), + [sym__superscript_open] = ACTIONS(691), + [sym__inline_note_start_token] = ACTIONS(694), + [sym__strong_emphasis_open_star] = ACTIONS(697), + [sym__strong_emphasis_open_underscore] = ACTIONS(700), + [sym__emphasis_open_star] = ACTIONS(703), + [sym__emphasis_open_underscore] = ACTIONS(706), + [sym_inline_note_reference] = ACTIONS(557), + [sym_html_element] = ACTIONS(557), + [sym__pandoc_line_break] = ACTIONS(557), + }, + [STATE(80)] = { + [sym__block_not_section] = STATE(80), + [sym__section2] = STATE(529), + [sym__section3] = STATE(529), + [sym__section4] = STATE(529), + [sym__section5] = STATE(529), + [sym__section6] = STATE(529), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(100), + [sym__atx_heading4] = STATE(105), + [sym__atx_heading5] = STATE(116), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(80), + [sym_pandoc_paragraph] = STATE(80), + [sym_inline_ref_def] = STATE(80), + [sym_caption] = STATE(80), + [sym_pipe_table] = STATE(80), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(80), + [sym_pandoc_list] = STATE(80), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), + [sym_list_marker_plus] = STATE(3), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(80), + [sym_pandoc_div] = STATE(80), + [sym_note_definition_fenced_block] = STATE(80), + [sym__newline] = STATE(80), + [sym__soft_line_break] = STATE(80), + [sym__inline_whitespace] = STATE(765), + [aux_sym__section1_repeat1] = STATE(80), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(590), + [anon_sym_COLON] = ACTIONS(765), + [sym_entity_reference] = ACTIONS(557), + [sym_numeric_character_reference] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_BANG_LBRACK] = ACTIONS(563), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(572), + [aux_sym_pandoc_str_token1] = ACTIONS(575), + [anon_sym_PIPE] = ACTIONS(578), + [sym__whitespace] = ACTIONS(768), + [sym__line_ending] = ACTIONS(771), + [sym__soft_line_ending] = ACTIONS(774), + [sym__block_quote_start] = ACTIONS(777), + [sym_atx_h1_marker] = ACTIONS(590), + [sym_atx_h2_marker] = ACTIONS(780), + [sym_atx_h3_marker] = ACTIONS(783), + [sym_atx_h4_marker] = ACTIONS(786), + [sym_atx_h5_marker] = ACTIONS(789), + [sym_atx_h6_marker] = ACTIONS(792), + [sym__thematic_break] = ACTIONS(795), + [sym__list_marker_minus] = ACTIONS(613), + [sym__list_marker_plus] = ACTIONS(616), + [sym__list_marker_star] = ACTIONS(619), + [sym__list_marker_parenthesis] = ACTIONS(622), + [sym__list_marker_dot] = ACTIONS(625), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(613), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(619), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(625), + [sym__list_marker_example] = ACTIONS(628), + [sym__list_marker_example_dont_interrupt] = ACTIONS(628), + [sym__fenced_code_block_start_backtick] = ACTIONS(798), + [sym_minus_metadata] = ACTIONS(801), + [sym__pipe_table_start] = ACTIONS(804), + [sym__fenced_div_start] = ACTIONS(807), + [sym_ref_id_specifier] = ACTIONS(810), + [sym__code_span_start] = ACTIONS(646), + [sym__html_comment] = ACTIONS(557), + [sym__autolink] = ACTIONS(557), + [sym__highlight_span_start] = ACTIONS(649), + [sym__insert_span_start] = ACTIONS(652), + [sym__delete_span_start] = ACTIONS(655), + [sym__edit_comment_span_start] = ACTIONS(658), + [sym__single_quote_span_open] = ACTIONS(661), + [sym__double_quote_span_open] = ACTIONS(664), + [sym__shortcode_open_escaped] = ACTIONS(667), + [sym__shortcode_open] = ACTIONS(670), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(673), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(676), + [sym__cite_author_in_text] = ACTIONS(679), + [sym__cite_suppress_author] = ACTIONS(682), + [sym__strikeout_open] = ACTIONS(685), + [sym__subscript_open] = ACTIONS(688), + [sym__superscript_open] = ACTIONS(691), + [sym__inline_note_start_token] = ACTIONS(694), + [sym__strong_emphasis_open_star] = ACTIONS(697), + [sym__strong_emphasis_open_underscore] = ACTIONS(700), + [sym__emphasis_open_star] = ACTIONS(703), + [sym__emphasis_open_underscore] = ACTIONS(706), + [sym_inline_note_reference] = ACTIONS(557), + [sym_html_element] = ACTIONS(557), + [sym__pandoc_line_break] = ACTIONS(557), + }, + [STATE(81)] = { + [sym__block_not_section] = STATE(78), + [sym__section2] = STATE(358), + [sym__section3] = STATE(358), + [sym__section4] = STATE(358), + [sym__section5] = STATE(358), + [sym__section6] = STATE(358), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(78), + [sym_pandoc_paragraph] = STATE(78), + [sym_inline_ref_def] = STATE(78), + [sym_caption] = STATE(78), + [sym_pipe_table] = STATE(78), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(78), + [sym_pandoc_list] = STATE(78), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(78), + [sym_pandoc_div] = STATE(78), + [sym_note_definition_fenced_block] = STATE(78), + [sym__newline] = STATE(78), + [sym__soft_line_break] = STATE(78), + [sym__inline_whitespace] = STATE(753), + [aux_sym__section1_repeat1] = STATE(78), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -31556,17 +33044,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(543), - [sym_atx_h2_marker] = ACTIONS(33), - [sym_atx_h3_marker] = ACTIONS(35), - [sym_atx_h4_marker] = ACTIONS(37), - [sym_atx_h5_marker] = ACTIONS(39), - [sym_atx_h6_marker] = ACTIONS(41), - [sym__thematic_break] = ACTIONS(43), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(550), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(550), + [sym_atx_h2_marker] = ACTIONS(123), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -31579,11 +33068,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(800), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(813), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -31612,81 +33101,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(82)] = { - [sym__block_not_section] = STATE(81), - [sym__section2] = STATE(601), - [sym__section3] = STATE(601), - [sym__section4] = STATE(601), - [sym__section5] = STATE(601), - [sym__section6] = STATE(601), - [sym__atx_heading2] = STATE(89), - [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(81), - [sym_pandoc_paragraph] = STATE(81), - [sym_inline_ref_def] = STATE(81), - [sym_caption] = STATE(81), - [sym_pipe_table] = STATE(81), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(81), - [sym_pandoc_list] = STATE(81), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), + [sym__block_not_section] = STATE(77), + [sym__section2] = STATE(529), + [sym__section3] = STATE(529), + [sym__section4] = STATE(529), + [sym__section5] = STATE(529), + [sym__section6] = STATE(529), + [sym__atx_heading2] = STATE(90), + [sym__atx_heading3] = STATE(100), + [sym__atx_heading4] = STATE(105), + [sym__atx_heading5] = STATE(116), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(77), + [sym_pandoc_paragraph] = STATE(77), + [sym_inline_ref_def] = STATE(77), + [sym_caption] = STATE(77), + [sym_pipe_table] = STATE(77), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(77), + [sym_pandoc_list] = STATE(77), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(81), - [sym_pandoc_div] = STATE(81), - [sym_note_definition_fenced_block] = STATE(81), - [sym__newline] = STATE(81), - [sym__soft_line_break] = STATE(81), - [aux_sym__section1_repeat1] = STATE(81), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(702), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(77), + [sym_pandoc_div] = STATE(77), + [sym_note_definition_fenced_block] = STATE(77), + [sym__newline] = STATE(77), + [sym__soft_line_break] = STATE(77), + [sym__inline_whitespace] = STATE(765), + [aux_sym__section1_repeat1] = STATE(77), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(550), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -31697,11 +33186,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), + [sym__whitespace] = ACTIONS(23), [sym__line_ending] = ACTIONS(25), [sym__soft_line_ending] = ACTIONS(27), [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(702), + [sym_atx_h1_marker] = ACTIONS(550), [sym_atx_h2_marker] = ACTIONS(33), [sym_atx_h3_marker] = ACTIONS(35), [sym_atx_h4_marker] = ACTIONS(37), @@ -31721,7 +33210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(802), + [sym_minus_metadata] = ACTIONS(815), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -31753,64 +33242,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(83)] = { + [sym__block_not_section] = STATE(83), + [sym__section3] = STATE(262), + [sym__section4] = STATE(262), + [sym__section5] = STATE(262), + [sym__section6] = STATE(262), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(83), + [sym_pandoc_paragraph] = STATE(83), + [sym_inline_ref_def] = STATE(83), + [sym_caption] = STATE(83), + [sym_pipe_table] = STATE(83), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(83), + [sym_pandoc_list] = STATE(83), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), + [sym__list_item_parenthesis] = STATE(142), + [sym__list_item_example] = STATE(143), + [sym_pandoc_code_block] = STATE(83), + [sym_pandoc_div] = STATE(83), + [sym_note_definition_fenced_block] = STATE(83), + [sym__newline] = STATE(83), + [sym__soft_line_break] = STATE(83), + [sym__inline_whitespace] = STATE(755), + [aux_sym__section2_repeat1] = STATE(83), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), + [aux_sym__list_parenthesis_repeat1] = STATE(142), + [aux_sym__list_example_repeat1] = STATE(143), + [anon_sym_COLON] = ACTIONS(817), + [sym_entity_reference] = ACTIONS(820), + [sym_numeric_character_reference] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(823), + [anon_sym_BANG_LBRACK] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(835), + [aux_sym_pandoc_str_token1] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(841), + [sym__whitespace] = ACTIONS(844), + [sym__line_ending] = ACTIONS(847), + [sym__soft_line_ending] = ACTIONS(850), + [sym__block_close] = ACTIONS(853), + [sym__block_quote_start] = ACTIONS(855), + [sym_atx_h1_marker] = ACTIONS(853), + [sym_atx_h2_marker] = ACTIONS(853), + [sym_atx_h3_marker] = ACTIONS(858), + [sym_atx_h4_marker] = ACTIONS(861), + [sym_atx_h5_marker] = ACTIONS(864), + [sym_atx_h6_marker] = ACTIONS(867), + [sym__thematic_break] = ACTIONS(870), + [sym__list_marker_minus] = ACTIONS(873), + [sym__list_marker_plus] = ACTIONS(876), + [sym__list_marker_star] = ACTIONS(879), + [sym__list_marker_parenthesis] = ACTIONS(882), + [sym__list_marker_dot] = ACTIONS(885), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(873), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(876), + [sym__list_marker_star_dont_interrupt] = ACTIONS(879), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(882), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(885), + [sym__list_marker_example] = ACTIONS(888), + [sym__list_marker_example_dont_interrupt] = ACTIONS(888), + [sym__fenced_code_block_start_backtick] = ACTIONS(891), + [sym_minus_metadata] = ACTIONS(894), + [sym__pipe_table_start] = ACTIONS(897), + [sym__fenced_div_start] = ACTIONS(900), + [sym__fenced_div_end] = ACTIONS(853), + [sym_ref_id_specifier] = ACTIONS(903), + [sym__code_span_start] = ACTIONS(906), + [sym__html_comment] = ACTIONS(820), + [sym__autolink] = ACTIONS(820), + [sym__highlight_span_start] = ACTIONS(909), + [sym__insert_span_start] = ACTIONS(912), + [sym__delete_span_start] = ACTIONS(915), + [sym__edit_comment_span_start] = ACTIONS(918), + [sym__single_quote_span_open] = ACTIONS(921), + [sym__double_quote_span_open] = ACTIONS(924), + [sym__shortcode_open_escaped] = ACTIONS(927), + [sym__shortcode_open] = ACTIONS(930), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(933), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(936), + [sym__cite_author_in_text] = ACTIONS(939), + [sym__cite_suppress_author] = ACTIONS(942), + [sym__strikeout_open] = ACTIONS(945), + [sym__subscript_open] = ACTIONS(948), + [sym__superscript_open] = ACTIONS(951), + [sym__inline_note_start_token] = ACTIONS(954), + [sym__strong_emphasis_open_star] = ACTIONS(957), + [sym__strong_emphasis_open_underscore] = ACTIONS(960), + [sym__emphasis_open_star] = ACTIONS(963), + [sym__emphasis_open_underscore] = ACTIONS(966), + [sym_inline_note_reference] = ACTIONS(820), + [sym_html_element] = ACTIONS(820), + [sym__pandoc_line_break] = ACTIONS(820), + }, + [STATE(84)] = { [sym__block_not_section] = STATE(85), - [sym__section3] = STATE(379), - [sym__section4] = STATE(379), - [sym__section5] = STATE(379), - [sym__section6] = STATE(379), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), + [sym__section3] = STATE(262), + [sym__section4] = STATE(262), + [sym__section5] = STATE(262), + [sym__section6] = STATE(262), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(85), [sym_pandoc_paragraph] = STATE(85), [sym_inline_ref_def] = STATE(85), [sym_caption] = STATE(85), [sym_pipe_table] = STATE(85), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(85), [sym_pandoc_list] = STATE(85), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), [sym_pandoc_code_block] = STATE(85), @@ -31818,14 +33446,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_definition_fenced_block] = STATE(85), [sym__newline] = STATE(85), [sym__soft_line_break] = STATE(85), + [sym__inline_whitespace] = STATE(755), [aux_sym__section2_repeat1] = STATE(85), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -31835,18 +33464,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(804), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(804), - [sym_atx_h2_marker] = ACTIONS(804), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(969), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(969), + [sym_atx_h2_marker] = ACTIONS(969), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -31859,12 +33488,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(806), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(804), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(971), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(969), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -31892,65 +33521,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(84)] = { + [STATE(85)] = { [sym__block_not_section] = STATE(83), - [sym__section3] = STATE(379), - [sym__section4] = STATE(379), - [sym__section5] = STATE(379), - [sym__section6] = STATE(379), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), + [sym__section3] = STATE(262), + [sym__section4] = STATE(262), + [sym__section5] = STATE(262), + [sym__section6] = STATE(262), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(83), [sym_pandoc_paragraph] = STATE(83), [sym_inline_ref_def] = STATE(83), [sym_caption] = STATE(83), [sym_pipe_table] = STATE(83), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(83), [sym_pandoc_list] = STATE(83), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), [sym_pandoc_code_block] = STATE(83), @@ -31958,14 +33586,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_definition_fenced_block] = STATE(83), [sym__newline] = STATE(83), [sym__soft_line_break] = STATE(83), + [sym__inline_whitespace] = STATE(755), [aux_sym__section2_repeat1] = STATE(83), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -31975,18 +33604,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(808), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(808), - [sym_atx_h2_marker] = ACTIONS(808), - [sym_atx_h3_marker] = ACTIONS(193), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(973), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(973), + [sym_atx_h2_marker] = ACTIONS(973), + [sym_atx_h3_marker] = ACTIONS(203), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -31999,12 +33628,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(810), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(808), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(975), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(973), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -32032,219 +33661,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(85)] = { - [sym__block_not_section] = STATE(85), - [sym__section3] = STATE(379), - [sym__section4] = STATE(379), - [sym__section5] = STATE(379), - [sym__section6] = STATE(379), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(85), - [sym_pandoc_paragraph] = STATE(85), - [sym_inline_ref_def] = STATE(85), - [sym_caption] = STATE(85), - [sym_pipe_table] = STATE(85), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(85), - [sym_pandoc_list] = STATE(85), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), - [sym__list_item_parenthesis] = STATE(142), - [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(85), - [sym_pandoc_div] = STATE(85), - [sym_note_definition_fenced_block] = STATE(85), - [sym__newline] = STATE(85), - [sym__soft_line_break] = STATE(85), - [aux_sym__section2_repeat1] = STATE(85), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), - [aux_sym__list_parenthesis_repeat1] = STATE(142), - [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(812), - [sym_entity_reference] = ACTIONS(815), - [sym_numeric_character_reference] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(818), - [anon_sym_BANG_LBRACK] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(830), - [aux_sym_pandoc_str_token1] = ACTIONS(833), - [anon_sym_PIPE] = ACTIONS(836), - [aux_sym__prose_punctuation_token1] = ACTIONS(839), - [sym__line_ending] = ACTIONS(842), - [sym__soft_line_ending] = ACTIONS(845), - [sym__block_close] = ACTIONS(848), - [sym__block_quote_start] = ACTIONS(850), - [sym_atx_h1_marker] = ACTIONS(848), - [sym_atx_h2_marker] = ACTIONS(848), - [sym_atx_h3_marker] = ACTIONS(853), - [sym_atx_h4_marker] = ACTIONS(856), - [sym_atx_h5_marker] = ACTIONS(859), - [sym_atx_h6_marker] = ACTIONS(862), - [sym__thematic_break] = ACTIONS(865), - [sym__list_marker_minus] = ACTIONS(868), - [sym__list_marker_plus] = ACTIONS(871), - [sym__list_marker_star] = ACTIONS(874), - [sym__list_marker_parenthesis] = ACTIONS(877), - [sym__list_marker_dot] = ACTIONS(880), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(868), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(871), - [sym__list_marker_star_dont_interrupt] = ACTIONS(874), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(877), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(880), - [sym__list_marker_example] = ACTIONS(883), - [sym__list_marker_example_dont_interrupt] = ACTIONS(883), - [sym__fenced_code_block_start_backtick] = ACTIONS(886), - [sym_minus_metadata] = ACTIONS(889), - [sym__pipe_table_start] = ACTIONS(892), - [sym__fenced_div_start] = ACTIONS(895), - [sym__fenced_div_end] = ACTIONS(848), - [sym_ref_id_specifier] = ACTIONS(898), - [sym__code_span_start] = ACTIONS(901), - [sym__html_comment] = ACTIONS(815), - [sym__autolink] = ACTIONS(815), - [sym__highlight_span_start] = ACTIONS(904), - [sym__insert_span_start] = ACTIONS(907), - [sym__delete_span_start] = ACTIONS(910), - [sym__edit_comment_span_start] = ACTIONS(913), - [sym__single_quote_span_open] = ACTIONS(916), - [sym__double_quote_span_open] = ACTIONS(919), - [sym__shortcode_open_escaped] = ACTIONS(922), - [sym__shortcode_open] = ACTIONS(925), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(928), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(934), - [sym__cite_suppress_author] = ACTIONS(937), - [sym__strikeout_open] = ACTIONS(940), - [sym__subscript_open] = ACTIONS(943), - [sym__superscript_open] = ACTIONS(946), - [sym__inline_note_start_token] = ACTIONS(949), - [sym__strong_emphasis_open_star] = ACTIONS(952), - [sym__strong_emphasis_open_underscore] = ACTIONS(955), - [sym__emphasis_open_star] = ACTIONS(958), - [sym__emphasis_open_underscore] = ACTIONS(961), - [sym_inline_note_reference] = ACTIONS(815), - [sym_html_element] = ACTIONS(815), - [sym__pandoc_line_break] = ACTIONS(815), - }, [STATE(86)] = { [sym__block_not_section] = STATE(87), - [sym__section3] = STATE(493), - [sym__section4] = STATE(493), - [sym__section5] = STATE(493), - [sym__section6] = STATE(493), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), + [sym__section3] = STATE(341), + [sym__section4] = STATE(341), + [sym__section5] = STATE(341), + [sym__section6] = STATE(341), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), [sym_pandoc_horizontal_rule] = STATE(87), [sym_pandoc_paragraph] = STATE(87), [sym_inline_ref_def] = STATE(87), [sym_caption] = STATE(87), [sym_pipe_table] = STATE(87), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(87), [sym_pandoc_list] = STATE(87), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), [sym_pandoc_code_block] = STATE(87), [sym_pandoc_div] = STATE(87), [sym_note_definition_fenced_block] = STATE(87), [sym__newline] = STATE(87), [sym__soft_line_break] = STATE(87), + [sym__inline_whitespace] = STATE(753), [aux_sym__section2_repeat1] = STATE(87), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -32255,18 +33744,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(804), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(804), - [sym_atx_h2_marker] = ACTIONS(804), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(973), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(973), + [sym_atx_h2_marker] = ACTIONS(973), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -32279,11 +33768,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(964), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(977), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -32313,218 +33802,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(87)] = { [sym__block_not_section] = STATE(87), - [sym__section3] = STATE(493), - [sym__section4] = STATE(493), - [sym__section5] = STATE(493), - [sym__section6] = STATE(493), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), + [sym__section3] = STATE(341), + [sym__section4] = STATE(341), + [sym__section5] = STATE(341), + [sym__section6] = STATE(341), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), [sym_pandoc_horizontal_rule] = STATE(87), [sym_pandoc_paragraph] = STATE(87), [sym_inline_ref_def] = STATE(87), [sym_caption] = STATE(87), [sym_pipe_table] = STATE(87), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(87), [sym_pandoc_list] = STATE(87), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), [sym_pandoc_code_block] = STATE(87), [sym_pandoc_div] = STATE(87), [sym_note_definition_fenced_block] = STATE(87), [sym__newline] = STATE(87), [sym__soft_line_break] = STATE(87), + [sym__inline_whitespace] = STATE(753), [aux_sym__section2_repeat1] = STATE(87), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(966), - [sym_entity_reference] = ACTIONS(815), - [sym_numeric_character_reference] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(818), - [anon_sym_BANG_LBRACK] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(830), - [aux_sym_pandoc_str_token1] = ACTIONS(833), - [anon_sym_PIPE] = ACTIONS(836), - [aux_sym__prose_punctuation_token1] = ACTIONS(839), - [sym__line_ending] = ACTIONS(969), - [sym__soft_line_ending] = ACTIONS(972), - [sym__block_close] = ACTIONS(848), - [sym__block_quote_start] = ACTIONS(975), - [sym_atx_h1_marker] = ACTIONS(848), - [sym_atx_h2_marker] = ACTIONS(848), - [sym_atx_h3_marker] = ACTIONS(978), - [sym_atx_h4_marker] = ACTIONS(981), - [sym_atx_h5_marker] = ACTIONS(984), - [sym_atx_h6_marker] = ACTIONS(987), - [sym__thematic_break] = ACTIONS(990), - [sym__list_marker_minus] = ACTIONS(868), - [sym__list_marker_plus] = ACTIONS(871), - [sym__list_marker_star] = ACTIONS(874), - [sym__list_marker_parenthesis] = ACTIONS(877), - [sym__list_marker_dot] = ACTIONS(880), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(868), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(871), - [sym__list_marker_star_dont_interrupt] = ACTIONS(874), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(877), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(880), - [sym__list_marker_example] = ACTIONS(883), - [sym__list_marker_example_dont_interrupt] = ACTIONS(883), - [sym__fenced_code_block_start_backtick] = ACTIONS(993), - [sym_minus_metadata] = ACTIONS(996), - [sym__pipe_table_start] = ACTIONS(999), - [sym__fenced_div_start] = ACTIONS(1002), - [sym_ref_id_specifier] = ACTIONS(1005), - [sym__code_span_start] = ACTIONS(901), - [sym__html_comment] = ACTIONS(815), - [sym__autolink] = ACTIONS(815), - [sym__highlight_span_start] = ACTIONS(904), - [sym__insert_span_start] = ACTIONS(907), - [sym__delete_span_start] = ACTIONS(910), - [sym__edit_comment_span_start] = ACTIONS(913), - [sym__single_quote_span_open] = ACTIONS(916), - [sym__double_quote_span_open] = ACTIONS(919), - [sym__shortcode_open_escaped] = ACTIONS(922), - [sym__shortcode_open] = ACTIONS(925), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(928), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(934), - [sym__cite_suppress_author] = ACTIONS(937), - [sym__strikeout_open] = ACTIONS(940), - [sym__subscript_open] = ACTIONS(943), - [sym__superscript_open] = ACTIONS(946), - [sym__inline_note_start_token] = ACTIONS(949), - [sym__strong_emphasis_open_star] = ACTIONS(952), - [sym__strong_emphasis_open_underscore] = ACTIONS(955), - [sym__emphasis_open_star] = ACTIONS(958), - [sym__emphasis_open_underscore] = ACTIONS(961), - [sym_inline_note_reference] = ACTIONS(815), - [sym_html_element] = ACTIONS(815), - [sym__pandoc_line_break] = ACTIONS(815), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(979), + [sym_entity_reference] = ACTIONS(820), + [sym_numeric_character_reference] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(823), + [anon_sym_BANG_LBRACK] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(835), + [aux_sym_pandoc_str_token1] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(841), + [sym__whitespace] = ACTIONS(982), + [sym__line_ending] = ACTIONS(985), + [sym__soft_line_ending] = ACTIONS(988), + [sym__block_close] = ACTIONS(853), + [sym__block_quote_start] = ACTIONS(991), + [sym_atx_h1_marker] = ACTIONS(853), + [sym_atx_h2_marker] = ACTIONS(853), + [sym_atx_h3_marker] = ACTIONS(994), + [sym_atx_h4_marker] = ACTIONS(997), + [sym_atx_h5_marker] = ACTIONS(1000), + [sym_atx_h6_marker] = ACTIONS(1003), + [sym__thematic_break] = ACTIONS(1006), + [sym__list_marker_minus] = ACTIONS(873), + [sym__list_marker_plus] = ACTIONS(876), + [sym__list_marker_star] = ACTIONS(879), + [sym__list_marker_parenthesis] = ACTIONS(882), + [sym__list_marker_dot] = ACTIONS(885), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(873), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(876), + [sym__list_marker_star_dont_interrupt] = ACTIONS(879), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(882), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(885), + [sym__list_marker_example] = ACTIONS(888), + [sym__list_marker_example_dont_interrupt] = ACTIONS(888), + [sym__fenced_code_block_start_backtick] = ACTIONS(1009), + [sym_minus_metadata] = ACTIONS(1012), + [sym__pipe_table_start] = ACTIONS(1015), + [sym__fenced_div_start] = ACTIONS(1018), + [sym_ref_id_specifier] = ACTIONS(1021), + [sym__code_span_start] = ACTIONS(906), + [sym__html_comment] = ACTIONS(820), + [sym__autolink] = ACTIONS(820), + [sym__highlight_span_start] = ACTIONS(909), + [sym__insert_span_start] = ACTIONS(912), + [sym__delete_span_start] = ACTIONS(915), + [sym__edit_comment_span_start] = ACTIONS(918), + [sym__single_quote_span_open] = ACTIONS(921), + [sym__double_quote_span_open] = ACTIONS(924), + [sym__shortcode_open_escaped] = ACTIONS(927), + [sym__shortcode_open] = ACTIONS(930), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(933), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(936), + [sym__cite_author_in_text] = ACTIONS(939), + [sym__cite_suppress_author] = ACTIONS(942), + [sym__strikeout_open] = ACTIONS(945), + [sym__subscript_open] = ACTIONS(948), + [sym__superscript_open] = ACTIONS(951), + [sym__inline_note_start_token] = ACTIONS(954), + [sym__strong_emphasis_open_star] = ACTIONS(957), + [sym__strong_emphasis_open_underscore] = ACTIONS(960), + [sym__emphasis_open_star] = ACTIONS(963), + [sym__emphasis_open_underscore] = ACTIONS(966), + [sym_inline_note_reference] = ACTIONS(820), + [sym_html_element] = ACTIONS(820), + [sym__pandoc_line_break] = ACTIONS(820), }, [STATE(88)] = { - [sym__block_not_section] = STATE(90), - [sym__section3] = STATE(602), - [sym__section4] = STATE(602), - [sym__section5] = STATE(602), - [sym__section6] = STATE(602), - [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(90), - [sym_pandoc_paragraph] = STATE(90), - [sym_inline_ref_def] = STATE(90), - [sym_caption] = STATE(90), - [sym_pipe_table] = STATE(90), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(90), - [sym_pandoc_list] = STATE(90), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), + [sym__block_not_section] = STATE(88), + [sym__section3] = STATE(531), + [sym__section4] = STATE(531), + [sym__section5] = STATE(531), + [sym__section6] = STATE(531), + [sym__atx_heading3] = STATE(100), + [sym__atx_heading4] = STATE(105), + [sym__atx_heading5] = STATE(116), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(88), + [sym_pandoc_paragraph] = STATE(88), + [sym_inline_ref_def] = STATE(88), + [sym_caption] = STATE(88), + [sym_pipe_table] = STATE(88), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(88), + [sym_pandoc_list] = STATE(88), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(90), - [sym_pandoc_div] = STATE(90), - [sym_note_definition_fenced_block] = STATE(90), - [sym__newline] = STATE(90), - [sym__soft_line_break] = STATE(90), - [aux_sym__section2_repeat1] = STATE(90), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(804), - [anon_sym_COLON] = ACTIONS(5), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(88), + [sym_pandoc_div] = STATE(88), + [sym_note_definition_fenced_block] = STATE(88), + [sym__newline] = STATE(88), + [sym__soft_line_break] = STATE(88), + [sym__inline_whitespace] = STATE(765), + [aux_sym__section2_repeat1] = STATE(88), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(853), + [anon_sym_COLON] = ACTIONS(1024), + [sym_entity_reference] = ACTIONS(820), + [sym_numeric_character_reference] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(823), + [anon_sym_BANG_LBRACK] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(835), + [aux_sym_pandoc_str_token1] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(841), + [sym__whitespace] = ACTIONS(1027), + [sym__line_ending] = ACTIONS(1030), + [sym__soft_line_ending] = ACTIONS(1033), + [sym__block_quote_start] = ACTIONS(1036), + [sym_atx_h1_marker] = ACTIONS(853), + [sym_atx_h2_marker] = ACTIONS(853), + [sym_atx_h3_marker] = ACTIONS(1039), + [sym_atx_h4_marker] = ACTIONS(1042), + [sym_atx_h5_marker] = ACTIONS(1045), + [sym_atx_h6_marker] = ACTIONS(1048), + [sym__thematic_break] = ACTIONS(1051), + [sym__list_marker_minus] = ACTIONS(873), + [sym__list_marker_plus] = ACTIONS(876), + [sym__list_marker_star] = ACTIONS(879), + [sym__list_marker_parenthesis] = ACTIONS(882), + [sym__list_marker_dot] = ACTIONS(885), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(873), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(876), + [sym__list_marker_star_dont_interrupt] = ACTIONS(879), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(882), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(885), + [sym__list_marker_example] = ACTIONS(888), + [sym__list_marker_example_dont_interrupt] = ACTIONS(888), + [sym__fenced_code_block_start_backtick] = ACTIONS(1054), + [sym_minus_metadata] = ACTIONS(1057), + [sym__pipe_table_start] = ACTIONS(1060), + [sym__fenced_div_start] = ACTIONS(1063), + [sym_ref_id_specifier] = ACTIONS(1066), + [sym__code_span_start] = ACTIONS(906), + [sym__html_comment] = ACTIONS(820), + [sym__autolink] = ACTIONS(820), + [sym__highlight_span_start] = ACTIONS(909), + [sym__insert_span_start] = ACTIONS(912), + [sym__delete_span_start] = ACTIONS(915), + [sym__edit_comment_span_start] = ACTIONS(918), + [sym__single_quote_span_open] = ACTIONS(921), + [sym__double_quote_span_open] = ACTIONS(924), + [sym__shortcode_open_escaped] = ACTIONS(927), + [sym__shortcode_open] = ACTIONS(930), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(933), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(936), + [sym__cite_author_in_text] = ACTIONS(939), + [sym__cite_suppress_author] = ACTIONS(942), + [sym__strikeout_open] = ACTIONS(945), + [sym__subscript_open] = ACTIONS(948), + [sym__superscript_open] = ACTIONS(951), + [sym__inline_note_start_token] = ACTIONS(954), + [sym__strong_emphasis_open_star] = ACTIONS(957), + [sym__strong_emphasis_open_underscore] = ACTIONS(960), + [sym__emphasis_open_star] = ACTIONS(963), + [sym__emphasis_open_underscore] = ACTIONS(966), + [sym_inline_note_reference] = ACTIONS(820), + [sym_html_element] = ACTIONS(820), + [sym__pandoc_line_break] = ACTIONS(820), + }, + [STATE(89)] = { + [sym__block_not_section] = STATE(86), + [sym__section3] = STATE(341), + [sym__section4] = STATE(341), + [sym__section5] = STATE(341), + [sym__section6] = STATE(341), + [sym__atx_heading3] = STATE(98), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(86), + [sym_pandoc_paragraph] = STATE(86), + [sym_inline_ref_def] = STATE(86), + [sym_caption] = STATE(86), + [sym_pipe_table] = STATE(86), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(86), + [sym_pandoc_list] = STATE(86), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(86), + [sym_pandoc_div] = STATE(86), + [sym_note_definition_fenced_block] = STATE(86), + [sym__newline] = STATE(86), + [sym__soft_line_break] = STATE(86), + [sym__inline_whitespace] = STATE(753), + [aux_sym__section2_repeat1] = STATE(86), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -32534,17 +34161,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(804), - [sym_atx_h2_marker] = ACTIONS(804), - [sym_atx_h3_marker] = ACTIONS(35), - [sym_atx_h4_marker] = ACTIONS(37), - [sym_atx_h5_marker] = ACTIONS(39), - [sym_atx_h6_marker] = ACTIONS(41), - [sym__thematic_break] = ACTIONS(43), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(969), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(969), + [sym_atx_h2_marker] = ACTIONS(969), + [sym_atx_h3_marker] = ACTIONS(125), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -32557,11 +34185,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1008), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(1069), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -32589,80 +34217,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(89)] = { - [sym__block_not_section] = STATE(88), - [sym__section3] = STATE(602), - [sym__section4] = STATE(602), - [sym__section5] = STATE(602), - [sym__section6] = STATE(602), - [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(88), - [sym_pandoc_paragraph] = STATE(88), - [sym_inline_ref_def] = STATE(88), - [sym_caption] = STATE(88), - [sym_pipe_table] = STATE(88), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(88), - [sym_pandoc_list] = STATE(88), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), + [STATE(90)] = { + [sym__block_not_section] = STATE(91), + [sym__section3] = STATE(531), + [sym__section4] = STATE(531), + [sym__section5] = STATE(531), + [sym__section6] = STATE(531), + [sym__atx_heading3] = STATE(100), + [sym__atx_heading4] = STATE(105), + [sym__atx_heading5] = STATE(116), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(91), + [sym_pandoc_paragraph] = STATE(91), + [sym_inline_ref_def] = STATE(91), + [sym_caption] = STATE(91), + [sym_pipe_table] = STATE(91), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(91), + [sym_pandoc_list] = STATE(91), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(88), - [sym_pandoc_div] = STATE(88), - [sym_note_definition_fenced_block] = STATE(88), - [sym__newline] = STATE(88), - [sym__soft_line_break] = STATE(88), - [aux_sym__section2_repeat1] = STATE(88), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(808), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(91), + [sym_pandoc_div] = STATE(91), + [sym_note_definition_fenced_block] = STATE(91), + [sym__newline] = STATE(91), + [sym__soft_line_break] = STATE(91), + [sym__inline_whitespace] = STATE(765), + [aux_sym__section2_repeat1] = STATE(91), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(969), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -32673,12 +34301,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), + [sym__whitespace] = ACTIONS(23), [sym__line_ending] = ACTIONS(25), [sym__soft_line_ending] = ACTIONS(27), [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(808), - [sym_atx_h2_marker] = ACTIONS(808), + [sym_atx_h1_marker] = ACTIONS(969), + [sym_atx_h2_marker] = ACTIONS(969), [sym_atx_h3_marker] = ACTIONS(35), [sym_atx_h4_marker] = ACTIONS(37), [sym_atx_h5_marker] = ACTIONS(39), @@ -32697,7 +34325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1010), + [sym_minus_metadata] = ACTIONS(1071), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -32728,219 +34356,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(90)] = { - [sym__block_not_section] = STATE(90), - [sym__section3] = STATE(602), - [sym__section4] = STATE(602), - [sym__section5] = STATE(602), - [sym__section6] = STATE(602), - [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(90), - [sym_pandoc_paragraph] = STATE(90), - [sym_inline_ref_def] = STATE(90), - [sym_caption] = STATE(90), - [sym_pipe_table] = STATE(90), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(90), - [sym_pandoc_list] = STATE(90), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), - [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(90), - [sym_pandoc_div] = STATE(90), - [sym_note_definition_fenced_block] = STATE(90), - [sym__newline] = STATE(90), - [sym__soft_line_break] = STATE(90), - [aux_sym__section2_repeat1] = STATE(90), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(848), - [anon_sym_COLON] = ACTIONS(1012), - [sym_entity_reference] = ACTIONS(815), - [sym_numeric_character_reference] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(818), - [anon_sym_BANG_LBRACK] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(830), - [aux_sym_pandoc_str_token1] = ACTIONS(833), - [anon_sym_PIPE] = ACTIONS(836), - [aux_sym__prose_punctuation_token1] = ACTIONS(839), - [sym__line_ending] = ACTIONS(1015), - [sym__soft_line_ending] = ACTIONS(1018), - [sym__block_quote_start] = ACTIONS(1021), - [sym_atx_h1_marker] = ACTIONS(848), - [sym_atx_h2_marker] = ACTIONS(848), - [sym_atx_h3_marker] = ACTIONS(1024), - [sym_atx_h4_marker] = ACTIONS(1027), - [sym_atx_h5_marker] = ACTIONS(1030), - [sym_atx_h6_marker] = ACTIONS(1033), - [sym__thematic_break] = ACTIONS(1036), - [sym__list_marker_minus] = ACTIONS(868), - [sym__list_marker_plus] = ACTIONS(871), - [sym__list_marker_star] = ACTIONS(874), - [sym__list_marker_parenthesis] = ACTIONS(877), - [sym__list_marker_dot] = ACTIONS(880), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(868), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(871), - [sym__list_marker_star_dont_interrupt] = ACTIONS(874), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(877), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(880), - [sym__list_marker_example] = ACTIONS(883), - [sym__list_marker_example_dont_interrupt] = ACTIONS(883), - [sym__fenced_code_block_start_backtick] = ACTIONS(1039), - [sym_minus_metadata] = ACTIONS(1042), - [sym__pipe_table_start] = ACTIONS(1045), - [sym__fenced_div_start] = ACTIONS(1048), - [sym_ref_id_specifier] = ACTIONS(1051), - [sym__code_span_start] = ACTIONS(901), - [sym__html_comment] = ACTIONS(815), - [sym__autolink] = ACTIONS(815), - [sym__highlight_span_start] = ACTIONS(904), - [sym__insert_span_start] = ACTIONS(907), - [sym__delete_span_start] = ACTIONS(910), - [sym__edit_comment_span_start] = ACTIONS(913), - [sym__single_quote_span_open] = ACTIONS(916), - [sym__double_quote_span_open] = ACTIONS(919), - [sym__shortcode_open_escaped] = ACTIONS(922), - [sym__shortcode_open] = ACTIONS(925), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(928), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(931), - [sym__cite_author_in_text] = ACTIONS(934), - [sym__cite_suppress_author] = ACTIONS(937), - [sym__strikeout_open] = ACTIONS(940), - [sym__subscript_open] = ACTIONS(943), - [sym__superscript_open] = ACTIONS(946), - [sym__inline_note_start_token] = ACTIONS(949), - [sym__strong_emphasis_open_star] = ACTIONS(952), - [sym__strong_emphasis_open_underscore] = ACTIONS(955), - [sym__emphasis_open_star] = ACTIONS(958), - [sym__emphasis_open_underscore] = ACTIONS(961), - [sym_inline_note_reference] = ACTIONS(815), - [sym_html_element] = ACTIONS(815), - [sym__pandoc_line_break] = ACTIONS(815), - }, [STATE(91)] = { - [sym__block_not_section] = STATE(86), - [sym__section3] = STATE(493), - [sym__section4] = STATE(493), - [sym__section5] = STATE(493), - [sym__section6] = STATE(493), + [sym__block_not_section] = STATE(88), + [sym__section3] = STATE(531), + [sym__section4] = STATE(531), + [sym__section5] = STATE(531), + [sym__section6] = STATE(531), [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(109), + [sym__atx_heading4] = STATE(105), [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(86), - [sym_pandoc_paragraph] = STATE(86), - [sym_inline_ref_def] = STATE(86), - [sym_caption] = STATE(86), - [sym_pipe_table] = STATE(86), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(86), - [sym_pandoc_list] = STATE(86), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(86), - [sym_pandoc_div] = STATE(86), - [sym_note_definition_fenced_block] = STATE(86), - [sym__newline] = STATE(86), - [sym__soft_line_break] = STATE(86), - [aux_sym__section2_repeat1] = STATE(86), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(88), + [sym_pandoc_paragraph] = STATE(88), + [sym_inline_ref_def] = STATE(88), + [sym_caption] = STATE(88), + [sym_pipe_table] = STATE(88), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(88), + [sym_pandoc_list] = STATE(88), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), + [sym_list_marker_plus] = STATE(3), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(88), + [sym_pandoc_div] = STATE(88), + [sym_note_definition_fenced_block] = STATE(88), + [sym__newline] = STATE(88), + [sym__soft_line_break] = STATE(88), + [sym__inline_whitespace] = STATE(765), + [aux_sym__section2_repeat1] = STATE(88), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(973), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -32950,18 +34440,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(808), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(808), - [sym_atx_h2_marker] = ACTIONS(808), - [sym_atx_h3_marker] = ACTIONS(123), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(973), + [sym_atx_h2_marker] = ACTIONS(973), + [sym_atx_h3_marker] = ACTIONS(35), + [sym_atx_h4_marker] = ACTIONS(37), + [sym_atx_h5_marker] = ACTIONS(39), + [sym_atx_h6_marker] = ACTIONS(41), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -32974,11 +34463,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(1054), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym_minus_metadata] = ACTIONS(1073), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -33008,61 +34497,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(92)] = { [sym__block_not_section] = STATE(94), - [sym__section4] = STATE(380), - [sym__section5] = STATE(380), - [sym__section6] = STATE(380), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), + [sym__section4] = STATE(263), + [sym__section5] = STATE(263), + [sym__section6] = STATE(263), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(94), [sym_pandoc_paragraph] = STATE(94), [sym_inline_ref_def] = STATE(94), [sym_caption] = STATE(94), [sym_pipe_table] = STATE(94), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(94), [sym_pandoc_list] = STATE(94), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), [sym_pandoc_code_block] = STATE(94), @@ -33070,14 +34558,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_definition_fenced_block] = STATE(94), [sym__newline] = STATE(94), [sym__soft_line_break] = STATE(94), + [sym__inline_whitespace] = STATE(755), [aux_sym__section3_repeat1] = STATE(94), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -33087,18 +34576,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(1056), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(1056), - [sym_atx_h2_marker] = ACTIONS(1056), - [sym_atx_h3_marker] = ACTIONS(1056), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(1075), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(1075), + [sym_atx_h2_marker] = ACTIONS(1075), + [sym_atx_h3_marker] = ACTIONS(1075), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -33111,12 +34600,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(1058), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(1056), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(1077), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(1075), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -33145,77 +34634,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(93)] = { - [sym__block_not_section] = STATE(92), - [sym__section4] = STATE(380), - [sym__section5] = STATE(380), - [sym__section6] = STATE(380), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(92), - [sym_pandoc_paragraph] = STATE(92), - [sym_inline_ref_def] = STATE(92), - [sym_caption] = STATE(92), - [sym_pipe_table] = STATE(92), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(92), - [sym_pandoc_list] = STATE(92), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__block_not_section] = STATE(93), + [sym__section4] = STATE(263), + [sym__section5] = STATE(263), + [sym__section6] = STATE(263), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(93), + [sym_pandoc_paragraph] = STATE(93), + [sym_inline_ref_def] = STATE(93), + [sym_caption] = STATE(93), + [sym_pipe_table] = STATE(93), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(93), + [sym_pandoc_list] = STATE(93), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), + [sym__list_item_parenthesis] = STATE(142), + [sym__list_item_example] = STATE(143), + [sym_pandoc_code_block] = STATE(93), + [sym_pandoc_div] = STATE(93), + [sym_note_definition_fenced_block] = STATE(93), + [sym__newline] = STATE(93), + [sym__soft_line_break] = STATE(93), + [sym__inline_whitespace] = STATE(755), + [aux_sym__section3_repeat1] = STATE(93), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), + [aux_sym__list_parenthesis_repeat1] = STATE(142), + [aux_sym__list_example_repeat1] = STATE(143), + [anon_sym_COLON] = ACTIONS(1079), + [sym_entity_reference] = ACTIONS(1082), + [sym_numeric_character_reference] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_BANG_LBRACK] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1097), + [aux_sym_pandoc_str_token1] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1103), + [sym__whitespace] = ACTIONS(1106), + [sym__line_ending] = ACTIONS(1109), + [sym__soft_line_ending] = ACTIONS(1112), + [sym__block_close] = ACTIONS(1115), + [sym__block_quote_start] = ACTIONS(1117), + [sym_atx_h1_marker] = ACTIONS(1115), + [sym_atx_h2_marker] = ACTIONS(1115), + [sym_atx_h3_marker] = ACTIONS(1115), + [sym_atx_h4_marker] = ACTIONS(1120), + [sym_atx_h5_marker] = ACTIONS(1123), + [sym_atx_h6_marker] = ACTIONS(1126), + [sym__thematic_break] = ACTIONS(1129), + [sym__list_marker_minus] = ACTIONS(1132), + [sym__list_marker_plus] = ACTIONS(1135), + [sym__list_marker_star] = ACTIONS(1138), + [sym__list_marker_parenthesis] = ACTIONS(1141), + [sym__list_marker_dot] = ACTIONS(1144), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1132), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1135), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1138), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1141), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1144), + [sym__list_marker_example] = ACTIONS(1147), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1147), + [sym__fenced_code_block_start_backtick] = ACTIONS(1150), + [sym_minus_metadata] = ACTIONS(1153), + [sym__pipe_table_start] = ACTIONS(1156), + [sym__fenced_div_start] = ACTIONS(1159), + [sym__fenced_div_end] = ACTIONS(1115), + [sym_ref_id_specifier] = ACTIONS(1162), + [sym__code_span_start] = ACTIONS(1165), + [sym__html_comment] = ACTIONS(1082), + [sym__autolink] = ACTIONS(1082), + [sym__highlight_span_start] = ACTIONS(1168), + [sym__insert_span_start] = ACTIONS(1171), + [sym__delete_span_start] = ACTIONS(1174), + [sym__edit_comment_span_start] = ACTIONS(1177), + [sym__single_quote_span_open] = ACTIONS(1180), + [sym__double_quote_span_open] = ACTIONS(1183), + [sym__shortcode_open_escaped] = ACTIONS(1186), + [sym__shortcode_open] = ACTIONS(1189), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1192), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1195), + [sym__cite_author_in_text] = ACTIONS(1198), + [sym__cite_suppress_author] = ACTIONS(1201), + [sym__strikeout_open] = ACTIONS(1204), + [sym__subscript_open] = ACTIONS(1207), + [sym__superscript_open] = ACTIONS(1210), + [sym__inline_note_start_token] = ACTIONS(1213), + [sym__strong_emphasis_open_star] = ACTIONS(1216), + [sym__strong_emphasis_open_underscore] = ACTIONS(1219), + [sym__emphasis_open_star] = ACTIONS(1222), + [sym__emphasis_open_underscore] = ACTIONS(1225), + [sym_inline_note_reference] = ACTIONS(1082), + [sym_html_element] = ACTIONS(1082), + [sym__pandoc_line_break] = ACTIONS(1082), + }, + [STATE(94)] = { + [sym__block_not_section] = STATE(93), + [sym__section4] = STATE(263), + [sym__section5] = STATE(263), + [sym__section6] = STATE(263), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(93), + [sym_pandoc_paragraph] = STATE(93), + [sym_inline_ref_def] = STATE(93), + [sym_caption] = STATE(93), + [sym_pipe_table] = STATE(93), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(93), + [sym_pandoc_list] = STATE(93), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(92), - [sym_pandoc_div] = STATE(92), - [sym_note_definition_fenced_block] = STATE(92), - [sym__newline] = STATE(92), - [sym__soft_line_break] = STATE(92), - [aux_sym__section3_repeat1] = STATE(92), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(93), + [sym_pandoc_div] = STATE(93), + [sym_note_definition_fenced_block] = STATE(93), + [sym__newline] = STATE(93), + [sym__soft_line_break] = STATE(93), + [sym__inline_whitespace] = STATE(755), + [aux_sym__section3_repeat1] = STATE(93), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -33225,18 +34852,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(1060), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(1060), - [sym_atx_h2_marker] = ACTIONS(1060), - [sym_atx_h3_marker] = ACTIONS(1060), - [sym_atx_h4_marker] = ACTIONS(195), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(1228), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(1228), + [sym_atx_h2_marker] = ACTIONS(1228), + [sym_atx_h3_marker] = ACTIONS(1228), + [sym_atx_h4_marker] = ACTIONS(205), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -33249,12 +34876,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(1062), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(1060), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(1230), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(1228), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -33282,215 +34909,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(94)] = { - [sym__block_not_section] = STATE(94), - [sym__section4] = STATE(380), - [sym__section5] = STATE(380), - [sym__section6] = STATE(380), - [sym__atx_heading4] = STATE(103), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(94), - [sym_pandoc_paragraph] = STATE(94), - [sym_inline_ref_def] = STATE(94), - [sym_caption] = STATE(94), - [sym_pipe_table] = STATE(94), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(94), - [sym_pandoc_list] = STATE(94), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), - [sym__list_item_parenthesis] = STATE(142), - [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(94), - [sym_pandoc_div] = STATE(94), - [sym_note_definition_fenced_block] = STATE(94), - [sym__newline] = STATE(94), - [sym__soft_line_break] = STATE(94), - [aux_sym__section3_repeat1] = STATE(94), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), - [aux_sym__list_parenthesis_repeat1] = STATE(142), - [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(1064), - [sym_entity_reference] = ACTIONS(1067), - [sym_numeric_character_reference] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_BANG_LBRACK] = ACTIONS(1073), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1079), - [anon_sym_LBRACE] = ACTIONS(1082), - [aux_sym_pandoc_str_token1] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [aux_sym__prose_punctuation_token1] = ACTIONS(1091), - [sym__line_ending] = ACTIONS(1094), - [sym__soft_line_ending] = ACTIONS(1097), - [sym__block_close] = ACTIONS(1100), - [sym__block_quote_start] = ACTIONS(1102), - [sym_atx_h1_marker] = ACTIONS(1100), - [sym_atx_h2_marker] = ACTIONS(1100), - [sym_atx_h3_marker] = ACTIONS(1100), - [sym_atx_h4_marker] = ACTIONS(1105), - [sym_atx_h5_marker] = ACTIONS(1108), - [sym_atx_h6_marker] = ACTIONS(1111), - [sym__thematic_break] = ACTIONS(1114), - [sym__list_marker_minus] = ACTIONS(1117), - [sym__list_marker_plus] = ACTIONS(1120), - [sym__list_marker_star] = ACTIONS(1123), - [sym__list_marker_parenthesis] = ACTIONS(1126), - [sym__list_marker_dot] = ACTIONS(1129), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1117), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1120), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1123), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1126), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1129), - [sym__list_marker_example] = ACTIONS(1132), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1132), - [sym__fenced_code_block_start_backtick] = ACTIONS(1135), - [sym_minus_metadata] = ACTIONS(1138), - [sym__pipe_table_start] = ACTIONS(1141), - [sym__fenced_div_start] = ACTIONS(1144), - [sym__fenced_div_end] = ACTIONS(1100), - [sym_ref_id_specifier] = ACTIONS(1147), - [sym__code_span_start] = ACTIONS(1150), - [sym__html_comment] = ACTIONS(1067), - [sym__autolink] = ACTIONS(1067), - [sym__highlight_span_start] = ACTIONS(1153), - [sym__insert_span_start] = ACTIONS(1156), - [sym__delete_span_start] = ACTIONS(1159), - [sym__edit_comment_span_start] = ACTIONS(1162), - [sym__single_quote_span_open] = ACTIONS(1165), - [sym__double_quote_span_open] = ACTIONS(1168), - [sym__shortcode_open_escaped] = ACTIONS(1171), - [sym__shortcode_open] = ACTIONS(1174), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1180), - [sym__cite_author_in_text] = ACTIONS(1183), - [sym__cite_suppress_author] = ACTIONS(1186), - [sym__strikeout_open] = ACTIONS(1189), - [sym__subscript_open] = ACTIONS(1192), - [sym__superscript_open] = ACTIONS(1195), - [sym__inline_note_start_token] = ACTIONS(1198), - [sym__strong_emphasis_open_star] = ACTIONS(1201), - [sym__strong_emphasis_open_underscore] = ACTIONS(1204), - [sym__emphasis_open_star] = ACTIONS(1207), - [sym__emphasis_open_underscore] = ACTIONS(1210), - [sym_inline_note_reference] = ACTIONS(1067), - [sym_html_element] = ACTIONS(1067), - [sym__pandoc_line_break] = ACTIONS(1067), - }, [STATE(95)] = { - [sym__block_not_section] = STATE(96), - [sym__section4] = STATE(504), - [sym__section5] = STATE(504), - [sym__section6] = STATE(504), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(96), - [sym_pandoc_paragraph] = STATE(96), - [sym_inline_ref_def] = STATE(96), - [sym_caption] = STATE(96), - [sym_pipe_table] = STATE(96), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(96), - [sym_pandoc_list] = STATE(96), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(96), - [sym_pandoc_div] = STATE(96), - [sym_note_definition_fenced_block] = STATE(96), - [sym__newline] = STATE(96), - [sym__soft_line_break] = STATE(96), - [aux_sym__section3_repeat1] = STATE(96), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [sym__block_not_section] = STATE(97), + [sym__section4] = STATE(361), + [sym__section5] = STATE(361), + [sym__section6] = STATE(361), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(97), + [sym_pandoc_paragraph] = STATE(97), + [sym_inline_ref_def] = STATE(97), + [sym_caption] = STATE(97), + [sym_pipe_table] = STATE(97), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(97), + [sym_pandoc_list] = STATE(97), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(97), + [sym_pandoc_div] = STATE(97), + [sym_note_definition_fenced_block] = STATE(97), + [sym__newline] = STATE(97), + [sym__soft_line_break] = STATE(97), + [sym__inline_whitespace] = STATE(753), + [aux_sym__section3_repeat1] = STATE(97), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -33501,18 +34990,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(1056), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(1056), - [sym_atx_h2_marker] = ACTIONS(1056), - [sym_atx_h3_marker] = ACTIONS(1056), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(1228), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(1228), + [sym_atx_h2_marker] = ACTIONS(1228), + [sym_atx_h3_marker] = ACTIONS(1228), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -33525,11 +35014,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(1213), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(1232), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -33559,214 +35048,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(96)] = { [sym__block_not_section] = STATE(96), - [sym__section4] = STATE(504), - [sym__section5] = STATE(504), - [sym__section6] = STATE(504), - [sym__atx_heading4] = STATE(109), + [sym__section4] = STATE(430), + [sym__section5] = STATE(430), + [sym__section6] = STATE(430), + [sym__atx_heading4] = STATE(105), [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), + [sym__atx_heading6] = STATE(124), [sym_pandoc_horizontal_rule] = STATE(96), [sym_pandoc_paragraph] = STATE(96), [sym_inline_ref_def] = STATE(96), [sym_caption] = STATE(96), [sym_pipe_table] = STATE(96), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(96), [sym_pandoc_list] = STATE(96), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), + [sym_list_marker_plus] = STATE(3), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), [sym_pandoc_code_block] = STATE(96), [sym_pandoc_div] = STATE(96), [sym_note_definition_fenced_block] = STATE(96), [sym__newline] = STATE(96), [sym__soft_line_break] = STATE(96), + [sym__inline_whitespace] = STATE(765), [aux_sym__section3_repeat1] = STATE(96), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(1215), - [sym_entity_reference] = ACTIONS(1067), - [sym_numeric_character_reference] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_BANG_LBRACK] = ACTIONS(1073), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1079), - [anon_sym_LBRACE] = ACTIONS(1082), - [aux_sym_pandoc_str_token1] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [aux_sym__prose_punctuation_token1] = ACTIONS(1091), - [sym__line_ending] = ACTIONS(1218), - [sym__soft_line_ending] = ACTIONS(1221), - [sym__block_close] = ACTIONS(1100), - [sym__block_quote_start] = ACTIONS(1224), - [sym_atx_h1_marker] = ACTIONS(1100), - [sym_atx_h2_marker] = ACTIONS(1100), - [sym_atx_h3_marker] = ACTIONS(1100), - [sym_atx_h4_marker] = ACTIONS(1227), - [sym_atx_h5_marker] = ACTIONS(1230), - [sym_atx_h6_marker] = ACTIONS(1233), - [sym__thematic_break] = ACTIONS(1236), - [sym__list_marker_minus] = ACTIONS(1117), - [sym__list_marker_plus] = ACTIONS(1120), - [sym__list_marker_star] = ACTIONS(1123), - [sym__list_marker_parenthesis] = ACTIONS(1126), - [sym__list_marker_dot] = ACTIONS(1129), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1117), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1120), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1123), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1126), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1129), - [sym__list_marker_example] = ACTIONS(1132), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1132), - [sym__fenced_code_block_start_backtick] = ACTIONS(1239), - [sym_minus_metadata] = ACTIONS(1242), - [sym__pipe_table_start] = ACTIONS(1245), - [sym__fenced_div_start] = ACTIONS(1248), - [sym_ref_id_specifier] = ACTIONS(1251), - [sym__code_span_start] = ACTIONS(1150), - [sym__html_comment] = ACTIONS(1067), - [sym__autolink] = ACTIONS(1067), - [sym__highlight_span_start] = ACTIONS(1153), - [sym__insert_span_start] = ACTIONS(1156), - [sym__delete_span_start] = ACTIONS(1159), - [sym__edit_comment_span_start] = ACTIONS(1162), - [sym__single_quote_span_open] = ACTIONS(1165), - [sym__double_quote_span_open] = ACTIONS(1168), - [sym__shortcode_open_escaped] = ACTIONS(1171), - [sym__shortcode_open] = ACTIONS(1174), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1180), - [sym__cite_author_in_text] = ACTIONS(1183), - [sym__cite_suppress_author] = ACTIONS(1186), - [sym__strikeout_open] = ACTIONS(1189), - [sym__subscript_open] = ACTIONS(1192), - [sym__superscript_open] = ACTIONS(1195), - [sym__inline_note_start_token] = ACTIONS(1198), - [sym__strong_emphasis_open_star] = ACTIONS(1201), - [sym__strong_emphasis_open_underscore] = ACTIONS(1204), - [sym__emphasis_open_star] = ACTIONS(1207), - [sym__emphasis_open_underscore] = ACTIONS(1210), - [sym_inline_note_reference] = ACTIONS(1067), - [sym_html_element] = ACTIONS(1067), - [sym__pandoc_line_break] = ACTIONS(1067), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(1115), + [anon_sym_COLON] = ACTIONS(1234), + [sym_entity_reference] = ACTIONS(1082), + [sym_numeric_character_reference] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_BANG_LBRACK] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1097), + [aux_sym_pandoc_str_token1] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1103), + [sym__whitespace] = ACTIONS(1237), + [sym__line_ending] = ACTIONS(1240), + [sym__soft_line_ending] = ACTIONS(1243), + [sym__block_quote_start] = ACTIONS(1246), + [sym_atx_h1_marker] = ACTIONS(1115), + [sym_atx_h2_marker] = ACTIONS(1115), + [sym_atx_h3_marker] = ACTIONS(1115), + [sym_atx_h4_marker] = ACTIONS(1249), + [sym_atx_h5_marker] = ACTIONS(1252), + [sym_atx_h6_marker] = ACTIONS(1255), + [sym__thematic_break] = ACTIONS(1258), + [sym__list_marker_minus] = ACTIONS(1132), + [sym__list_marker_plus] = ACTIONS(1135), + [sym__list_marker_star] = ACTIONS(1138), + [sym__list_marker_parenthesis] = ACTIONS(1141), + [sym__list_marker_dot] = ACTIONS(1144), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1132), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1135), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1138), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1141), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1144), + [sym__list_marker_example] = ACTIONS(1147), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1147), + [sym__fenced_code_block_start_backtick] = ACTIONS(1261), + [sym_minus_metadata] = ACTIONS(1264), + [sym__pipe_table_start] = ACTIONS(1267), + [sym__fenced_div_start] = ACTIONS(1270), + [sym_ref_id_specifier] = ACTIONS(1273), + [sym__code_span_start] = ACTIONS(1165), + [sym__html_comment] = ACTIONS(1082), + [sym__autolink] = ACTIONS(1082), + [sym__highlight_span_start] = ACTIONS(1168), + [sym__insert_span_start] = ACTIONS(1171), + [sym__delete_span_start] = ACTIONS(1174), + [sym__edit_comment_span_start] = ACTIONS(1177), + [sym__single_quote_span_open] = ACTIONS(1180), + [sym__double_quote_span_open] = ACTIONS(1183), + [sym__shortcode_open_escaped] = ACTIONS(1186), + [sym__shortcode_open] = ACTIONS(1189), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1192), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1195), + [sym__cite_author_in_text] = ACTIONS(1198), + [sym__cite_suppress_author] = ACTIONS(1201), + [sym__strikeout_open] = ACTIONS(1204), + [sym__subscript_open] = ACTIONS(1207), + [sym__superscript_open] = ACTIONS(1210), + [sym__inline_note_start_token] = ACTIONS(1213), + [sym__strong_emphasis_open_star] = ACTIONS(1216), + [sym__strong_emphasis_open_underscore] = ACTIONS(1219), + [sym__emphasis_open_star] = ACTIONS(1222), + [sym__emphasis_open_underscore] = ACTIONS(1225), + [sym_inline_note_reference] = ACTIONS(1082), + [sym_html_element] = ACTIONS(1082), + [sym__pandoc_line_break] = ACTIONS(1082), }, [STATE(97)] = { - [sym__block_not_section] = STATE(98), - [sym__section4] = STATE(584), - [sym__section5] = STATE(584), - [sym__section6] = STATE(584), + [sym__block_not_section] = STATE(97), + [sym__section4] = STATE(361), + [sym__section5] = STATE(361), + [sym__section6] = STATE(361), [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(98), - [sym_pandoc_paragraph] = STATE(98), - [sym_inline_ref_def] = STATE(98), - [sym_caption] = STATE(98), - [sym_pipe_table] = STATE(98), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(98), - [sym_pandoc_list] = STATE(98), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), - [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(98), - [sym_pandoc_div] = STATE(98), - [sym_note_definition_fenced_block] = STATE(98), - [sym__newline] = STATE(98), - [sym__soft_line_break] = STATE(98), - [aux_sym__section3_repeat1] = STATE(98), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1060), - [anon_sym_COLON] = ACTIONS(5), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(97), + [sym_pandoc_paragraph] = STATE(97), + [sym_inline_ref_def] = STATE(97), + [sym_caption] = STATE(97), + [sym_pipe_table] = STATE(97), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(97), + [sym_pandoc_list] = STATE(97), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(97), + [sym_pandoc_div] = STATE(97), + [sym_note_definition_fenced_block] = STATE(97), + [sym__newline] = STATE(97), + [sym__soft_line_break] = STATE(97), + [sym__inline_whitespace] = STATE(753), + [aux_sym__section3_repeat1] = STATE(97), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(1276), + [sym_entity_reference] = ACTIONS(1082), + [sym_numeric_character_reference] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_BANG_LBRACK] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1097), + [aux_sym_pandoc_str_token1] = ACTIONS(1100), + [anon_sym_PIPE] = ACTIONS(1103), + [sym__whitespace] = ACTIONS(1279), + [sym__line_ending] = ACTIONS(1282), + [sym__soft_line_ending] = ACTIONS(1285), + [sym__block_close] = ACTIONS(1115), + [sym__block_quote_start] = ACTIONS(1288), + [sym_atx_h1_marker] = ACTIONS(1115), + [sym_atx_h2_marker] = ACTIONS(1115), + [sym_atx_h3_marker] = ACTIONS(1115), + [sym_atx_h4_marker] = ACTIONS(1291), + [sym_atx_h5_marker] = ACTIONS(1294), + [sym_atx_h6_marker] = ACTIONS(1297), + [sym__thematic_break] = ACTIONS(1300), + [sym__list_marker_minus] = ACTIONS(1132), + [sym__list_marker_plus] = ACTIONS(1135), + [sym__list_marker_star] = ACTIONS(1138), + [sym__list_marker_parenthesis] = ACTIONS(1141), + [sym__list_marker_dot] = ACTIONS(1144), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1132), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1135), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1138), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1141), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1144), + [sym__list_marker_example] = ACTIONS(1147), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1147), + [sym__fenced_code_block_start_backtick] = ACTIONS(1303), + [sym_minus_metadata] = ACTIONS(1306), + [sym__pipe_table_start] = ACTIONS(1309), + [sym__fenced_div_start] = ACTIONS(1312), + [sym_ref_id_specifier] = ACTIONS(1315), + [sym__code_span_start] = ACTIONS(1165), + [sym__html_comment] = ACTIONS(1082), + [sym__autolink] = ACTIONS(1082), + [sym__highlight_span_start] = ACTIONS(1168), + [sym__insert_span_start] = ACTIONS(1171), + [sym__delete_span_start] = ACTIONS(1174), + [sym__edit_comment_span_start] = ACTIONS(1177), + [sym__single_quote_span_open] = ACTIONS(1180), + [sym__double_quote_span_open] = ACTIONS(1183), + [sym__shortcode_open_escaped] = ACTIONS(1186), + [sym__shortcode_open] = ACTIONS(1189), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1192), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1195), + [sym__cite_author_in_text] = ACTIONS(1198), + [sym__cite_suppress_author] = ACTIONS(1201), + [sym__strikeout_open] = ACTIONS(1204), + [sym__subscript_open] = ACTIONS(1207), + [sym__superscript_open] = ACTIONS(1210), + [sym__inline_note_start_token] = ACTIONS(1213), + [sym__strong_emphasis_open_star] = ACTIONS(1216), + [sym__strong_emphasis_open_underscore] = ACTIONS(1219), + [sym__emphasis_open_star] = ACTIONS(1222), + [sym__emphasis_open_underscore] = ACTIONS(1225), + [sym_inline_note_reference] = ACTIONS(1082), + [sym_html_element] = ACTIONS(1082), + [sym__pandoc_line_break] = ACTIONS(1082), + }, + [STATE(98)] = { + [sym__block_not_section] = STATE(95), + [sym__section4] = STATE(361), + [sym__section5] = STATE(361), + [sym__section6] = STATE(361), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(95), + [sym_pandoc_paragraph] = STATE(95), + [sym_inline_ref_def] = STATE(95), + [sym_caption] = STATE(95), + [sym_pipe_table] = STATE(95), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(95), + [sym_pandoc_list] = STATE(95), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(95), + [sym_pandoc_div] = STATE(95), + [sym_note_definition_fenced_block] = STATE(95), + [sym__newline] = STATE(95), + [sym__soft_line_break] = STATE(95), + [sym__inline_whitespace] = STATE(753), + [aux_sym__section3_repeat1] = STATE(95), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -33776,17 +35401,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1060), - [sym_atx_h2_marker] = ACTIONS(1060), - [sym_atx_h3_marker] = ACTIONS(1060), - [sym_atx_h4_marker] = ACTIONS(37), - [sym_atx_h5_marker] = ACTIONS(39), - [sym_atx_h6_marker] = ACTIONS(41), - [sym__thematic_break] = ACTIONS(43), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(1075), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(1075), + [sym_atx_h2_marker] = ACTIONS(1075), + [sym_atx_h3_marker] = ACTIONS(1075), + [sym_atx_h4_marker] = ACTIONS(127), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -33799,11 +35425,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1254), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(1318), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -33831,78 +35457,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(98)] = { - [sym__block_not_section] = STATE(99), - [sym__section4] = STATE(584), - [sym__section5] = STATE(584), - [sym__section6] = STATE(584), - [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(99), - [sym_pandoc_paragraph] = STATE(99), - [sym_inline_ref_def] = STATE(99), - [sym_caption] = STATE(99), - [sym_pipe_table] = STATE(99), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(99), - [sym_pandoc_list] = STATE(99), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), + [STATE(99)] = { + [sym__block_not_section] = STATE(96), + [sym__section4] = STATE(430), + [sym__section5] = STATE(430), + [sym__section6] = STATE(430), + [sym__atx_heading4] = STATE(105), + [sym__atx_heading5] = STATE(116), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(96), + [sym_pandoc_paragraph] = STATE(96), + [sym_inline_ref_def] = STATE(96), + [sym_caption] = STATE(96), + [sym_pipe_table] = STATE(96), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(96), + [sym_pandoc_list] = STATE(96), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(99), - [sym_pandoc_div] = STATE(99), - [sym_note_definition_fenced_block] = STATE(99), - [sym__newline] = STATE(99), - [sym__soft_line_break] = STATE(99), - [aux_sym__section3_repeat1] = STATE(99), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1056), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(96), + [sym_pandoc_div] = STATE(96), + [sym_note_definition_fenced_block] = STATE(96), + [sym__newline] = STATE(96), + [sym__soft_line_break] = STATE(96), + [sym__inline_whitespace] = STATE(765), + [aux_sym__section3_repeat1] = STATE(96), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(1228), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -33913,13 +35539,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), + [sym__whitespace] = ACTIONS(23), [sym__line_ending] = ACTIONS(25), [sym__soft_line_ending] = ACTIONS(27), [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1056), - [sym_atx_h2_marker] = ACTIONS(1056), - [sym_atx_h3_marker] = ACTIONS(1056), + [sym_atx_h1_marker] = ACTIONS(1228), + [sym_atx_h2_marker] = ACTIONS(1228), + [sym_atx_h3_marker] = ACTIONS(1228), [sym_atx_h4_marker] = ACTIONS(37), [sym_atx_h5_marker] = ACTIONS(39), [sym_atx_h6_marker] = ACTIONS(41), @@ -33937,7 +35563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1256), + [sym_minus_metadata] = ACTIONS(1320), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -33968,215 +35594,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(99)] = { + [STATE(100)] = { [sym__block_not_section] = STATE(99), - [sym__section4] = STATE(584), - [sym__section5] = STATE(584), - [sym__section6] = STATE(584), - [sym__atx_heading4] = STATE(108), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), + [sym__section4] = STATE(430), + [sym__section5] = STATE(430), + [sym__section6] = STATE(430), + [sym__atx_heading4] = STATE(105), + [sym__atx_heading5] = STATE(116), + [sym__atx_heading6] = STATE(124), [sym_pandoc_horizontal_rule] = STATE(99), [sym_pandoc_paragraph] = STATE(99), [sym_inline_ref_def] = STATE(99), [sym_caption] = STATE(99), [sym_pipe_table] = STATE(99), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(99), [sym_pandoc_list] = STATE(99), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), [sym_pandoc_code_block] = STATE(99), [sym_pandoc_div] = STATE(99), [sym_note_definition_fenced_block] = STATE(99), [sym__newline] = STATE(99), [sym__soft_line_break] = STATE(99), + [sym__inline_whitespace] = STATE(765), [aux_sym__section3_repeat1] = STATE(99), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1100), - [anon_sym_COLON] = ACTIONS(1258), - [sym_entity_reference] = ACTIONS(1067), - [sym_numeric_character_reference] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_BANG_LBRACK] = ACTIONS(1073), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1079), - [anon_sym_LBRACE] = ACTIONS(1082), - [aux_sym_pandoc_str_token1] = ACTIONS(1085), - [anon_sym_PIPE] = ACTIONS(1088), - [aux_sym__prose_punctuation_token1] = ACTIONS(1091), - [sym__line_ending] = ACTIONS(1261), - [sym__soft_line_ending] = ACTIONS(1264), - [sym__block_quote_start] = ACTIONS(1267), - [sym_atx_h1_marker] = ACTIONS(1100), - [sym_atx_h2_marker] = ACTIONS(1100), - [sym_atx_h3_marker] = ACTIONS(1100), - [sym_atx_h4_marker] = ACTIONS(1270), - [sym_atx_h5_marker] = ACTIONS(1273), - [sym_atx_h6_marker] = ACTIONS(1276), - [sym__thematic_break] = ACTIONS(1279), - [sym__list_marker_minus] = ACTIONS(1117), - [sym__list_marker_plus] = ACTIONS(1120), - [sym__list_marker_star] = ACTIONS(1123), - [sym__list_marker_parenthesis] = ACTIONS(1126), - [sym__list_marker_dot] = ACTIONS(1129), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1117), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1120), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1123), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1126), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1129), - [sym__list_marker_example] = ACTIONS(1132), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1132), - [sym__fenced_code_block_start_backtick] = ACTIONS(1282), - [sym_minus_metadata] = ACTIONS(1285), - [sym__pipe_table_start] = ACTIONS(1288), - [sym__fenced_div_start] = ACTIONS(1291), - [sym_ref_id_specifier] = ACTIONS(1294), - [sym__code_span_start] = ACTIONS(1150), - [sym__html_comment] = ACTIONS(1067), - [sym__autolink] = ACTIONS(1067), - [sym__highlight_span_start] = ACTIONS(1153), - [sym__insert_span_start] = ACTIONS(1156), - [sym__delete_span_start] = ACTIONS(1159), - [sym__edit_comment_span_start] = ACTIONS(1162), - [sym__single_quote_span_open] = ACTIONS(1165), - [sym__double_quote_span_open] = ACTIONS(1168), - [sym__shortcode_open_escaped] = ACTIONS(1171), - [sym__shortcode_open] = ACTIONS(1174), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1177), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1180), - [sym__cite_author_in_text] = ACTIONS(1183), - [sym__cite_suppress_author] = ACTIONS(1186), - [sym__strikeout_open] = ACTIONS(1189), - [sym__subscript_open] = ACTIONS(1192), - [sym__superscript_open] = ACTIONS(1195), - [sym__inline_note_start_token] = ACTIONS(1198), - [sym__strong_emphasis_open_star] = ACTIONS(1201), - [sym__strong_emphasis_open_underscore] = ACTIONS(1204), - [sym__emphasis_open_star] = ACTIONS(1207), - [sym__emphasis_open_underscore] = ACTIONS(1210), - [sym_inline_note_reference] = ACTIONS(1067), - [sym_html_element] = ACTIONS(1067), - [sym__pandoc_line_break] = ACTIONS(1067), - }, - [STATE(100)] = { - [sym__block_not_section] = STATE(95), - [sym__section4] = STATE(504), - [sym__section5] = STATE(504), - [sym__section6] = STATE(504), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(95), - [sym_pandoc_paragraph] = STATE(95), - [sym_inline_ref_def] = STATE(95), - [sym_caption] = STATE(95), - [sym_pipe_table] = STATE(95), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(95), - [sym_pandoc_list] = STATE(95), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(95), - [sym_pandoc_div] = STATE(95), - [sym_note_definition_fenced_block] = STATE(95), - [sym__newline] = STATE(95), - [sym__soft_line_break] = STATE(95), - [aux_sym__section3_repeat1] = STATE(95), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(1075), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -34186,18 +35676,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(1060), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(1060), - [sym_atx_h2_marker] = ACTIONS(1060), - [sym_atx_h3_marker] = ACTIONS(1060), - [sym_atx_h4_marker] = ACTIONS(125), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(1075), + [sym_atx_h2_marker] = ACTIONS(1075), + [sym_atx_h3_marker] = ACTIONS(1075), + [sym_atx_h4_marker] = ACTIONS(37), + [sym_atx_h5_marker] = ACTIONS(39), + [sym_atx_h6_marker] = ACTIONS(41), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -34210,11 +35699,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(1297), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym_minus_metadata] = ACTIONS(1322), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -34243,211 +35732,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(101)] = { - [sym__block_not_section] = STATE(101), - [sym__section5] = STATE(382), - [sym__section6] = STATE(382), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(101), - [sym_pandoc_paragraph] = STATE(101), - [sym_inline_ref_def] = STATE(101), - [sym_caption] = STATE(101), - [sym_pipe_table] = STATE(101), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(101), - [sym_pandoc_list] = STATE(101), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), - [sym__list_item_parenthesis] = STATE(142), - [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(101), - [sym_pandoc_div] = STATE(101), - [sym_note_definition_fenced_block] = STATE(101), - [sym__newline] = STATE(101), - [sym__soft_line_break] = STATE(101), - [aux_sym__section4_repeat1] = STATE(101), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), - [aux_sym__list_parenthesis_repeat1] = STATE(142), - [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(1299), - [sym_entity_reference] = ACTIONS(1302), - [sym_numeric_character_reference] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_BANG_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1317), - [aux_sym_pandoc_str_token1] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1323), - [aux_sym__prose_punctuation_token1] = ACTIONS(1326), - [sym__line_ending] = ACTIONS(1329), - [sym__soft_line_ending] = ACTIONS(1332), - [sym__block_close] = ACTIONS(1335), - [sym__block_quote_start] = ACTIONS(1337), - [sym_atx_h1_marker] = ACTIONS(1335), - [sym_atx_h2_marker] = ACTIONS(1335), - [sym_atx_h3_marker] = ACTIONS(1335), - [sym_atx_h4_marker] = ACTIONS(1335), - [sym_atx_h5_marker] = ACTIONS(1340), - [sym_atx_h6_marker] = ACTIONS(1343), - [sym__thematic_break] = ACTIONS(1346), - [sym__list_marker_minus] = ACTIONS(1349), - [sym__list_marker_plus] = ACTIONS(1352), - [sym__list_marker_star] = ACTIONS(1355), - [sym__list_marker_parenthesis] = ACTIONS(1358), - [sym__list_marker_dot] = ACTIONS(1361), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1349), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1355), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1358), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1361), - [sym__list_marker_example] = ACTIONS(1364), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1364), - [sym__fenced_code_block_start_backtick] = ACTIONS(1367), - [sym_minus_metadata] = ACTIONS(1370), - [sym__pipe_table_start] = ACTIONS(1373), - [sym__fenced_div_start] = ACTIONS(1376), - [sym__fenced_div_end] = ACTIONS(1335), - [sym_ref_id_specifier] = ACTIONS(1379), - [sym__code_span_start] = ACTIONS(1382), - [sym__html_comment] = ACTIONS(1302), - [sym__autolink] = ACTIONS(1302), - [sym__highlight_span_start] = ACTIONS(1385), - [sym__insert_span_start] = ACTIONS(1388), - [sym__delete_span_start] = ACTIONS(1391), - [sym__edit_comment_span_start] = ACTIONS(1394), - [sym__single_quote_span_open] = ACTIONS(1397), - [sym__double_quote_span_open] = ACTIONS(1400), - [sym__shortcode_open_escaped] = ACTIONS(1403), - [sym__shortcode_open] = ACTIONS(1406), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1409), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1412), - [sym__cite_author_in_text] = ACTIONS(1415), - [sym__cite_suppress_author] = ACTIONS(1418), - [sym__strikeout_open] = ACTIONS(1421), - [sym__subscript_open] = ACTIONS(1424), - [sym__superscript_open] = ACTIONS(1427), - [sym__inline_note_start_token] = ACTIONS(1430), - [sym__strong_emphasis_open_star] = ACTIONS(1433), - [sym__strong_emphasis_open_underscore] = ACTIONS(1436), - [sym__emphasis_open_star] = ACTIONS(1439), - [sym__emphasis_open_underscore] = ACTIONS(1442), - [sym_inline_note_reference] = ACTIONS(1302), - [sym_html_element] = ACTIONS(1302), - [sym__pandoc_line_break] = ACTIONS(1302), - }, - [STATE(102)] = { - [sym__block_not_section] = STATE(101), - [sym__section5] = STATE(382), - [sym__section6] = STATE(382), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(101), - [sym_pandoc_paragraph] = STATE(101), - [sym_inline_ref_def] = STATE(101), - [sym_caption] = STATE(101), - [sym_pipe_table] = STATE(101), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(101), - [sym_pandoc_list] = STATE(101), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__block_not_section] = STATE(103), + [sym__section5] = STATE(264), + [sym__section6] = STATE(264), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(103), + [sym_pandoc_paragraph] = STATE(103), + [sym_inline_ref_def] = STATE(103), + [sym_caption] = STATE(103), + [sym_pipe_table] = STATE(103), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(103), + [sym_pandoc_list] = STATE(103), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(101), - [sym_pandoc_div] = STATE(101), - [sym_note_definition_fenced_block] = STATE(101), - [sym__newline] = STATE(101), - [sym__soft_line_break] = STATE(101), - [aux_sym__section4_repeat1] = STATE(101), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(103), + [sym_pandoc_div] = STATE(103), + [sym_note_definition_fenced_block] = STATE(103), + [sym__newline] = STATE(103), + [sym__soft_line_break] = STATE(103), + [sym__inline_whitespace] = STATE(755), + [aux_sym__section4_repeat1] = STATE(103), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -34457,18 +35810,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(1445), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(1445), - [sym_atx_h2_marker] = ACTIONS(1445), - [sym_atx_h3_marker] = ACTIONS(1445), - [sym_atx_h4_marker] = ACTIONS(1445), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(1324), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(1324), + [sym_atx_h2_marker] = ACTIONS(1324), + [sym_atx_h3_marker] = ACTIONS(1324), + [sym_atx_h4_marker] = ACTIONS(1324), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -34481,12 +35834,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(1447), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(1445), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(1326), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(1324), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -34514,61 +35867,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, + [STATE(102)] = { + [sym__block_not_section] = STATE(102), + [sym__section5] = STATE(264), + [sym__section6] = STATE(264), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(102), + [sym_pandoc_paragraph] = STATE(102), + [sym_inline_ref_def] = STATE(102), + [sym_caption] = STATE(102), + [sym_pipe_table] = STATE(102), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(102), + [sym_pandoc_list] = STATE(102), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), + [sym__list_item_parenthesis] = STATE(142), + [sym__list_item_example] = STATE(143), + [sym_pandoc_code_block] = STATE(102), + [sym_pandoc_div] = STATE(102), + [sym_note_definition_fenced_block] = STATE(102), + [sym__newline] = STATE(102), + [sym__soft_line_break] = STATE(102), + [sym__inline_whitespace] = STATE(755), + [aux_sym__section4_repeat1] = STATE(102), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), + [aux_sym__list_parenthesis_repeat1] = STATE(142), + [aux_sym__list_example_repeat1] = STATE(143), + [anon_sym_COLON] = ACTIONS(1328), + [sym_entity_reference] = ACTIONS(1331), + [sym_numeric_character_reference] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_BANG_LBRACK] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1340), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1346), + [aux_sym_pandoc_str_token1] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1352), + [sym__whitespace] = ACTIONS(1355), + [sym__line_ending] = ACTIONS(1358), + [sym__soft_line_ending] = ACTIONS(1361), + [sym__block_close] = ACTIONS(1364), + [sym__block_quote_start] = ACTIONS(1366), + [sym_atx_h1_marker] = ACTIONS(1364), + [sym_atx_h2_marker] = ACTIONS(1364), + [sym_atx_h3_marker] = ACTIONS(1364), + [sym_atx_h4_marker] = ACTIONS(1364), + [sym_atx_h5_marker] = ACTIONS(1369), + [sym_atx_h6_marker] = ACTIONS(1372), + [sym__thematic_break] = ACTIONS(1375), + [sym__list_marker_minus] = ACTIONS(1378), + [sym__list_marker_plus] = ACTIONS(1381), + [sym__list_marker_star] = ACTIONS(1384), + [sym__list_marker_parenthesis] = ACTIONS(1387), + [sym__list_marker_dot] = ACTIONS(1390), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1381), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1387), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1390), + [sym__list_marker_example] = ACTIONS(1393), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1393), + [sym__fenced_code_block_start_backtick] = ACTIONS(1396), + [sym_minus_metadata] = ACTIONS(1399), + [sym__pipe_table_start] = ACTIONS(1402), + [sym__fenced_div_start] = ACTIONS(1405), + [sym__fenced_div_end] = ACTIONS(1364), + [sym_ref_id_specifier] = ACTIONS(1408), + [sym__code_span_start] = ACTIONS(1411), + [sym__html_comment] = ACTIONS(1331), + [sym__autolink] = ACTIONS(1331), + [sym__highlight_span_start] = ACTIONS(1414), + [sym__insert_span_start] = ACTIONS(1417), + [sym__delete_span_start] = ACTIONS(1420), + [sym__edit_comment_span_start] = ACTIONS(1423), + [sym__single_quote_span_open] = ACTIONS(1426), + [sym__double_quote_span_open] = ACTIONS(1429), + [sym__shortcode_open_escaped] = ACTIONS(1432), + [sym__shortcode_open] = ACTIONS(1435), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1438), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1441), + [sym__cite_author_in_text] = ACTIONS(1444), + [sym__cite_suppress_author] = ACTIONS(1447), + [sym__strikeout_open] = ACTIONS(1450), + [sym__subscript_open] = ACTIONS(1453), + [sym__superscript_open] = ACTIONS(1456), + [sym__inline_note_start_token] = ACTIONS(1459), + [sym__strong_emphasis_open_star] = ACTIONS(1462), + [sym__strong_emphasis_open_underscore] = ACTIONS(1465), + [sym__emphasis_open_star] = ACTIONS(1468), + [sym__emphasis_open_underscore] = ACTIONS(1471), + [sym_inline_note_reference] = ACTIONS(1331), + [sym_html_element] = ACTIONS(1331), + [sym__pandoc_line_break] = ACTIONS(1331), + }, [STATE(103)] = { [sym__block_not_section] = STATE(102), - [sym__section5] = STATE(382), - [sym__section6] = STATE(382), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), + [sym__section5] = STATE(264), + [sym__section6] = STATE(264), + [sym__atx_heading5] = STATE(112), + [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(102), [sym_pandoc_paragraph] = STATE(102), [sym_inline_ref_def] = STATE(102), [sym_caption] = STATE(102), [sym_pipe_table] = STATE(102), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(102), [sym_pandoc_list] = STATE(102), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), [sym_pandoc_code_block] = STATE(102), @@ -34576,14 +36064,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_definition_fenced_block] = STATE(102), [sym__newline] = STATE(102), [sym__soft_line_break] = STATE(102), + [sym__inline_whitespace] = STATE(755), [aux_sym__section4_repeat1] = STATE(102), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -34593,18 +36082,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(1449), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(1449), - [sym_atx_h2_marker] = ACTIONS(1449), - [sym_atx_h3_marker] = ACTIONS(1449), - [sym_atx_h4_marker] = ACTIONS(1449), - [sym_atx_h5_marker] = ACTIONS(197), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(1474), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(1474), + [sym_atx_h2_marker] = ACTIONS(1474), + [sym_atx_h3_marker] = ACTIONS(1474), + [sym_atx_h4_marker] = ACTIONS(1474), + [sym_atx_h5_marker] = ACTIONS(207), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -34617,12 +36106,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(1451), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(1449), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(1476), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(1474), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -34651,75 +36140,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(104)] = { - [sym__block_not_section] = STATE(105), - [sym__section5] = STATE(577), - [sym__section6] = STATE(577), + [sym__block_not_section] = STATE(104), + [sym__section5] = STATE(363), + [sym__section6] = STATE(363), [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(105), - [sym_pandoc_paragraph] = STATE(105), - [sym_inline_ref_def] = STATE(105), - [sym_caption] = STATE(105), - [sym_pipe_table] = STATE(105), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(105), - [sym_pandoc_list] = STATE(105), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(105), - [sym_pandoc_div] = STATE(105), - [sym_note_definition_fenced_block] = STATE(105), - [sym__newline] = STATE(105), - [sym__soft_line_break] = STATE(105), - [aux_sym__section4_repeat1] = STATE(105), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(104), + [sym_pandoc_paragraph] = STATE(104), + [sym_inline_ref_def] = STATE(104), + [sym_caption] = STATE(104), + [sym_pipe_table] = STATE(104), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(104), + [sym_pandoc_list] = STATE(104), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), + [sym_list_marker_plus] = STATE(3), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(104), + [sym_pandoc_div] = STATE(104), + [sym_note_definition_fenced_block] = STATE(104), + [sym__newline] = STATE(104), + [sym__soft_line_break] = STATE(104), + [sym__inline_whitespace] = STATE(765), + [aux_sym__section4_repeat1] = STATE(104), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(1364), + [anon_sym_COLON] = ACTIONS(1478), + [sym_entity_reference] = ACTIONS(1331), + [sym_numeric_character_reference] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_BANG_LBRACK] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1340), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1346), + [aux_sym_pandoc_str_token1] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1352), + [sym__whitespace] = ACTIONS(1481), + [sym__line_ending] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1487), + [sym__block_quote_start] = ACTIONS(1490), + [sym_atx_h1_marker] = ACTIONS(1364), + [sym_atx_h2_marker] = ACTIONS(1364), + [sym_atx_h3_marker] = ACTIONS(1364), + [sym_atx_h4_marker] = ACTIONS(1364), + [sym_atx_h5_marker] = ACTIONS(1493), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1499), + [sym__list_marker_minus] = ACTIONS(1378), + [sym__list_marker_plus] = ACTIONS(1381), + [sym__list_marker_star] = ACTIONS(1384), + [sym__list_marker_parenthesis] = ACTIONS(1387), + [sym__list_marker_dot] = ACTIONS(1390), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1381), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1387), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1390), + [sym__list_marker_example] = ACTIONS(1393), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1393), + [sym__fenced_code_block_start_backtick] = ACTIONS(1502), + [sym_minus_metadata] = ACTIONS(1505), + [sym__pipe_table_start] = ACTIONS(1508), + [sym__fenced_div_start] = ACTIONS(1511), + [sym_ref_id_specifier] = ACTIONS(1514), + [sym__code_span_start] = ACTIONS(1411), + [sym__html_comment] = ACTIONS(1331), + [sym__autolink] = ACTIONS(1331), + [sym__highlight_span_start] = ACTIONS(1414), + [sym__insert_span_start] = ACTIONS(1417), + [sym__delete_span_start] = ACTIONS(1420), + [sym__edit_comment_span_start] = ACTIONS(1423), + [sym__single_quote_span_open] = ACTIONS(1426), + [sym__double_quote_span_open] = ACTIONS(1429), + [sym__shortcode_open_escaped] = ACTIONS(1432), + [sym__shortcode_open] = ACTIONS(1435), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1438), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1441), + [sym__cite_author_in_text] = ACTIONS(1444), + [sym__cite_suppress_author] = ACTIONS(1447), + [sym__strikeout_open] = ACTIONS(1450), + [sym__subscript_open] = ACTIONS(1453), + [sym__superscript_open] = ACTIONS(1456), + [sym__inline_note_start_token] = ACTIONS(1459), + [sym__strong_emphasis_open_star] = ACTIONS(1462), + [sym__strong_emphasis_open_underscore] = ACTIONS(1465), + [sym__emphasis_open_star] = ACTIONS(1468), + [sym__emphasis_open_underscore] = ACTIONS(1471), + [sym_inline_note_reference] = ACTIONS(1331), + [sym_html_element] = ACTIONS(1331), + [sym__pandoc_line_break] = ACTIONS(1331), + }, + [STATE(105)] = { + [sym__block_not_section] = STATE(106), + [sym__section5] = STATE(363), + [sym__section6] = STATE(363), + [sym__atx_heading5] = STATE(116), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(106), + [sym_pandoc_paragraph] = STATE(106), + [sym_inline_ref_def] = STATE(106), + [sym_caption] = STATE(106), + [sym_pipe_table] = STATE(106), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(106), + [sym_pandoc_list] = STATE(106), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), + [sym_list_marker_plus] = STATE(3), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(106), + [sym_pandoc_div] = STATE(106), + [sym_note_definition_fenced_block] = STATE(106), + [sym__newline] = STATE(106), + [sym__soft_line_break] = STATE(106), + [sym__inline_whitespace] = STATE(765), + [aux_sym__section4_repeat1] = STATE(106), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(1324), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -34729,18 +36354,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(1445), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(1445), - [sym_atx_h2_marker] = ACTIONS(1445), - [sym_atx_h3_marker] = ACTIONS(1445), - [sym_atx_h4_marker] = ACTIONS(1445), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(1324), + [sym_atx_h2_marker] = ACTIONS(1324), + [sym_atx_h3_marker] = ACTIONS(1324), + [sym_atx_h4_marker] = ACTIONS(1324), + [sym_atx_h5_marker] = ACTIONS(39), + [sym_atx_h6_marker] = ACTIONS(41), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -34753,11 +36377,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(1453), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym_minus_metadata] = ACTIONS(1517), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -34785,211 +36409,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(105)] = { - [sym__block_not_section] = STATE(105), - [sym__section5] = STATE(577), - [sym__section6] = STATE(577), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(105), - [sym_pandoc_paragraph] = STATE(105), - [sym_inline_ref_def] = STATE(105), - [sym_caption] = STATE(105), - [sym_pipe_table] = STATE(105), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(105), - [sym_pandoc_list] = STATE(105), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(105), - [sym_pandoc_div] = STATE(105), - [sym_note_definition_fenced_block] = STATE(105), - [sym__newline] = STATE(105), - [sym__soft_line_break] = STATE(105), - [aux_sym__section4_repeat1] = STATE(105), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(1455), - [sym_entity_reference] = ACTIONS(1302), - [sym_numeric_character_reference] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_BANG_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1317), - [aux_sym_pandoc_str_token1] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1323), - [aux_sym__prose_punctuation_token1] = ACTIONS(1326), - [sym__line_ending] = ACTIONS(1458), - [sym__soft_line_ending] = ACTIONS(1461), - [sym__block_close] = ACTIONS(1335), - [sym__block_quote_start] = ACTIONS(1464), - [sym_atx_h1_marker] = ACTIONS(1335), - [sym_atx_h2_marker] = ACTIONS(1335), - [sym_atx_h3_marker] = ACTIONS(1335), - [sym_atx_h4_marker] = ACTIONS(1335), - [sym_atx_h5_marker] = ACTIONS(1467), - [sym_atx_h6_marker] = ACTIONS(1470), - [sym__thematic_break] = ACTIONS(1473), - [sym__list_marker_minus] = ACTIONS(1349), - [sym__list_marker_plus] = ACTIONS(1352), - [sym__list_marker_star] = ACTIONS(1355), - [sym__list_marker_parenthesis] = ACTIONS(1358), - [sym__list_marker_dot] = ACTIONS(1361), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1349), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1355), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1358), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1361), - [sym__list_marker_example] = ACTIONS(1364), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1364), - [sym__fenced_code_block_start_backtick] = ACTIONS(1476), - [sym_minus_metadata] = ACTIONS(1479), - [sym__pipe_table_start] = ACTIONS(1482), - [sym__fenced_div_start] = ACTIONS(1485), - [sym_ref_id_specifier] = ACTIONS(1488), - [sym__code_span_start] = ACTIONS(1382), - [sym__html_comment] = ACTIONS(1302), - [sym__autolink] = ACTIONS(1302), - [sym__highlight_span_start] = ACTIONS(1385), - [sym__insert_span_start] = ACTIONS(1388), - [sym__delete_span_start] = ACTIONS(1391), - [sym__edit_comment_span_start] = ACTIONS(1394), - [sym__single_quote_span_open] = ACTIONS(1397), - [sym__double_quote_span_open] = ACTIONS(1400), - [sym__shortcode_open_escaped] = ACTIONS(1403), - [sym__shortcode_open] = ACTIONS(1406), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1409), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1412), - [sym__cite_author_in_text] = ACTIONS(1415), - [sym__cite_suppress_author] = ACTIONS(1418), - [sym__strikeout_open] = ACTIONS(1421), - [sym__subscript_open] = ACTIONS(1424), - [sym__superscript_open] = ACTIONS(1427), - [sym__inline_note_start_token] = ACTIONS(1430), - [sym__strong_emphasis_open_star] = ACTIONS(1433), - [sym__strong_emphasis_open_underscore] = ACTIONS(1436), - [sym__emphasis_open_star] = ACTIONS(1439), - [sym__emphasis_open_underscore] = ACTIONS(1442), - [sym_inline_note_reference] = ACTIONS(1302), - [sym_html_element] = ACTIONS(1302), - [sym__pandoc_line_break] = ACTIONS(1302), - }, [STATE(106)] = { - [sym__block_not_section] = STATE(107), - [sym__section5] = STATE(488), - [sym__section6] = STATE(488), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(107), - [sym_pandoc_paragraph] = STATE(107), - [sym_inline_ref_def] = STATE(107), - [sym_caption] = STATE(107), - [sym_pipe_table] = STATE(107), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(107), - [sym_pandoc_list] = STATE(107), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), + [sym__block_not_section] = STATE(104), + [sym__section5] = STATE(363), + [sym__section6] = STATE(363), + [sym__atx_heading5] = STATE(116), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(104), + [sym_pandoc_paragraph] = STATE(104), + [sym_inline_ref_def] = STATE(104), + [sym_caption] = STATE(104), + [sym_pipe_table] = STATE(104), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(104), + [sym_pandoc_list] = STATE(104), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(107), - [sym_pandoc_div] = STATE(107), - [sym_note_definition_fenced_block] = STATE(107), - [sym__newline] = STATE(107), - [sym__soft_line_break] = STATE(107), - [aux_sym__section4_repeat1] = STATE(107), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1445), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(104), + [sym_pandoc_div] = STATE(104), + [sym_note_definition_fenced_block] = STATE(104), + [sym__newline] = STATE(104), + [sym__soft_line_break] = STATE(104), + [sym__inline_whitespace] = STATE(765), + [aux_sym__section4_repeat1] = STATE(104), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(1474), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -35000,14 +36489,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), + [sym__whitespace] = ACTIONS(23), [sym__line_ending] = ACTIONS(25), [sym__soft_line_ending] = ACTIONS(27), [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1445), - [sym_atx_h2_marker] = ACTIONS(1445), - [sym_atx_h3_marker] = ACTIONS(1445), - [sym_atx_h4_marker] = ACTIONS(1445), + [sym_atx_h1_marker] = ACTIONS(1474), + [sym_atx_h2_marker] = ACTIONS(1474), + [sym_atx_h3_marker] = ACTIONS(1474), + [sym_atx_h4_marker] = ACTIONS(1474), [sym_atx_h5_marker] = ACTIONS(39), [sym_atx_h6_marker] = ACTIONS(41), [sym__thematic_break] = ACTIONS(43), @@ -35024,7 +36513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1491), + [sym_minus_metadata] = ACTIONS(1519), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -35056,211 +36545,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(107)] = { + [sym__block_not_section] = STATE(109), + [sym__section5] = STATE(365), + [sym__section6] = STATE(365), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(109), + [sym_pandoc_paragraph] = STATE(109), + [sym_inline_ref_def] = STATE(109), + [sym_caption] = STATE(109), + [sym_pipe_table] = STATE(109), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(109), + [sym_pandoc_list] = STATE(109), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(109), + [sym_pandoc_div] = STATE(109), + [sym_note_definition_fenced_block] = STATE(109), + [sym__newline] = STATE(109), + [sym__soft_line_break] = STATE(109), + [sym__inline_whitespace] = STATE(753), + [aux_sym__section4_repeat1] = STATE(109), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(1474), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(1474), + [sym_atx_h2_marker] = ACTIONS(1474), + [sym_atx_h3_marker] = ACTIONS(1474), + [sym_atx_h4_marker] = ACTIONS(1474), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), + [sym__list_marker_minus] = ACTIONS(45), + [sym__list_marker_plus] = ACTIONS(47), + [sym__list_marker_star] = ACTIONS(49), + [sym__list_marker_parenthesis] = ACTIONS(51), + [sym__list_marker_dot] = ACTIONS(53), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), + [sym__list_marker_star_dont_interrupt] = ACTIONS(49), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(55), + [sym__list_marker_example_dont_interrupt] = ACTIONS(55), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(1521), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(108)] = { [sym__block_not_section] = STATE(107), - [sym__section5] = STATE(488), - [sym__section6] = STATE(488), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), + [sym__section5] = STATE(365), + [sym__section6] = STATE(365), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), [sym_pandoc_horizontal_rule] = STATE(107), [sym_pandoc_paragraph] = STATE(107), [sym_inline_ref_def] = STATE(107), [sym_caption] = STATE(107), [sym_pipe_table] = STATE(107), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(107), [sym_pandoc_list] = STATE(107), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), - [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), [sym_pandoc_code_block] = STATE(107), [sym_pandoc_div] = STATE(107), [sym_note_definition_fenced_block] = STATE(107), [sym__newline] = STATE(107), [sym__soft_line_break] = STATE(107), + [sym__inline_whitespace] = STATE(753), [aux_sym__section4_repeat1] = STATE(107), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1335), - [anon_sym_COLON] = ACTIONS(1493), - [sym_entity_reference] = ACTIONS(1302), - [sym_numeric_character_reference] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_BANG_LBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1317), - [aux_sym_pandoc_str_token1] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1323), - [aux_sym__prose_punctuation_token1] = ACTIONS(1326), - [sym__line_ending] = ACTIONS(1496), - [sym__soft_line_ending] = ACTIONS(1499), - [sym__block_quote_start] = ACTIONS(1502), - [sym_atx_h1_marker] = ACTIONS(1335), - [sym_atx_h2_marker] = ACTIONS(1335), - [sym_atx_h3_marker] = ACTIONS(1335), - [sym_atx_h4_marker] = ACTIONS(1335), - [sym_atx_h5_marker] = ACTIONS(1505), - [sym_atx_h6_marker] = ACTIONS(1508), - [sym__thematic_break] = ACTIONS(1511), - [sym__list_marker_minus] = ACTIONS(1349), - [sym__list_marker_plus] = ACTIONS(1352), - [sym__list_marker_star] = ACTIONS(1355), - [sym__list_marker_parenthesis] = ACTIONS(1358), - [sym__list_marker_dot] = ACTIONS(1361), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1349), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1355), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1358), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1361), - [sym__list_marker_example] = ACTIONS(1364), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1364), - [sym__fenced_code_block_start_backtick] = ACTIONS(1514), - [sym_minus_metadata] = ACTIONS(1517), - [sym__pipe_table_start] = ACTIONS(1520), - [sym__fenced_div_start] = ACTIONS(1523), - [sym_ref_id_specifier] = ACTIONS(1526), - [sym__code_span_start] = ACTIONS(1382), - [sym__html_comment] = ACTIONS(1302), - [sym__autolink] = ACTIONS(1302), - [sym__highlight_span_start] = ACTIONS(1385), - [sym__insert_span_start] = ACTIONS(1388), - [sym__delete_span_start] = ACTIONS(1391), - [sym__edit_comment_span_start] = ACTIONS(1394), - [sym__single_quote_span_open] = ACTIONS(1397), - [sym__double_quote_span_open] = ACTIONS(1400), - [sym__shortcode_open_escaped] = ACTIONS(1403), - [sym__shortcode_open] = ACTIONS(1406), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1409), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1412), - [sym__cite_author_in_text] = ACTIONS(1415), - [sym__cite_suppress_author] = ACTIONS(1418), - [sym__strikeout_open] = ACTIONS(1421), - [sym__subscript_open] = ACTIONS(1424), - [sym__superscript_open] = ACTIONS(1427), - [sym__inline_note_start_token] = ACTIONS(1430), - [sym__strong_emphasis_open_star] = ACTIONS(1433), - [sym__strong_emphasis_open_underscore] = ACTIONS(1436), - [sym__emphasis_open_star] = ACTIONS(1439), - [sym__emphasis_open_underscore] = ACTIONS(1442), - [sym_inline_note_reference] = ACTIONS(1302), - [sym_html_element] = ACTIONS(1302), - [sym__pandoc_line_break] = ACTIONS(1302), - }, - [STATE(108)] = { - [sym__block_not_section] = STATE(106), - [sym__section5] = STATE(488), - [sym__section6] = STATE(488), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(106), - [sym_pandoc_paragraph] = STATE(106), - [sym_inline_ref_def] = STATE(106), - [sym_caption] = STATE(106), - [sym_pipe_table] = STATE(106), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(106), - [sym_pandoc_list] = STATE(106), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), - [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(106), - [sym_pandoc_div] = STATE(106), - [sym_note_definition_fenced_block] = STATE(106), - [sym__newline] = STATE(106), - [sym__soft_line_break] = STATE(106), - [aux_sym__section4_repeat1] = STATE(106), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1449), - [anon_sym_COLON] = ACTIONS(5), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -35270,17 +36758,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1449), - [sym_atx_h2_marker] = ACTIONS(1449), - [sym_atx_h3_marker] = ACTIONS(1449), - [sym_atx_h4_marker] = ACTIONS(1449), - [sym_atx_h5_marker] = ACTIONS(39), - [sym_atx_h6_marker] = ACTIONS(41), - [sym__thematic_break] = ACTIONS(43), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(1324), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(1324), + [sym_atx_h2_marker] = ACTIONS(1324), + [sym_atx_h3_marker] = ACTIONS(1324), + [sym_atx_h4_marker] = ACTIONS(1324), + [sym_atx_h5_marker] = ACTIONS(129), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -35293,11 +36782,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1529), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(1523), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -35326,75 +36815,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(109)] = { - [sym__block_not_section] = STATE(104), - [sym__section5] = STATE(577), - [sym__section6] = STATE(577), - [sym__atx_heading5] = STATE(116), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(104), - [sym_pandoc_paragraph] = STATE(104), - [sym_inline_ref_def] = STATE(104), - [sym_caption] = STATE(104), - [sym_pipe_table] = STATE(104), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(104), - [sym_pandoc_list] = STATE(104), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(104), - [sym_pandoc_div] = STATE(104), - [sym_note_definition_fenced_block] = STATE(104), - [sym__newline] = STATE(104), - [sym__soft_line_break] = STATE(104), - [aux_sym__section4_repeat1] = STATE(104), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), + [sym__block_not_section] = STATE(109), + [sym__section5] = STATE(365), + [sym__section6] = STATE(365), + [sym__atx_heading5] = STATE(115), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(109), + [sym_pandoc_paragraph] = STATE(109), + [sym_inline_ref_def] = STATE(109), + [sym_caption] = STATE(109), + [sym_pipe_table] = STATE(109), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(109), + [sym_pandoc_list] = STATE(109), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(109), + [sym_pandoc_div] = STATE(109), + [sym_note_definition_fenced_block] = STATE(109), + [sym__newline] = STATE(109), + [sym__soft_line_break] = STATE(109), + [sym__inline_whitespace] = STATE(753), + [aux_sym__section4_repeat1] = STATE(109), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(1525), + [sym_entity_reference] = ACTIONS(1331), + [sym_numeric_character_reference] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_BANG_LBRACK] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1340), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1346), + [aux_sym_pandoc_str_token1] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1352), + [sym__whitespace] = ACTIONS(1528), + [sym__line_ending] = ACTIONS(1531), + [sym__soft_line_ending] = ACTIONS(1534), + [sym__block_close] = ACTIONS(1364), + [sym__block_quote_start] = ACTIONS(1537), + [sym_atx_h1_marker] = ACTIONS(1364), + [sym_atx_h2_marker] = ACTIONS(1364), + [sym_atx_h3_marker] = ACTIONS(1364), + [sym_atx_h4_marker] = ACTIONS(1364), + [sym_atx_h5_marker] = ACTIONS(1540), + [sym_atx_h6_marker] = ACTIONS(1543), + [sym__thematic_break] = ACTIONS(1546), + [sym__list_marker_minus] = ACTIONS(1378), + [sym__list_marker_plus] = ACTIONS(1381), + [sym__list_marker_star] = ACTIONS(1384), + [sym__list_marker_parenthesis] = ACTIONS(1387), + [sym__list_marker_dot] = ACTIONS(1390), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1381), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1387), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1390), + [sym__list_marker_example] = ACTIONS(1393), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1393), + [sym__fenced_code_block_start_backtick] = ACTIONS(1549), + [sym_minus_metadata] = ACTIONS(1552), + [sym__pipe_table_start] = ACTIONS(1555), + [sym__fenced_div_start] = ACTIONS(1558), + [sym_ref_id_specifier] = ACTIONS(1561), + [sym__code_span_start] = ACTIONS(1411), + [sym__html_comment] = ACTIONS(1331), + [sym__autolink] = ACTIONS(1331), + [sym__highlight_span_start] = ACTIONS(1414), + [sym__insert_span_start] = ACTIONS(1417), + [sym__delete_span_start] = ACTIONS(1420), + [sym__edit_comment_span_start] = ACTIONS(1423), + [sym__single_quote_span_open] = ACTIONS(1426), + [sym__double_quote_span_open] = ACTIONS(1429), + [sym__shortcode_open_escaped] = ACTIONS(1432), + [sym__shortcode_open] = ACTIONS(1435), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1438), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1441), + [sym__cite_author_in_text] = ACTIONS(1444), + [sym__cite_suppress_author] = ACTIONS(1447), + [sym__strikeout_open] = ACTIONS(1450), + [sym__subscript_open] = ACTIONS(1453), + [sym__superscript_open] = ACTIONS(1456), + [sym__inline_note_start_token] = ACTIONS(1459), + [sym__strong_emphasis_open_star] = ACTIONS(1462), + [sym__strong_emphasis_open_underscore] = ACTIONS(1465), + [sym__emphasis_open_star] = ACTIONS(1468), + [sym__emphasis_open_underscore] = ACTIONS(1471), + [sym_inline_note_reference] = ACTIONS(1331), + [sym_html_element] = ACTIONS(1331), + [sym__pandoc_line_break] = ACTIONS(1331), + }, + [STATE(110)] = { + [sym__block_not_section] = STATE(111), + [sym__section6] = STATE(265), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(111), + [sym_pandoc_paragraph] = STATE(111), + [sym_inline_ref_def] = STATE(111), + [sym_caption] = STATE(111), + [sym_pipe_table] = STATE(111), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(111), + [sym_pandoc_list] = STATE(111), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), + [sym__list_item_parenthesis] = STATE(142), + [sym__list_item_example] = STATE(143), + [sym_pandoc_code_block] = STATE(111), + [sym_pandoc_div] = STATE(111), + [sym_note_definition_fenced_block] = STATE(111), + [sym__newline] = STATE(111), + [sym__soft_line_break] = STATE(111), + [sym__inline_whitespace] = STATE(755), + [aux_sym__section5_repeat1] = STATE(111), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), + [aux_sym__list_parenthesis_repeat1] = STATE(142), + [aux_sym__list_example_repeat1] = STATE(143), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -35404,18 +37026,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(1449), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(1449), - [sym_atx_h2_marker] = ACTIONS(1449), - [sym_atx_h3_marker] = ACTIONS(1449), - [sym_atx_h4_marker] = ACTIONS(1449), - [sym_atx_h5_marker] = ACTIONS(127), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(1564), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(1564), + [sym_atx_h2_marker] = ACTIONS(1564), + [sym_atx_h3_marker] = ACTIONS(1564), + [sym_atx_h4_marker] = ACTIONS(1564), + [sym_atx_h5_marker] = ACTIONS(1564), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -35428,11 +37050,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(1531), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(1566), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(1564), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -35460,59 +37083,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(110)] = { + [STATE(111)] = { + [sym__block_not_section] = STATE(111), + [sym__section6] = STATE(265), + [sym__atx_heading6] = STATE(121), + [sym_pandoc_horizontal_rule] = STATE(111), + [sym_pandoc_paragraph] = STATE(111), + [sym_inline_ref_def] = STATE(111), + [sym_caption] = STATE(111), + [sym_pipe_table] = STATE(111), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(111), + [sym_pandoc_list] = STATE(111), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), + [sym__list_item_parenthesis] = STATE(142), + [sym__list_item_example] = STATE(143), + [sym_pandoc_code_block] = STATE(111), + [sym_pandoc_div] = STATE(111), + [sym_note_definition_fenced_block] = STATE(111), + [sym__newline] = STATE(111), + [sym__soft_line_break] = STATE(111), + [sym__inline_whitespace] = STATE(755), + [aux_sym__section5_repeat1] = STATE(111), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), + [aux_sym__list_parenthesis_repeat1] = STATE(142), + [aux_sym__list_example_repeat1] = STATE(143), + [anon_sym_COLON] = ACTIONS(1568), + [sym_entity_reference] = ACTIONS(1571), + [sym_numeric_character_reference] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_BANG_LBRACK] = ACTIONS(1577), + [anon_sym_DOLLAR] = ACTIONS(1580), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1586), + [aux_sym_pandoc_str_token1] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1592), + [sym__whitespace] = ACTIONS(1595), + [sym__line_ending] = ACTIONS(1598), + [sym__soft_line_ending] = ACTIONS(1601), + [sym__block_close] = ACTIONS(1604), + [sym__block_quote_start] = ACTIONS(1606), + [sym_atx_h1_marker] = ACTIONS(1604), + [sym_atx_h2_marker] = ACTIONS(1604), + [sym_atx_h3_marker] = ACTIONS(1604), + [sym_atx_h4_marker] = ACTIONS(1604), + [sym_atx_h5_marker] = ACTIONS(1604), + [sym_atx_h6_marker] = ACTIONS(1609), + [sym__thematic_break] = ACTIONS(1612), + [sym__list_marker_minus] = ACTIONS(1615), + [sym__list_marker_plus] = ACTIONS(1618), + [sym__list_marker_star] = ACTIONS(1621), + [sym__list_marker_parenthesis] = ACTIONS(1624), + [sym__list_marker_dot] = ACTIONS(1627), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1615), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1621), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1627), + [sym__list_marker_example] = ACTIONS(1630), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1630), + [sym__fenced_code_block_start_backtick] = ACTIONS(1633), + [sym_minus_metadata] = ACTIONS(1636), + [sym__pipe_table_start] = ACTIONS(1639), + [sym__fenced_div_start] = ACTIONS(1642), + [sym__fenced_div_end] = ACTIONS(1604), + [sym_ref_id_specifier] = ACTIONS(1645), + [sym__code_span_start] = ACTIONS(1648), + [sym__html_comment] = ACTIONS(1571), + [sym__autolink] = ACTIONS(1571), + [sym__highlight_span_start] = ACTIONS(1651), + [sym__insert_span_start] = ACTIONS(1654), + [sym__delete_span_start] = ACTIONS(1657), + [sym__edit_comment_span_start] = ACTIONS(1660), + [sym__single_quote_span_open] = ACTIONS(1663), + [sym__double_quote_span_open] = ACTIONS(1666), + [sym__shortcode_open_escaped] = ACTIONS(1669), + [sym__shortcode_open] = ACTIONS(1672), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1675), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1678), + [sym__cite_author_in_text] = ACTIONS(1681), + [sym__cite_suppress_author] = ACTIONS(1684), + [sym__strikeout_open] = ACTIONS(1687), + [sym__subscript_open] = ACTIONS(1690), + [sym__superscript_open] = ACTIONS(1693), + [sym__inline_note_start_token] = ACTIONS(1696), + [sym__strong_emphasis_open_star] = ACTIONS(1699), + [sym__strong_emphasis_open_underscore] = ACTIONS(1702), + [sym__emphasis_open_star] = ACTIONS(1705), + [sym__emphasis_open_underscore] = ACTIONS(1708), + [sym_inline_note_reference] = ACTIONS(1571), + [sym_html_element] = ACTIONS(1571), + [sym__pandoc_line_break] = ACTIONS(1571), + }, + [STATE(112)] = { [sym__block_not_section] = STATE(110), - [sym__section6] = STATE(383), - [sym__atx_heading6] = STATE(119), + [sym__section6] = STATE(265), + [sym__atx_heading6] = STATE(121), [sym_pandoc_horizontal_rule] = STATE(110), [sym_pandoc_paragraph] = STATE(110), [sym_inline_ref_def] = STATE(110), [sym_caption] = STATE(110), [sym_pipe_table] = STATE(110), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(110), [sym_pandoc_list] = STATE(110), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), [sym_pandoc_code_block] = STATE(110), @@ -35520,148 +37276,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_note_definition_fenced_block] = STATE(110), [sym__newline] = STATE(110), [sym__soft_line_break] = STATE(110), + [sym__inline_whitespace] = STATE(755), [aux_sym__section5_repeat1] = STATE(110), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), - [aux_sym__list_parenthesis_repeat1] = STATE(142), - [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(1533), - [sym_entity_reference] = ACTIONS(1536), - [sym_numeric_character_reference] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_BANG_LBRACK] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1551), - [aux_sym_pandoc_str_token1] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1557), - [aux_sym__prose_punctuation_token1] = ACTIONS(1560), - [sym__line_ending] = ACTIONS(1563), - [sym__soft_line_ending] = ACTIONS(1566), - [sym__block_close] = ACTIONS(1569), - [sym__block_quote_start] = ACTIONS(1571), - [sym_atx_h1_marker] = ACTIONS(1569), - [sym_atx_h2_marker] = ACTIONS(1569), - [sym_atx_h3_marker] = ACTIONS(1569), - [sym_atx_h4_marker] = ACTIONS(1569), - [sym_atx_h5_marker] = ACTIONS(1569), - [sym_atx_h6_marker] = ACTIONS(1574), - [sym__thematic_break] = ACTIONS(1577), - [sym__list_marker_minus] = ACTIONS(1580), - [sym__list_marker_plus] = ACTIONS(1583), - [sym__list_marker_star] = ACTIONS(1586), - [sym__list_marker_parenthesis] = ACTIONS(1589), - [sym__list_marker_dot] = ACTIONS(1592), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1580), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1583), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1586), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1589), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1592), - [sym__list_marker_example] = ACTIONS(1595), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1595), - [sym__fenced_code_block_start_backtick] = ACTIONS(1598), - [sym_minus_metadata] = ACTIONS(1601), - [sym__pipe_table_start] = ACTIONS(1604), - [sym__fenced_div_start] = ACTIONS(1607), - [sym__fenced_div_end] = ACTIONS(1569), - [sym_ref_id_specifier] = ACTIONS(1610), - [sym__code_span_start] = ACTIONS(1613), - [sym__html_comment] = ACTIONS(1536), - [sym__autolink] = ACTIONS(1536), - [sym__highlight_span_start] = ACTIONS(1616), - [sym__insert_span_start] = ACTIONS(1619), - [sym__delete_span_start] = ACTIONS(1622), - [sym__edit_comment_span_start] = ACTIONS(1625), - [sym__single_quote_span_open] = ACTIONS(1628), - [sym__double_quote_span_open] = ACTIONS(1631), - [sym__shortcode_open_escaped] = ACTIONS(1634), - [sym__shortcode_open] = ACTIONS(1637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1640), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1643), - [sym__cite_author_in_text] = ACTIONS(1646), - [sym__cite_suppress_author] = ACTIONS(1649), - [sym__strikeout_open] = ACTIONS(1652), - [sym__subscript_open] = ACTIONS(1655), - [sym__superscript_open] = ACTIONS(1658), - [sym__inline_note_start_token] = ACTIONS(1661), - [sym__strong_emphasis_open_star] = ACTIONS(1664), - [sym__strong_emphasis_open_underscore] = ACTIONS(1667), - [sym__emphasis_open_star] = ACTIONS(1670), - [sym__emphasis_open_underscore] = ACTIONS(1673), - [sym_inline_note_reference] = ACTIONS(1536), - [sym_html_element] = ACTIONS(1536), - [sym__pandoc_line_break] = ACTIONS(1536), - }, - [STATE(111)] = { - [sym__block_not_section] = STATE(112), - [sym__section6] = STATE(383), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(112), - [sym_pandoc_paragraph] = STATE(112), - [sym_inline_ref_def] = STATE(112), - [sym_caption] = STATE(112), - [sym_pipe_table] = STATE(112), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(112), - [sym_pandoc_list] = STATE(112), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), - [sym__list_item_parenthesis] = STATE(142), - [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(112), - [sym_pandoc_div] = STATE(112), - [sym_note_definition_fenced_block] = STATE(112), - [sym__newline] = STATE(112), - [sym__soft_line_break] = STATE(112), - [aux_sym__section5_repeat1] = STATE(112), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -35671,18 +37294,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(1676), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(1676), - [sym_atx_h2_marker] = ACTIONS(1676), - [sym_atx_h3_marker] = ACTIONS(1676), - [sym_atx_h4_marker] = ACTIONS(1676), - [sym_atx_h5_marker] = ACTIONS(1676), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(1711), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(1711), + [sym_atx_h2_marker] = ACTIONS(1711), + [sym_atx_h3_marker] = ACTIONS(1711), + [sym_atx_h4_marker] = ACTIONS(1711), + [sym_atx_h5_marker] = ACTIONS(1711), + [sym_atx_h6_marker] = ACTIONS(209), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -35695,12 +37318,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(1678), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(1676), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(1713), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(1711), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -35728,74 +37351,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(112)] = { - [sym__block_not_section] = STATE(110), - [sym__section6] = STATE(383), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(110), - [sym_pandoc_paragraph] = STATE(110), - [sym_inline_ref_def] = STATE(110), - [sym_caption] = STATE(110), - [sym_pipe_table] = STATE(110), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(110), - [sym_pandoc_list] = STATE(110), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), - [sym__list_item_parenthesis] = STATE(142), - [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(110), - [sym_pandoc_div] = STATE(110), - [sym_note_definition_fenced_block] = STATE(110), - [sym__newline] = STATE(110), - [sym__soft_line_break] = STATE(110), - [aux_sym__section5_repeat1] = STATE(110), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), - [aux_sym__list_parenthesis_repeat1] = STATE(142), - [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [STATE(113)] = { + [sym__block_not_section] = STATE(113), + [sym__section6] = STATE(543), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(113), + [sym_pandoc_paragraph] = STATE(113), + [sym_inline_ref_def] = STATE(113), + [sym_caption] = STATE(113), + [sym_pipe_table] = STATE(113), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(113), + [sym_pandoc_list] = STATE(113), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), + [sym_list_marker_plus] = STATE(3), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(113), + [sym_pandoc_div] = STATE(113), + [sym_note_definition_fenced_block] = STATE(113), + [sym__newline] = STATE(113), + [sym__soft_line_break] = STATE(113), + [sym__inline_whitespace] = STATE(765), + [aux_sym__section5_repeat1] = STATE(113), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(1604), + [anon_sym_COLON] = ACTIONS(1715), + [sym_entity_reference] = ACTIONS(1571), + [sym_numeric_character_reference] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_BANG_LBRACK] = ACTIONS(1577), + [anon_sym_DOLLAR] = ACTIONS(1580), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1586), + [aux_sym_pandoc_str_token1] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1592), + [sym__whitespace] = ACTIONS(1718), + [sym__line_ending] = ACTIONS(1721), + [sym__soft_line_ending] = ACTIONS(1724), + [sym__block_quote_start] = ACTIONS(1727), + [sym_atx_h1_marker] = ACTIONS(1604), + [sym_atx_h2_marker] = ACTIONS(1604), + [sym_atx_h3_marker] = ACTIONS(1604), + [sym_atx_h4_marker] = ACTIONS(1604), + [sym_atx_h5_marker] = ACTIONS(1604), + [sym_atx_h6_marker] = ACTIONS(1730), + [sym__thematic_break] = ACTIONS(1733), + [sym__list_marker_minus] = ACTIONS(1615), + [sym__list_marker_plus] = ACTIONS(1618), + [sym__list_marker_star] = ACTIONS(1621), + [sym__list_marker_parenthesis] = ACTIONS(1624), + [sym__list_marker_dot] = ACTIONS(1627), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1615), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1621), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1627), + [sym__list_marker_example] = ACTIONS(1630), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1630), + [sym__fenced_code_block_start_backtick] = ACTIONS(1736), + [sym_minus_metadata] = ACTIONS(1739), + [sym__pipe_table_start] = ACTIONS(1742), + [sym__fenced_div_start] = ACTIONS(1745), + [sym_ref_id_specifier] = ACTIONS(1748), + [sym__code_span_start] = ACTIONS(1648), + [sym__html_comment] = ACTIONS(1571), + [sym__autolink] = ACTIONS(1571), + [sym__highlight_span_start] = ACTIONS(1651), + [sym__insert_span_start] = ACTIONS(1654), + [sym__delete_span_start] = ACTIONS(1657), + [sym__edit_comment_span_start] = ACTIONS(1660), + [sym__single_quote_span_open] = ACTIONS(1663), + [sym__double_quote_span_open] = ACTIONS(1666), + [sym__shortcode_open_escaped] = ACTIONS(1669), + [sym__shortcode_open] = ACTIONS(1672), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1675), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1678), + [sym__cite_author_in_text] = ACTIONS(1681), + [sym__cite_suppress_author] = ACTIONS(1684), + [sym__strikeout_open] = ACTIONS(1687), + [sym__subscript_open] = ACTIONS(1690), + [sym__superscript_open] = ACTIONS(1693), + [sym__inline_note_start_token] = ACTIONS(1696), + [sym__strong_emphasis_open_star] = ACTIONS(1699), + [sym__strong_emphasis_open_underscore] = ACTIONS(1702), + [sym__emphasis_open_star] = ACTIONS(1705), + [sym__emphasis_open_underscore] = ACTIONS(1708), + [sym_inline_note_reference] = ACTIONS(1571), + [sym_html_element] = ACTIONS(1571), + [sym__pandoc_line_break] = ACTIONS(1571), + }, + [STATE(114)] = { + [sym__block_not_section] = STATE(113), + [sym__section6] = STATE(543), + [sym__atx_heading6] = STATE(124), + [sym_pandoc_horizontal_rule] = STATE(113), + [sym_pandoc_paragraph] = STATE(113), + [sym_inline_ref_def] = STATE(113), + [sym_caption] = STATE(113), + [sym_pipe_table] = STATE(113), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(113), + [sym_pandoc_list] = STATE(113), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), + [sym_list_marker_plus] = STATE(3), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(113), + [sym_pandoc_div] = STATE(113), + [sym_note_definition_fenced_block] = STATE(113), + [sym__newline] = STATE(113), + [sym__soft_line_break] = STATE(113), + [sym__inline_whitespace] = STATE(765), + [aux_sym__section5_repeat1] = STATE(113), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(1564), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -35805,18 +37562,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(1680), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(1680), - [sym_atx_h2_marker] = ACTIONS(1680), - [sym_atx_h3_marker] = ACTIONS(1680), - [sym_atx_h4_marker] = ACTIONS(1680), - [sym_atx_h5_marker] = ACTIONS(1680), - [sym_atx_h6_marker] = ACTIONS(199), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(1564), + [sym_atx_h2_marker] = ACTIONS(1564), + [sym_atx_h3_marker] = ACTIONS(1564), + [sym_atx_h4_marker] = ACTIONS(1564), + [sym_atx_h5_marker] = ACTIONS(1564), + [sym_atx_h6_marker] = ACTIONS(41), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -35829,12 +37585,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(1682), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(1680), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym_minus_metadata] = ACTIONS(1751), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -35862,73 +37617,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(113)] = { - [sym__block_not_section] = STATE(118), - [sym__section6] = STATE(588), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(118), - [sym_pandoc_paragraph] = STATE(118), - [sym_inline_ref_def] = STATE(118), - [sym_caption] = STATE(118), - [sym_pipe_table] = STATE(118), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(118), - [sym_pandoc_list] = STATE(118), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(118), - [sym_pandoc_div] = STATE(118), - [sym_note_definition_fenced_block] = STATE(118), - [sym__newline] = STATE(118), - [sym__soft_line_break] = STATE(118), - [aux_sym__section5_repeat1] = STATE(118), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), + [STATE(115)] = { + [sym__block_not_section] = STATE(117), + [sym__section6] = STATE(535), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(117), + [sym_pandoc_paragraph] = STATE(117), + [sym_inline_ref_def] = STATE(117), + [sym_caption] = STATE(117), + [sym_pipe_table] = STATE(117), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(117), + [sym_pandoc_list] = STATE(117), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(117), + [sym_pandoc_div] = STATE(117), + [sym_note_definition_fenced_block] = STATE(117), + [sym__newline] = STATE(117), + [sym__soft_line_break] = STATE(117), + [sym__inline_whitespace] = STATE(753), + [aux_sym__section5_repeat1] = STATE(117), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -35939,18 +37694,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(1680), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(1680), - [sym_atx_h2_marker] = ACTIONS(1680), - [sym_atx_h3_marker] = ACTIONS(1680), - [sym_atx_h4_marker] = ACTIONS(1680), - [sym_atx_h5_marker] = ACTIONS(1680), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(1711), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(1711), + [sym_atx_h2_marker] = ACTIONS(1711), + [sym_atx_h3_marker] = ACTIONS(1711), + [sym_atx_h4_marker] = ACTIONS(1711), + [sym_atx_h5_marker] = ACTIONS(1711), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -35963,11 +37718,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(1684), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(1753), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -35995,207 +37750,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(114)] = { - [sym__block_not_section] = STATE(114), - [sym__section6] = STATE(575), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(114), - [sym_pandoc_paragraph] = STATE(114), - [sym_inline_ref_def] = STATE(114), - [sym_caption] = STATE(114), - [sym_pipe_table] = STATE(114), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(114), - [sym_pandoc_list] = STATE(114), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), - [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(114), - [sym_pandoc_div] = STATE(114), - [sym_note_definition_fenced_block] = STATE(114), - [sym__newline] = STATE(114), - [sym__soft_line_break] = STATE(114), - [aux_sym__section5_repeat1] = STATE(114), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1569), - [anon_sym_COLON] = ACTIONS(1686), - [sym_entity_reference] = ACTIONS(1536), - [sym_numeric_character_reference] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_BANG_LBRACK] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1551), - [aux_sym_pandoc_str_token1] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1557), - [aux_sym__prose_punctuation_token1] = ACTIONS(1560), - [sym__line_ending] = ACTIONS(1689), - [sym__soft_line_ending] = ACTIONS(1692), - [sym__block_quote_start] = ACTIONS(1695), - [sym_atx_h1_marker] = ACTIONS(1569), - [sym_atx_h2_marker] = ACTIONS(1569), - [sym_atx_h3_marker] = ACTIONS(1569), - [sym_atx_h4_marker] = ACTIONS(1569), - [sym_atx_h5_marker] = ACTIONS(1569), - [sym_atx_h6_marker] = ACTIONS(1698), - [sym__thematic_break] = ACTIONS(1701), - [sym__list_marker_minus] = ACTIONS(1580), - [sym__list_marker_plus] = ACTIONS(1583), - [sym__list_marker_star] = ACTIONS(1586), - [sym__list_marker_parenthesis] = ACTIONS(1589), - [sym__list_marker_dot] = ACTIONS(1592), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1580), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1583), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1586), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1589), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1592), - [sym__list_marker_example] = ACTIONS(1595), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1595), - [sym__fenced_code_block_start_backtick] = ACTIONS(1704), - [sym_minus_metadata] = ACTIONS(1707), - [sym__pipe_table_start] = ACTIONS(1710), - [sym__fenced_div_start] = ACTIONS(1713), - [sym_ref_id_specifier] = ACTIONS(1716), - [sym__code_span_start] = ACTIONS(1613), - [sym__html_comment] = ACTIONS(1536), - [sym__autolink] = ACTIONS(1536), - [sym__highlight_span_start] = ACTIONS(1616), - [sym__insert_span_start] = ACTIONS(1619), - [sym__delete_span_start] = ACTIONS(1622), - [sym__edit_comment_span_start] = ACTIONS(1625), - [sym__single_quote_span_open] = ACTIONS(1628), - [sym__double_quote_span_open] = ACTIONS(1631), - [sym__shortcode_open_escaped] = ACTIONS(1634), - [sym__shortcode_open] = ACTIONS(1637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1640), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1643), - [sym__cite_author_in_text] = ACTIONS(1646), - [sym__cite_suppress_author] = ACTIONS(1649), - [sym__strikeout_open] = ACTIONS(1652), - [sym__subscript_open] = ACTIONS(1655), - [sym__superscript_open] = ACTIONS(1658), - [sym__inline_note_start_token] = ACTIONS(1661), - [sym__strong_emphasis_open_star] = ACTIONS(1664), - [sym__strong_emphasis_open_underscore] = ACTIONS(1667), - [sym__emphasis_open_star] = ACTIONS(1670), - [sym__emphasis_open_underscore] = ACTIONS(1673), - [sym_inline_note_reference] = ACTIONS(1536), - [sym_html_element] = ACTIONS(1536), - [sym__pandoc_line_break] = ACTIONS(1536), - }, - [STATE(115)] = { + [STATE(116)] = { [sym__block_not_section] = STATE(114), - [sym__section6] = STATE(575), - [sym__atx_heading6] = STATE(126), + [sym__section6] = STATE(543), + [sym__atx_heading6] = STATE(124), [sym_pandoc_horizontal_rule] = STATE(114), [sym_pandoc_paragraph] = STATE(114), [sym_inline_ref_def] = STATE(114), [sym_caption] = STATE(114), [sym_pipe_table] = STATE(114), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(114), [sym_pandoc_list] = STATE(114), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), [sym_pandoc_code_block] = STATE(114), [sym_pandoc_div] = STATE(114), [sym_note_definition_fenced_block] = STATE(114), [sym__newline] = STATE(114), [sym__soft_line_break] = STATE(114), + [sym__inline_whitespace] = STATE(765), [aux_sym__section5_repeat1] = STATE(114), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1680), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(1711), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -36206,15 +37828,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), + [sym__whitespace] = ACTIONS(23), [sym__line_ending] = ACTIONS(25), [sym__soft_line_ending] = ACTIONS(27), [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1680), - [sym_atx_h2_marker] = ACTIONS(1680), - [sym_atx_h3_marker] = ACTIONS(1680), - [sym_atx_h4_marker] = ACTIONS(1680), - [sym_atx_h5_marker] = ACTIONS(1680), + [sym_atx_h1_marker] = ACTIONS(1711), + [sym_atx_h2_marker] = ACTIONS(1711), + [sym_atx_h3_marker] = ACTIONS(1711), + [sym_atx_h4_marker] = ACTIONS(1711), + [sym_atx_h5_marker] = ACTIONS(1711), [sym_atx_h6_marker] = ACTIONS(41), [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), @@ -36230,7 +37852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1719), + [sym_minus_metadata] = ACTIONS(1755), [sym__pipe_table_start] = ACTIONS(61), [sym__fenced_div_start] = ACTIONS(63), [sym_ref_id_specifier] = ACTIONS(65), @@ -36261,208 +37883,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(116)] = { - [sym__block_not_section] = STATE(113), - [sym__section6] = STATE(588), - [sym__atx_heading6] = STATE(125), - [sym_pandoc_horizontal_rule] = STATE(113), - [sym_pandoc_paragraph] = STATE(113), - [sym_inline_ref_def] = STATE(113), - [sym_caption] = STATE(113), - [sym_pipe_table] = STATE(113), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(113), - [sym_pandoc_list] = STATE(113), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(113), - [sym_pandoc_div] = STATE(113), - [sym_note_definition_fenced_block] = STATE(113), - [sym__newline] = STATE(113), - [sym__soft_line_break] = STATE(113), - [aux_sym__section5_repeat1] = STATE(113), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(1676), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(1676), - [sym_atx_h2_marker] = ACTIONS(1676), - [sym_atx_h3_marker] = ACTIONS(1676), - [sym_atx_h4_marker] = ACTIONS(1676), - [sym_atx_h5_marker] = ACTIONS(1676), - [sym_atx_h6_marker] = ACTIONS(129), - [sym__thematic_break] = ACTIONS(131), - [sym__list_marker_minus] = ACTIONS(45), - [sym__list_marker_plus] = ACTIONS(47), - [sym__list_marker_star] = ACTIONS(49), - [sym__list_marker_parenthesis] = ACTIONS(51), - [sym__list_marker_dot] = ACTIONS(53), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_star_dont_interrupt] = ACTIONS(49), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), - [sym__list_marker_example] = ACTIONS(55), - [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(1721), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), - }, [STATE(117)] = { - [sym__block_not_section] = STATE(115), - [sym__section6] = STATE(575), - [sym__atx_heading6] = STATE(126), - [sym_pandoc_horizontal_rule] = STATE(115), - [sym_pandoc_paragraph] = STATE(115), - [sym_inline_ref_def] = STATE(115), - [sym_caption] = STATE(115), - [sym_pipe_table] = STATE(115), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(115), - [sym_pandoc_list] = STATE(115), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), - [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(115), - [sym_pandoc_div] = STATE(115), - [sym_note_definition_fenced_block] = STATE(115), - [sym__newline] = STATE(115), - [sym__soft_line_break] = STATE(115), - [aux_sym__section5_repeat1] = STATE(115), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1676), - [anon_sym_COLON] = ACTIONS(5), + [sym__block_not_section] = STATE(118), + [sym__section6] = STATE(535), + [sym__atx_heading6] = STATE(127), + [sym_pandoc_horizontal_rule] = STATE(118), + [sym_pandoc_paragraph] = STATE(118), + [sym_inline_ref_def] = STATE(118), + [sym_caption] = STATE(118), + [sym_pipe_table] = STATE(118), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(118), + [sym_pandoc_list] = STATE(118), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(118), + [sym_pandoc_div] = STATE(118), + [sym_note_definition_fenced_block] = STATE(118), + [sym__newline] = STATE(118), + [sym__soft_line_break] = STATE(118), + [sym__inline_whitespace] = STATE(753), + [aux_sym__section5_repeat1] = STATE(118), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -36472,17 +37960,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1676), - [sym_atx_h2_marker] = ACTIONS(1676), - [sym_atx_h3_marker] = ACTIONS(1676), - [sym_atx_h4_marker] = ACTIONS(1676), - [sym_atx_h5_marker] = ACTIONS(1676), - [sym_atx_h6_marker] = ACTIONS(41), - [sym__thematic_break] = ACTIONS(43), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(1564), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(1564), + [sym_atx_h2_marker] = ACTIONS(1564), + [sym_atx_h3_marker] = ACTIONS(1564), + [sym_atx_h4_marker] = ACTIONS(1564), + [sym_atx_h5_marker] = ACTIONS(1564), + [sym_atx_h6_marker] = ACTIONS(131), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -36495,11 +37984,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(1723), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(1757), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -36529,203 +38018,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(118)] = { [sym__block_not_section] = STATE(118), - [sym__section6] = STATE(588), - [sym__atx_heading6] = STATE(125), + [sym__section6] = STATE(535), + [sym__atx_heading6] = STATE(127), [sym_pandoc_horizontal_rule] = STATE(118), [sym_pandoc_paragraph] = STATE(118), [sym_inline_ref_def] = STATE(118), [sym_caption] = STATE(118), [sym_pipe_table] = STATE(118), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), [sym_pandoc_block_quote] = STATE(118), [sym_pandoc_list] = STATE(118), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), [sym_pandoc_code_block] = STATE(118), [sym_pandoc_div] = STATE(118), [sym_note_definition_fenced_block] = STATE(118), [sym__newline] = STATE(118), [sym__soft_line_break] = STATE(118), + [sym__inline_whitespace] = STATE(753), [aux_sym__section5_repeat1] = STATE(118), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(1725), - [sym_entity_reference] = ACTIONS(1536), - [sym_numeric_character_reference] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_BANG_LBRACK] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1545), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1551), - [aux_sym_pandoc_str_token1] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1557), - [aux_sym__prose_punctuation_token1] = ACTIONS(1560), - [sym__line_ending] = ACTIONS(1728), - [sym__soft_line_ending] = ACTIONS(1731), - [sym__block_close] = ACTIONS(1569), - [sym__block_quote_start] = ACTIONS(1734), - [sym_atx_h1_marker] = ACTIONS(1569), - [sym_atx_h2_marker] = ACTIONS(1569), - [sym_atx_h3_marker] = ACTIONS(1569), - [sym_atx_h4_marker] = ACTIONS(1569), - [sym_atx_h5_marker] = ACTIONS(1569), - [sym_atx_h6_marker] = ACTIONS(1737), - [sym__thematic_break] = ACTIONS(1740), - [sym__list_marker_minus] = ACTIONS(1580), - [sym__list_marker_plus] = ACTIONS(1583), - [sym__list_marker_star] = ACTIONS(1586), - [sym__list_marker_parenthesis] = ACTIONS(1589), - [sym__list_marker_dot] = ACTIONS(1592), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1580), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1583), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1586), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1589), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1592), - [sym__list_marker_example] = ACTIONS(1595), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1595), - [sym__fenced_code_block_start_backtick] = ACTIONS(1743), - [sym_minus_metadata] = ACTIONS(1746), - [sym__pipe_table_start] = ACTIONS(1749), - [sym__fenced_div_start] = ACTIONS(1752), - [sym_ref_id_specifier] = ACTIONS(1755), - [sym__code_span_start] = ACTIONS(1613), - [sym__html_comment] = ACTIONS(1536), - [sym__autolink] = ACTIONS(1536), - [sym__highlight_span_start] = ACTIONS(1616), - [sym__insert_span_start] = ACTIONS(1619), - [sym__delete_span_start] = ACTIONS(1622), - [sym__edit_comment_span_start] = ACTIONS(1625), - [sym__single_quote_span_open] = ACTIONS(1628), - [sym__double_quote_span_open] = ACTIONS(1631), - [sym__shortcode_open_escaped] = ACTIONS(1634), - [sym__shortcode_open] = ACTIONS(1637), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1640), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1643), - [sym__cite_author_in_text] = ACTIONS(1646), - [sym__cite_suppress_author] = ACTIONS(1649), - [sym__strikeout_open] = ACTIONS(1652), - [sym__subscript_open] = ACTIONS(1655), - [sym__superscript_open] = ACTIONS(1658), - [sym__inline_note_start_token] = ACTIONS(1661), - [sym__strong_emphasis_open_star] = ACTIONS(1664), - [sym__strong_emphasis_open_underscore] = ACTIONS(1667), - [sym__emphasis_open_star] = ACTIONS(1670), - [sym__emphasis_open_underscore] = ACTIONS(1673), - [sym_inline_note_reference] = ACTIONS(1536), - [sym_html_element] = ACTIONS(1536), - [sym__pandoc_line_break] = ACTIONS(1536), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(1759), + [sym_entity_reference] = ACTIONS(1571), + [sym_numeric_character_reference] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_BANG_LBRACK] = ACTIONS(1577), + [anon_sym_DOLLAR] = ACTIONS(1580), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1586), + [aux_sym_pandoc_str_token1] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1592), + [sym__whitespace] = ACTIONS(1762), + [sym__line_ending] = ACTIONS(1765), + [sym__soft_line_ending] = ACTIONS(1768), + [sym__block_close] = ACTIONS(1604), + [sym__block_quote_start] = ACTIONS(1771), + [sym_atx_h1_marker] = ACTIONS(1604), + [sym_atx_h2_marker] = ACTIONS(1604), + [sym_atx_h3_marker] = ACTIONS(1604), + [sym_atx_h4_marker] = ACTIONS(1604), + [sym_atx_h5_marker] = ACTIONS(1604), + [sym_atx_h6_marker] = ACTIONS(1774), + [sym__thematic_break] = ACTIONS(1777), + [sym__list_marker_minus] = ACTIONS(1615), + [sym__list_marker_plus] = ACTIONS(1618), + [sym__list_marker_star] = ACTIONS(1621), + [sym__list_marker_parenthesis] = ACTIONS(1624), + [sym__list_marker_dot] = ACTIONS(1627), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1615), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1621), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1627), + [sym__list_marker_example] = ACTIONS(1630), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1630), + [sym__fenced_code_block_start_backtick] = ACTIONS(1780), + [sym_minus_metadata] = ACTIONS(1783), + [sym__pipe_table_start] = ACTIONS(1786), + [sym__fenced_div_start] = ACTIONS(1789), + [sym_ref_id_specifier] = ACTIONS(1792), + [sym__code_span_start] = ACTIONS(1648), + [sym__html_comment] = ACTIONS(1571), + [sym__autolink] = ACTIONS(1571), + [sym__highlight_span_start] = ACTIONS(1651), + [sym__insert_span_start] = ACTIONS(1654), + [sym__delete_span_start] = ACTIONS(1657), + [sym__edit_comment_span_start] = ACTIONS(1660), + [sym__single_quote_span_open] = ACTIONS(1663), + [sym__double_quote_span_open] = ACTIONS(1666), + [sym__shortcode_open_escaped] = ACTIONS(1669), + [sym__shortcode_open] = ACTIONS(1672), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1675), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1678), + [sym__cite_author_in_text] = ACTIONS(1681), + [sym__cite_suppress_author] = ACTIONS(1684), + [sym__strikeout_open] = ACTIONS(1687), + [sym__subscript_open] = ACTIONS(1690), + [sym__superscript_open] = ACTIONS(1693), + [sym__inline_note_start_token] = ACTIONS(1696), + [sym__strong_emphasis_open_star] = ACTIONS(1699), + [sym__strong_emphasis_open_underscore] = ACTIONS(1702), + [sym__emphasis_open_star] = ACTIONS(1705), + [sym__emphasis_open_underscore] = ACTIONS(1708), + [sym_inline_note_reference] = ACTIONS(1571), + [sym_html_element] = ACTIONS(1571), + [sym__pandoc_line_break] = ACTIONS(1571), }, [STATE(119)] = { - [sym__block_not_section] = STATE(351), - [sym_pandoc_horizontal_rule] = STATE(351), - [sym_pandoc_paragraph] = STATE(351), - [sym_inline_ref_def] = STATE(351), - [sym_caption] = STATE(351), - [sym_pipe_table] = STATE(351), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(351), - [sym_pandoc_list] = STATE(351), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__block_not_section] = STATE(250), + [sym_pandoc_horizontal_rule] = STATE(250), + [sym_pandoc_paragraph] = STATE(250), + [sym_inline_ref_def] = STATE(250), + [sym_caption] = STATE(250), + [sym_pipe_table] = STATE(250), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(250), + [sym_pandoc_list] = STATE(250), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(351), - [sym_pandoc_div] = STATE(351), - [sym_note_definition_fenced_block] = STATE(351), - [sym__newline] = STATE(351), - [sym__soft_line_break] = STATE(351), + [sym_pandoc_code_block] = STATE(250), + [sym_pandoc_div] = STATE(250), + [sym_note_definition_fenced_block] = STATE(250), + [sym__newline] = STATE(250), + [sym__soft_line_break] = STATE(250), + [sym__inline_whitespace] = STATE(755), [aux_sym_document_repeat1] = STATE(120), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -36735,18 +38224,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(1758), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(1758), - [sym_atx_h2_marker] = ACTIONS(1758), - [sym_atx_h3_marker] = ACTIONS(1758), - [sym_atx_h4_marker] = ACTIONS(1758), - [sym_atx_h5_marker] = ACTIONS(1758), - [sym_atx_h6_marker] = ACTIONS(1758), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(1795), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(1795), + [sym_atx_h2_marker] = ACTIONS(1795), + [sym_atx_h3_marker] = ACTIONS(1795), + [sym_atx_h4_marker] = ACTIONS(1795), + [sym_atx_h5_marker] = ACTIONS(1795), + [sym_atx_h6_marker] = ACTIONS(1795), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -36759,12 +38248,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(1760), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(1758), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(1797), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(1795), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -36793,71 +38282,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(120)] = { - [sym__block_not_section] = STATE(351), - [sym_pandoc_horizontal_rule] = STATE(351), - [sym_pandoc_paragraph] = STATE(351), - [sym_inline_ref_def] = STATE(351), - [sym_caption] = STATE(351), - [sym_pipe_table] = STATE(351), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(351), - [sym_pandoc_list] = STATE(351), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), - [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), + [sym__block_not_section] = STATE(250), + [sym_pandoc_horizontal_rule] = STATE(250), + [sym_pandoc_paragraph] = STATE(250), + [sym_inline_ref_def] = STATE(250), + [sym_caption] = STATE(250), + [sym_pipe_table] = STATE(250), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(250), + [sym_pandoc_list] = STATE(250), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), [sym__list_item_parenthesis] = STATE(142), [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(351), - [sym_pandoc_div] = STATE(351), - [sym_note_definition_fenced_block] = STATE(351), - [sym__newline] = STATE(351), - [sym__soft_line_break] = STATE(351), - [aux_sym_document_repeat1] = STATE(121), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), + [sym_pandoc_code_block] = STATE(250), + [sym_pandoc_div] = STATE(250), + [sym_note_definition_fenced_block] = STATE(250), + [sym__newline] = STATE(250), + [sym__soft_line_break] = STATE(250), + [sym__inline_whitespace] = STATE(755), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), + [aux_sym__list_parenthesis_repeat1] = STATE(142), + [aux_sym__list_example_repeat1] = STATE(143), + [anon_sym_COLON] = ACTIONS(1799), + [sym_entity_reference] = ACTIONS(1802), + [sym_numeric_character_reference] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_BANG_LBRACK] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1817), + [aux_sym_pandoc_str_token1] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1823), + [sym__whitespace] = ACTIONS(1826), + [sym__line_ending] = ACTIONS(1829), + [sym__soft_line_ending] = ACTIONS(1832), + [sym__block_close] = ACTIONS(1835), + [sym__block_quote_start] = ACTIONS(1837), + [sym_atx_h1_marker] = ACTIONS(1835), + [sym_atx_h2_marker] = ACTIONS(1835), + [sym_atx_h3_marker] = ACTIONS(1835), + [sym_atx_h4_marker] = ACTIONS(1835), + [sym_atx_h5_marker] = ACTIONS(1835), + [sym_atx_h6_marker] = ACTIONS(1835), + [sym__thematic_break] = ACTIONS(1840), + [sym__list_marker_minus] = ACTIONS(1843), + [sym__list_marker_plus] = ACTIONS(1846), + [sym__list_marker_star] = ACTIONS(1849), + [sym__list_marker_parenthesis] = ACTIONS(1852), + [sym__list_marker_dot] = ACTIONS(1855), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1843), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1846), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1855), + [sym__list_marker_example] = ACTIONS(1858), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1858), + [sym__fenced_code_block_start_backtick] = ACTIONS(1861), + [sym_minus_metadata] = ACTIONS(1864), + [sym__pipe_table_start] = ACTIONS(1867), + [sym__fenced_div_start] = ACTIONS(1870), + [sym__fenced_div_end] = ACTIONS(1835), + [sym_ref_id_specifier] = ACTIONS(1873), + [sym__code_span_start] = ACTIONS(1876), + [sym__html_comment] = ACTIONS(1802), + [sym__autolink] = ACTIONS(1802), + [sym__highlight_span_start] = ACTIONS(1879), + [sym__insert_span_start] = ACTIONS(1882), + [sym__delete_span_start] = ACTIONS(1885), + [sym__edit_comment_span_start] = ACTIONS(1888), + [sym__single_quote_span_open] = ACTIONS(1891), + [sym__double_quote_span_open] = ACTIONS(1894), + [sym__shortcode_open_escaped] = ACTIONS(1897), + [sym__shortcode_open] = ACTIONS(1900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1903), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1906), + [sym__cite_author_in_text] = ACTIONS(1909), + [sym__cite_suppress_author] = ACTIONS(1912), + [sym__strikeout_open] = ACTIONS(1915), + [sym__subscript_open] = ACTIONS(1918), + [sym__superscript_open] = ACTIONS(1921), + [sym__inline_note_start_token] = ACTIONS(1924), + [sym__strong_emphasis_open_star] = ACTIONS(1927), + [sym__strong_emphasis_open_underscore] = ACTIONS(1930), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1936), + [sym_inline_note_reference] = ACTIONS(1802), + [sym_html_element] = ACTIONS(1802), + [sym__pandoc_line_break] = ACTIONS(1802), + }, + [STATE(121)] = { + [sym__block_not_section] = STATE(250), + [sym_pandoc_horizontal_rule] = STATE(250), + [sym_pandoc_paragraph] = STATE(250), + [sym_inline_ref_def] = STATE(250), + [sym_caption] = STATE(250), + [sym_pipe_table] = STATE(250), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(250), + [sym_pandoc_list] = STATE(250), + [sym__list_plus] = STATE(253), + [sym__list_minus] = STATE(253), + [sym__list_star] = STATE(253), + [sym__list_dot] = STATE(253), + [sym__list_parenthesis] = STATE(253), + [sym__list_example] = STATE(253), + [sym_list_marker_plus] = STATE(13), + [sym_list_marker_minus] = STATE(14), + [sym_list_marker_star] = STATE(15), + [sym_list_marker_dot] = STATE(16), + [sym_list_marker_parenthesis] = STATE(17), + [sym_list_marker_example] = STATE(18), + [sym__list_item_plus] = STATE(134), + [sym__list_item_minus] = STATE(140), + [sym__list_item_star] = STATE(141), + [sym__list_item_dot] = STATE(144), + [sym__list_item_parenthesis] = STATE(142), + [sym__list_item_example] = STATE(143), + [sym_pandoc_code_block] = STATE(250), + [sym_pandoc_div] = STATE(250), + [sym_note_definition_fenced_block] = STATE(250), + [sym__newline] = STATE(250), + [sym__soft_line_break] = STATE(250), + [sym__inline_whitespace] = STATE(755), + [aux_sym_document_repeat1] = STATE(119), + [aux_sym__list_plus_repeat1] = STATE(134), + [aux_sym__list_minus_repeat1] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(144), [aux_sym__list_parenthesis_repeat1] = STATE(142), [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(187), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -36867,18 +38488,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(181), - [sym__soft_line_ending] = ACTIONS(183), - [sym__block_close] = ACTIONS(1762), - [sym__block_quote_start] = ACTIONS(187), - [sym_atx_h1_marker] = ACTIONS(1762), - [sym_atx_h2_marker] = ACTIONS(1762), - [sym_atx_h3_marker] = ACTIONS(1762), - [sym_atx_h4_marker] = ACTIONS(1762), - [sym_atx_h5_marker] = ACTIONS(1762), - [sym_atx_h6_marker] = ACTIONS(1762), - [sym__thematic_break] = ACTIONS(201), + [sym__whitespace] = ACTIONS(189), + [sym__line_ending] = ACTIONS(191), + [sym__soft_line_ending] = ACTIONS(193), + [sym__block_close] = ACTIONS(1939), + [sym__block_quote_start] = ACTIONS(197), + [sym_atx_h1_marker] = ACTIONS(1939), + [sym_atx_h2_marker] = ACTIONS(1939), + [sym_atx_h3_marker] = ACTIONS(1939), + [sym_atx_h4_marker] = ACTIONS(1939), + [sym_atx_h5_marker] = ACTIONS(1939), + [sym_atx_h6_marker] = ACTIONS(1939), + [sym__thematic_break] = ACTIONS(211), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -36891,12 +38512,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(203), - [sym_minus_metadata] = ACTIONS(1760), - [sym__pipe_table_start] = ACTIONS(207), - [sym__fenced_div_start] = ACTIONS(209), - [sym__fenced_div_end] = ACTIONS(1762), - [sym_ref_id_specifier] = ACTIONS(213), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym_minus_metadata] = ACTIONS(1797), + [sym__pipe_table_start] = ACTIONS(217), + [sym__fenced_div_start] = ACTIONS(219), + [sym__fenced_div_end] = ACTIONS(1939), + [sym_ref_id_specifier] = ACTIONS(223), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -36924,204 +38545,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(121)] = { - [sym__block_not_section] = STATE(351), - [sym_pandoc_horizontal_rule] = STATE(351), - [sym_pandoc_paragraph] = STATE(351), - [sym_inline_ref_def] = STATE(351), - [sym_caption] = STATE(351), - [sym_pipe_table] = STATE(351), - [sym__inlines] = STATE(2732), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(351), - [sym_pandoc_list] = STATE(351), - [sym__list_plus] = STATE(360), - [sym__list_minus] = STATE(360), - [sym__list_star] = STATE(360), - [sym__list_dot] = STATE(360), - [sym__list_parenthesis] = STATE(360), - [sym__list_example] = STATE(360), - [sym_list_marker_plus] = STATE(15), - [sym_list_marker_minus] = STATE(16), - [sym_list_marker_star] = STATE(17), - [sym_list_marker_dot] = STATE(18), + [STATE(122)] = { + [sym__block_not_section] = STATE(521), + [sym_pandoc_horizontal_rule] = STATE(521), + [sym_pandoc_paragraph] = STATE(521), + [sym_inline_ref_def] = STATE(521), + [sym_caption] = STATE(521), + [sym_pipe_table] = STATE(521), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(521), + [sym_pandoc_list] = STATE(521), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), [sym_list_marker_parenthesis] = STATE(19), - [sym_list_marker_example] = STATE(2), - [sym__list_item_plus] = STATE(136), - [sym__list_item_minus] = STATE(137), - [sym__list_item_star] = STATE(138), - [sym__list_item_dot] = STATE(141), - [sym__list_item_parenthesis] = STATE(142), - [sym__list_item_example] = STATE(143), - [sym_pandoc_code_block] = STATE(351), - [sym_pandoc_div] = STATE(351), - [sym_note_definition_fenced_block] = STATE(351), - [sym__newline] = STATE(351), - [sym__soft_line_break] = STATE(351), - [aux_sym_document_repeat1] = STATE(121), - [aux_sym__list_plus_repeat1] = STATE(136), - [aux_sym__list_minus_repeat1] = STATE(137), - [aux_sym__list_star_repeat1] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(141), - [aux_sym__list_parenthesis_repeat1] = STATE(142), - [aux_sym__list_example_repeat1] = STATE(143), - [anon_sym_COLON] = ACTIONS(1764), - [sym_entity_reference] = ACTIONS(1767), - [sym_numeric_character_reference] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_BANG_LBRACK] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1782), - [aux_sym_pandoc_str_token1] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1788), - [aux_sym__prose_punctuation_token1] = ACTIONS(1791), - [sym__line_ending] = ACTIONS(1794), - [sym__soft_line_ending] = ACTIONS(1797), - [sym__block_close] = ACTIONS(1800), - [sym__block_quote_start] = ACTIONS(1802), - [sym_atx_h1_marker] = ACTIONS(1800), - [sym_atx_h2_marker] = ACTIONS(1800), - [sym_atx_h3_marker] = ACTIONS(1800), - [sym_atx_h4_marker] = ACTIONS(1800), - [sym_atx_h5_marker] = ACTIONS(1800), - [sym_atx_h6_marker] = ACTIONS(1800), - [sym__thematic_break] = ACTIONS(1805), - [sym__list_marker_minus] = ACTIONS(1808), - [sym__list_marker_plus] = ACTIONS(1811), - [sym__list_marker_star] = ACTIONS(1814), - [sym__list_marker_parenthesis] = ACTIONS(1817), - [sym__list_marker_dot] = ACTIONS(1820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1811), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1814), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1817), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_example] = ACTIONS(1823), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1823), - [sym__fenced_code_block_start_backtick] = ACTIONS(1826), - [sym_minus_metadata] = ACTIONS(1829), - [sym__pipe_table_start] = ACTIONS(1832), - [sym__fenced_div_start] = ACTIONS(1835), - [sym__fenced_div_end] = ACTIONS(1800), - [sym_ref_id_specifier] = ACTIONS(1838), - [sym__code_span_start] = ACTIONS(1841), - [sym__html_comment] = ACTIONS(1767), - [sym__autolink] = ACTIONS(1767), - [sym__highlight_span_start] = ACTIONS(1844), - [sym__insert_span_start] = ACTIONS(1847), - [sym__delete_span_start] = ACTIONS(1850), - [sym__edit_comment_span_start] = ACTIONS(1853), - [sym__single_quote_span_open] = ACTIONS(1856), - [sym__double_quote_span_open] = ACTIONS(1859), - [sym__shortcode_open_escaped] = ACTIONS(1862), - [sym__shortcode_open] = ACTIONS(1865), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1868), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1871), - [sym__cite_author_in_text] = ACTIONS(1874), - [sym__cite_suppress_author] = ACTIONS(1877), - [sym__strikeout_open] = ACTIONS(1880), - [sym__subscript_open] = ACTIONS(1883), - [sym__superscript_open] = ACTIONS(1886), - [sym__inline_note_start_token] = ACTIONS(1889), - [sym__strong_emphasis_open_star] = ACTIONS(1892), - [sym__strong_emphasis_open_underscore] = ACTIONS(1895), - [sym__emphasis_open_star] = ACTIONS(1898), - [sym__emphasis_open_underscore] = ACTIONS(1901), - [sym_inline_note_reference] = ACTIONS(1767), - [sym_html_element] = ACTIONS(1767), - [sym__pandoc_line_break] = ACTIONS(1767), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(521), + [sym_pandoc_div] = STATE(521), + [sym_note_definition_fenced_block] = STATE(521), + [sym__newline] = STATE(521), + [sym__soft_line_break] = STATE(521), + [sym__inline_whitespace] = STATE(753), + [aux_sym_document_repeat1] = STATE(122), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(1941), + [sym_entity_reference] = ACTIONS(1802), + [sym_numeric_character_reference] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_BANG_LBRACK] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1817), + [aux_sym_pandoc_str_token1] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1823), + [sym__whitespace] = ACTIONS(1944), + [sym__line_ending] = ACTIONS(1947), + [sym__soft_line_ending] = ACTIONS(1950), + [sym__block_close] = ACTIONS(1835), + [sym__block_quote_start] = ACTIONS(1953), + [sym_atx_h1_marker] = ACTIONS(1835), + [sym_atx_h2_marker] = ACTIONS(1835), + [sym_atx_h3_marker] = ACTIONS(1835), + [sym_atx_h4_marker] = ACTIONS(1835), + [sym_atx_h5_marker] = ACTIONS(1835), + [sym_atx_h6_marker] = ACTIONS(1835), + [sym__thematic_break] = ACTIONS(1956), + [sym__list_marker_minus] = ACTIONS(1843), + [sym__list_marker_plus] = ACTIONS(1846), + [sym__list_marker_star] = ACTIONS(1849), + [sym__list_marker_parenthesis] = ACTIONS(1852), + [sym__list_marker_dot] = ACTIONS(1855), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1843), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1846), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1855), + [sym__list_marker_example] = ACTIONS(1858), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1858), + [sym__fenced_code_block_start_backtick] = ACTIONS(1959), + [sym_minus_metadata] = ACTIONS(1962), + [sym__pipe_table_start] = ACTIONS(1965), + [sym__fenced_div_start] = ACTIONS(1968), + [sym_ref_id_specifier] = ACTIONS(1971), + [sym__code_span_start] = ACTIONS(1876), + [sym__html_comment] = ACTIONS(1802), + [sym__autolink] = ACTIONS(1802), + [sym__highlight_span_start] = ACTIONS(1879), + [sym__insert_span_start] = ACTIONS(1882), + [sym__delete_span_start] = ACTIONS(1885), + [sym__edit_comment_span_start] = ACTIONS(1888), + [sym__single_quote_span_open] = ACTIONS(1891), + [sym__double_quote_span_open] = ACTIONS(1894), + [sym__shortcode_open_escaped] = ACTIONS(1897), + [sym__shortcode_open] = ACTIONS(1900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1903), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1906), + [sym__cite_author_in_text] = ACTIONS(1909), + [sym__cite_suppress_author] = ACTIONS(1912), + [sym__strikeout_open] = ACTIONS(1915), + [sym__subscript_open] = ACTIONS(1918), + [sym__superscript_open] = ACTIONS(1921), + [sym__inline_note_start_token] = ACTIONS(1924), + [sym__strong_emphasis_open_star] = ACTIONS(1927), + [sym__strong_emphasis_open_underscore] = ACTIONS(1930), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1936), + [sym_inline_note_reference] = ACTIONS(1802), + [sym_html_element] = ACTIONS(1802), + [sym__pandoc_line_break] = ACTIONS(1802), }, - [STATE(122)] = { - [sym__block_not_section] = STATE(595), - [sym_pandoc_horizontal_rule] = STATE(595), - [sym_pandoc_paragraph] = STATE(595), - [sym_inline_ref_def] = STATE(595), - [sym_caption] = STATE(595), - [sym_pipe_table] = STATE(595), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(595), - [sym_pandoc_list] = STATE(595), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(595), - [sym_pandoc_div] = STATE(595), - [sym_note_definition_fenced_block] = STATE(595), - [sym__newline] = STATE(595), - [sym__soft_line_break] = STATE(595), - [aux_sym_document_repeat1] = STATE(127), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), + [STATE(123)] = { + [sym__block_not_section] = STATE(354), + [sym_pandoc_horizontal_rule] = STATE(354), + [sym_pandoc_paragraph] = STATE(354), + [sym_inline_ref_def] = STATE(354), + [sym_caption] = STATE(354), + [sym_pipe_table] = STATE(354), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(354), + [sym_pandoc_list] = STATE(354), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), + [sym_list_marker_plus] = STATE(3), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(354), + [sym_pandoc_div] = STATE(354), + [sym_note_definition_fenced_block] = STATE(354), + [sym__newline] = STATE(354), + [sym__soft_line_break] = STATE(354), + [sym__inline_whitespace] = STATE(765), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(1835), + [anon_sym_COLON] = ACTIONS(1974), + [sym_entity_reference] = ACTIONS(1802), + [sym_numeric_character_reference] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_BANG_LBRACK] = ACTIONS(1808), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1817), + [aux_sym_pandoc_str_token1] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1823), + [sym__whitespace] = ACTIONS(1977), + [sym__line_ending] = ACTIONS(1980), + [sym__soft_line_ending] = ACTIONS(1983), + [sym__block_quote_start] = ACTIONS(1986), + [sym_atx_h1_marker] = ACTIONS(1835), + [sym_atx_h2_marker] = ACTIONS(1835), + [sym_atx_h3_marker] = ACTIONS(1835), + [sym_atx_h4_marker] = ACTIONS(1835), + [sym_atx_h5_marker] = ACTIONS(1835), + [sym_atx_h6_marker] = ACTIONS(1835), + [sym__thematic_break] = ACTIONS(1989), + [sym__list_marker_minus] = ACTIONS(1843), + [sym__list_marker_plus] = ACTIONS(1846), + [sym__list_marker_star] = ACTIONS(1849), + [sym__list_marker_parenthesis] = ACTIONS(1852), + [sym__list_marker_dot] = ACTIONS(1855), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1843), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1846), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1855), + [sym__list_marker_example] = ACTIONS(1858), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1858), + [sym__fenced_code_block_start_backtick] = ACTIONS(1992), + [sym_minus_metadata] = ACTIONS(1995), + [sym__pipe_table_start] = ACTIONS(1998), + [sym__fenced_div_start] = ACTIONS(2001), + [sym_ref_id_specifier] = ACTIONS(2004), + [sym__code_span_start] = ACTIONS(1876), + [sym__html_comment] = ACTIONS(1802), + [sym__autolink] = ACTIONS(1802), + [sym__highlight_span_start] = ACTIONS(1879), + [sym__insert_span_start] = ACTIONS(1882), + [sym__delete_span_start] = ACTIONS(1885), + [sym__edit_comment_span_start] = ACTIONS(1888), + [sym__single_quote_span_open] = ACTIONS(1891), + [sym__double_quote_span_open] = ACTIONS(1894), + [sym__shortcode_open_escaped] = ACTIONS(1897), + [sym__shortcode_open] = ACTIONS(1900), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1903), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1906), + [sym__cite_author_in_text] = ACTIONS(1909), + [sym__cite_suppress_author] = ACTIONS(1912), + [sym__strikeout_open] = ACTIONS(1915), + [sym__subscript_open] = ACTIONS(1918), + [sym__superscript_open] = ACTIONS(1921), + [sym__inline_note_start_token] = ACTIONS(1924), + [sym__strong_emphasis_open_star] = ACTIONS(1927), + [sym__strong_emphasis_open_underscore] = ACTIONS(1930), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1936), + [sym_inline_note_reference] = ACTIONS(1802), + [sym_html_element] = ACTIONS(1802), + [sym__pandoc_line_break] = ACTIONS(1802), + }, + [STATE(124)] = { + [sym__block_not_section] = STATE(354), + [sym_pandoc_horizontal_rule] = STATE(354), + [sym_pandoc_paragraph] = STATE(354), + [sym_inline_ref_def] = STATE(354), + [sym_caption] = STATE(354), + [sym_pipe_table] = STATE(354), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(354), + [sym_pandoc_list] = STATE(354), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), + [sym_list_marker_plus] = STATE(3), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(354), + [sym_pandoc_div] = STATE(354), + [sym_note_definition_fenced_block] = STATE(354), + [sym__newline] = STATE(354), + [sym__soft_line_break] = STATE(354), + [sym__inline_whitespace] = STATE(765), + [aux_sym_document_repeat1] = STATE(126), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(1939), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -37131,18 +38883,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(1762), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(1762), - [sym_atx_h2_marker] = ACTIONS(1762), - [sym_atx_h3_marker] = ACTIONS(1762), - [sym_atx_h4_marker] = ACTIONS(1762), - [sym_atx_h5_marker] = ACTIONS(1762), - [sym_atx_h6_marker] = ACTIONS(1762), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(1939), + [sym_atx_h2_marker] = ACTIONS(1939), + [sym_atx_h3_marker] = ACTIONS(1939), + [sym_atx_h4_marker] = ACTIONS(1939), + [sym_atx_h5_marker] = ACTIONS(1939), + [sym_atx_h6_marker] = ACTIONS(1939), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -37155,11 +38906,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(1904), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym_minus_metadata] = ACTIONS(475), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -37187,73 +38938,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(123)] = { - [sym__block_not_section] = STATE(456), - [sym_pandoc_horizontal_rule] = STATE(456), - [sym_pandoc_paragraph] = STATE(456), - [sym_inline_ref_def] = STATE(456), - [sym_caption] = STATE(456), - [sym_pipe_table] = STATE(456), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(456), - [sym_pandoc_list] = STATE(456), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), - [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(456), - [sym_pandoc_div] = STATE(456), - [sym_note_definition_fenced_block] = STATE(456), - [sym__newline] = STATE(456), - [sym__soft_line_break] = STATE(456), - [aux_sym_document_repeat1] = STATE(124), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1762), - [anon_sym_COLON] = ACTIONS(5), + [STATE(125)] = { + [sym__block_not_section] = STATE(521), + [sym_pandoc_horizontal_rule] = STATE(521), + [sym_pandoc_paragraph] = STATE(521), + [sym_inline_ref_def] = STATE(521), + [sym_caption] = STATE(521), + [sym_pipe_table] = STATE(521), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(521), + [sym_pandoc_list] = STATE(521), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(521), + [sym_pandoc_div] = STATE(521), + [sym_note_definition_fenced_block] = STATE(521), + [sym__newline] = STATE(521), + [sym__soft_line_break] = STATE(521), + [sym__inline_whitespace] = STATE(753), + [aux_sym_document_repeat1] = STATE(122), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -37263,17 +39013,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1762), - [sym_atx_h2_marker] = ACTIONS(1762), - [sym_atx_h3_marker] = ACTIONS(1762), - [sym_atx_h4_marker] = ACTIONS(1762), - [sym_atx_h5_marker] = ACTIONS(1762), - [sym_atx_h6_marker] = ACTIONS(1762), - [sym__thematic_break] = ACTIONS(43), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(1795), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(1795), + [sym_atx_h2_marker] = ACTIONS(1795), + [sym_atx_h3_marker] = ACTIONS(1795), + [sym_atx_h4_marker] = ACTIONS(1795), + [sym_atx_h5_marker] = ACTIONS(1795), + [sym_atx_h6_marker] = ACTIONS(1795), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -37286,11 +39037,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(473), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(2007), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -37318,203 +39069,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(124)] = { - [sym__block_not_section] = STATE(456), - [sym_pandoc_horizontal_rule] = STATE(456), - [sym_pandoc_paragraph] = STATE(456), - [sym_inline_ref_def] = STATE(456), - [sym_caption] = STATE(456), - [sym_pipe_table] = STATE(456), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(456), - [sym_pandoc_list] = STATE(456), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), + [STATE(126)] = { + [sym__block_not_section] = STATE(354), + [sym_pandoc_horizontal_rule] = STATE(354), + [sym_pandoc_paragraph] = STATE(354), + [sym_inline_ref_def] = STATE(354), + [sym_caption] = STATE(354), + [sym_pipe_table] = STATE(354), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(354), + [sym_pandoc_list] = STATE(354), + [sym__list_plus] = STATE(356), + [sym__list_minus] = STATE(356), + [sym__list_star] = STATE(356), + [sym__list_dot] = STATE(356), + [sym__list_parenthesis] = STATE(356), + [sym__list_example] = STATE(356), [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(456), - [sym_pandoc_div] = STATE(456), - [sym_note_definition_fenced_block] = STATE(456), - [sym__newline] = STATE(456), - [sym__soft_line_break] = STATE(456), - [aux_sym_document_repeat1] = STATE(124), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1800), - [anon_sym_COLON] = ACTIONS(1906), - [sym_entity_reference] = ACTIONS(1767), - [sym_numeric_character_reference] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_BANG_LBRACK] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1782), - [aux_sym_pandoc_str_token1] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1788), - [aux_sym__prose_punctuation_token1] = ACTIONS(1791), - [sym__line_ending] = ACTIONS(1909), - [sym__soft_line_ending] = ACTIONS(1912), - [sym__block_quote_start] = ACTIONS(1915), - [sym_atx_h1_marker] = ACTIONS(1800), - [sym_atx_h2_marker] = ACTIONS(1800), - [sym_atx_h3_marker] = ACTIONS(1800), - [sym_atx_h4_marker] = ACTIONS(1800), - [sym_atx_h5_marker] = ACTIONS(1800), - [sym_atx_h6_marker] = ACTIONS(1800), - [sym__thematic_break] = ACTIONS(1918), - [sym__list_marker_minus] = ACTIONS(1808), - [sym__list_marker_plus] = ACTIONS(1811), - [sym__list_marker_star] = ACTIONS(1814), - [sym__list_marker_parenthesis] = ACTIONS(1817), - [sym__list_marker_dot] = ACTIONS(1820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1811), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1814), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1817), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_example] = ACTIONS(1823), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1823), - [sym__fenced_code_block_start_backtick] = ACTIONS(1921), - [sym_minus_metadata] = ACTIONS(1924), - [sym__pipe_table_start] = ACTIONS(1927), - [sym__fenced_div_start] = ACTIONS(1930), - [sym_ref_id_specifier] = ACTIONS(1933), - [sym__code_span_start] = ACTIONS(1841), - [sym__html_comment] = ACTIONS(1767), - [sym__autolink] = ACTIONS(1767), - [sym__highlight_span_start] = ACTIONS(1844), - [sym__insert_span_start] = ACTIONS(1847), - [sym__delete_span_start] = ACTIONS(1850), - [sym__edit_comment_span_start] = ACTIONS(1853), - [sym__single_quote_span_open] = ACTIONS(1856), - [sym__double_quote_span_open] = ACTIONS(1859), - [sym__shortcode_open_escaped] = ACTIONS(1862), - [sym__shortcode_open] = ACTIONS(1865), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1868), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1871), - [sym__cite_author_in_text] = ACTIONS(1874), - [sym__cite_suppress_author] = ACTIONS(1877), - [sym__strikeout_open] = ACTIONS(1880), - [sym__subscript_open] = ACTIONS(1883), - [sym__superscript_open] = ACTIONS(1886), - [sym__inline_note_start_token] = ACTIONS(1889), - [sym__strong_emphasis_open_star] = ACTIONS(1892), - [sym__strong_emphasis_open_underscore] = ACTIONS(1895), - [sym__emphasis_open_star] = ACTIONS(1898), - [sym__emphasis_open_underscore] = ACTIONS(1901), - [sym_inline_note_reference] = ACTIONS(1767), - [sym_html_element] = ACTIONS(1767), - [sym__pandoc_line_break] = ACTIONS(1767), - }, - [STATE(125)] = { - [sym__block_not_section] = STATE(595), - [sym_pandoc_horizontal_rule] = STATE(595), - [sym_pandoc_paragraph] = STATE(595), - [sym_inline_ref_def] = STATE(595), - [sym_caption] = STATE(595), - [sym_pipe_table] = STATE(595), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(595), - [sym_pandoc_list] = STATE(595), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(595), - [sym_pandoc_div] = STATE(595), - [sym_note_definition_fenced_block] = STATE(595), - [sym__newline] = STATE(595), - [sym__soft_line_break] = STATE(595), - [aux_sym_document_repeat1] = STATE(122), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(109), + [sym_list_marker_minus] = STATE(2), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(5), + [sym_list_marker_parenthesis] = STATE(6), + [sym_list_marker_example] = STATE(7), + [sym__list_item_plus] = STATE(163), + [sym__list_item_minus] = STATE(164), + [sym__list_item_star] = STATE(165), + [sym__list_item_dot] = STATE(146), + [sym__list_item_parenthesis] = STATE(166), + [sym__list_item_example] = STATE(167), + [sym_pandoc_code_block] = STATE(354), + [sym_pandoc_div] = STATE(354), + [sym_note_definition_fenced_block] = STATE(354), + [sym__newline] = STATE(354), + [sym__soft_line_break] = STATE(354), + [sym__inline_whitespace] = STATE(765), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym__list_plus_repeat1] = STATE(163), + [aux_sym__list_minus_repeat1] = STATE(164), + [aux_sym__list_star_repeat1] = STATE(165), + [aux_sym__list_dot_repeat1] = STATE(146), + [aux_sym__list_parenthesis_repeat1] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(1795), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -37524,18 +39145,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(111), - [sym__soft_line_ending] = ACTIONS(113), - [sym__block_close] = ACTIONS(1758), - [sym__block_quote_start] = ACTIONS(117), - [sym_atx_h1_marker] = ACTIONS(1758), - [sym_atx_h2_marker] = ACTIONS(1758), - [sym_atx_h3_marker] = ACTIONS(1758), - [sym_atx_h4_marker] = ACTIONS(1758), - [sym_atx_h5_marker] = ACTIONS(1758), - [sym_atx_h6_marker] = ACTIONS(1758), - [sym__thematic_break] = ACTIONS(131), + [sym__whitespace] = ACTIONS(23), + [sym__line_ending] = ACTIONS(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(1795), + [sym_atx_h2_marker] = ACTIONS(1795), + [sym_atx_h3_marker] = ACTIONS(1795), + [sym_atx_h4_marker] = ACTIONS(1795), + [sym_atx_h5_marker] = ACTIONS(1795), + [sym_atx_h6_marker] = ACTIONS(1795), + [sym__thematic_break] = ACTIONS(43), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -37548,11 +39168,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(133), - [sym_minus_metadata] = ACTIONS(1904), - [sym__pipe_table_start] = ACTIONS(139), - [sym__fenced_div_start] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(143), + [sym__fenced_code_block_start_backtick] = ACTIONS(57), + [sym_minus_metadata] = ACTIONS(475), + [sym__pipe_table_start] = ACTIONS(61), + [sym__fenced_div_start] = ACTIONS(63), + [sym_ref_id_specifier] = ACTIONS(65), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -37580,73 +39200,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(126)] = { - [sym__block_not_section] = STATE(456), - [sym_pandoc_horizontal_rule] = STATE(456), - [sym_pandoc_paragraph] = STATE(456), - [sym_inline_ref_def] = STATE(456), - [sym_caption] = STATE(456), - [sym_pipe_table] = STATE(456), - [sym__inlines] = STATE(2769), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(456), - [sym_pandoc_list] = STATE(456), - [sym__list_plus] = STATE(448), - [sym__list_minus] = STATE(448), - [sym__list_star] = STATE(448), - [sym__list_dot] = STATE(448), - [sym__list_parenthesis] = STATE(448), - [sym__list_example] = STATE(448), - [sym_list_marker_plus] = STATE(3), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(5), - [sym_list_marker_dot] = STATE(6), - [sym_list_marker_parenthesis] = STATE(7), - [sym_list_marker_example] = STATE(8), - [sym__list_item_plus] = STATE(204), - [sym__list_item_minus] = STATE(179), - [sym__list_item_star] = STATE(206), - [sym__list_item_dot] = STATE(207), - [sym__list_item_parenthesis] = STATE(193), - [sym__list_item_example] = STATE(181), - [sym_pandoc_code_block] = STATE(456), - [sym_pandoc_div] = STATE(456), - [sym_note_definition_fenced_block] = STATE(456), - [sym__newline] = STATE(456), - [sym__soft_line_break] = STATE(456), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym__list_plus_repeat1] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(179), - [aux_sym__list_star_repeat1] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(193), - [aux_sym__list_example_repeat1] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1758), - [anon_sym_COLON] = ACTIONS(5), + [STATE(127)] = { + [sym__block_not_section] = STATE(521), + [sym_pandoc_horizontal_rule] = STATE(521), + [sym_pandoc_paragraph] = STATE(521), + [sym_inline_ref_def] = STATE(521), + [sym_caption] = STATE(521), + [sym_pipe_table] = STATE(521), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym_pandoc_block_quote] = STATE(521), + [sym_pandoc_list] = STATE(521), + [sym__list_plus] = STATE(528), + [sym__list_minus] = STATE(528), + [sym__list_star] = STATE(528), + [sym__list_dot] = STATE(528), + [sym__list_parenthesis] = STATE(528), + [sym__list_example] = STATE(528), + [sym_list_marker_plus] = STATE(8), + [sym_list_marker_minus] = STATE(9), + [sym_list_marker_star] = STATE(10), + [sym_list_marker_dot] = STATE(11), + [sym_list_marker_parenthesis] = STATE(19), + [sym_list_marker_example] = STATE(12), + [sym__list_item_plus] = STATE(168), + [sym__list_item_minus] = STATE(147), + [sym__list_item_star] = STATE(148), + [sym__list_item_dot] = STATE(149), + [sym__list_item_parenthesis] = STATE(150), + [sym__list_item_example] = STATE(151), + [sym_pandoc_code_block] = STATE(521), + [sym_pandoc_div] = STATE(521), + [sym_note_definition_fenced_block] = STATE(521), + [sym__newline] = STATE(521), + [sym__soft_line_break] = STATE(521), + [sym__inline_whitespace] = STATE(753), + [aux_sym_document_repeat1] = STATE(125), + [aux_sym__list_plus_repeat1] = STATE(168), + [aux_sym__list_minus_repeat1] = STATE(147), + [aux_sym__list_star_repeat1] = STATE(148), + [aux_sym__list_dot_repeat1] = STATE(149), + [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__list_example_repeat1] = STATE(151), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -37656,17 +39275,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__line_ending] = ACTIONS(25), - [sym__soft_line_ending] = ACTIONS(27), - [sym__block_quote_start] = ACTIONS(29), - [sym_atx_h1_marker] = ACTIONS(1758), - [sym_atx_h2_marker] = ACTIONS(1758), - [sym_atx_h3_marker] = ACTIONS(1758), - [sym_atx_h4_marker] = ACTIONS(1758), - [sym_atx_h5_marker] = ACTIONS(1758), - [sym_atx_h6_marker] = ACTIONS(1758), - [sym__thematic_break] = ACTIONS(43), + [sym__whitespace] = ACTIONS(111), + [sym__line_ending] = ACTIONS(113), + [sym__soft_line_ending] = ACTIONS(115), + [sym__block_close] = ACTIONS(1939), + [sym__block_quote_start] = ACTIONS(119), + [sym_atx_h1_marker] = ACTIONS(1939), + [sym_atx_h2_marker] = ACTIONS(1939), + [sym_atx_h3_marker] = ACTIONS(1939), + [sym_atx_h4_marker] = ACTIONS(1939), + [sym_atx_h5_marker] = ACTIONS(1939), + [sym_atx_h6_marker] = ACTIONS(1939), + [sym__thematic_break] = ACTIONS(133), [sym__list_marker_minus] = ACTIONS(45), [sym__list_marker_plus] = ACTIONS(47), [sym__list_marker_star] = ACTIONS(49), @@ -37679,11 +39299,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(57), - [sym_minus_metadata] = ACTIONS(473), - [sym__pipe_table_start] = ACTIONS(61), - [sym__fenced_div_start] = ACTIONS(63), - [sym_ref_id_specifier] = ACTIONS(65), + [sym__fenced_code_block_start_backtick] = ACTIONS(135), + [sym_minus_metadata] = ACTIONS(2007), + [sym__pipe_table_start] = ACTIONS(141), + [sym__fenced_div_start] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(145), [sym__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), @@ -37711,7746 +39331,8734 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(7), [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(127)] = { - [sym__block_not_section] = STATE(595), - [sym_pandoc_horizontal_rule] = STATE(595), - [sym_pandoc_paragraph] = STATE(595), - [sym_inline_ref_def] = STATE(595), - [sym_caption] = STATE(595), - [sym_pipe_table] = STATE(595), - [sym__inlines] = STATE(2839), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym_pandoc_block_quote] = STATE(595), - [sym_pandoc_list] = STATE(595), - [sym__list_plus] = STATE(597), - [sym__list_minus] = STATE(597), - [sym__list_star] = STATE(597), - [sym__list_dot] = STATE(597), - [sym__list_parenthesis] = STATE(597), - [sym__list_example] = STATE(597), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(199), - [sym__list_item_minus] = STATE(203), - [sym__list_item_star] = STATE(208), - [sym__list_item_dot] = STATE(209), - [sym__list_item_parenthesis] = STATE(210), - [sym__list_item_example] = STATE(211), - [sym_pandoc_code_block] = STATE(595), - [sym_pandoc_div] = STATE(595), - [sym_note_definition_fenced_block] = STATE(595), - [sym__newline] = STATE(595), - [sym__soft_line_break] = STATE(595), - [aux_sym_document_repeat1] = STATE(127), - [aux_sym__list_plus_repeat1] = STATE(199), - [aux_sym__list_minus_repeat1] = STATE(203), - [aux_sym__list_star_repeat1] = STATE(208), - [aux_sym__list_dot_repeat1] = STATE(209), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [aux_sym__list_example_repeat1] = STATE(211), - [anon_sym_COLON] = ACTIONS(1936), - [sym_entity_reference] = ACTIONS(1767), - [sym_numeric_character_reference] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_BANG_LBRACK] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1782), - [aux_sym_pandoc_str_token1] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1788), - [aux_sym__prose_punctuation_token1] = ACTIONS(1791), - [sym__line_ending] = ACTIONS(1939), - [sym__soft_line_ending] = ACTIONS(1942), - [sym__block_close] = ACTIONS(1800), - [sym__block_quote_start] = ACTIONS(1945), - [sym_atx_h1_marker] = ACTIONS(1800), - [sym_atx_h2_marker] = ACTIONS(1800), - [sym_atx_h3_marker] = ACTIONS(1800), - [sym_atx_h4_marker] = ACTIONS(1800), - [sym_atx_h5_marker] = ACTIONS(1800), - [sym_atx_h6_marker] = ACTIONS(1800), - [sym__thematic_break] = ACTIONS(1948), - [sym__list_marker_minus] = ACTIONS(1808), - [sym__list_marker_plus] = ACTIONS(1811), - [sym__list_marker_star] = ACTIONS(1814), - [sym__list_marker_parenthesis] = ACTIONS(1817), - [sym__list_marker_dot] = ACTIONS(1820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1811), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1814), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1817), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_example] = ACTIONS(1823), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1823), - [sym__fenced_code_block_start_backtick] = ACTIONS(1951), - [sym_minus_metadata] = ACTIONS(1954), - [sym__pipe_table_start] = ACTIONS(1957), - [sym__fenced_div_start] = ACTIONS(1960), - [sym_ref_id_specifier] = ACTIONS(1963), - [sym__code_span_start] = ACTIONS(1841), - [sym__html_comment] = ACTIONS(1767), - [sym__autolink] = ACTIONS(1767), - [sym__highlight_span_start] = ACTIONS(1844), - [sym__insert_span_start] = ACTIONS(1847), - [sym__delete_span_start] = ACTIONS(1850), - [sym__edit_comment_span_start] = ACTIONS(1853), - [sym__single_quote_span_open] = ACTIONS(1856), - [sym__double_quote_span_open] = ACTIONS(1859), - [sym__shortcode_open_escaped] = ACTIONS(1862), - [sym__shortcode_open] = ACTIONS(1865), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1868), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1871), - [sym__cite_author_in_text] = ACTIONS(1874), - [sym__cite_suppress_author] = ACTIONS(1877), - [sym__strikeout_open] = ACTIONS(1880), - [sym__subscript_open] = ACTIONS(1883), - [sym__superscript_open] = ACTIONS(1886), - [sym__inline_note_start_token] = ACTIONS(1889), - [sym__strong_emphasis_open_star] = ACTIONS(1892), - [sym__strong_emphasis_open_underscore] = ACTIONS(1895), - [sym__emphasis_open_star] = ACTIONS(1898), - [sym__emphasis_open_underscore] = ACTIONS(1901), - [sym_inline_note_reference] = ACTIONS(1767), - [sym_html_element] = ACTIONS(1767), - [sym__pandoc_line_break] = ACTIONS(1767), - }, [STATE(128)] = { - [sym_caption] = STATE(2946), - [sym_pipe_table_row] = STATE(2828), - [sym_pipe_table_cell] = STATE(2585), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym_pipe_table_row_repeat1] = STATE(205), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [anon_sym_COLON] = ACTIONS(1966), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(1986), - [sym__line_ending] = ACTIONS(1988), - [sym__eof] = ACTIONS(1988), - [sym__pipe_table_line_ending] = ACTIONS(1988), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2032), - [sym__pandoc_line_break] = ACTIONS(1968), + [sym_caption] = STATE(3186), + [sym_pipe_table_row] = STATE(3187), + [sym_pipe_table_cell] = STATE(2754), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym_pipe_table_row_repeat1] = STATE(280), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [anon_sym_COLON] = ACTIONS(2009), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2027), + [sym__line_ending] = ACTIONS(2029), + [sym__eof] = ACTIONS(2029), + [sym__pipe_table_line_ending] = ACTIONS(2029), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2073), + [sym__pandoc_line_break] = ACTIONS(2011), }, [STATE(129)] = { - [sym_caption] = STATE(2990), - [sym_pipe_table_row] = STATE(2828), - [sym_pipe_table_cell] = STATE(2585), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym_pipe_table_row_repeat1] = STATE(205), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [anon_sym_COLON] = ACTIONS(1966), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(1986), - [sym__line_ending] = ACTIONS(1988), - [sym__eof] = ACTIONS(1988), - [sym__pipe_table_line_ending] = ACTIONS(1988), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2032), - [sym__pandoc_line_break] = ACTIONS(1968), + [sym_caption] = STATE(3096), + [sym_pipe_table_row] = STATE(3187), + [sym_pipe_table_cell] = STATE(2754), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym_pipe_table_row_repeat1] = STATE(280), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [anon_sym_COLON] = ACTIONS(2009), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2027), + [sym__line_ending] = ACTIONS(2029), + [sym__eof] = ACTIONS(2029), + [sym__pipe_table_line_ending] = ACTIONS(2029), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2073), + [sym__pandoc_line_break] = ACTIONS(2011), }, [STATE(130)] = { - [sym_caption] = STATE(2822), - [sym_pipe_table_row] = STATE(2828), - [sym_pipe_table_cell] = STATE(2585), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym_pipe_table_row_repeat1] = STATE(205), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [anon_sym_COLON] = ACTIONS(1966), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(1986), - [sym__line_ending] = ACTIONS(1988), - [sym__eof] = ACTIONS(1988), - [sym__pipe_table_line_ending] = ACTIONS(1988), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2032), - [sym__pandoc_line_break] = ACTIONS(1968), + [sym_caption] = STATE(3194), + [sym_pipe_table_row] = STATE(3187), + [sym_pipe_table_cell] = STATE(2754), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym_pipe_table_row_repeat1] = STATE(280), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [anon_sym_COLON] = ACTIONS(2009), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2027), + [sym__line_ending] = ACTIONS(2029), + [sym__eof] = ACTIONS(2029), + [sym__pipe_table_line_ending] = ACTIONS(2029), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2073), + [sym__pandoc_line_break] = ACTIONS(2011), }, [STATE(131)] = { - [sym_caption] = STATE(3025), - [sym_pipe_table_row] = STATE(2828), - [sym_pipe_table_cell] = STATE(2585), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym_pipe_table_row_repeat1] = STATE(205), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [anon_sym_COLON] = ACTIONS(1966), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(1986), - [sym__line_ending] = ACTIONS(1988), - [sym__eof] = ACTIONS(1988), - [sym__pipe_table_line_ending] = ACTIONS(1988), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2032), - [sym__pandoc_line_break] = ACTIONS(1968), + [sym_caption] = STATE(3126), + [sym_pipe_table_row] = STATE(3187), + [sym_pipe_table_cell] = STATE(2754), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym_pipe_table_row_repeat1] = STATE(280), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [anon_sym_COLON] = ACTIONS(2009), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2027), + [sym__line_ending] = ACTIONS(2029), + [sym__eof] = ACTIONS(2029), + [sym__pipe_table_line_ending] = ACTIONS(2029), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2073), + [sym__pandoc_line_break] = ACTIONS(2011), }, [STATE(132)] = { - [sym_caption] = STATE(2744), - [sym_pipe_table_row] = STATE(2828), - [sym_pipe_table_cell] = STATE(2585), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym_pipe_table_row_repeat1] = STATE(205), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [anon_sym_COLON] = ACTIONS(1966), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(1986), - [sym__line_ending] = ACTIONS(1988), - [sym__eof] = ACTIONS(1988), - [sym__pipe_table_line_ending] = ACTIONS(1988), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2032), - [sym__pandoc_line_break] = ACTIONS(1968), + [sym_caption] = STATE(3198), + [sym_pipe_table_row] = STATE(3187), + [sym_pipe_table_cell] = STATE(2754), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym_pipe_table_row_repeat1] = STATE(280), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [anon_sym_COLON] = ACTIONS(2009), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2027), + [sym__line_ending] = ACTIONS(2029), + [sym__eof] = ACTIONS(2029), + [sym__pipe_table_line_ending] = ACTIONS(2029), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2073), + [sym__pandoc_line_break] = ACTIONS(2011), }, [STATE(133)] = { - [sym_caption] = STATE(2751), - [sym_pipe_table_row] = STATE(2828), - [sym_pipe_table_cell] = STATE(2585), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym_pipe_table_row_repeat1] = STATE(205), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [anon_sym_COLON] = ACTIONS(1966), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(1986), - [sym__line_ending] = ACTIONS(1988), - [sym__eof] = ACTIONS(1988), - [sym__pipe_table_line_ending] = ACTIONS(1988), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2032), - [sym__pandoc_line_break] = ACTIONS(1968), + [sym_caption] = STATE(3029), + [sym_pipe_table_row] = STATE(3187), + [sym_pipe_table_cell] = STATE(2754), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym_pipe_table_row_repeat1] = STATE(280), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [anon_sym_COLON] = ACTIONS(2009), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2027), + [sym__line_ending] = ACTIONS(2029), + [sym__eof] = ACTIONS(2029), + [sym__pipe_table_line_ending] = ACTIONS(2029), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2073), + [sym__pandoc_line_break] = ACTIONS(2011), }, [STATE(134)] = { - [sym_pipe_table_row] = STATE(2828), - [sym_pipe_table_cell] = STATE(2585), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym_pipe_table_row_repeat1] = STATE(205), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(1986), - [sym__line_ending] = ACTIONS(1988), - [sym__eof] = ACTIONS(1988), - [sym__pipe_table_line_ending] = ACTIONS(1988), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2032), - [sym__pandoc_line_break] = ACTIONS(1968), + [sym_list_marker_plus] = STATE(13), + [sym__list_item_plus] = STATE(135), + [aux_sym__list_plus_repeat1] = STATE(135), + [anon_sym_COLON] = ACTIONS(2075), + [sym_entity_reference] = ACTIONS(2075), + [sym_numeric_character_reference] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_BANG_LBRACK] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [aux_sym_pandoc_str_token1] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2075), + [sym__whitespace] = ACTIONS(2075), + [sym__line_ending] = ACTIONS(2075), + [sym__soft_line_ending] = ACTIONS(2075), + [sym__block_close] = ACTIONS(2075), + [sym__block_quote_start] = ACTIONS(2075), + [sym_atx_h1_marker] = ACTIONS(2075), + [sym_atx_h2_marker] = ACTIONS(2075), + [sym_atx_h3_marker] = ACTIONS(2075), + [sym_atx_h4_marker] = ACTIONS(2075), + [sym_atx_h5_marker] = ACTIONS(2075), + [sym_atx_h6_marker] = ACTIONS(2075), + [sym__thematic_break] = ACTIONS(2075), + [sym__list_marker_minus] = ACTIONS(2075), + [sym__list_marker_plus] = ACTIONS(47), + [sym__list_marker_star] = ACTIONS(2075), + [sym__list_marker_parenthesis] = ACTIONS(2075), + [sym__list_marker_dot] = ACTIONS(2075), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_example] = ACTIONS(2075), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2075), + [sym__fenced_code_block_start_backtick] = ACTIONS(2075), + [sym_minus_metadata] = ACTIONS(2075), + [sym__pipe_table_start] = ACTIONS(2075), + [sym__fenced_div_start] = ACTIONS(2075), + [sym__fenced_div_end] = ACTIONS(2075), + [sym_ref_id_specifier] = ACTIONS(2075), + [sym__code_span_start] = ACTIONS(2075), + [sym__html_comment] = ACTIONS(2075), + [sym__autolink] = ACTIONS(2075), + [sym__highlight_span_start] = ACTIONS(2075), + [sym__insert_span_start] = ACTIONS(2075), + [sym__delete_span_start] = ACTIONS(2075), + [sym__edit_comment_span_start] = ACTIONS(2075), + [sym__single_quote_span_open] = ACTIONS(2075), + [sym__double_quote_span_open] = ACTIONS(2075), + [sym__shortcode_open_escaped] = ACTIONS(2075), + [sym__shortcode_open] = ACTIONS(2075), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2075), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2075), + [sym__cite_author_in_text] = ACTIONS(2075), + [sym__cite_suppress_author] = ACTIONS(2075), + [sym__strikeout_open] = ACTIONS(2075), + [sym__subscript_open] = ACTIONS(2075), + [sym__superscript_open] = ACTIONS(2075), + [sym__inline_note_start_token] = ACTIONS(2075), + [sym__strong_emphasis_open_star] = ACTIONS(2075), + [sym__strong_emphasis_open_underscore] = ACTIONS(2075), + [sym__emphasis_open_star] = ACTIONS(2075), + [sym__emphasis_open_underscore] = ACTIONS(2075), + [sym_inline_note_reference] = ACTIONS(2075), + [sym_html_element] = ACTIONS(2075), + [sym__pandoc_line_break] = ACTIONS(2075), }, [STATE(135)] = { - [sym__inlines] = STATE(2748), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1035), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(600), - [sym__inline_whitespace] = STATE(600), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2038), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2042), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2056), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_plus] = STATE(13), + [sym__list_item_plus] = STATE(135), + [aux_sym__list_plus_repeat1] = STATE(135), + [anon_sym_COLON] = ACTIONS(2079), + [sym_entity_reference] = ACTIONS(2079), + [sym_numeric_character_reference] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_BANG_LBRACK] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [aux_sym_pandoc_str_token1] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2079), + [sym__whitespace] = ACTIONS(2079), + [sym__line_ending] = ACTIONS(2079), + [sym__soft_line_ending] = ACTIONS(2079), + [sym__block_close] = ACTIONS(2079), + [sym__block_quote_start] = ACTIONS(2079), + [sym_atx_h1_marker] = ACTIONS(2079), + [sym_atx_h2_marker] = ACTIONS(2079), + [sym_atx_h3_marker] = ACTIONS(2079), + [sym_atx_h4_marker] = ACTIONS(2079), + [sym_atx_h5_marker] = ACTIONS(2079), + [sym_atx_h6_marker] = ACTIONS(2079), + [sym__thematic_break] = ACTIONS(2079), + [sym__list_marker_minus] = ACTIONS(2079), + [sym__list_marker_plus] = ACTIONS(2083), + [sym__list_marker_star] = ACTIONS(2079), + [sym__list_marker_parenthesis] = ACTIONS(2079), + [sym__list_marker_dot] = ACTIONS(2079), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_example] = ACTIONS(2079), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2079), + [sym__fenced_code_block_start_backtick] = ACTIONS(2079), + [sym_minus_metadata] = ACTIONS(2079), + [sym__pipe_table_start] = ACTIONS(2079), + [sym__fenced_div_start] = ACTIONS(2079), + [sym__fenced_div_end] = ACTIONS(2079), + [sym_ref_id_specifier] = ACTIONS(2079), + [sym__code_span_start] = ACTIONS(2079), + [sym__html_comment] = ACTIONS(2079), + [sym__autolink] = ACTIONS(2079), + [sym__highlight_span_start] = ACTIONS(2079), + [sym__insert_span_start] = ACTIONS(2079), + [sym__delete_span_start] = ACTIONS(2079), + [sym__edit_comment_span_start] = ACTIONS(2079), + [sym__single_quote_span_open] = ACTIONS(2079), + [sym__double_quote_span_open] = ACTIONS(2079), + [sym__shortcode_open_escaped] = ACTIONS(2079), + [sym__shortcode_open] = ACTIONS(2079), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2079), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2079), + [sym__cite_author_in_text] = ACTIONS(2079), + [sym__cite_suppress_author] = ACTIONS(2079), + [sym__strikeout_open] = ACTIONS(2079), + [sym__subscript_open] = ACTIONS(2079), + [sym__superscript_open] = ACTIONS(2079), + [sym__inline_note_start_token] = ACTIONS(2079), + [sym__strong_emphasis_open_star] = ACTIONS(2079), + [sym__strong_emphasis_open_underscore] = ACTIONS(2079), + [sym__emphasis_open_star] = ACTIONS(2079), + [sym__emphasis_open_underscore] = ACTIONS(2079), + [sym_inline_note_reference] = ACTIONS(2079), + [sym_html_element] = ACTIONS(2079), + [sym__pandoc_line_break] = ACTIONS(2079), }, [STATE(136)] = { - [sym_list_marker_plus] = STATE(15), - [sym__list_item_plus] = STATE(144), - [aux_sym__list_plus_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(2102), - [sym_entity_reference] = ACTIONS(2102), - [sym_numeric_character_reference] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_BANG_LBRACK] = ACTIONS(2102), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2102), - [aux_sym_pandoc_str_token1] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2102), - [aux_sym__prose_punctuation_token1] = ACTIONS(2104), - [sym__line_ending] = ACTIONS(2102), - [sym__soft_line_ending] = ACTIONS(2102), - [sym__block_close] = ACTIONS(2102), - [sym__block_quote_start] = ACTIONS(2102), - [sym_atx_h1_marker] = ACTIONS(2102), - [sym_atx_h2_marker] = ACTIONS(2102), - [sym_atx_h3_marker] = ACTIONS(2102), - [sym_atx_h4_marker] = ACTIONS(2102), - [sym_atx_h5_marker] = ACTIONS(2102), - [sym_atx_h6_marker] = ACTIONS(2102), - [sym__thematic_break] = ACTIONS(2102), - [sym__list_marker_minus] = ACTIONS(2102), - [sym__list_marker_plus] = ACTIONS(47), - [sym__list_marker_star] = ACTIONS(2102), - [sym__list_marker_parenthesis] = ACTIONS(2102), - [sym__list_marker_dot] = ACTIONS(2102), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2102), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2102), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2102), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2102), - [sym__list_marker_example] = ACTIONS(2102), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2102), - [sym__fenced_code_block_start_backtick] = ACTIONS(2102), - [sym_minus_metadata] = ACTIONS(2102), - [sym__pipe_table_start] = ACTIONS(2102), - [sym__fenced_div_start] = ACTIONS(2102), - [sym__fenced_div_end] = ACTIONS(2102), - [sym_ref_id_specifier] = ACTIONS(2102), - [sym__code_span_start] = ACTIONS(2102), - [sym__html_comment] = ACTIONS(2102), - [sym__autolink] = ACTIONS(2102), - [sym__highlight_span_start] = ACTIONS(2102), - [sym__insert_span_start] = ACTIONS(2102), - [sym__delete_span_start] = ACTIONS(2102), - [sym__edit_comment_span_start] = ACTIONS(2102), - [sym__single_quote_span_open] = ACTIONS(2102), - [sym__double_quote_span_open] = ACTIONS(2102), - [sym__shortcode_open_escaped] = ACTIONS(2102), - [sym__shortcode_open] = ACTIONS(2102), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2102), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2102), - [sym__cite_author_in_text] = ACTIONS(2102), - [sym__cite_suppress_author] = ACTIONS(2102), - [sym__strikeout_open] = ACTIONS(2102), - [sym__subscript_open] = ACTIONS(2102), - [sym__superscript_open] = ACTIONS(2102), - [sym__inline_note_start_token] = ACTIONS(2102), - [sym__strong_emphasis_open_star] = ACTIONS(2102), - [sym__strong_emphasis_open_underscore] = ACTIONS(2102), - [sym__emphasis_open_star] = ACTIONS(2102), - [sym__emphasis_open_underscore] = ACTIONS(2102), - [sym_inline_note_reference] = ACTIONS(2102), - [sym_html_element] = ACTIONS(2102), - [sym__pandoc_line_break] = ACTIONS(2102), + [sym_list_marker_minus] = STATE(14), + [sym__list_item_minus] = STATE(136), + [aux_sym__list_minus_repeat1] = STATE(136), + [anon_sym_COLON] = ACTIONS(2086), + [sym_entity_reference] = ACTIONS(2086), + [sym_numeric_character_reference] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_BANG_LBRACK] = ACTIONS(2086), + [anon_sym_DOLLAR] = ACTIONS(2088), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2086), + [aux_sym_pandoc_str_token1] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2086), + [sym__whitespace] = ACTIONS(2086), + [sym__line_ending] = ACTIONS(2086), + [sym__soft_line_ending] = ACTIONS(2086), + [sym__block_close] = ACTIONS(2086), + [sym__block_quote_start] = ACTIONS(2086), + [sym_atx_h1_marker] = ACTIONS(2086), + [sym_atx_h2_marker] = ACTIONS(2086), + [sym_atx_h3_marker] = ACTIONS(2086), + [sym_atx_h4_marker] = ACTIONS(2086), + [sym_atx_h5_marker] = ACTIONS(2086), + [sym_atx_h6_marker] = ACTIONS(2086), + [sym__thematic_break] = ACTIONS(2086), + [sym__list_marker_minus] = ACTIONS(2090), + [sym__list_marker_plus] = ACTIONS(2086), + [sym__list_marker_star] = ACTIONS(2086), + [sym__list_marker_parenthesis] = ACTIONS(2086), + [sym__list_marker_dot] = ACTIONS(2086), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2086), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2086), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2086), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2086), + [sym__list_marker_example] = ACTIONS(2086), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2086), + [sym__fenced_code_block_start_backtick] = ACTIONS(2086), + [sym_minus_metadata] = ACTIONS(2086), + [sym__pipe_table_start] = ACTIONS(2086), + [sym__fenced_div_start] = ACTIONS(2086), + [sym__fenced_div_end] = ACTIONS(2086), + [sym_ref_id_specifier] = ACTIONS(2086), + [sym__code_span_start] = ACTIONS(2086), + [sym__html_comment] = ACTIONS(2086), + [sym__autolink] = ACTIONS(2086), + [sym__highlight_span_start] = ACTIONS(2086), + [sym__insert_span_start] = ACTIONS(2086), + [sym__delete_span_start] = ACTIONS(2086), + [sym__edit_comment_span_start] = ACTIONS(2086), + [sym__single_quote_span_open] = ACTIONS(2086), + [sym__double_quote_span_open] = ACTIONS(2086), + [sym__shortcode_open_escaped] = ACTIONS(2086), + [sym__shortcode_open] = ACTIONS(2086), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2086), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2086), + [sym__cite_author_in_text] = ACTIONS(2086), + [sym__cite_suppress_author] = ACTIONS(2086), + [sym__strikeout_open] = ACTIONS(2086), + [sym__subscript_open] = ACTIONS(2086), + [sym__superscript_open] = ACTIONS(2086), + [sym__inline_note_start_token] = ACTIONS(2086), + [sym__strong_emphasis_open_star] = ACTIONS(2086), + [sym__strong_emphasis_open_underscore] = ACTIONS(2086), + [sym__emphasis_open_star] = ACTIONS(2086), + [sym__emphasis_open_underscore] = ACTIONS(2086), + [sym_inline_note_reference] = ACTIONS(2086), + [sym_html_element] = ACTIONS(2086), + [sym__pandoc_line_break] = ACTIONS(2086), }, [STATE(137)] = { - [sym_list_marker_minus] = STATE(16), - [sym__list_item_minus] = STATE(171), - [aux_sym__list_minus_repeat1] = STATE(171), - [anon_sym_COLON] = ACTIONS(2106), - [sym_entity_reference] = ACTIONS(2106), - [sym_numeric_character_reference] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_BANG_LBRACK] = ACTIONS(2106), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2106), - [aux_sym_pandoc_str_token1] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2106), - [aux_sym__prose_punctuation_token1] = ACTIONS(2108), - [sym__line_ending] = ACTIONS(2106), - [sym__soft_line_ending] = ACTIONS(2106), - [sym__block_close] = ACTIONS(2106), - [sym__block_quote_start] = ACTIONS(2106), - [sym_atx_h1_marker] = ACTIONS(2106), - [sym_atx_h2_marker] = ACTIONS(2106), - [sym_atx_h3_marker] = ACTIONS(2106), - [sym_atx_h4_marker] = ACTIONS(2106), - [sym_atx_h5_marker] = ACTIONS(2106), - [sym_atx_h6_marker] = ACTIONS(2106), - [sym__thematic_break] = ACTIONS(2106), - [sym__list_marker_minus] = ACTIONS(45), - [sym__list_marker_plus] = ACTIONS(2106), - [sym__list_marker_star] = ACTIONS(2106), - [sym__list_marker_parenthesis] = ACTIONS(2106), - [sym__list_marker_dot] = ACTIONS(2106), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2106), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2106), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2106), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2106), - [sym__list_marker_example] = ACTIONS(2106), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2106), - [sym__fenced_code_block_start_backtick] = ACTIONS(2106), - [sym_minus_metadata] = ACTIONS(2106), - [sym__pipe_table_start] = ACTIONS(2106), - [sym__fenced_div_start] = ACTIONS(2106), - [sym__fenced_div_end] = ACTIONS(2106), - [sym_ref_id_specifier] = ACTIONS(2106), - [sym__code_span_start] = ACTIONS(2106), - [sym__html_comment] = ACTIONS(2106), - [sym__autolink] = ACTIONS(2106), - [sym__highlight_span_start] = ACTIONS(2106), - [sym__insert_span_start] = ACTIONS(2106), - [sym__delete_span_start] = ACTIONS(2106), - [sym__edit_comment_span_start] = ACTIONS(2106), - [sym__single_quote_span_open] = ACTIONS(2106), - [sym__double_quote_span_open] = ACTIONS(2106), - [sym__shortcode_open_escaped] = ACTIONS(2106), - [sym__shortcode_open] = ACTIONS(2106), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2106), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2106), - [sym__cite_author_in_text] = ACTIONS(2106), - [sym__cite_suppress_author] = ACTIONS(2106), - [sym__strikeout_open] = ACTIONS(2106), - [sym__subscript_open] = ACTIONS(2106), - [sym__superscript_open] = ACTIONS(2106), - [sym__inline_note_start_token] = ACTIONS(2106), - [sym__strong_emphasis_open_star] = ACTIONS(2106), - [sym__strong_emphasis_open_underscore] = ACTIONS(2106), - [sym__emphasis_open_star] = ACTIONS(2106), - [sym__emphasis_open_underscore] = ACTIONS(2106), - [sym_inline_note_reference] = ACTIONS(2106), - [sym_html_element] = ACTIONS(2106), - [sym__pandoc_line_break] = ACTIONS(2106), + [sym_list_marker_star] = STATE(15), + [sym__list_item_star] = STATE(137), + [aux_sym__list_star_repeat1] = STATE(137), + [anon_sym_COLON] = ACTIONS(2093), + [sym_entity_reference] = ACTIONS(2093), + [sym_numeric_character_reference] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_BANG_LBRACK] = ACTIONS(2093), + [anon_sym_DOLLAR] = ACTIONS(2095), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [aux_sym_pandoc_str_token1] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2093), + [sym__whitespace] = ACTIONS(2093), + [sym__line_ending] = ACTIONS(2093), + [sym__soft_line_ending] = ACTIONS(2093), + [sym__block_close] = ACTIONS(2093), + [sym__block_quote_start] = ACTIONS(2093), + [sym_atx_h1_marker] = ACTIONS(2093), + [sym_atx_h2_marker] = ACTIONS(2093), + [sym_atx_h3_marker] = ACTIONS(2093), + [sym_atx_h4_marker] = ACTIONS(2093), + [sym_atx_h5_marker] = ACTIONS(2093), + [sym_atx_h6_marker] = ACTIONS(2093), + [sym__thematic_break] = ACTIONS(2093), + [sym__list_marker_minus] = ACTIONS(2093), + [sym__list_marker_plus] = ACTIONS(2093), + [sym__list_marker_star] = ACTIONS(2097), + [sym__list_marker_parenthesis] = ACTIONS(2093), + [sym__list_marker_dot] = ACTIONS(2093), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2093), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2093), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2097), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2093), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2093), + [sym__list_marker_example] = ACTIONS(2093), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2093), + [sym__fenced_code_block_start_backtick] = ACTIONS(2093), + [sym_minus_metadata] = ACTIONS(2093), + [sym__pipe_table_start] = ACTIONS(2093), + [sym__fenced_div_start] = ACTIONS(2093), + [sym__fenced_div_end] = ACTIONS(2093), + [sym_ref_id_specifier] = ACTIONS(2093), + [sym__code_span_start] = ACTIONS(2093), + [sym__html_comment] = ACTIONS(2093), + [sym__autolink] = ACTIONS(2093), + [sym__highlight_span_start] = ACTIONS(2093), + [sym__insert_span_start] = ACTIONS(2093), + [sym__delete_span_start] = ACTIONS(2093), + [sym__edit_comment_span_start] = ACTIONS(2093), + [sym__single_quote_span_open] = ACTIONS(2093), + [sym__double_quote_span_open] = ACTIONS(2093), + [sym__shortcode_open_escaped] = ACTIONS(2093), + [sym__shortcode_open] = ACTIONS(2093), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2093), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2093), + [sym__cite_author_in_text] = ACTIONS(2093), + [sym__cite_suppress_author] = ACTIONS(2093), + [sym__strikeout_open] = ACTIONS(2093), + [sym__subscript_open] = ACTIONS(2093), + [sym__superscript_open] = ACTIONS(2093), + [sym__inline_note_start_token] = ACTIONS(2093), + [sym__strong_emphasis_open_star] = ACTIONS(2093), + [sym__strong_emphasis_open_underscore] = ACTIONS(2093), + [sym__emphasis_open_star] = ACTIONS(2093), + [sym__emphasis_open_underscore] = ACTIONS(2093), + [sym_inline_note_reference] = ACTIONS(2093), + [sym_html_element] = ACTIONS(2093), + [sym__pandoc_line_break] = ACTIONS(2093), }, [STATE(138)] = { - [sym_list_marker_star] = STATE(17), - [sym__list_item_star] = STATE(172), - [aux_sym__list_star_repeat1] = STATE(172), - [anon_sym_COLON] = ACTIONS(2110), - [sym_entity_reference] = ACTIONS(2110), - [sym_numeric_character_reference] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_BANG_LBRACK] = ACTIONS(2110), - [anon_sym_DOLLAR] = ACTIONS(2112), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [aux_sym_pandoc_str_token1] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2110), - [aux_sym__prose_punctuation_token1] = ACTIONS(2112), - [sym__line_ending] = ACTIONS(2110), - [sym__soft_line_ending] = ACTIONS(2110), - [sym__block_close] = ACTIONS(2110), - [sym__block_quote_start] = ACTIONS(2110), - [sym_atx_h1_marker] = ACTIONS(2110), - [sym_atx_h2_marker] = ACTIONS(2110), - [sym_atx_h3_marker] = ACTIONS(2110), - [sym_atx_h4_marker] = ACTIONS(2110), - [sym_atx_h5_marker] = ACTIONS(2110), - [sym_atx_h6_marker] = ACTIONS(2110), - [sym__thematic_break] = ACTIONS(2110), - [sym__list_marker_minus] = ACTIONS(2110), - [sym__list_marker_plus] = ACTIONS(2110), - [sym__list_marker_star] = ACTIONS(49), - [sym__list_marker_parenthesis] = ACTIONS(2110), - [sym__list_marker_dot] = ACTIONS(2110), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2110), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2110), - [sym__list_marker_star_dont_interrupt] = ACTIONS(49), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2110), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2110), - [sym__list_marker_example] = ACTIONS(2110), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2110), - [sym__fenced_code_block_start_backtick] = ACTIONS(2110), - [sym_minus_metadata] = ACTIONS(2110), - [sym__pipe_table_start] = ACTIONS(2110), - [sym__fenced_div_start] = ACTIONS(2110), - [sym__fenced_div_end] = ACTIONS(2110), - [sym_ref_id_specifier] = ACTIONS(2110), - [sym__code_span_start] = ACTIONS(2110), - [sym__html_comment] = ACTIONS(2110), - [sym__autolink] = ACTIONS(2110), - [sym__highlight_span_start] = ACTIONS(2110), - [sym__insert_span_start] = ACTIONS(2110), - [sym__delete_span_start] = ACTIONS(2110), - [sym__edit_comment_span_start] = ACTIONS(2110), - [sym__single_quote_span_open] = ACTIONS(2110), - [sym__double_quote_span_open] = ACTIONS(2110), - [sym__shortcode_open_escaped] = ACTIONS(2110), - [sym__shortcode_open] = ACTIONS(2110), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2110), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2110), - [sym__cite_author_in_text] = ACTIONS(2110), - [sym__cite_suppress_author] = ACTIONS(2110), - [sym__strikeout_open] = ACTIONS(2110), - [sym__subscript_open] = ACTIONS(2110), - [sym__superscript_open] = ACTIONS(2110), - [sym__inline_note_start_token] = ACTIONS(2110), - [sym__strong_emphasis_open_star] = ACTIONS(2110), - [sym__strong_emphasis_open_underscore] = ACTIONS(2110), - [sym__emphasis_open_star] = ACTIONS(2110), - [sym__emphasis_open_underscore] = ACTIONS(2110), - [sym_inline_note_reference] = ACTIONS(2110), - [sym_html_element] = ACTIONS(2110), - [sym__pandoc_line_break] = ACTIONS(2110), + [sym_list_marker_dot] = STATE(16), + [sym__list_item_dot] = STATE(138), + [aux_sym__list_dot_repeat1] = STATE(138), + [anon_sym_COLON] = ACTIONS(2100), + [sym_entity_reference] = ACTIONS(2100), + [sym_numeric_character_reference] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_BANG_LBRACK] = ACTIONS(2100), + [anon_sym_DOLLAR] = ACTIONS(2102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2100), + [aux_sym_pandoc_str_token1] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2100), + [sym__whitespace] = ACTIONS(2100), + [sym__line_ending] = ACTIONS(2100), + [sym__soft_line_ending] = ACTIONS(2100), + [sym__block_close] = ACTIONS(2100), + [sym__block_quote_start] = ACTIONS(2100), + [sym_atx_h1_marker] = ACTIONS(2100), + [sym_atx_h2_marker] = ACTIONS(2100), + [sym_atx_h3_marker] = ACTIONS(2100), + [sym_atx_h4_marker] = ACTIONS(2100), + [sym_atx_h5_marker] = ACTIONS(2100), + [sym_atx_h6_marker] = ACTIONS(2100), + [sym__thematic_break] = ACTIONS(2100), + [sym__list_marker_minus] = ACTIONS(2100), + [sym__list_marker_plus] = ACTIONS(2100), + [sym__list_marker_star] = ACTIONS(2100), + [sym__list_marker_parenthesis] = ACTIONS(2100), + [sym__list_marker_dot] = ACTIONS(2104), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2100), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2100), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2100), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2100), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2104), + [sym__list_marker_example] = ACTIONS(2100), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2100), + [sym__fenced_code_block_start_backtick] = ACTIONS(2100), + [sym_minus_metadata] = ACTIONS(2100), + [sym__pipe_table_start] = ACTIONS(2100), + [sym__fenced_div_start] = ACTIONS(2100), + [sym__fenced_div_end] = ACTIONS(2100), + [sym_ref_id_specifier] = ACTIONS(2100), + [sym__code_span_start] = ACTIONS(2100), + [sym__html_comment] = ACTIONS(2100), + [sym__autolink] = ACTIONS(2100), + [sym__highlight_span_start] = ACTIONS(2100), + [sym__insert_span_start] = ACTIONS(2100), + [sym__delete_span_start] = ACTIONS(2100), + [sym__edit_comment_span_start] = ACTIONS(2100), + [sym__single_quote_span_open] = ACTIONS(2100), + [sym__double_quote_span_open] = ACTIONS(2100), + [sym__shortcode_open_escaped] = ACTIONS(2100), + [sym__shortcode_open] = ACTIONS(2100), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2100), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2100), + [sym__cite_author_in_text] = ACTIONS(2100), + [sym__cite_suppress_author] = ACTIONS(2100), + [sym__strikeout_open] = ACTIONS(2100), + [sym__subscript_open] = ACTIONS(2100), + [sym__superscript_open] = ACTIONS(2100), + [sym__inline_note_start_token] = ACTIONS(2100), + [sym__strong_emphasis_open_star] = ACTIONS(2100), + [sym__strong_emphasis_open_underscore] = ACTIONS(2100), + [sym__emphasis_open_star] = ACTIONS(2100), + [sym__emphasis_open_underscore] = ACTIONS(2100), + [sym_inline_note_reference] = ACTIONS(2100), + [sym_html_element] = ACTIONS(2100), + [sym__pandoc_line_break] = ACTIONS(2100), }, [STATE(139)] = { - [sym__inlines] = STATE(3026), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1277), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(482), - [sym__inline_whitespace] = STATE(482), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2114), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2116), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2118), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_example] = STATE(18), + [sym__list_item_example] = STATE(139), + [aux_sym__list_example_repeat1] = STATE(139), + [anon_sym_COLON] = ACTIONS(2107), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_BANG_LBRACK] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [aux_sym_pandoc_str_token1] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2107), + [sym__whitespace] = ACTIONS(2107), + [sym__line_ending] = ACTIONS(2107), + [sym__soft_line_ending] = ACTIONS(2107), + [sym__block_close] = ACTIONS(2107), + [sym__block_quote_start] = ACTIONS(2107), + [sym_atx_h1_marker] = ACTIONS(2107), + [sym_atx_h2_marker] = ACTIONS(2107), + [sym_atx_h3_marker] = ACTIONS(2107), + [sym_atx_h4_marker] = ACTIONS(2107), + [sym_atx_h5_marker] = ACTIONS(2107), + [sym_atx_h6_marker] = ACTIONS(2107), + [sym__thematic_break] = ACTIONS(2107), + [sym__list_marker_minus] = ACTIONS(2107), + [sym__list_marker_plus] = ACTIONS(2107), + [sym__list_marker_star] = ACTIONS(2107), + [sym__list_marker_parenthesis] = ACTIONS(2107), + [sym__list_marker_dot] = ACTIONS(2107), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_example] = ACTIONS(2111), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2111), + [sym__fenced_code_block_start_backtick] = ACTIONS(2107), + [sym_minus_metadata] = ACTIONS(2107), + [sym__pipe_table_start] = ACTIONS(2107), + [sym__fenced_div_start] = ACTIONS(2107), + [sym__fenced_div_end] = ACTIONS(2107), + [sym_ref_id_specifier] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(2107), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2107), + [sym__insert_span_start] = ACTIONS(2107), + [sym__delete_span_start] = ACTIONS(2107), + [sym__edit_comment_span_start] = ACTIONS(2107), + [sym__single_quote_span_open] = ACTIONS(2107), + [sym__double_quote_span_open] = ACTIONS(2107), + [sym__shortcode_open_escaped] = ACTIONS(2107), + [sym__shortcode_open] = ACTIONS(2107), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2107), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), + [sym__cite_author_in_text] = ACTIONS(2107), + [sym__cite_suppress_author] = ACTIONS(2107), + [sym__strikeout_open] = ACTIONS(2107), + [sym__subscript_open] = ACTIONS(2107), + [sym__superscript_open] = ACTIONS(2107), + [sym__inline_note_start_token] = ACTIONS(2107), + [sym__strong_emphasis_open_star] = ACTIONS(2107), + [sym__strong_emphasis_open_underscore] = ACTIONS(2107), + [sym__emphasis_open_star] = ACTIONS(2107), + [sym__emphasis_open_underscore] = ACTIONS(2107), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pandoc_line_break] = ACTIONS(2107), }, [STATE(140)] = { - [sym__inlines] = STATE(3027), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1278), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(483), - [sym__inline_whitespace] = STATE(483), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2120), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2116), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2122), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_minus] = STATE(14), + [sym__list_item_minus] = STATE(136), + [aux_sym__list_minus_repeat1] = STATE(136), + [anon_sym_COLON] = ACTIONS(2114), + [sym_entity_reference] = ACTIONS(2114), + [sym_numeric_character_reference] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_BANG_LBRACK] = ACTIONS(2114), + [anon_sym_DOLLAR] = ACTIONS(2116), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [aux_sym_pandoc_str_token1] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2114), + [sym__whitespace] = ACTIONS(2114), + [sym__line_ending] = ACTIONS(2114), + [sym__soft_line_ending] = ACTIONS(2114), + [sym__block_close] = ACTIONS(2114), + [sym__block_quote_start] = ACTIONS(2114), + [sym_atx_h1_marker] = ACTIONS(2114), + [sym_atx_h2_marker] = ACTIONS(2114), + [sym_atx_h3_marker] = ACTIONS(2114), + [sym_atx_h4_marker] = ACTIONS(2114), + [sym_atx_h5_marker] = ACTIONS(2114), + [sym_atx_h6_marker] = ACTIONS(2114), + [sym__thematic_break] = ACTIONS(2114), + [sym__list_marker_minus] = ACTIONS(45), + [sym__list_marker_plus] = ACTIONS(2114), + [sym__list_marker_star] = ACTIONS(2114), + [sym__list_marker_parenthesis] = ACTIONS(2114), + [sym__list_marker_dot] = ACTIONS(2114), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2114), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2114), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2114), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2114), + [sym__list_marker_example] = ACTIONS(2114), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2114), + [sym__fenced_code_block_start_backtick] = ACTIONS(2114), + [sym_minus_metadata] = ACTIONS(2114), + [sym__pipe_table_start] = ACTIONS(2114), + [sym__fenced_div_start] = ACTIONS(2114), + [sym__fenced_div_end] = ACTIONS(2114), + [sym_ref_id_specifier] = ACTIONS(2114), + [sym__code_span_start] = ACTIONS(2114), + [sym__html_comment] = ACTIONS(2114), + [sym__autolink] = ACTIONS(2114), + [sym__highlight_span_start] = ACTIONS(2114), + [sym__insert_span_start] = ACTIONS(2114), + [sym__delete_span_start] = ACTIONS(2114), + [sym__edit_comment_span_start] = ACTIONS(2114), + [sym__single_quote_span_open] = ACTIONS(2114), + [sym__double_quote_span_open] = ACTIONS(2114), + [sym__shortcode_open_escaped] = ACTIONS(2114), + [sym__shortcode_open] = ACTIONS(2114), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2114), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2114), + [sym__cite_author_in_text] = ACTIONS(2114), + [sym__cite_suppress_author] = ACTIONS(2114), + [sym__strikeout_open] = ACTIONS(2114), + [sym__subscript_open] = ACTIONS(2114), + [sym__superscript_open] = ACTIONS(2114), + [sym__inline_note_start_token] = ACTIONS(2114), + [sym__strong_emphasis_open_star] = ACTIONS(2114), + [sym__strong_emphasis_open_underscore] = ACTIONS(2114), + [sym__emphasis_open_star] = ACTIONS(2114), + [sym__emphasis_open_underscore] = ACTIONS(2114), + [sym_inline_note_reference] = ACTIONS(2114), + [sym_html_element] = ACTIONS(2114), + [sym__pandoc_line_break] = ACTIONS(2114), }, [STATE(141)] = { - [sym_list_marker_dot] = STATE(18), - [sym__list_item_dot] = STATE(173), - [aux_sym__list_dot_repeat1] = STATE(173), - [anon_sym_COLON] = ACTIONS(2124), - [sym_entity_reference] = ACTIONS(2124), - [sym_numeric_character_reference] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_BANG_LBRACK] = ACTIONS(2124), - [anon_sym_DOLLAR] = ACTIONS(2126), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2124), - [anon_sym_LBRACE] = ACTIONS(2124), - [aux_sym_pandoc_str_token1] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2124), - [aux_sym__prose_punctuation_token1] = ACTIONS(2126), - [sym__line_ending] = ACTIONS(2124), - [sym__soft_line_ending] = ACTIONS(2124), - [sym__block_close] = ACTIONS(2124), - [sym__block_quote_start] = ACTIONS(2124), - [sym_atx_h1_marker] = ACTIONS(2124), - [sym_atx_h2_marker] = ACTIONS(2124), - [sym_atx_h3_marker] = ACTIONS(2124), - [sym_atx_h4_marker] = ACTIONS(2124), - [sym_atx_h5_marker] = ACTIONS(2124), - [sym_atx_h6_marker] = ACTIONS(2124), - [sym__thematic_break] = ACTIONS(2124), - [sym__list_marker_minus] = ACTIONS(2124), - [sym__list_marker_plus] = ACTIONS(2124), - [sym__list_marker_star] = ACTIONS(2124), - [sym__list_marker_parenthesis] = ACTIONS(2124), - [sym__list_marker_dot] = ACTIONS(53), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), - [sym__list_marker_example] = ACTIONS(2124), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2124), - [sym__fenced_code_block_start_backtick] = ACTIONS(2124), - [sym_minus_metadata] = ACTIONS(2124), - [sym__pipe_table_start] = ACTIONS(2124), - [sym__fenced_div_start] = ACTIONS(2124), - [sym__fenced_div_end] = ACTIONS(2124), - [sym_ref_id_specifier] = ACTIONS(2124), - [sym__code_span_start] = ACTIONS(2124), - [sym__html_comment] = ACTIONS(2124), - [sym__autolink] = ACTIONS(2124), - [sym__highlight_span_start] = ACTIONS(2124), - [sym__insert_span_start] = ACTIONS(2124), - [sym__delete_span_start] = ACTIONS(2124), - [sym__edit_comment_span_start] = ACTIONS(2124), - [sym__single_quote_span_open] = ACTIONS(2124), - [sym__double_quote_span_open] = ACTIONS(2124), - [sym__shortcode_open_escaped] = ACTIONS(2124), - [sym__shortcode_open] = ACTIONS(2124), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2124), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2124), - [sym__cite_author_in_text] = ACTIONS(2124), - [sym__cite_suppress_author] = ACTIONS(2124), - [sym__strikeout_open] = ACTIONS(2124), - [sym__subscript_open] = ACTIONS(2124), - [sym__superscript_open] = ACTIONS(2124), - [sym__inline_note_start_token] = ACTIONS(2124), - [sym__strong_emphasis_open_star] = ACTIONS(2124), - [sym__strong_emphasis_open_underscore] = ACTIONS(2124), - [sym__emphasis_open_star] = ACTIONS(2124), - [sym__emphasis_open_underscore] = ACTIONS(2124), - [sym_inline_note_reference] = ACTIONS(2124), - [sym_html_element] = ACTIONS(2124), - [sym__pandoc_line_break] = ACTIONS(2124), + [sym_list_marker_star] = STATE(15), + [sym__list_item_star] = STATE(137), + [aux_sym__list_star_repeat1] = STATE(137), + [anon_sym_COLON] = ACTIONS(2118), + [sym_entity_reference] = ACTIONS(2118), + [sym_numeric_character_reference] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_BANG_LBRACK] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [aux_sym_pandoc_str_token1] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2118), + [sym__whitespace] = ACTIONS(2118), + [sym__line_ending] = ACTIONS(2118), + [sym__soft_line_ending] = ACTIONS(2118), + [sym__block_close] = ACTIONS(2118), + [sym__block_quote_start] = ACTIONS(2118), + [sym_atx_h1_marker] = ACTIONS(2118), + [sym_atx_h2_marker] = ACTIONS(2118), + [sym_atx_h3_marker] = ACTIONS(2118), + [sym_atx_h4_marker] = ACTIONS(2118), + [sym_atx_h5_marker] = ACTIONS(2118), + [sym_atx_h6_marker] = ACTIONS(2118), + [sym__thematic_break] = ACTIONS(2118), + [sym__list_marker_minus] = ACTIONS(2118), + [sym__list_marker_plus] = ACTIONS(2118), + [sym__list_marker_star] = ACTIONS(49), + [sym__list_marker_parenthesis] = ACTIONS(2118), + [sym__list_marker_dot] = ACTIONS(2118), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2118), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2118), + [sym__list_marker_star_dont_interrupt] = ACTIONS(49), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2118), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2118), + [sym__list_marker_example] = ACTIONS(2118), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2118), + [sym__fenced_code_block_start_backtick] = ACTIONS(2118), + [sym_minus_metadata] = ACTIONS(2118), + [sym__pipe_table_start] = ACTIONS(2118), + [sym__fenced_div_start] = ACTIONS(2118), + [sym__fenced_div_end] = ACTIONS(2118), + [sym_ref_id_specifier] = ACTIONS(2118), + [sym__code_span_start] = ACTIONS(2118), + [sym__html_comment] = ACTIONS(2118), + [sym__autolink] = ACTIONS(2118), + [sym__highlight_span_start] = ACTIONS(2118), + [sym__insert_span_start] = ACTIONS(2118), + [sym__delete_span_start] = ACTIONS(2118), + [sym__edit_comment_span_start] = ACTIONS(2118), + [sym__single_quote_span_open] = ACTIONS(2118), + [sym__double_quote_span_open] = ACTIONS(2118), + [sym__shortcode_open_escaped] = ACTIONS(2118), + [sym__shortcode_open] = ACTIONS(2118), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2118), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2118), + [sym__cite_author_in_text] = ACTIONS(2118), + [sym__cite_suppress_author] = ACTIONS(2118), + [sym__strikeout_open] = ACTIONS(2118), + [sym__subscript_open] = ACTIONS(2118), + [sym__superscript_open] = ACTIONS(2118), + [sym__inline_note_start_token] = ACTIONS(2118), + [sym__strong_emphasis_open_star] = ACTIONS(2118), + [sym__strong_emphasis_open_underscore] = ACTIONS(2118), + [sym__emphasis_open_star] = ACTIONS(2118), + [sym__emphasis_open_underscore] = ACTIONS(2118), + [sym_inline_note_reference] = ACTIONS(2118), + [sym_html_element] = ACTIONS(2118), + [sym__pandoc_line_break] = ACTIONS(2118), }, [STATE(142)] = { - [sym_list_marker_parenthesis] = STATE(19), - [sym__list_item_parenthesis] = STATE(174), - [aux_sym__list_parenthesis_repeat1] = STATE(174), - [anon_sym_COLON] = ACTIONS(2128), - [sym_entity_reference] = ACTIONS(2128), - [sym_numeric_character_reference] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_BANG_LBRACK] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2130), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2128), - [aux_sym_pandoc_str_token1] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(2128), - [aux_sym__prose_punctuation_token1] = ACTIONS(2130), - [sym__line_ending] = ACTIONS(2128), - [sym__soft_line_ending] = ACTIONS(2128), - [sym__block_close] = ACTIONS(2128), - [sym__block_quote_start] = ACTIONS(2128), - [sym_atx_h1_marker] = ACTIONS(2128), - [sym_atx_h2_marker] = ACTIONS(2128), - [sym_atx_h3_marker] = ACTIONS(2128), - [sym_atx_h4_marker] = ACTIONS(2128), - [sym_atx_h5_marker] = ACTIONS(2128), - [sym_atx_h6_marker] = ACTIONS(2128), - [sym__thematic_break] = ACTIONS(2128), - [sym__list_marker_minus] = ACTIONS(2128), - [sym__list_marker_plus] = ACTIONS(2128), - [sym__list_marker_star] = ACTIONS(2128), + [sym_list_marker_parenthesis] = STATE(17), + [sym__list_item_parenthesis] = STATE(145), + [aux_sym__list_parenthesis_repeat1] = STATE(145), + [anon_sym_COLON] = ACTIONS(2122), + [sym_entity_reference] = ACTIONS(2122), + [sym_numeric_character_reference] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_BANG_LBRACK] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2124), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2122), + [aux_sym_pandoc_str_token1] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2122), + [sym__whitespace] = ACTIONS(2122), + [sym__line_ending] = ACTIONS(2122), + [sym__soft_line_ending] = ACTIONS(2122), + [sym__block_close] = ACTIONS(2122), + [sym__block_quote_start] = ACTIONS(2122), + [sym_atx_h1_marker] = ACTIONS(2122), + [sym_atx_h2_marker] = ACTIONS(2122), + [sym_atx_h3_marker] = ACTIONS(2122), + [sym_atx_h4_marker] = ACTIONS(2122), + [sym_atx_h5_marker] = ACTIONS(2122), + [sym_atx_h6_marker] = ACTIONS(2122), + [sym__thematic_break] = ACTIONS(2122), + [sym__list_marker_minus] = ACTIONS(2122), + [sym__list_marker_plus] = ACTIONS(2122), + [sym__list_marker_star] = ACTIONS(2122), [sym__list_marker_parenthesis] = ACTIONS(51), - [sym__list_marker_dot] = ACTIONS(2128), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2128), + [sym__list_marker_dot] = ACTIONS(2122), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2122), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2122), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2122), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_example] = ACTIONS(2128), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2128), - [sym__fenced_code_block_start_backtick] = ACTIONS(2128), - [sym_minus_metadata] = ACTIONS(2128), - [sym__pipe_table_start] = ACTIONS(2128), - [sym__fenced_div_start] = ACTIONS(2128), - [sym__fenced_div_end] = ACTIONS(2128), - [sym_ref_id_specifier] = ACTIONS(2128), - [sym__code_span_start] = ACTIONS(2128), - [sym__html_comment] = ACTIONS(2128), - [sym__autolink] = ACTIONS(2128), - [sym__highlight_span_start] = ACTIONS(2128), - [sym__insert_span_start] = ACTIONS(2128), - [sym__delete_span_start] = ACTIONS(2128), - [sym__edit_comment_span_start] = ACTIONS(2128), - [sym__single_quote_span_open] = ACTIONS(2128), - [sym__double_quote_span_open] = ACTIONS(2128), - [sym__shortcode_open_escaped] = ACTIONS(2128), - [sym__shortcode_open] = ACTIONS(2128), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2128), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2128), - [sym__cite_author_in_text] = ACTIONS(2128), - [sym__cite_suppress_author] = ACTIONS(2128), - [sym__strikeout_open] = ACTIONS(2128), - [sym__subscript_open] = ACTIONS(2128), - [sym__superscript_open] = ACTIONS(2128), - [sym__inline_note_start_token] = ACTIONS(2128), - [sym__strong_emphasis_open_star] = ACTIONS(2128), - [sym__strong_emphasis_open_underscore] = ACTIONS(2128), - [sym__emphasis_open_star] = ACTIONS(2128), - [sym__emphasis_open_underscore] = ACTIONS(2128), - [sym_inline_note_reference] = ACTIONS(2128), - [sym_html_element] = ACTIONS(2128), - [sym__pandoc_line_break] = ACTIONS(2128), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2122), + [sym__list_marker_example] = ACTIONS(2122), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2122), + [sym__fenced_code_block_start_backtick] = ACTIONS(2122), + [sym_minus_metadata] = ACTIONS(2122), + [sym__pipe_table_start] = ACTIONS(2122), + [sym__fenced_div_start] = ACTIONS(2122), + [sym__fenced_div_end] = ACTIONS(2122), + [sym_ref_id_specifier] = ACTIONS(2122), + [sym__code_span_start] = ACTIONS(2122), + [sym__html_comment] = ACTIONS(2122), + [sym__autolink] = ACTIONS(2122), + [sym__highlight_span_start] = ACTIONS(2122), + [sym__insert_span_start] = ACTIONS(2122), + [sym__delete_span_start] = ACTIONS(2122), + [sym__edit_comment_span_start] = ACTIONS(2122), + [sym__single_quote_span_open] = ACTIONS(2122), + [sym__double_quote_span_open] = ACTIONS(2122), + [sym__shortcode_open_escaped] = ACTIONS(2122), + [sym__shortcode_open] = ACTIONS(2122), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2122), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2122), + [sym__cite_author_in_text] = ACTIONS(2122), + [sym__cite_suppress_author] = ACTIONS(2122), + [sym__strikeout_open] = ACTIONS(2122), + [sym__subscript_open] = ACTIONS(2122), + [sym__superscript_open] = ACTIONS(2122), + [sym__inline_note_start_token] = ACTIONS(2122), + [sym__strong_emphasis_open_star] = ACTIONS(2122), + [sym__strong_emphasis_open_underscore] = ACTIONS(2122), + [sym__emphasis_open_star] = ACTIONS(2122), + [sym__emphasis_open_underscore] = ACTIONS(2122), + [sym_inline_note_reference] = ACTIONS(2122), + [sym_html_element] = ACTIONS(2122), + [sym__pandoc_line_break] = ACTIONS(2122), }, [STATE(143)] = { - [sym_list_marker_example] = STATE(2), - [sym__list_item_example] = STATE(176), - [aux_sym__list_example_repeat1] = STATE(176), - [anon_sym_COLON] = ACTIONS(2132), - [sym_entity_reference] = ACTIONS(2132), - [sym_numeric_character_reference] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_BANG_LBRACK] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2132), - [aux_sym_pandoc_str_token1] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2132), - [aux_sym__prose_punctuation_token1] = ACTIONS(2134), - [sym__line_ending] = ACTIONS(2132), - [sym__soft_line_ending] = ACTIONS(2132), - [sym__block_close] = ACTIONS(2132), - [sym__block_quote_start] = ACTIONS(2132), - [sym_atx_h1_marker] = ACTIONS(2132), - [sym_atx_h2_marker] = ACTIONS(2132), - [sym_atx_h3_marker] = ACTIONS(2132), - [sym_atx_h4_marker] = ACTIONS(2132), - [sym_atx_h5_marker] = ACTIONS(2132), - [sym_atx_h6_marker] = ACTIONS(2132), - [sym__thematic_break] = ACTIONS(2132), - [sym__list_marker_minus] = ACTIONS(2132), - [sym__list_marker_plus] = ACTIONS(2132), - [sym__list_marker_star] = ACTIONS(2132), - [sym__list_marker_parenthesis] = ACTIONS(2132), - [sym__list_marker_dot] = ACTIONS(2132), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2132), + [sym_list_marker_example] = STATE(18), + [sym__list_item_example] = STATE(139), + [aux_sym__list_example_repeat1] = STATE(139), + [anon_sym_COLON] = ACTIONS(2126), + [sym_entity_reference] = ACTIONS(2126), + [sym_numeric_character_reference] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_BANG_LBRACK] = ACTIONS(2126), + [anon_sym_DOLLAR] = ACTIONS(2128), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2126), + [aux_sym_pandoc_str_token1] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(2126), + [sym__whitespace] = ACTIONS(2126), + [sym__line_ending] = ACTIONS(2126), + [sym__soft_line_ending] = ACTIONS(2126), + [sym__block_close] = ACTIONS(2126), + [sym__block_quote_start] = ACTIONS(2126), + [sym_atx_h1_marker] = ACTIONS(2126), + [sym_atx_h2_marker] = ACTIONS(2126), + [sym_atx_h3_marker] = ACTIONS(2126), + [sym_atx_h4_marker] = ACTIONS(2126), + [sym_atx_h5_marker] = ACTIONS(2126), + [sym_atx_h6_marker] = ACTIONS(2126), + [sym__thematic_break] = ACTIONS(2126), + [sym__list_marker_minus] = ACTIONS(2126), + [sym__list_marker_plus] = ACTIONS(2126), + [sym__list_marker_star] = ACTIONS(2126), + [sym__list_marker_parenthesis] = ACTIONS(2126), + [sym__list_marker_dot] = ACTIONS(2126), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2126), [sym__list_marker_example] = ACTIONS(55), [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(2132), - [sym_minus_metadata] = ACTIONS(2132), - [sym__pipe_table_start] = ACTIONS(2132), - [sym__fenced_div_start] = ACTIONS(2132), - [sym__fenced_div_end] = ACTIONS(2132), - [sym_ref_id_specifier] = ACTIONS(2132), - [sym__code_span_start] = ACTIONS(2132), - [sym__html_comment] = ACTIONS(2132), - [sym__autolink] = ACTIONS(2132), - [sym__highlight_span_start] = ACTIONS(2132), - [sym__insert_span_start] = ACTIONS(2132), - [sym__delete_span_start] = ACTIONS(2132), - [sym__edit_comment_span_start] = ACTIONS(2132), - [sym__single_quote_span_open] = ACTIONS(2132), - [sym__double_quote_span_open] = ACTIONS(2132), - [sym__shortcode_open_escaped] = ACTIONS(2132), - [sym__shortcode_open] = ACTIONS(2132), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2132), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2132), - [sym__cite_author_in_text] = ACTIONS(2132), - [sym__cite_suppress_author] = ACTIONS(2132), - [sym__strikeout_open] = ACTIONS(2132), - [sym__subscript_open] = ACTIONS(2132), - [sym__superscript_open] = ACTIONS(2132), - [sym__inline_note_start_token] = ACTIONS(2132), - [sym__strong_emphasis_open_star] = ACTIONS(2132), - [sym__strong_emphasis_open_underscore] = ACTIONS(2132), - [sym__emphasis_open_star] = ACTIONS(2132), - [sym__emphasis_open_underscore] = ACTIONS(2132), - [sym_inline_note_reference] = ACTIONS(2132), - [sym_html_element] = ACTIONS(2132), - [sym__pandoc_line_break] = ACTIONS(2132), + [sym__fenced_code_block_start_backtick] = ACTIONS(2126), + [sym_minus_metadata] = ACTIONS(2126), + [sym__pipe_table_start] = ACTIONS(2126), + [sym__fenced_div_start] = ACTIONS(2126), + [sym__fenced_div_end] = ACTIONS(2126), + [sym_ref_id_specifier] = ACTIONS(2126), + [sym__code_span_start] = ACTIONS(2126), + [sym__html_comment] = ACTIONS(2126), + [sym__autolink] = ACTIONS(2126), + [sym__highlight_span_start] = ACTIONS(2126), + [sym__insert_span_start] = ACTIONS(2126), + [sym__delete_span_start] = ACTIONS(2126), + [sym__edit_comment_span_start] = ACTIONS(2126), + [sym__single_quote_span_open] = ACTIONS(2126), + [sym__double_quote_span_open] = ACTIONS(2126), + [sym__shortcode_open_escaped] = ACTIONS(2126), + [sym__shortcode_open] = ACTIONS(2126), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2126), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2126), + [sym__cite_author_in_text] = ACTIONS(2126), + [sym__cite_suppress_author] = ACTIONS(2126), + [sym__strikeout_open] = ACTIONS(2126), + [sym__subscript_open] = ACTIONS(2126), + [sym__superscript_open] = ACTIONS(2126), + [sym__inline_note_start_token] = ACTIONS(2126), + [sym__strong_emphasis_open_star] = ACTIONS(2126), + [sym__strong_emphasis_open_underscore] = ACTIONS(2126), + [sym__emphasis_open_star] = ACTIONS(2126), + [sym__emphasis_open_underscore] = ACTIONS(2126), + [sym_inline_note_reference] = ACTIONS(2126), + [sym_html_element] = ACTIONS(2126), + [sym__pandoc_line_break] = ACTIONS(2126), }, [STATE(144)] = { - [sym_list_marker_plus] = STATE(15), - [sym__list_item_plus] = STATE(144), - [aux_sym__list_plus_repeat1] = STATE(144), - [anon_sym_COLON] = ACTIONS(2136), - [sym_entity_reference] = ACTIONS(2136), - [sym_numeric_character_reference] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_BANG_LBRACK] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2136), - [aux_sym_pandoc_str_token1] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2136), - [aux_sym__prose_punctuation_token1] = ACTIONS(2138), - [sym__line_ending] = ACTIONS(2136), - [sym__soft_line_ending] = ACTIONS(2136), - [sym__block_close] = ACTIONS(2136), - [sym__block_quote_start] = ACTIONS(2136), - [sym_atx_h1_marker] = ACTIONS(2136), - [sym_atx_h2_marker] = ACTIONS(2136), - [sym_atx_h3_marker] = ACTIONS(2136), - [sym_atx_h4_marker] = ACTIONS(2136), - [sym_atx_h5_marker] = ACTIONS(2136), - [sym_atx_h6_marker] = ACTIONS(2136), - [sym__thematic_break] = ACTIONS(2136), - [sym__list_marker_minus] = ACTIONS(2136), - [sym__list_marker_plus] = ACTIONS(2140), - [sym__list_marker_star] = ACTIONS(2136), - [sym__list_marker_parenthesis] = ACTIONS(2136), - [sym__list_marker_dot] = ACTIONS(2136), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2140), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_example] = ACTIONS(2136), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2136), - [sym__fenced_code_block_start_backtick] = ACTIONS(2136), - [sym_minus_metadata] = ACTIONS(2136), - [sym__pipe_table_start] = ACTIONS(2136), - [sym__fenced_div_start] = ACTIONS(2136), - [sym__fenced_div_end] = ACTIONS(2136), - [sym_ref_id_specifier] = ACTIONS(2136), - [sym__code_span_start] = ACTIONS(2136), - [sym__html_comment] = ACTIONS(2136), - [sym__autolink] = ACTIONS(2136), - [sym__highlight_span_start] = ACTIONS(2136), - [sym__insert_span_start] = ACTIONS(2136), - [sym__delete_span_start] = ACTIONS(2136), - [sym__edit_comment_span_start] = ACTIONS(2136), - [sym__single_quote_span_open] = ACTIONS(2136), - [sym__double_quote_span_open] = ACTIONS(2136), - [sym__shortcode_open_escaped] = ACTIONS(2136), - [sym__shortcode_open] = ACTIONS(2136), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2136), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2136), - [sym__cite_author_in_text] = ACTIONS(2136), - [sym__cite_suppress_author] = ACTIONS(2136), - [sym__strikeout_open] = ACTIONS(2136), - [sym__subscript_open] = ACTIONS(2136), - [sym__superscript_open] = ACTIONS(2136), - [sym__inline_note_start_token] = ACTIONS(2136), - [sym__strong_emphasis_open_star] = ACTIONS(2136), - [sym__strong_emphasis_open_underscore] = ACTIONS(2136), - [sym__emphasis_open_star] = ACTIONS(2136), - [sym__emphasis_open_underscore] = ACTIONS(2136), - [sym_inline_note_reference] = ACTIONS(2136), - [sym_html_element] = ACTIONS(2136), - [sym__pandoc_line_break] = ACTIONS(2136), + [sym_list_marker_dot] = STATE(16), + [sym__list_item_dot] = STATE(138), + [aux_sym__list_dot_repeat1] = STATE(138), + [anon_sym_COLON] = ACTIONS(2130), + [sym_entity_reference] = ACTIONS(2130), + [sym_numeric_character_reference] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_BANG_LBRACK] = ACTIONS(2130), + [anon_sym_DOLLAR] = ACTIONS(2132), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2130), + [aux_sym_pandoc_str_token1] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2130), + [sym__whitespace] = ACTIONS(2130), + [sym__line_ending] = ACTIONS(2130), + [sym__soft_line_ending] = ACTIONS(2130), + [sym__block_close] = ACTIONS(2130), + [sym__block_quote_start] = ACTIONS(2130), + [sym_atx_h1_marker] = ACTIONS(2130), + [sym_atx_h2_marker] = ACTIONS(2130), + [sym_atx_h3_marker] = ACTIONS(2130), + [sym_atx_h4_marker] = ACTIONS(2130), + [sym_atx_h5_marker] = ACTIONS(2130), + [sym_atx_h6_marker] = ACTIONS(2130), + [sym__thematic_break] = ACTIONS(2130), + [sym__list_marker_minus] = ACTIONS(2130), + [sym__list_marker_plus] = ACTIONS(2130), + [sym__list_marker_star] = ACTIONS(2130), + [sym__list_marker_parenthesis] = ACTIONS(2130), + [sym__list_marker_dot] = ACTIONS(53), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2130), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2130), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2130), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2130), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(2130), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2130), + [sym__fenced_code_block_start_backtick] = ACTIONS(2130), + [sym_minus_metadata] = ACTIONS(2130), + [sym__pipe_table_start] = ACTIONS(2130), + [sym__fenced_div_start] = ACTIONS(2130), + [sym__fenced_div_end] = ACTIONS(2130), + [sym_ref_id_specifier] = ACTIONS(2130), + [sym__code_span_start] = ACTIONS(2130), + [sym__html_comment] = ACTIONS(2130), + [sym__autolink] = ACTIONS(2130), + [sym__highlight_span_start] = ACTIONS(2130), + [sym__insert_span_start] = ACTIONS(2130), + [sym__delete_span_start] = ACTIONS(2130), + [sym__edit_comment_span_start] = ACTIONS(2130), + [sym__single_quote_span_open] = ACTIONS(2130), + [sym__double_quote_span_open] = ACTIONS(2130), + [sym__shortcode_open_escaped] = ACTIONS(2130), + [sym__shortcode_open] = ACTIONS(2130), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2130), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2130), + [sym__cite_author_in_text] = ACTIONS(2130), + [sym__cite_suppress_author] = ACTIONS(2130), + [sym__strikeout_open] = ACTIONS(2130), + [sym__subscript_open] = ACTIONS(2130), + [sym__superscript_open] = ACTIONS(2130), + [sym__inline_note_start_token] = ACTIONS(2130), + [sym__strong_emphasis_open_star] = ACTIONS(2130), + [sym__strong_emphasis_open_underscore] = ACTIONS(2130), + [sym__emphasis_open_star] = ACTIONS(2130), + [sym__emphasis_open_underscore] = ACTIONS(2130), + [sym_inline_note_reference] = ACTIONS(2130), + [sym_html_element] = ACTIONS(2130), + [sym__pandoc_line_break] = ACTIONS(2130), }, [STATE(145)] = { - [sym__inlines] = STATE(2856), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1107), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(499), - [sym__inline_whitespace] = STATE(499), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2143), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2147), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_parenthesis] = STATE(17), + [sym__list_item_parenthesis] = STATE(145), + [aux_sym__list_parenthesis_repeat1] = STATE(145), + [anon_sym_COLON] = ACTIONS(2134), + [sym_entity_reference] = ACTIONS(2134), + [sym_numeric_character_reference] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_BANG_LBRACK] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [aux_sym_pandoc_str_token1] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2134), + [sym__whitespace] = ACTIONS(2134), + [sym__line_ending] = ACTIONS(2134), + [sym__soft_line_ending] = ACTIONS(2134), + [sym__block_close] = ACTIONS(2134), + [sym__block_quote_start] = ACTIONS(2134), + [sym_atx_h1_marker] = ACTIONS(2134), + [sym_atx_h2_marker] = ACTIONS(2134), + [sym_atx_h3_marker] = ACTIONS(2134), + [sym_atx_h4_marker] = ACTIONS(2134), + [sym_atx_h5_marker] = ACTIONS(2134), + [sym_atx_h6_marker] = ACTIONS(2134), + [sym__thematic_break] = ACTIONS(2134), + [sym__list_marker_minus] = ACTIONS(2134), + [sym__list_marker_plus] = ACTIONS(2134), + [sym__list_marker_star] = ACTIONS(2134), + [sym__list_marker_parenthesis] = ACTIONS(2138), + [sym__list_marker_dot] = ACTIONS(2134), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2134), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2134), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2134), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2138), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2134), + [sym__list_marker_example] = ACTIONS(2134), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2134), + [sym__fenced_code_block_start_backtick] = ACTIONS(2134), + [sym_minus_metadata] = ACTIONS(2134), + [sym__pipe_table_start] = ACTIONS(2134), + [sym__fenced_div_start] = ACTIONS(2134), + [sym__fenced_div_end] = ACTIONS(2134), + [sym_ref_id_specifier] = ACTIONS(2134), + [sym__code_span_start] = ACTIONS(2134), + [sym__html_comment] = ACTIONS(2134), + [sym__autolink] = ACTIONS(2134), + [sym__highlight_span_start] = ACTIONS(2134), + [sym__insert_span_start] = ACTIONS(2134), + [sym__delete_span_start] = ACTIONS(2134), + [sym__edit_comment_span_start] = ACTIONS(2134), + [sym__single_quote_span_open] = ACTIONS(2134), + [sym__double_quote_span_open] = ACTIONS(2134), + [sym__shortcode_open_escaped] = ACTIONS(2134), + [sym__shortcode_open] = ACTIONS(2134), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2134), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2134), + [sym__cite_author_in_text] = ACTIONS(2134), + [sym__cite_suppress_author] = ACTIONS(2134), + [sym__strikeout_open] = ACTIONS(2134), + [sym__subscript_open] = ACTIONS(2134), + [sym__superscript_open] = ACTIONS(2134), + [sym__inline_note_start_token] = ACTIONS(2134), + [sym__strong_emphasis_open_star] = ACTIONS(2134), + [sym__strong_emphasis_open_underscore] = ACTIONS(2134), + [sym__emphasis_open_star] = ACTIONS(2134), + [sym__emphasis_open_underscore] = ACTIONS(2134), + [sym_inline_note_reference] = ACTIONS(2134), + [sym_html_element] = ACTIONS(2134), + [sym__pandoc_line_break] = ACTIONS(2134), }, [STATE(146)] = { - [sym__inlines] = STATE(2858), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1108), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(500), - [sym__inline_whitespace] = STATE(500), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2149), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2151), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_dot] = STATE(5), + [sym__list_item_dot] = STATE(153), + [aux_sym__list_dot_repeat1] = STATE(153), + [ts_builtin_sym_end] = ACTIONS(2130), + [anon_sym_COLON] = ACTIONS(2130), + [sym_entity_reference] = ACTIONS(2130), + [sym_numeric_character_reference] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_BANG_LBRACK] = ACTIONS(2130), + [anon_sym_DOLLAR] = ACTIONS(2132), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2130), + [aux_sym_pandoc_str_token1] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2130), + [sym__whitespace] = ACTIONS(2130), + [sym__line_ending] = ACTIONS(2130), + [sym__soft_line_ending] = ACTIONS(2130), + [sym__block_quote_start] = ACTIONS(2130), + [sym_atx_h1_marker] = ACTIONS(2130), + [sym_atx_h2_marker] = ACTIONS(2130), + [sym_atx_h3_marker] = ACTIONS(2130), + [sym_atx_h4_marker] = ACTIONS(2130), + [sym_atx_h5_marker] = ACTIONS(2130), + [sym_atx_h6_marker] = ACTIONS(2130), + [sym__thematic_break] = ACTIONS(2130), + [sym__list_marker_minus] = ACTIONS(2130), + [sym__list_marker_plus] = ACTIONS(2130), + [sym__list_marker_star] = ACTIONS(2130), + [sym__list_marker_parenthesis] = ACTIONS(2130), + [sym__list_marker_dot] = ACTIONS(53), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2130), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2130), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2130), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2130), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(2130), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2130), + [sym__fenced_code_block_start_backtick] = ACTIONS(2130), + [sym_minus_metadata] = ACTIONS(2130), + [sym__pipe_table_start] = ACTIONS(2130), + [sym__fenced_div_start] = ACTIONS(2130), + [sym_ref_id_specifier] = ACTIONS(2130), + [sym__code_span_start] = ACTIONS(2130), + [sym__html_comment] = ACTIONS(2130), + [sym__autolink] = ACTIONS(2130), + [sym__highlight_span_start] = ACTIONS(2130), + [sym__insert_span_start] = ACTIONS(2130), + [sym__delete_span_start] = ACTIONS(2130), + [sym__edit_comment_span_start] = ACTIONS(2130), + [sym__single_quote_span_open] = ACTIONS(2130), + [sym__double_quote_span_open] = ACTIONS(2130), + [sym__shortcode_open_escaped] = ACTIONS(2130), + [sym__shortcode_open] = ACTIONS(2130), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2130), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2130), + [sym__cite_author_in_text] = ACTIONS(2130), + [sym__cite_suppress_author] = ACTIONS(2130), + [sym__strikeout_open] = ACTIONS(2130), + [sym__subscript_open] = ACTIONS(2130), + [sym__superscript_open] = ACTIONS(2130), + [sym__inline_note_start_token] = ACTIONS(2130), + [sym__strong_emphasis_open_star] = ACTIONS(2130), + [sym__strong_emphasis_open_underscore] = ACTIONS(2130), + [sym__emphasis_open_star] = ACTIONS(2130), + [sym__emphasis_open_underscore] = ACTIONS(2130), + [sym_inline_note_reference] = ACTIONS(2130), + [sym_html_element] = ACTIONS(2130), + [sym__pandoc_line_break] = ACTIONS(2130), }, [STATE(147)] = { - [sym__inlines] = STATE(2789), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1204), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(507), - [sym__inline_whitespace] = STATE(507), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2153), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2157), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_minus] = STATE(9), + [sym__list_item_minus] = STATE(160), + [aux_sym__list_minus_repeat1] = STATE(160), + [anon_sym_COLON] = ACTIONS(2114), + [sym_entity_reference] = ACTIONS(2114), + [sym_numeric_character_reference] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_BANG_LBRACK] = ACTIONS(2114), + [anon_sym_DOLLAR] = ACTIONS(2116), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [aux_sym_pandoc_str_token1] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2114), + [sym__whitespace] = ACTIONS(2114), + [sym__line_ending] = ACTIONS(2114), + [sym__soft_line_ending] = ACTIONS(2114), + [sym__block_close] = ACTIONS(2114), + [sym__block_quote_start] = ACTIONS(2114), + [sym_atx_h1_marker] = ACTIONS(2114), + [sym_atx_h2_marker] = ACTIONS(2114), + [sym_atx_h3_marker] = ACTIONS(2114), + [sym_atx_h4_marker] = ACTIONS(2114), + [sym_atx_h5_marker] = ACTIONS(2114), + [sym_atx_h6_marker] = ACTIONS(2114), + [sym__thematic_break] = ACTIONS(2114), + [sym__list_marker_minus] = ACTIONS(45), + [sym__list_marker_plus] = ACTIONS(2114), + [sym__list_marker_star] = ACTIONS(2114), + [sym__list_marker_parenthesis] = ACTIONS(2114), + [sym__list_marker_dot] = ACTIONS(2114), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2114), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2114), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2114), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2114), + [sym__list_marker_example] = ACTIONS(2114), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2114), + [sym__fenced_code_block_start_backtick] = ACTIONS(2114), + [sym_minus_metadata] = ACTIONS(2114), + [sym__pipe_table_start] = ACTIONS(2114), + [sym__fenced_div_start] = ACTIONS(2114), + [sym_ref_id_specifier] = ACTIONS(2114), + [sym__code_span_start] = ACTIONS(2114), + [sym__html_comment] = ACTIONS(2114), + [sym__autolink] = ACTIONS(2114), + [sym__highlight_span_start] = ACTIONS(2114), + [sym__insert_span_start] = ACTIONS(2114), + [sym__delete_span_start] = ACTIONS(2114), + [sym__edit_comment_span_start] = ACTIONS(2114), + [sym__single_quote_span_open] = ACTIONS(2114), + [sym__double_quote_span_open] = ACTIONS(2114), + [sym__shortcode_open_escaped] = ACTIONS(2114), + [sym__shortcode_open] = ACTIONS(2114), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2114), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2114), + [sym__cite_author_in_text] = ACTIONS(2114), + [sym__cite_suppress_author] = ACTIONS(2114), + [sym__strikeout_open] = ACTIONS(2114), + [sym__subscript_open] = ACTIONS(2114), + [sym__superscript_open] = ACTIONS(2114), + [sym__inline_note_start_token] = ACTIONS(2114), + [sym__strong_emphasis_open_star] = ACTIONS(2114), + [sym__strong_emphasis_open_underscore] = ACTIONS(2114), + [sym__emphasis_open_star] = ACTIONS(2114), + [sym__emphasis_open_underscore] = ACTIONS(2114), + [sym_inline_note_reference] = ACTIONS(2114), + [sym_html_element] = ACTIONS(2114), + [sym__pandoc_line_break] = ACTIONS(2114), }, [STATE(148)] = { - [sym__inlines] = STATE(2798), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1217), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(508), - [sym__inline_whitespace] = STATE(508), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2159), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2161), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_star] = STATE(10), + [sym__list_item_star] = STATE(161), + [aux_sym__list_star_repeat1] = STATE(161), + [anon_sym_COLON] = ACTIONS(2118), + [sym_entity_reference] = ACTIONS(2118), + [sym_numeric_character_reference] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_BANG_LBRACK] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [aux_sym_pandoc_str_token1] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2118), + [sym__whitespace] = ACTIONS(2118), + [sym__line_ending] = ACTIONS(2118), + [sym__soft_line_ending] = ACTIONS(2118), + [sym__block_close] = ACTIONS(2118), + [sym__block_quote_start] = ACTIONS(2118), + [sym_atx_h1_marker] = ACTIONS(2118), + [sym_atx_h2_marker] = ACTIONS(2118), + [sym_atx_h3_marker] = ACTIONS(2118), + [sym_atx_h4_marker] = ACTIONS(2118), + [sym_atx_h5_marker] = ACTIONS(2118), + [sym_atx_h6_marker] = ACTIONS(2118), + [sym__thematic_break] = ACTIONS(2118), + [sym__list_marker_minus] = ACTIONS(2118), + [sym__list_marker_plus] = ACTIONS(2118), + [sym__list_marker_star] = ACTIONS(49), + [sym__list_marker_parenthesis] = ACTIONS(2118), + [sym__list_marker_dot] = ACTIONS(2118), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2118), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2118), + [sym__list_marker_star_dont_interrupt] = ACTIONS(49), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2118), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2118), + [sym__list_marker_example] = ACTIONS(2118), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2118), + [sym__fenced_code_block_start_backtick] = ACTIONS(2118), + [sym_minus_metadata] = ACTIONS(2118), + [sym__pipe_table_start] = ACTIONS(2118), + [sym__fenced_div_start] = ACTIONS(2118), + [sym_ref_id_specifier] = ACTIONS(2118), + [sym__code_span_start] = ACTIONS(2118), + [sym__html_comment] = ACTIONS(2118), + [sym__autolink] = ACTIONS(2118), + [sym__highlight_span_start] = ACTIONS(2118), + [sym__insert_span_start] = ACTIONS(2118), + [sym__delete_span_start] = ACTIONS(2118), + [sym__edit_comment_span_start] = ACTIONS(2118), + [sym__single_quote_span_open] = ACTIONS(2118), + [sym__double_quote_span_open] = ACTIONS(2118), + [sym__shortcode_open_escaped] = ACTIONS(2118), + [sym__shortcode_open] = ACTIONS(2118), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2118), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2118), + [sym__cite_author_in_text] = ACTIONS(2118), + [sym__cite_suppress_author] = ACTIONS(2118), + [sym__strikeout_open] = ACTIONS(2118), + [sym__subscript_open] = ACTIONS(2118), + [sym__superscript_open] = ACTIONS(2118), + [sym__inline_note_start_token] = ACTIONS(2118), + [sym__strong_emphasis_open_star] = ACTIONS(2118), + [sym__strong_emphasis_open_underscore] = ACTIONS(2118), + [sym__emphasis_open_star] = ACTIONS(2118), + [sym__emphasis_open_underscore] = ACTIONS(2118), + [sym_inline_note_reference] = ACTIONS(2118), + [sym_html_element] = ACTIONS(2118), + [sym__pandoc_line_break] = ACTIONS(2118), }, [STATE(149)] = { - [sym__inlines] = STATE(2909), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1293), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(515), - [sym__inline_whitespace] = STATE(515), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2163), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2167), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_dot] = STATE(11), + [sym__list_item_dot] = STATE(162), + [aux_sym__list_dot_repeat1] = STATE(162), + [anon_sym_COLON] = ACTIONS(2130), + [sym_entity_reference] = ACTIONS(2130), + [sym_numeric_character_reference] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_BANG_LBRACK] = ACTIONS(2130), + [anon_sym_DOLLAR] = ACTIONS(2132), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2130), + [aux_sym_pandoc_str_token1] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2130), + [sym__whitespace] = ACTIONS(2130), + [sym__line_ending] = ACTIONS(2130), + [sym__soft_line_ending] = ACTIONS(2130), + [sym__block_close] = ACTIONS(2130), + [sym__block_quote_start] = ACTIONS(2130), + [sym_atx_h1_marker] = ACTIONS(2130), + [sym_atx_h2_marker] = ACTIONS(2130), + [sym_atx_h3_marker] = ACTIONS(2130), + [sym_atx_h4_marker] = ACTIONS(2130), + [sym_atx_h5_marker] = ACTIONS(2130), + [sym_atx_h6_marker] = ACTIONS(2130), + [sym__thematic_break] = ACTIONS(2130), + [sym__list_marker_minus] = ACTIONS(2130), + [sym__list_marker_plus] = ACTIONS(2130), + [sym__list_marker_star] = ACTIONS(2130), + [sym__list_marker_parenthesis] = ACTIONS(2130), + [sym__list_marker_dot] = ACTIONS(53), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2130), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2130), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2130), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2130), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(2130), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2130), + [sym__fenced_code_block_start_backtick] = ACTIONS(2130), + [sym_minus_metadata] = ACTIONS(2130), + [sym__pipe_table_start] = ACTIONS(2130), + [sym__fenced_div_start] = ACTIONS(2130), + [sym_ref_id_specifier] = ACTIONS(2130), + [sym__code_span_start] = ACTIONS(2130), + [sym__html_comment] = ACTIONS(2130), + [sym__autolink] = ACTIONS(2130), + [sym__highlight_span_start] = ACTIONS(2130), + [sym__insert_span_start] = ACTIONS(2130), + [sym__delete_span_start] = ACTIONS(2130), + [sym__edit_comment_span_start] = ACTIONS(2130), + [sym__single_quote_span_open] = ACTIONS(2130), + [sym__double_quote_span_open] = ACTIONS(2130), + [sym__shortcode_open_escaped] = ACTIONS(2130), + [sym__shortcode_open] = ACTIONS(2130), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2130), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2130), + [sym__cite_author_in_text] = ACTIONS(2130), + [sym__cite_suppress_author] = ACTIONS(2130), + [sym__strikeout_open] = ACTIONS(2130), + [sym__subscript_open] = ACTIONS(2130), + [sym__superscript_open] = ACTIONS(2130), + [sym__inline_note_start_token] = ACTIONS(2130), + [sym__strong_emphasis_open_star] = ACTIONS(2130), + [sym__strong_emphasis_open_underscore] = ACTIONS(2130), + [sym__emphasis_open_star] = ACTIONS(2130), + [sym__emphasis_open_underscore] = ACTIONS(2130), + [sym_inline_note_reference] = ACTIONS(2130), + [sym_html_element] = ACTIONS(2130), + [sym__pandoc_line_break] = ACTIONS(2130), }, [STATE(150)] = { - [sym__inlines] = STATE(2914), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1303), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(516), - [sym__inline_whitespace] = STATE(516), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2169), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2171), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_parenthesis] = STATE(169), + [aux_sym__list_parenthesis_repeat1] = STATE(169), + [anon_sym_COLON] = ACTIONS(2122), + [sym_entity_reference] = ACTIONS(2122), + [sym_numeric_character_reference] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_BANG_LBRACK] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2124), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2122), + [aux_sym_pandoc_str_token1] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2122), + [sym__whitespace] = ACTIONS(2122), + [sym__line_ending] = ACTIONS(2122), + [sym__soft_line_ending] = ACTIONS(2122), + [sym__block_close] = ACTIONS(2122), + [sym__block_quote_start] = ACTIONS(2122), + [sym_atx_h1_marker] = ACTIONS(2122), + [sym_atx_h2_marker] = ACTIONS(2122), + [sym_atx_h3_marker] = ACTIONS(2122), + [sym_atx_h4_marker] = ACTIONS(2122), + [sym_atx_h5_marker] = ACTIONS(2122), + [sym_atx_h6_marker] = ACTIONS(2122), + [sym__thematic_break] = ACTIONS(2122), + [sym__list_marker_minus] = ACTIONS(2122), + [sym__list_marker_plus] = ACTIONS(2122), + [sym__list_marker_star] = ACTIONS(2122), + [sym__list_marker_parenthesis] = ACTIONS(51), + [sym__list_marker_dot] = ACTIONS(2122), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2122), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2122), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2122), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2122), + [sym__list_marker_example] = ACTIONS(2122), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2122), + [sym__fenced_code_block_start_backtick] = ACTIONS(2122), + [sym_minus_metadata] = ACTIONS(2122), + [sym__pipe_table_start] = ACTIONS(2122), + [sym__fenced_div_start] = ACTIONS(2122), + [sym_ref_id_specifier] = ACTIONS(2122), + [sym__code_span_start] = ACTIONS(2122), + [sym__html_comment] = ACTIONS(2122), + [sym__autolink] = ACTIONS(2122), + [sym__highlight_span_start] = ACTIONS(2122), + [sym__insert_span_start] = ACTIONS(2122), + [sym__delete_span_start] = ACTIONS(2122), + [sym__edit_comment_span_start] = ACTIONS(2122), + [sym__single_quote_span_open] = ACTIONS(2122), + [sym__double_quote_span_open] = ACTIONS(2122), + [sym__shortcode_open_escaped] = ACTIONS(2122), + [sym__shortcode_open] = ACTIONS(2122), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2122), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2122), + [sym__cite_author_in_text] = ACTIONS(2122), + [sym__cite_suppress_author] = ACTIONS(2122), + [sym__strikeout_open] = ACTIONS(2122), + [sym__subscript_open] = ACTIONS(2122), + [sym__superscript_open] = ACTIONS(2122), + [sym__inline_note_start_token] = ACTIONS(2122), + [sym__strong_emphasis_open_star] = ACTIONS(2122), + [sym__strong_emphasis_open_underscore] = ACTIONS(2122), + [sym__emphasis_open_star] = ACTIONS(2122), + [sym__emphasis_open_underscore] = ACTIONS(2122), + [sym_inline_note_reference] = ACTIONS(2122), + [sym_html_element] = ACTIONS(2122), + [sym__pandoc_line_break] = ACTIONS(2122), }, [STATE(151)] = { - [sym__inlines] = STATE(3031), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1365), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(523), - [sym__inline_whitespace] = STATE(523), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2173), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2177), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_example] = STATE(12), + [sym__list_item_example] = STATE(170), + [aux_sym__list_example_repeat1] = STATE(170), + [anon_sym_COLON] = ACTIONS(2126), + [sym_entity_reference] = ACTIONS(2126), + [sym_numeric_character_reference] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_BANG_LBRACK] = ACTIONS(2126), + [anon_sym_DOLLAR] = ACTIONS(2128), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2126), + [aux_sym_pandoc_str_token1] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(2126), + [sym__whitespace] = ACTIONS(2126), + [sym__line_ending] = ACTIONS(2126), + [sym__soft_line_ending] = ACTIONS(2126), + [sym__block_close] = ACTIONS(2126), + [sym__block_quote_start] = ACTIONS(2126), + [sym_atx_h1_marker] = ACTIONS(2126), + [sym_atx_h2_marker] = ACTIONS(2126), + [sym_atx_h3_marker] = ACTIONS(2126), + [sym_atx_h4_marker] = ACTIONS(2126), + [sym_atx_h5_marker] = ACTIONS(2126), + [sym_atx_h6_marker] = ACTIONS(2126), + [sym__thematic_break] = ACTIONS(2126), + [sym__list_marker_minus] = ACTIONS(2126), + [sym__list_marker_plus] = ACTIONS(2126), + [sym__list_marker_star] = ACTIONS(2126), + [sym__list_marker_parenthesis] = ACTIONS(2126), + [sym__list_marker_dot] = ACTIONS(2126), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_example] = ACTIONS(55), + [sym__list_marker_example_dont_interrupt] = ACTIONS(55), + [sym__fenced_code_block_start_backtick] = ACTIONS(2126), + [sym_minus_metadata] = ACTIONS(2126), + [sym__pipe_table_start] = ACTIONS(2126), + [sym__fenced_div_start] = ACTIONS(2126), + [sym_ref_id_specifier] = ACTIONS(2126), + [sym__code_span_start] = ACTIONS(2126), + [sym__html_comment] = ACTIONS(2126), + [sym__autolink] = ACTIONS(2126), + [sym__highlight_span_start] = ACTIONS(2126), + [sym__insert_span_start] = ACTIONS(2126), + [sym__delete_span_start] = ACTIONS(2126), + [sym__edit_comment_span_start] = ACTIONS(2126), + [sym__single_quote_span_open] = ACTIONS(2126), + [sym__double_quote_span_open] = ACTIONS(2126), + [sym__shortcode_open_escaped] = ACTIONS(2126), + [sym__shortcode_open] = ACTIONS(2126), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2126), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2126), + [sym__cite_author_in_text] = ACTIONS(2126), + [sym__cite_suppress_author] = ACTIONS(2126), + [sym__strikeout_open] = ACTIONS(2126), + [sym__subscript_open] = ACTIONS(2126), + [sym__superscript_open] = ACTIONS(2126), + [sym__inline_note_start_token] = ACTIONS(2126), + [sym__strong_emphasis_open_star] = ACTIONS(2126), + [sym__strong_emphasis_open_underscore] = ACTIONS(2126), + [sym__emphasis_open_star] = ACTIONS(2126), + [sym__emphasis_open_underscore] = ACTIONS(2126), + [sym_inline_note_reference] = ACTIONS(2126), + [sym_html_element] = ACTIONS(2126), + [sym__pandoc_line_break] = ACTIONS(2126), }, [STATE(152)] = { - [sym__inlines] = STATE(2903), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1366), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(524), - [sym__inline_whitespace] = STATE(524), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2179), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2181), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_pipe_table_row] = STATE(3187), + [sym_pipe_table_cell] = STATE(2754), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym_pipe_table_row_repeat1] = STATE(280), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2027), + [sym__line_ending] = ACTIONS(2029), + [sym__eof] = ACTIONS(2029), + [sym__pipe_table_line_ending] = ACTIONS(2029), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2073), + [sym__pandoc_line_break] = ACTIONS(2011), }, [STATE(153)] = { - [sym__inlines] = STATE(2773), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1391), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(530), - [sym__inline_whitespace] = STATE(530), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2183), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2187), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), + [sym_list_marker_dot] = STATE(5), + [sym__list_item_dot] = STATE(153), + [aux_sym__list_dot_repeat1] = STATE(153), + [ts_builtin_sym_end] = ACTIONS(2100), + [anon_sym_COLON] = ACTIONS(2100), + [sym_entity_reference] = ACTIONS(2100), + [sym_numeric_character_reference] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_BANG_LBRACK] = ACTIONS(2100), + [anon_sym_DOLLAR] = ACTIONS(2102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2100), + [aux_sym_pandoc_str_token1] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2100), + [sym__whitespace] = ACTIONS(2100), + [sym__line_ending] = ACTIONS(2100), + [sym__soft_line_ending] = ACTIONS(2100), + [sym__block_quote_start] = ACTIONS(2100), + [sym_atx_h1_marker] = ACTIONS(2100), + [sym_atx_h2_marker] = ACTIONS(2100), + [sym_atx_h3_marker] = ACTIONS(2100), + [sym_atx_h4_marker] = ACTIONS(2100), + [sym_atx_h5_marker] = ACTIONS(2100), + [sym_atx_h6_marker] = ACTIONS(2100), + [sym__thematic_break] = ACTIONS(2100), + [sym__list_marker_minus] = ACTIONS(2100), + [sym__list_marker_plus] = ACTIONS(2100), + [sym__list_marker_star] = ACTIONS(2100), + [sym__list_marker_parenthesis] = ACTIONS(2100), + [sym__list_marker_dot] = ACTIONS(2104), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2100), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2100), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2100), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2100), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2104), + [sym__list_marker_example] = ACTIONS(2100), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2100), + [sym__fenced_code_block_start_backtick] = ACTIONS(2100), + [sym_minus_metadata] = ACTIONS(2100), + [sym__pipe_table_start] = ACTIONS(2100), + [sym__fenced_div_start] = ACTIONS(2100), + [sym_ref_id_specifier] = ACTIONS(2100), + [sym__code_span_start] = ACTIONS(2100), + [sym__html_comment] = ACTIONS(2100), + [sym__autolink] = ACTIONS(2100), + [sym__highlight_span_start] = ACTIONS(2100), + [sym__insert_span_start] = ACTIONS(2100), + [sym__delete_span_start] = ACTIONS(2100), + [sym__edit_comment_span_start] = ACTIONS(2100), + [sym__single_quote_span_open] = ACTIONS(2100), + [sym__double_quote_span_open] = ACTIONS(2100), + [sym__shortcode_open_escaped] = ACTIONS(2100), + [sym__shortcode_open] = ACTIONS(2100), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2100), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2100), + [sym__cite_author_in_text] = ACTIONS(2100), + [sym__cite_suppress_author] = ACTIONS(2100), + [sym__strikeout_open] = ACTIONS(2100), + [sym__subscript_open] = ACTIONS(2100), + [sym__superscript_open] = ACTIONS(2100), + [sym__inline_note_start_token] = ACTIONS(2100), + [sym__strong_emphasis_open_star] = ACTIONS(2100), + [sym__strong_emphasis_open_underscore] = ACTIONS(2100), + [sym__emphasis_open_star] = ACTIONS(2100), [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_inline_note_reference] = ACTIONS(2100), + [sym_html_element] = ACTIONS(2100), + [sym__pandoc_line_break] = ACTIONS(2100), }, [STATE(154)] = { - [sym__inlines] = STATE(2779), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1392), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(531), - [sym__inline_whitespace] = STATE(531), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2189), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2191), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_parenthesis] = STATE(6), + [sym__list_item_parenthesis] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(2134), + [anon_sym_COLON] = ACTIONS(2134), + [sym_entity_reference] = ACTIONS(2134), + [sym_numeric_character_reference] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_BANG_LBRACK] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [aux_sym_pandoc_str_token1] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2134), + [sym__whitespace] = ACTIONS(2134), + [sym__line_ending] = ACTIONS(2134), + [sym__soft_line_ending] = ACTIONS(2134), + [sym__block_quote_start] = ACTIONS(2134), + [sym_atx_h1_marker] = ACTIONS(2134), + [sym_atx_h2_marker] = ACTIONS(2134), + [sym_atx_h3_marker] = ACTIONS(2134), + [sym_atx_h4_marker] = ACTIONS(2134), + [sym_atx_h5_marker] = ACTIONS(2134), + [sym_atx_h6_marker] = ACTIONS(2134), + [sym__thematic_break] = ACTIONS(2134), + [sym__list_marker_minus] = ACTIONS(2134), + [sym__list_marker_plus] = ACTIONS(2134), + [sym__list_marker_star] = ACTIONS(2134), + [sym__list_marker_parenthesis] = ACTIONS(2138), + [sym__list_marker_dot] = ACTIONS(2134), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2134), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2134), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2134), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2138), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2134), + [sym__list_marker_example] = ACTIONS(2134), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2134), + [sym__fenced_code_block_start_backtick] = ACTIONS(2134), + [sym_minus_metadata] = ACTIONS(2134), + [sym__pipe_table_start] = ACTIONS(2134), + [sym__fenced_div_start] = ACTIONS(2134), + [sym_ref_id_specifier] = ACTIONS(2134), + [sym__code_span_start] = ACTIONS(2134), + [sym__html_comment] = ACTIONS(2134), + [sym__autolink] = ACTIONS(2134), + [sym__highlight_span_start] = ACTIONS(2134), + [sym__insert_span_start] = ACTIONS(2134), + [sym__delete_span_start] = ACTIONS(2134), + [sym__edit_comment_span_start] = ACTIONS(2134), + [sym__single_quote_span_open] = ACTIONS(2134), + [sym__double_quote_span_open] = ACTIONS(2134), + [sym__shortcode_open_escaped] = ACTIONS(2134), + [sym__shortcode_open] = ACTIONS(2134), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2134), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2134), + [sym__cite_author_in_text] = ACTIONS(2134), + [sym__cite_suppress_author] = ACTIONS(2134), + [sym__strikeout_open] = ACTIONS(2134), + [sym__subscript_open] = ACTIONS(2134), + [sym__superscript_open] = ACTIONS(2134), + [sym__inline_note_start_token] = ACTIONS(2134), + [sym__strong_emphasis_open_star] = ACTIONS(2134), + [sym__strong_emphasis_open_underscore] = ACTIONS(2134), + [sym__emphasis_open_star] = ACTIONS(2134), + [sym__emphasis_open_underscore] = ACTIONS(2134), + [sym_inline_note_reference] = ACTIONS(2134), + [sym_html_element] = ACTIONS(2134), + [sym__pandoc_line_break] = ACTIONS(2134), }, [STATE(155)] = { - [sym__inlines] = STATE(2908), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1295), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(464), - [sym__inline_whitespace] = STATE(464), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2193), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2197), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_example] = STATE(7), + [sym__list_item_example] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(2107), + [anon_sym_COLON] = ACTIONS(2107), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_BANG_LBRACK] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [aux_sym_pandoc_str_token1] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2107), + [sym__whitespace] = ACTIONS(2107), + [sym__line_ending] = ACTIONS(2107), + [sym__soft_line_ending] = ACTIONS(2107), + [sym__block_quote_start] = ACTIONS(2107), + [sym_atx_h1_marker] = ACTIONS(2107), + [sym_atx_h2_marker] = ACTIONS(2107), + [sym_atx_h3_marker] = ACTIONS(2107), + [sym_atx_h4_marker] = ACTIONS(2107), + [sym_atx_h5_marker] = ACTIONS(2107), + [sym_atx_h6_marker] = ACTIONS(2107), + [sym__thematic_break] = ACTIONS(2107), + [sym__list_marker_minus] = ACTIONS(2107), + [sym__list_marker_plus] = ACTIONS(2107), + [sym__list_marker_star] = ACTIONS(2107), + [sym__list_marker_parenthesis] = ACTIONS(2107), + [sym__list_marker_dot] = ACTIONS(2107), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_example] = ACTIONS(2111), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2111), + [sym__fenced_code_block_start_backtick] = ACTIONS(2107), + [sym_minus_metadata] = ACTIONS(2107), + [sym__pipe_table_start] = ACTIONS(2107), + [sym__fenced_div_start] = ACTIONS(2107), + [sym_ref_id_specifier] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(2107), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2107), + [sym__insert_span_start] = ACTIONS(2107), + [sym__delete_span_start] = ACTIONS(2107), + [sym__edit_comment_span_start] = ACTIONS(2107), + [sym__single_quote_span_open] = ACTIONS(2107), + [sym__double_quote_span_open] = ACTIONS(2107), + [sym__shortcode_open_escaped] = ACTIONS(2107), + [sym__shortcode_open] = ACTIONS(2107), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2107), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), + [sym__cite_author_in_text] = ACTIONS(2107), + [sym__cite_suppress_author] = ACTIONS(2107), + [sym__strikeout_open] = ACTIONS(2107), + [sym__subscript_open] = ACTIONS(2107), + [sym__superscript_open] = ACTIONS(2107), + [sym__inline_note_start_token] = ACTIONS(2107), + [sym__strong_emphasis_open_star] = ACTIONS(2107), + [sym__strong_emphasis_open_underscore] = ACTIONS(2107), + [sym__emphasis_open_star] = ACTIONS(2107), + [sym__emphasis_open_underscore] = ACTIONS(2107), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pandoc_line_break] = ACTIONS(2107), }, [STATE(156)] = { - [sym__inlines] = STATE(2830), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1422), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(539), - [sym__inline_whitespace] = STATE(539), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2199), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2203), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_plus] = STATE(3), + [sym__list_item_plus] = STATE(156), + [aux_sym__list_plus_repeat1] = STATE(156), + [ts_builtin_sym_end] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(2079), + [sym_entity_reference] = ACTIONS(2079), + [sym_numeric_character_reference] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_BANG_LBRACK] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [aux_sym_pandoc_str_token1] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2079), + [sym__whitespace] = ACTIONS(2079), + [sym__line_ending] = ACTIONS(2079), + [sym__soft_line_ending] = ACTIONS(2079), + [sym__block_quote_start] = ACTIONS(2079), + [sym_atx_h1_marker] = ACTIONS(2079), + [sym_atx_h2_marker] = ACTIONS(2079), + [sym_atx_h3_marker] = ACTIONS(2079), + [sym_atx_h4_marker] = ACTIONS(2079), + [sym_atx_h5_marker] = ACTIONS(2079), + [sym_atx_h6_marker] = ACTIONS(2079), + [sym__thematic_break] = ACTIONS(2079), + [sym__list_marker_minus] = ACTIONS(2079), + [sym__list_marker_plus] = ACTIONS(2083), + [sym__list_marker_star] = ACTIONS(2079), + [sym__list_marker_parenthesis] = ACTIONS(2079), + [sym__list_marker_dot] = ACTIONS(2079), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_example] = ACTIONS(2079), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2079), + [sym__fenced_code_block_start_backtick] = ACTIONS(2079), + [sym_minus_metadata] = ACTIONS(2079), + [sym__pipe_table_start] = ACTIONS(2079), + [sym__fenced_div_start] = ACTIONS(2079), + [sym_ref_id_specifier] = ACTIONS(2079), + [sym__code_span_start] = ACTIONS(2079), + [sym__html_comment] = ACTIONS(2079), + [sym__autolink] = ACTIONS(2079), + [sym__highlight_span_start] = ACTIONS(2079), + [sym__insert_span_start] = ACTIONS(2079), + [sym__delete_span_start] = ACTIONS(2079), + [sym__edit_comment_span_start] = ACTIONS(2079), + [sym__single_quote_span_open] = ACTIONS(2079), + [sym__double_quote_span_open] = ACTIONS(2079), + [sym__shortcode_open_escaped] = ACTIONS(2079), + [sym__shortcode_open] = ACTIONS(2079), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2079), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2079), + [sym__cite_author_in_text] = ACTIONS(2079), + [sym__cite_suppress_author] = ACTIONS(2079), + [sym__strikeout_open] = ACTIONS(2079), + [sym__subscript_open] = ACTIONS(2079), + [sym__superscript_open] = ACTIONS(2079), + [sym__inline_note_start_token] = ACTIONS(2079), + [sym__strong_emphasis_open_star] = ACTIONS(2079), + [sym__strong_emphasis_open_underscore] = ACTIONS(2079), + [sym__emphasis_open_star] = ACTIONS(2079), + [sym__emphasis_open_underscore] = ACTIONS(2079), + [sym_inline_note_reference] = ACTIONS(2079), + [sym_html_element] = ACTIONS(2079), + [sym__pandoc_line_break] = ACTIONS(2079), }, [STATE(157)] = { - [sym__inlines] = STATE(2884), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1450), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(546), - [sym__inline_whitespace] = STATE(546), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2205), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2209), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), + [sym_list_marker_minus] = STATE(2), + [sym__list_item_minus] = STATE(157), + [aux_sym__list_minus_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(2086), + [anon_sym_COLON] = ACTIONS(2086), + [sym_entity_reference] = ACTIONS(2086), + [sym_numeric_character_reference] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_BANG_LBRACK] = ACTIONS(2086), + [anon_sym_DOLLAR] = ACTIONS(2088), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2086), + [aux_sym_pandoc_str_token1] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2086), + [sym__whitespace] = ACTIONS(2086), + [sym__line_ending] = ACTIONS(2086), + [sym__soft_line_ending] = ACTIONS(2086), + [sym__block_quote_start] = ACTIONS(2086), + [sym_atx_h1_marker] = ACTIONS(2086), + [sym_atx_h2_marker] = ACTIONS(2086), + [sym_atx_h3_marker] = ACTIONS(2086), + [sym_atx_h4_marker] = ACTIONS(2086), + [sym_atx_h5_marker] = ACTIONS(2086), + [sym_atx_h6_marker] = ACTIONS(2086), + [sym__thematic_break] = ACTIONS(2086), + [sym__list_marker_minus] = ACTIONS(2090), + [sym__list_marker_plus] = ACTIONS(2086), + [sym__list_marker_star] = ACTIONS(2086), + [sym__list_marker_parenthesis] = ACTIONS(2086), + [sym__list_marker_dot] = ACTIONS(2086), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2086), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2086), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2086), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2086), + [sym__list_marker_example] = ACTIONS(2086), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2086), + [sym__fenced_code_block_start_backtick] = ACTIONS(2086), + [sym_minus_metadata] = ACTIONS(2086), + [sym__pipe_table_start] = ACTIONS(2086), + [sym__fenced_div_start] = ACTIONS(2086), + [sym_ref_id_specifier] = ACTIONS(2086), + [sym__code_span_start] = ACTIONS(2086), + [sym__html_comment] = ACTIONS(2086), + [sym__autolink] = ACTIONS(2086), + [sym__highlight_span_start] = ACTIONS(2086), + [sym__insert_span_start] = ACTIONS(2086), + [sym__delete_span_start] = ACTIONS(2086), + [sym__edit_comment_span_start] = ACTIONS(2086), + [sym__single_quote_span_open] = ACTIONS(2086), + [sym__double_quote_span_open] = ACTIONS(2086), + [sym__shortcode_open_escaped] = ACTIONS(2086), + [sym__shortcode_open] = ACTIONS(2086), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2086), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2086), + [sym__cite_author_in_text] = ACTIONS(2086), + [sym__cite_suppress_author] = ACTIONS(2086), [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym__subscript_open] = ACTIONS(2086), + [sym__superscript_open] = ACTIONS(2086), + [sym__inline_note_start_token] = ACTIONS(2086), + [sym__strong_emphasis_open_star] = ACTIONS(2086), + [sym__strong_emphasis_open_underscore] = ACTIONS(2086), + [sym__emphasis_open_star] = ACTIONS(2086), + [sym__emphasis_open_underscore] = ACTIONS(2086), + [sym_inline_note_reference] = ACTIONS(2086), + [sym_html_element] = ACTIONS(2086), + [sym__pandoc_line_break] = ACTIONS(2086), }, [STATE(158)] = { - [sym__inlines] = STATE(2887), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1451), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(547), - [sym__inline_whitespace] = STATE(547), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2211), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2213), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_star] = STATE(4), + [sym__list_item_star] = STATE(158), + [aux_sym__list_star_repeat1] = STATE(158), + [ts_builtin_sym_end] = ACTIONS(2093), + [anon_sym_COLON] = ACTIONS(2093), + [sym_entity_reference] = ACTIONS(2093), + [sym_numeric_character_reference] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_BANG_LBRACK] = ACTIONS(2093), + [anon_sym_DOLLAR] = ACTIONS(2095), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [aux_sym_pandoc_str_token1] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2093), + [sym__whitespace] = ACTIONS(2093), + [sym__line_ending] = ACTIONS(2093), + [sym__soft_line_ending] = ACTIONS(2093), + [sym__block_quote_start] = ACTIONS(2093), + [sym_atx_h1_marker] = ACTIONS(2093), + [sym_atx_h2_marker] = ACTIONS(2093), + [sym_atx_h3_marker] = ACTIONS(2093), + [sym_atx_h4_marker] = ACTIONS(2093), + [sym_atx_h5_marker] = ACTIONS(2093), + [sym_atx_h6_marker] = ACTIONS(2093), + [sym__thematic_break] = ACTIONS(2093), + [sym__list_marker_minus] = ACTIONS(2093), + [sym__list_marker_plus] = ACTIONS(2093), + [sym__list_marker_star] = ACTIONS(2097), + [sym__list_marker_parenthesis] = ACTIONS(2093), + [sym__list_marker_dot] = ACTIONS(2093), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2093), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2093), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2097), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2093), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2093), + [sym__list_marker_example] = ACTIONS(2093), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2093), + [sym__fenced_code_block_start_backtick] = ACTIONS(2093), + [sym_minus_metadata] = ACTIONS(2093), + [sym__pipe_table_start] = ACTIONS(2093), + [sym__fenced_div_start] = ACTIONS(2093), + [sym_ref_id_specifier] = ACTIONS(2093), + [sym__code_span_start] = ACTIONS(2093), + [sym__html_comment] = ACTIONS(2093), + [sym__autolink] = ACTIONS(2093), + [sym__highlight_span_start] = ACTIONS(2093), + [sym__insert_span_start] = ACTIONS(2093), + [sym__delete_span_start] = ACTIONS(2093), + [sym__edit_comment_span_start] = ACTIONS(2093), + [sym__single_quote_span_open] = ACTIONS(2093), + [sym__double_quote_span_open] = ACTIONS(2093), + [sym__shortcode_open_escaped] = ACTIONS(2093), + [sym__shortcode_open] = ACTIONS(2093), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2093), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2093), + [sym__cite_author_in_text] = ACTIONS(2093), + [sym__cite_suppress_author] = ACTIONS(2093), + [sym__strikeout_open] = ACTIONS(2093), + [sym__subscript_open] = ACTIONS(2093), + [sym__superscript_open] = ACTIONS(2093), + [sym__inline_note_start_token] = ACTIONS(2093), + [sym__strong_emphasis_open_star] = ACTIONS(2093), + [sym__strong_emphasis_open_underscore] = ACTIONS(2093), + [sym__emphasis_open_star] = ACTIONS(2093), + [sym__emphasis_open_underscore] = ACTIONS(2093), + [sym_inline_note_reference] = ACTIONS(2093), + [sym_html_element] = ACTIONS(2093), + [sym__pandoc_line_break] = ACTIONS(2093), }, [STATE(159)] = { - [sym__inlines] = STATE(2966), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1186), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(554), - [sym__inline_whitespace] = STATE(554), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2215), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2219), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_plus] = STATE(8), + [sym__list_item_plus] = STATE(159), + [aux_sym__list_plus_repeat1] = STATE(159), + [anon_sym_COLON] = ACTIONS(2079), + [sym_entity_reference] = ACTIONS(2079), + [sym_numeric_character_reference] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_BANG_LBRACK] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [aux_sym_pandoc_str_token1] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2079), + [sym__whitespace] = ACTIONS(2079), + [sym__line_ending] = ACTIONS(2079), + [sym__soft_line_ending] = ACTIONS(2079), + [sym__block_close] = ACTIONS(2079), + [sym__block_quote_start] = ACTIONS(2079), + [sym_atx_h1_marker] = ACTIONS(2079), + [sym_atx_h2_marker] = ACTIONS(2079), + [sym_atx_h3_marker] = ACTIONS(2079), + [sym_atx_h4_marker] = ACTIONS(2079), + [sym_atx_h5_marker] = ACTIONS(2079), + [sym_atx_h6_marker] = ACTIONS(2079), + [sym__thematic_break] = ACTIONS(2079), + [sym__list_marker_minus] = ACTIONS(2079), + [sym__list_marker_plus] = ACTIONS(2083), + [sym__list_marker_star] = ACTIONS(2079), + [sym__list_marker_parenthesis] = ACTIONS(2079), + [sym__list_marker_dot] = ACTIONS(2079), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2083), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_example] = ACTIONS(2079), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2079), + [sym__fenced_code_block_start_backtick] = ACTIONS(2079), + [sym_minus_metadata] = ACTIONS(2079), + [sym__pipe_table_start] = ACTIONS(2079), + [sym__fenced_div_start] = ACTIONS(2079), + [sym_ref_id_specifier] = ACTIONS(2079), + [sym__code_span_start] = ACTIONS(2079), + [sym__html_comment] = ACTIONS(2079), + [sym__autolink] = ACTIONS(2079), + [sym__highlight_span_start] = ACTIONS(2079), + [sym__insert_span_start] = ACTIONS(2079), + [sym__delete_span_start] = ACTIONS(2079), + [sym__edit_comment_span_start] = ACTIONS(2079), + [sym__single_quote_span_open] = ACTIONS(2079), + [sym__double_quote_span_open] = ACTIONS(2079), + [sym__shortcode_open_escaped] = ACTIONS(2079), + [sym__shortcode_open] = ACTIONS(2079), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2079), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2079), + [sym__cite_author_in_text] = ACTIONS(2079), + [sym__cite_suppress_author] = ACTIONS(2079), + [sym__strikeout_open] = ACTIONS(2079), + [sym__subscript_open] = ACTIONS(2079), + [sym__superscript_open] = ACTIONS(2079), + [sym__inline_note_start_token] = ACTIONS(2079), + [sym__strong_emphasis_open_star] = ACTIONS(2079), + [sym__strong_emphasis_open_underscore] = ACTIONS(2079), + [sym__emphasis_open_star] = ACTIONS(2079), + [sym__emphasis_open_underscore] = ACTIONS(2079), + [sym_inline_note_reference] = ACTIONS(2079), + [sym_html_element] = ACTIONS(2079), + [sym__pandoc_line_break] = ACTIONS(2079), }, [STATE(160)] = { - [sym__inlines] = STATE(2967), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1187), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(555), - [sym__inline_whitespace] = STATE(555), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2221), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2223), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), + [sym_list_marker_minus] = STATE(9), + [sym__list_item_minus] = STATE(160), + [aux_sym__list_minus_repeat1] = STATE(160), + [anon_sym_COLON] = ACTIONS(2086), + [sym_entity_reference] = ACTIONS(2086), + [sym_numeric_character_reference] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_BANG_LBRACK] = ACTIONS(2086), + [anon_sym_DOLLAR] = ACTIONS(2088), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2086), + [aux_sym_pandoc_str_token1] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2086), + [sym__whitespace] = ACTIONS(2086), + [sym__line_ending] = ACTIONS(2086), + [sym__soft_line_ending] = ACTIONS(2086), + [sym__block_close] = ACTIONS(2086), + [sym__block_quote_start] = ACTIONS(2086), + [sym_atx_h1_marker] = ACTIONS(2086), + [sym_atx_h2_marker] = ACTIONS(2086), + [sym_atx_h3_marker] = ACTIONS(2086), + [sym_atx_h4_marker] = ACTIONS(2086), + [sym_atx_h5_marker] = ACTIONS(2086), + [sym_atx_h6_marker] = ACTIONS(2086), + [sym__thematic_break] = ACTIONS(2086), + [sym__list_marker_minus] = ACTIONS(2090), + [sym__list_marker_plus] = ACTIONS(2086), + [sym__list_marker_star] = ACTIONS(2086), + [sym__list_marker_parenthesis] = ACTIONS(2086), + [sym__list_marker_dot] = ACTIONS(2086), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2090), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2086), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2086), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2086), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2086), + [sym__list_marker_example] = ACTIONS(2086), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2086), + [sym__fenced_code_block_start_backtick] = ACTIONS(2086), + [sym_minus_metadata] = ACTIONS(2086), + [sym__pipe_table_start] = ACTIONS(2086), + [sym__fenced_div_start] = ACTIONS(2086), + [sym_ref_id_specifier] = ACTIONS(2086), + [sym__code_span_start] = ACTIONS(2086), + [sym__html_comment] = ACTIONS(2086), + [sym__autolink] = ACTIONS(2086), + [sym__highlight_span_start] = ACTIONS(2086), + [sym__insert_span_start] = ACTIONS(2086), + [sym__delete_span_start] = ACTIONS(2086), + [sym__edit_comment_span_start] = ACTIONS(2086), + [sym__single_quote_span_open] = ACTIONS(2086), + [sym__double_quote_span_open] = ACTIONS(2086), + [sym__shortcode_open_escaped] = ACTIONS(2086), + [sym__shortcode_open] = ACTIONS(2086), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2086), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2086), + [sym__cite_author_in_text] = ACTIONS(2086), + [sym__cite_suppress_author] = ACTIONS(2086), [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym__subscript_open] = ACTIONS(2086), + [sym__superscript_open] = ACTIONS(2086), + [sym__inline_note_start_token] = ACTIONS(2086), + [sym__strong_emphasis_open_star] = ACTIONS(2086), + [sym__strong_emphasis_open_underscore] = ACTIONS(2086), + [sym__emphasis_open_star] = ACTIONS(2086), + [sym__emphasis_open_underscore] = ACTIONS(2086), + [sym_inline_note_reference] = ACTIONS(2086), + [sym_html_element] = ACTIONS(2086), + [sym__pandoc_line_break] = ACTIONS(2086), }, [STATE(161)] = { - [sym__inlines] = STATE(3042), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1111), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(562), - [sym__inline_whitespace] = STATE(562), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2225), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2229), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_star] = STATE(10), + [sym__list_item_star] = STATE(161), + [aux_sym__list_star_repeat1] = STATE(161), + [anon_sym_COLON] = ACTIONS(2093), + [sym_entity_reference] = ACTIONS(2093), + [sym_numeric_character_reference] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_BANG_LBRACK] = ACTIONS(2093), + [anon_sym_DOLLAR] = ACTIONS(2095), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [aux_sym_pandoc_str_token1] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2093), + [sym__whitespace] = ACTIONS(2093), + [sym__line_ending] = ACTIONS(2093), + [sym__soft_line_ending] = ACTIONS(2093), + [sym__block_close] = ACTIONS(2093), + [sym__block_quote_start] = ACTIONS(2093), + [sym_atx_h1_marker] = ACTIONS(2093), + [sym_atx_h2_marker] = ACTIONS(2093), + [sym_atx_h3_marker] = ACTIONS(2093), + [sym_atx_h4_marker] = ACTIONS(2093), + [sym_atx_h5_marker] = ACTIONS(2093), + [sym_atx_h6_marker] = ACTIONS(2093), + [sym__thematic_break] = ACTIONS(2093), + [sym__list_marker_minus] = ACTIONS(2093), + [sym__list_marker_plus] = ACTIONS(2093), + [sym__list_marker_star] = ACTIONS(2097), + [sym__list_marker_parenthesis] = ACTIONS(2093), + [sym__list_marker_dot] = ACTIONS(2093), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2093), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2093), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2097), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2093), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2093), + [sym__list_marker_example] = ACTIONS(2093), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2093), + [sym__fenced_code_block_start_backtick] = ACTIONS(2093), + [sym_minus_metadata] = ACTIONS(2093), + [sym__pipe_table_start] = ACTIONS(2093), + [sym__fenced_div_start] = ACTIONS(2093), + [sym_ref_id_specifier] = ACTIONS(2093), + [sym__code_span_start] = ACTIONS(2093), + [sym__html_comment] = ACTIONS(2093), + [sym__autolink] = ACTIONS(2093), + [sym__highlight_span_start] = ACTIONS(2093), + [sym__insert_span_start] = ACTIONS(2093), + [sym__delete_span_start] = ACTIONS(2093), + [sym__edit_comment_span_start] = ACTIONS(2093), + [sym__single_quote_span_open] = ACTIONS(2093), + [sym__double_quote_span_open] = ACTIONS(2093), + [sym__shortcode_open_escaped] = ACTIONS(2093), + [sym__shortcode_open] = ACTIONS(2093), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2093), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2093), + [sym__cite_author_in_text] = ACTIONS(2093), + [sym__cite_suppress_author] = ACTIONS(2093), + [sym__strikeout_open] = ACTIONS(2093), + [sym__subscript_open] = ACTIONS(2093), + [sym__superscript_open] = ACTIONS(2093), + [sym__inline_note_start_token] = ACTIONS(2093), + [sym__strong_emphasis_open_star] = ACTIONS(2093), + [sym__strong_emphasis_open_underscore] = ACTIONS(2093), + [sym__emphasis_open_star] = ACTIONS(2093), + [sym__emphasis_open_underscore] = ACTIONS(2093), + [sym_inline_note_reference] = ACTIONS(2093), + [sym_html_element] = ACTIONS(2093), + [sym__pandoc_line_break] = ACTIONS(2093), }, [STATE(162)] = { - [sym__inlines] = STATE(3044), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1112), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(563), - [sym__inline_whitespace] = STATE(563), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2231), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2233), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), + [sym_list_marker_dot] = STATE(11), + [sym__list_item_dot] = STATE(162), + [aux_sym__list_dot_repeat1] = STATE(162), + [anon_sym_COLON] = ACTIONS(2100), + [sym_entity_reference] = ACTIONS(2100), + [sym_numeric_character_reference] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_BANG_LBRACK] = ACTIONS(2100), + [anon_sym_DOLLAR] = ACTIONS(2102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2100), + [aux_sym_pandoc_str_token1] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2100), + [sym__whitespace] = ACTIONS(2100), + [sym__line_ending] = ACTIONS(2100), + [sym__soft_line_ending] = ACTIONS(2100), + [sym__block_close] = ACTIONS(2100), + [sym__block_quote_start] = ACTIONS(2100), + [sym_atx_h1_marker] = ACTIONS(2100), + [sym_atx_h2_marker] = ACTIONS(2100), + [sym_atx_h3_marker] = ACTIONS(2100), + [sym_atx_h4_marker] = ACTIONS(2100), + [sym_atx_h5_marker] = ACTIONS(2100), + [sym_atx_h6_marker] = ACTIONS(2100), + [sym__thematic_break] = ACTIONS(2100), + [sym__list_marker_minus] = ACTIONS(2100), + [sym__list_marker_plus] = ACTIONS(2100), + [sym__list_marker_star] = ACTIONS(2100), + [sym__list_marker_parenthesis] = ACTIONS(2100), + [sym__list_marker_dot] = ACTIONS(2104), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2100), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2100), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2100), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2100), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2104), + [sym__list_marker_example] = ACTIONS(2100), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2100), + [sym__fenced_code_block_start_backtick] = ACTIONS(2100), + [sym_minus_metadata] = ACTIONS(2100), + [sym__pipe_table_start] = ACTIONS(2100), + [sym__fenced_div_start] = ACTIONS(2100), + [sym_ref_id_specifier] = ACTIONS(2100), + [sym__code_span_start] = ACTIONS(2100), + [sym__html_comment] = ACTIONS(2100), + [sym__autolink] = ACTIONS(2100), + [sym__highlight_span_start] = ACTIONS(2100), + [sym__insert_span_start] = ACTIONS(2100), + [sym__delete_span_start] = ACTIONS(2100), + [sym__edit_comment_span_start] = ACTIONS(2100), + [sym__single_quote_span_open] = ACTIONS(2100), + [sym__double_quote_span_open] = ACTIONS(2100), + [sym__shortcode_open_escaped] = ACTIONS(2100), + [sym__shortcode_open] = ACTIONS(2100), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2100), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2100), + [sym__cite_author_in_text] = ACTIONS(2100), + [sym__cite_suppress_author] = ACTIONS(2100), + [sym__strikeout_open] = ACTIONS(2100), + [sym__subscript_open] = ACTIONS(2100), + [sym__superscript_open] = ACTIONS(2100), + [sym__inline_note_start_token] = ACTIONS(2100), + [sym__strong_emphasis_open_star] = ACTIONS(2100), + [sym__strong_emphasis_open_underscore] = ACTIONS(2100), + [sym__emphasis_open_star] = ACTIONS(2100), [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_inline_note_reference] = ACTIONS(2100), + [sym_html_element] = ACTIONS(2100), + [sym__pandoc_line_break] = ACTIONS(2100), }, [STATE(163)] = { - [sym__inlines] = STATE(2749), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1156), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(570), - [sym__inline_whitespace] = STATE(570), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2235), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2239), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_plus] = STATE(3), + [sym__list_item_plus] = STATE(156), + [aux_sym__list_plus_repeat1] = STATE(156), + [ts_builtin_sym_end] = ACTIONS(2075), + [anon_sym_COLON] = ACTIONS(2075), + [sym_entity_reference] = ACTIONS(2075), + [sym_numeric_character_reference] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_BANG_LBRACK] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [aux_sym_pandoc_str_token1] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2075), + [sym__whitespace] = ACTIONS(2075), + [sym__line_ending] = ACTIONS(2075), + [sym__soft_line_ending] = ACTIONS(2075), + [sym__block_quote_start] = ACTIONS(2075), + [sym_atx_h1_marker] = ACTIONS(2075), + [sym_atx_h2_marker] = ACTIONS(2075), + [sym_atx_h3_marker] = ACTIONS(2075), + [sym_atx_h4_marker] = ACTIONS(2075), + [sym_atx_h5_marker] = ACTIONS(2075), + [sym_atx_h6_marker] = ACTIONS(2075), + [sym__thematic_break] = ACTIONS(2075), + [sym__list_marker_minus] = ACTIONS(2075), + [sym__list_marker_plus] = ACTIONS(47), + [sym__list_marker_star] = ACTIONS(2075), + [sym__list_marker_parenthesis] = ACTIONS(2075), + [sym__list_marker_dot] = ACTIONS(2075), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_example] = ACTIONS(2075), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2075), + [sym__fenced_code_block_start_backtick] = ACTIONS(2075), + [sym_minus_metadata] = ACTIONS(2075), + [sym__pipe_table_start] = ACTIONS(2075), + [sym__fenced_div_start] = ACTIONS(2075), + [sym_ref_id_specifier] = ACTIONS(2075), + [sym__code_span_start] = ACTIONS(2075), + [sym__html_comment] = ACTIONS(2075), + [sym__autolink] = ACTIONS(2075), + [sym__highlight_span_start] = ACTIONS(2075), + [sym__insert_span_start] = ACTIONS(2075), + [sym__delete_span_start] = ACTIONS(2075), + [sym__edit_comment_span_start] = ACTIONS(2075), + [sym__single_quote_span_open] = ACTIONS(2075), + [sym__double_quote_span_open] = ACTIONS(2075), + [sym__shortcode_open_escaped] = ACTIONS(2075), + [sym__shortcode_open] = ACTIONS(2075), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2075), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2075), + [sym__cite_author_in_text] = ACTIONS(2075), + [sym__cite_suppress_author] = ACTIONS(2075), + [sym__strikeout_open] = ACTIONS(2075), + [sym__subscript_open] = ACTIONS(2075), + [sym__superscript_open] = ACTIONS(2075), + [sym__inline_note_start_token] = ACTIONS(2075), + [sym__strong_emphasis_open_star] = ACTIONS(2075), + [sym__strong_emphasis_open_underscore] = ACTIONS(2075), + [sym__emphasis_open_star] = ACTIONS(2075), + [sym__emphasis_open_underscore] = ACTIONS(2075), + [sym_inline_note_reference] = ACTIONS(2075), + [sym_html_element] = ACTIONS(2075), + [sym__pandoc_line_break] = ACTIONS(2075), }, [STATE(164)] = { - [sym__inlines] = STATE(2750), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1157), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(571), - [sym__inline_whitespace] = STATE(571), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2241), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2243), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_minus] = STATE(2), + [sym__list_item_minus] = STATE(157), + [aux_sym__list_minus_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(2114), + [anon_sym_COLON] = ACTIONS(2114), + [sym_entity_reference] = ACTIONS(2114), + [sym_numeric_character_reference] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_BANG_LBRACK] = ACTIONS(2114), + [anon_sym_DOLLAR] = ACTIONS(2116), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [aux_sym_pandoc_str_token1] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2114), + [sym__whitespace] = ACTIONS(2114), + [sym__line_ending] = ACTIONS(2114), + [sym__soft_line_ending] = ACTIONS(2114), + [sym__block_quote_start] = ACTIONS(2114), + [sym_atx_h1_marker] = ACTIONS(2114), + [sym_atx_h2_marker] = ACTIONS(2114), + [sym_atx_h3_marker] = ACTIONS(2114), + [sym_atx_h4_marker] = ACTIONS(2114), + [sym_atx_h5_marker] = ACTIONS(2114), + [sym_atx_h6_marker] = ACTIONS(2114), + [sym__thematic_break] = ACTIONS(2114), + [sym__list_marker_minus] = ACTIONS(45), + [sym__list_marker_plus] = ACTIONS(2114), + [sym__list_marker_star] = ACTIONS(2114), + [sym__list_marker_parenthesis] = ACTIONS(2114), + [sym__list_marker_dot] = ACTIONS(2114), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2114), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2114), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2114), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2114), + [sym__list_marker_example] = ACTIONS(2114), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2114), + [sym__fenced_code_block_start_backtick] = ACTIONS(2114), + [sym_minus_metadata] = ACTIONS(2114), + [sym__pipe_table_start] = ACTIONS(2114), + [sym__fenced_div_start] = ACTIONS(2114), + [sym_ref_id_specifier] = ACTIONS(2114), + [sym__code_span_start] = ACTIONS(2114), + [sym__html_comment] = ACTIONS(2114), + [sym__autolink] = ACTIONS(2114), + [sym__highlight_span_start] = ACTIONS(2114), + [sym__insert_span_start] = ACTIONS(2114), + [sym__delete_span_start] = ACTIONS(2114), + [sym__edit_comment_span_start] = ACTIONS(2114), + [sym__single_quote_span_open] = ACTIONS(2114), + [sym__double_quote_span_open] = ACTIONS(2114), + [sym__shortcode_open_escaped] = ACTIONS(2114), + [sym__shortcode_open] = ACTIONS(2114), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2114), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2114), + [sym__cite_author_in_text] = ACTIONS(2114), + [sym__cite_suppress_author] = ACTIONS(2114), + [sym__strikeout_open] = ACTIONS(2114), + [sym__subscript_open] = ACTIONS(2114), + [sym__superscript_open] = ACTIONS(2114), + [sym__inline_note_start_token] = ACTIONS(2114), + [sym__strong_emphasis_open_star] = ACTIONS(2114), + [sym__strong_emphasis_open_underscore] = ACTIONS(2114), + [sym__emphasis_open_star] = ACTIONS(2114), + [sym__emphasis_open_underscore] = ACTIONS(2114), + [sym_inline_note_reference] = ACTIONS(2114), + [sym_html_element] = ACTIONS(2114), + [sym__pandoc_line_break] = ACTIONS(2114), }, [STATE(165)] = { - [sym__inlines] = STATE(2774), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(942), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(578), - [sym__inline_whitespace] = STATE(578), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2245), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2249), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_star] = STATE(4), + [sym__list_item_star] = STATE(158), + [aux_sym__list_star_repeat1] = STATE(158), + [ts_builtin_sym_end] = ACTIONS(2118), + [anon_sym_COLON] = ACTIONS(2118), + [sym_entity_reference] = ACTIONS(2118), + [sym_numeric_character_reference] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_BANG_LBRACK] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [aux_sym_pandoc_str_token1] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2118), + [sym__whitespace] = ACTIONS(2118), + [sym__line_ending] = ACTIONS(2118), + [sym__soft_line_ending] = ACTIONS(2118), + [sym__block_quote_start] = ACTIONS(2118), + [sym_atx_h1_marker] = ACTIONS(2118), + [sym_atx_h2_marker] = ACTIONS(2118), + [sym_atx_h3_marker] = ACTIONS(2118), + [sym_atx_h4_marker] = ACTIONS(2118), + [sym_atx_h5_marker] = ACTIONS(2118), + [sym_atx_h6_marker] = ACTIONS(2118), + [sym__thematic_break] = ACTIONS(2118), + [sym__list_marker_minus] = ACTIONS(2118), + [sym__list_marker_plus] = ACTIONS(2118), + [sym__list_marker_star] = ACTIONS(49), + [sym__list_marker_parenthesis] = ACTIONS(2118), + [sym__list_marker_dot] = ACTIONS(2118), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2118), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2118), + [sym__list_marker_star_dont_interrupt] = ACTIONS(49), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2118), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2118), + [sym__list_marker_example] = ACTIONS(2118), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2118), + [sym__fenced_code_block_start_backtick] = ACTIONS(2118), + [sym_minus_metadata] = ACTIONS(2118), + [sym__pipe_table_start] = ACTIONS(2118), + [sym__fenced_div_start] = ACTIONS(2118), + [sym_ref_id_specifier] = ACTIONS(2118), + [sym__code_span_start] = ACTIONS(2118), + [sym__html_comment] = ACTIONS(2118), + [sym__autolink] = ACTIONS(2118), + [sym__highlight_span_start] = ACTIONS(2118), + [sym__insert_span_start] = ACTIONS(2118), + [sym__delete_span_start] = ACTIONS(2118), + [sym__edit_comment_span_start] = ACTIONS(2118), + [sym__single_quote_span_open] = ACTIONS(2118), + [sym__double_quote_span_open] = ACTIONS(2118), + [sym__shortcode_open_escaped] = ACTIONS(2118), + [sym__shortcode_open] = ACTIONS(2118), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2118), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2118), + [sym__cite_author_in_text] = ACTIONS(2118), + [sym__cite_suppress_author] = ACTIONS(2118), + [sym__strikeout_open] = ACTIONS(2118), + [sym__subscript_open] = ACTIONS(2118), + [sym__superscript_open] = ACTIONS(2118), + [sym__inline_note_start_token] = ACTIONS(2118), + [sym__strong_emphasis_open_star] = ACTIONS(2118), + [sym__strong_emphasis_open_underscore] = ACTIONS(2118), + [sym__emphasis_open_star] = ACTIONS(2118), + [sym__emphasis_open_underscore] = ACTIONS(2118), + [sym_inline_note_reference] = ACTIONS(2118), + [sym_html_element] = ACTIONS(2118), + [sym__pandoc_line_break] = ACTIONS(2118), }, [STATE(166)] = { - [sym__inlines] = STATE(2775), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(943), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(579), - [sym__inline_whitespace] = STATE(579), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2251), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2253), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_parenthesis] = STATE(6), + [sym__list_item_parenthesis] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(2122), + [anon_sym_COLON] = ACTIONS(2122), + [sym_entity_reference] = ACTIONS(2122), + [sym_numeric_character_reference] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_BANG_LBRACK] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2124), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2122), + [aux_sym_pandoc_str_token1] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2122), + [sym__whitespace] = ACTIONS(2122), + [sym__line_ending] = ACTIONS(2122), + [sym__soft_line_ending] = ACTIONS(2122), + [sym__block_quote_start] = ACTIONS(2122), + [sym_atx_h1_marker] = ACTIONS(2122), + [sym_atx_h2_marker] = ACTIONS(2122), + [sym_atx_h3_marker] = ACTIONS(2122), + [sym_atx_h4_marker] = ACTIONS(2122), + [sym_atx_h5_marker] = ACTIONS(2122), + [sym_atx_h6_marker] = ACTIONS(2122), + [sym__thematic_break] = ACTIONS(2122), + [sym__list_marker_minus] = ACTIONS(2122), + [sym__list_marker_plus] = ACTIONS(2122), + [sym__list_marker_star] = ACTIONS(2122), + [sym__list_marker_parenthesis] = ACTIONS(51), + [sym__list_marker_dot] = ACTIONS(2122), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2122), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2122), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2122), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2122), + [sym__list_marker_example] = ACTIONS(2122), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2122), + [sym__fenced_code_block_start_backtick] = ACTIONS(2122), + [sym_minus_metadata] = ACTIONS(2122), + [sym__pipe_table_start] = ACTIONS(2122), + [sym__fenced_div_start] = ACTIONS(2122), + [sym_ref_id_specifier] = ACTIONS(2122), + [sym__code_span_start] = ACTIONS(2122), + [sym__html_comment] = ACTIONS(2122), + [sym__autolink] = ACTIONS(2122), + [sym__highlight_span_start] = ACTIONS(2122), + [sym__insert_span_start] = ACTIONS(2122), + [sym__delete_span_start] = ACTIONS(2122), + [sym__edit_comment_span_start] = ACTIONS(2122), + [sym__single_quote_span_open] = ACTIONS(2122), + [sym__double_quote_span_open] = ACTIONS(2122), + [sym__shortcode_open_escaped] = ACTIONS(2122), + [sym__shortcode_open] = ACTIONS(2122), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2122), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2122), + [sym__cite_author_in_text] = ACTIONS(2122), + [sym__cite_suppress_author] = ACTIONS(2122), + [sym__strikeout_open] = ACTIONS(2122), + [sym__subscript_open] = ACTIONS(2122), + [sym__superscript_open] = ACTIONS(2122), + [sym__inline_note_start_token] = ACTIONS(2122), + [sym__strong_emphasis_open_star] = ACTIONS(2122), + [sym__strong_emphasis_open_underscore] = ACTIONS(2122), + [sym__emphasis_open_star] = ACTIONS(2122), + [sym__emphasis_open_underscore] = ACTIONS(2122), + [sym_inline_note_reference] = ACTIONS(2122), + [sym_html_element] = ACTIONS(2122), + [sym__pandoc_line_break] = ACTIONS(2122), }, [STATE(167)] = { - [sym__inlines] = STATE(2795), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1742), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(585), - [sym__inline_whitespace] = STATE(585), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2255), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2259), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_example] = STATE(7), + [sym__list_item_example] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(2126), + [anon_sym_COLON] = ACTIONS(2126), + [sym_entity_reference] = ACTIONS(2126), + [sym_numeric_character_reference] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_BANG_LBRACK] = ACTIONS(2126), + [anon_sym_DOLLAR] = ACTIONS(2128), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2126), + [aux_sym_pandoc_str_token1] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(2126), + [sym__whitespace] = ACTIONS(2126), + [sym__line_ending] = ACTIONS(2126), + [sym__soft_line_ending] = ACTIONS(2126), + [sym__block_quote_start] = ACTIONS(2126), + [sym_atx_h1_marker] = ACTIONS(2126), + [sym_atx_h2_marker] = ACTIONS(2126), + [sym_atx_h3_marker] = ACTIONS(2126), + [sym_atx_h4_marker] = ACTIONS(2126), + [sym_atx_h5_marker] = ACTIONS(2126), + [sym_atx_h6_marker] = ACTIONS(2126), + [sym__thematic_break] = ACTIONS(2126), + [sym__list_marker_minus] = ACTIONS(2126), + [sym__list_marker_plus] = ACTIONS(2126), + [sym__list_marker_star] = ACTIONS(2126), + [sym__list_marker_parenthesis] = ACTIONS(2126), + [sym__list_marker_dot] = ACTIONS(2126), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2126), + [sym__list_marker_example] = ACTIONS(55), + [sym__list_marker_example_dont_interrupt] = ACTIONS(55), + [sym__fenced_code_block_start_backtick] = ACTIONS(2126), + [sym_minus_metadata] = ACTIONS(2126), + [sym__pipe_table_start] = ACTIONS(2126), + [sym__fenced_div_start] = ACTIONS(2126), + [sym_ref_id_specifier] = ACTIONS(2126), + [sym__code_span_start] = ACTIONS(2126), + [sym__html_comment] = ACTIONS(2126), + [sym__autolink] = ACTIONS(2126), + [sym__highlight_span_start] = ACTIONS(2126), + [sym__insert_span_start] = ACTIONS(2126), + [sym__delete_span_start] = ACTIONS(2126), + [sym__edit_comment_span_start] = ACTIONS(2126), + [sym__single_quote_span_open] = ACTIONS(2126), + [sym__double_quote_span_open] = ACTIONS(2126), + [sym__shortcode_open_escaped] = ACTIONS(2126), + [sym__shortcode_open] = ACTIONS(2126), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2126), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2126), + [sym__cite_author_in_text] = ACTIONS(2126), + [sym__cite_suppress_author] = ACTIONS(2126), + [sym__strikeout_open] = ACTIONS(2126), + [sym__subscript_open] = ACTIONS(2126), + [sym__superscript_open] = ACTIONS(2126), + [sym__inline_note_start_token] = ACTIONS(2126), + [sym__strong_emphasis_open_star] = ACTIONS(2126), + [sym__strong_emphasis_open_underscore] = ACTIONS(2126), + [sym__emphasis_open_star] = ACTIONS(2126), + [sym__emphasis_open_underscore] = ACTIONS(2126), + [sym_inline_note_reference] = ACTIONS(2126), + [sym_html_element] = ACTIONS(2126), + [sym__pandoc_line_break] = ACTIONS(2126), }, [STATE(168)] = { - [sym__inlines] = STATE(2796), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1473), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(586), - [sym__inline_whitespace] = STATE(586), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2261), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2263), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_plus] = STATE(8), + [sym__list_item_plus] = STATE(159), + [aux_sym__list_plus_repeat1] = STATE(159), + [anon_sym_COLON] = ACTIONS(2075), + [sym_entity_reference] = ACTIONS(2075), + [sym_numeric_character_reference] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_BANG_LBRACK] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [aux_sym_pandoc_str_token1] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2075), + [sym__whitespace] = ACTIONS(2075), + [sym__line_ending] = ACTIONS(2075), + [sym__soft_line_ending] = ACTIONS(2075), + [sym__block_close] = ACTIONS(2075), + [sym__block_quote_start] = ACTIONS(2075), + [sym_atx_h1_marker] = ACTIONS(2075), + [sym_atx_h2_marker] = ACTIONS(2075), + [sym_atx_h3_marker] = ACTIONS(2075), + [sym_atx_h4_marker] = ACTIONS(2075), + [sym_atx_h5_marker] = ACTIONS(2075), + [sym_atx_h6_marker] = ACTIONS(2075), + [sym__thematic_break] = ACTIONS(2075), + [sym__list_marker_minus] = ACTIONS(2075), + [sym__list_marker_plus] = ACTIONS(47), + [sym__list_marker_star] = ACTIONS(2075), + [sym__list_marker_parenthesis] = ACTIONS(2075), + [sym__list_marker_dot] = ACTIONS(2075), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2075), + [sym__list_marker_example] = ACTIONS(2075), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2075), + [sym__fenced_code_block_start_backtick] = ACTIONS(2075), + [sym_minus_metadata] = ACTIONS(2075), + [sym__pipe_table_start] = ACTIONS(2075), + [sym__fenced_div_start] = ACTIONS(2075), + [sym_ref_id_specifier] = ACTIONS(2075), + [sym__code_span_start] = ACTIONS(2075), + [sym__html_comment] = ACTIONS(2075), + [sym__autolink] = ACTIONS(2075), + [sym__highlight_span_start] = ACTIONS(2075), + [sym__insert_span_start] = ACTIONS(2075), + [sym__delete_span_start] = ACTIONS(2075), + [sym__edit_comment_span_start] = ACTIONS(2075), + [sym__single_quote_span_open] = ACTIONS(2075), + [sym__double_quote_span_open] = ACTIONS(2075), + [sym__shortcode_open_escaped] = ACTIONS(2075), + [sym__shortcode_open] = ACTIONS(2075), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2075), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2075), + [sym__cite_author_in_text] = ACTIONS(2075), + [sym__cite_suppress_author] = ACTIONS(2075), + [sym__strikeout_open] = ACTIONS(2075), + [sym__subscript_open] = ACTIONS(2075), + [sym__superscript_open] = ACTIONS(2075), + [sym__inline_note_start_token] = ACTIONS(2075), + [sym__strong_emphasis_open_star] = ACTIONS(2075), + [sym__strong_emphasis_open_underscore] = ACTIONS(2075), + [sym__emphasis_open_star] = ACTIONS(2075), + [sym__emphasis_open_underscore] = ACTIONS(2075), + [sym_inline_note_reference] = ACTIONS(2075), + [sym_html_element] = ACTIONS(2075), + [sym__pandoc_line_break] = ACTIONS(2075), }, [STATE(169)] = { - [sym__inlines] = STATE(2819), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(917), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(589), - [sym__inline_whitespace] = STATE(589), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2265), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2269), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_parenthesis] = STATE(169), + [aux_sym__list_parenthesis_repeat1] = STATE(169), + [anon_sym_COLON] = ACTIONS(2134), + [sym_entity_reference] = ACTIONS(2134), + [sym_numeric_character_reference] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_BANG_LBRACK] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [aux_sym_pandoc_str_token1] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2134), + [sym__whitespace] = ACTIONS(2134), + [sym__line_ending] = ACTIONS(2134), + [sym__soft_line_ending] = ACTIONS(2134), + [sym__block_close] = ACTIONS(2134), + [sym__block_quote_start] = ACTIONS(2134), + [sym_atx_h1_marker] = ACTIONS(2134), + [sym_atx_h2_marker] = ACTIONS(2134), + [sym_atx_h3_marker] = ACTIONS(2134), + [sym_atx_h4_marker] = ACTIONS(2134), + [sym_atx_h5_marker] = ACTIONS(2134), + [sym_atx_h6_marker] = ACTIONS(2134), + [sym__thematic_break] = ACTIONS(2134), + [sym__list_marker_minus] = ACTIONS(2134), + [sym__list_marker_plus] = ACTIONS(2134), + [sym__list_marker_star] = ACTIONS(2134), + [sym__list_marker_parenthesis] = ACTIONS(2138), + [sym__list_marker_dot] = ACTIONS(2134), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2134), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2134), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2134), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2138), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2134), + [sym__list_marker_example] = ACTIONS(2134), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2134), + [sym__fenced_code_block_start_backtick] = ACTIONS(2134), + [sym_minus_metadata] = ACTIONS(2134), + [sym__pipe_table_start] = ACTIONS(2134), + [sym__fenced_div_start] = ACTIONS(2134), + [sym_ref_id_specifier] = ACTIONS(2134), + [sym__code_span_start] = ACTIONS(2134), + [sym__html_comment] = ACTIONS(2134), + [sym__autolink] = ACTIONS(2134), + [sym__highlight_span_start] = ACTIONS(2134), + [sym__insert_span_start] = ACTIONS(2134), + [sym__delete_span_start] = ACTIONS(2134), + [sym__edit_comment_span_start] = ACTIONS(2134), + [sym__single_quote_span_open] = ACTIONS(2134), + [sym__double_quote_span_open] = ACTIONS(2134), + [sym__shortcode_open_escaped] = ACTIONS(2134), + [sym__shortcode_open] = ACTIONS(2134), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2134), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2134), + [sym__cite_author_in_text] = ACTIONS(2134), + [sym__cite_suppress_author] = ACTIONS(2134), + [sym__strikeout_open] = ACTIONS(2134), + [sym__subscript_open] = ACTIONS(2134), + [sym__superscript_open] = ACTIONS(2134), + [sym__inline_note_start_token] = ACTIONS(2134), + [sym__strong_emphasis_open_star] = ACTIONS(2134), + [sym__strong_emphasis_open_underscore] = ACTIONS(2134), + [sym__emphasis_open_star] = ACTIONS(2134), + [sym__emphasis_open_underscore] = ACTIONS(2134), + [sym_inline_note_reference] = ACTIONS(2134), + [sym_html_element] = ACTIONS(2134), + [sym__pandoc_line_break] = ACTIONS(2134), }, [STATE(170)] = { - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(918), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(590), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2271), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2273), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym_list_marker_example] = STATE(12), + [sym__list_item_example] = STATE(170), + [aux_sym__list_example_repeat1] = STATE(170), + [anon_sym_COLON] = ACTIONS(2107), + [sym_entity_reference] = ACTIONS(2107), + [sym_numeric_character_reference] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_BANG_LBRACK] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [aux_sym_pandoc_str_token1] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2107), + [sym__whitespace] = ACTIONS(2107), + [sym__line_ending] = ACTIONS(2107), + [sym__soft_line_ending] = ACTIONS(2107), + [sym__block_close] = ACTIONS(2107), + [sym__block_quote_start] = ACTIONS(2107), + [sym_atx_h1_marker] = ACTIONS(2107), + [sym_atx_h2_marker] = ACTIONS(2107), + [sym_atx_h3_marker] = ACTIONS(2107), + [sym_atx_h4_marker] = ACTIONS(2107), + [sym_atx_h5_marker] = ACTIONS(2107), + [sym_atx_h6_marker] = ACTIONS(2107), + [sym__thematic_break] = ACTIONS(2107), + [sym__list_marker_minus] = ACTIONS(2107), + [sym__list_marker_plus] = ACTIONS(2107), + [sym__list_marker_star] = ACTIONS(2107), + [sym__list_marker_parenthesis] = ACTIONS(2107), + [sym__list_marker_dot] = ACTIONS(2107), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2107), + [sym__list_marker_example] = ACTIONS(2111), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2111), + [sym__fenced_code_block_start_backtick] = ACTIONS(2107), + [sym_minus_metadata] = ACTIONS(2107), + [sym__pipe_table_start] = ACTIONS(2107), + [sym__fenced_div_start] = ACTIONS(2107), + [sym_ref_id_specifier] = ACTIONS(2107), + [sym__code_span_start] = ACTIONS(2107), + [sym__html_comment] = ACTIONS(2107), + [sym__autolink] = ACTIONS(2107), + [sym__highlight_span_start] = ACTIONS(2107), + [sym__insert_span_start] = ACTIONS(2107), + [sym__delete_span_start] = ACTIONS(2107), + [sym__edit_comment_span_start] = ACTIONS(2107), + [sym__single_quote_span_open] = ACTIONS(2107), + [sym__double_quote_span_open] = ACTIONS(2107), + [sym__shortcode_open_escaped] = ACTIONS(2107), + [sym__shortcode_open] = ACTIONS(2107), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2107), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), + [sym__cite_author_in_text] = ACTIONS(2107), + [sym__cite_suppress_author] = ACTIONS(2107), + [sym__strikeout_open] = ACTIONS(2107), + [sym__subscript_open] = ACTIONS(2107), + [sym__superscript_open] = ACTIONS(2107), + [sym__inline_note_start_token] = ACTIONS(2107), + [sym__strong_emphasis_open_star] = ACTIONS(2107), + [sym__strong_emphasis_open_underscore] = ACTIONS(2107), + [sym__emphasis_open_star] = ACTIONS(2107), + [sym__emphasis_open_underscore] = ACTIONS(2107), + [sym_inline_note_reference] = ACTIONS(2107), + [sym_html_element] = ACTIONS(2107), + [sym__pandoc_line_break] = ACTIONS(2107), }, [STATE(171)] = { - [sym_list_marker_minus] = STATE(16), - [sym__list_item_minus] = STATE(171), - [aux_sym__list_minus_repeat1] = STATE(171), - [anon_sym_COLON] = ACTIONS(2275), - [sym_entity_reference] = ACTIONS(2275), - [sym_numeric_character_reference] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_BANG_LBRACK] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [aux_sym_pandoc_str_token1] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(2275), - [aux_sym__prose_punctuation_token1] = ACTIONS(2277), - [sym__line_ending] = ACTIONS(2275), - [sym__soft_line_ending] = ACTIONS(2275), - [sym__block_close] = ACTIONS(2275), - [sym__block_quote_start] = ACTIONS(2275), - [sym_atx_h1_marker] = ACTIONS(2275), - [sym_atx_h2_marker] = ACTIONS(2275), - [sym_atx_h3_marker] = ACTIONS(2275), - [sym_atx_h4_marker] = ACTIONS(2275), - [sym_atx_h5_marker] = ACTIONS(2275), - [sym_atx_h6_marker] = ACTIONS(2275), - [sym__thematic_break] = ACTIONS(2275), - [sym__list_marker_minus] = ACTIONS(2279), - [sym__list_marker_plus] = ACTIONS(2275), - [sym__list_marker_star] = ACTIONS(2275), - [sym__list_marker_parenthesis] = ACTIONS(2275), - [sym__list_marker_dot] = ACTIONS(2275), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_example] = ACTIONS(2275), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2275), - [sym__fenced_code_block_start_backtick] = ACTIONS(2275), - [sym_minus_metadata] = ACTIONS(2275), - [sym__pipe_table_start] = ACTIONS(2275), - [sym__fenced_div_start] = ACTIONS(2275), - [sym__fenced_div_end] = ACTIONS(2275), - [sym_ref_id_specifier] = ACTIONS(2275), - [sym__code_span_start] = ACTIONS(2275), - [sym__html_comment] = ACTIONS(2275), - [sym__autolink] = ACTIONS(2275), - [sym__highlight_span_start] = ACTIONS(2275), - [sym__insert_span_start] = ACTIONS(2275), - [sym__delete_span_start] = ACTIONS(2275), - [sym__edit_comment_span_start] = ACTIONS(2275), - [sym__single_quote_span_open] = ACTIONS(2275), - [sym__double_quote_span_open] = ACTIONS(2275), - [sym__shortcode_open_escaped] = ACTIONS(2275), - [sym__shortcode_open] = ACTIONS(2275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2275), - [sym__cite_author_in_text] = ACTIONS(2275), - [sym__cite_suppress_author] = ACTIONS(2275), - [sym__strikeout_open] = ACTIONS(2275), - [sym__subscript_open] = ACTIONS(2275), - [sym__superscript_open] = ACTIONS(2275), - [sym__inline_note_start_token] = ACTIONS(2275), - [sym__strong_emphasis_open_star] = ACTIONS(2275), - [sym__strong_emphasis_open_underscore] = ACTIONS(2275), - [sym__emphasis_open_star] = ACTIONS(2275), - [sym__emphasis_open_underscore] = ACTIONS(2275), - [sym_inline_note_reference] = ACTIONS(2275), - [sym_html_element] = ACTIONS(2275), - [sym__pandoc_line_break] = ACTIONS(2275), + [sym__inlines] = STATE(3035), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1026), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(599), + [sym__inline_whitespace] = STATE(599), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2145), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2161), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(172)] = { - [sym_list_marker_star] = STATE(17), - [sym__list_item_star] = STATE(172), - [aux_sym__list_star_repeat1] = STATE(172), - [anon_sym_COLON] = ACTIONS(2282), - [sym_entity_reference] = ACTIONS(2282), - [sym_numeric_character_reference] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_BANG_LBRACK] = ACTIONS(2282), - [anon_sym_DOLLAR] = ACTIONS(2284), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), - [aux_sym_pandoc_str_token1] = ACTIONS(2284), - [anon_sym_PIPE] = ACTIONS(2282), - [aux_sym__prose_punctuation_token1] = ACTIONS(2284), - [sym__line_ending] = ACTIONS(2282), - [sym__soft_line_ending] = ACTIONS(2282), - [sym__block_close] = ACTIONS(2282), - [sym__block_quote_start] = ACTIONS(2282), - [sym_atx_h1_marker] = ACTIONS(2282), - [sym_atx_h2_marker] = ACTIONS(2282), - [sym_atx_h3_marker] = ACTIONS(2282), - [sym_atx_h4_marker] = ACTIONS(2282), - [sym_atx_h5_marker] = ACTIONS(2282), - [sym_atx_h6_marker] = ACTIONS(2282), - [sym__thematic_break] = ACTIONS(2282), - [sym__list_marker_minus] = ACTIONS(2282), - [sym__list_marker_plus] = ACTIONS(2282), - [sym__list_marker_star] = ACTIONS(2286), - [sym__list_marker_parenthesis] = ACTIONS(2282), - [sym__list_marker_dot] = ACTIONS(2282), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2282), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2282), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2286), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2282), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2282), - [sym__list_marker_example] = ACTIONS(2282), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2282), - [sym__fenced_code_block_start_backtick] = ACTIONS(2282), - [sym_minus_metadata] = ACTIONS(2282), - [sym__pipe_table_start] = ACTIONS(2282), - [sym__fenced_div_start] = ACTIONS(2282), - [sym__fenced_div_end] = ACTIONS(2282), - [sym_ref_id_specifier] = ACTIONS(2282), - [sym__code_span_start] = ACTIONS(2282), - [sym__html_comment] = ACTIONS(2282), - [sym__autolink] = ACTIONS(2282), - [sym__highlight_span_start] = ACTIONS(2282), - [sym__insert_span_start] = ACTIONS(2282), - [sym__delete_span_start] = ACTIONS(2282), - [sym__edit_comment_span_start] = ACTIONS(2282), - [sym__single_quote_span_open] = ACTIONS(2282), - [sym__double_quote_span_open] = ACTIONS(2282), - [sym__shortcode_open_escaped] = ACTIONS(2282), - [sym__shortcode_open] = ACTIONS(2282), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2282), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2282), - [sym__cite_author_in_text] = ACTIONS(2282), - [sym__cite_suppress_author] = ACTIONS(2282), - [sym__strikeout_open] = ACTIONS(2282), - [sym__subscript_open] = ACTIONS(2282), - [sym__superscript_open] = ACTIONS(2282), - [sym__inline_note_start_token] = ACTIONS(2282), - [sym__strong_emphasis_open_star] = ACTIONS(2282), - [sym__strong_emphasis_open_underscore] = ACTIONS(2282), - [sym__emphasis_open_star] = ACTIONS(2282), - [sym__emphasis_open_underscore] = ACTIONS(2282), - [sym_inline_note_reference] = ACTIONS(2282), - [sym_html_element] = ACTIONS(2282), - [sym__pandoc_line_break] = ACTIONS(2282), + [sym__inlines] = STATE(3068), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1253), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(614), + [sym__inline_whitespace] = STATE(614), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2207), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2211), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(173)] = { - [sym_list_marker_dot] = STATE(18), - [sym__list_item_dot] = STATE(173), - [aux_sym__list_dot_repeat1] = STATE(173), - [anon_sym_COLON] = ACTIONS(2289), - [sym_entity_reference] = ACTIONS(2289), - [sym_numeric_character_reference] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_BANG_LBRACK] = ACTIONS(2289), - [anon_sym_DOLLAR] = ACTIONS(2291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [aux_sym_pandoc_str_token1] = ACTIONS(2291), - [anon_sym_PIPE] = ACTIONS(2289), - [aux_sym__prose_punctuation_token1] = ACTIONS(2291), - [sym__line_ending] = ACTIONS(2289), - [sym__soft_line_ending] = ACTIONS(2289), - [sym__block_close] = ACTIONS(2289), - [sym__block_quote_start] = ACTIONS(2289), - [sym_atx_h1_marker] = ACTIONS(2289), - [sym_atx_h2_marker] = ACTIONS(2289), - [sym_atx_h3_marker] = ACTIONS(2289), - [sym_atx_h4_marker] = ACTIONS(2289), - [sym_atx_h5_marker] = ACTIONS(2289), - [sym_atx_h6_marker] = ACTIONS(2289), - [sym__thematic_break] = ACTIONS(2289), - [sym__list_marker_minus] = ACTIONS(2289), - [sym__list_marker_plus] = ACTIONS(2289), - [sym__list_marker_star] = ACTIONS(2289), - [sym__list_marker_parenthesis] = ACTIONS(2289), - [sym__list_marker_dot] = ACTIONS(2293), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2289), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2289), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2289), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2289), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_example] = ACTIONS(2289), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2289), - [sym__fenced_code_block_start_backtick] = ACTIONS(2289), - [sym_minus_metadata] = ACTIONS(2289), - [sym__pipe_table_start] = ACTIONS(2289), - [sym__fenced_div_start] = ACTIONS(2289), - [sym__fenced_div_end] = ACTIONS(2289), - [sym_ref_id_specifier] = ACTIONS(2289), - [sym__code_span_start] = ACTIONS(2289), - [sym__html_comment] = ACTIONS(2289), - [sym__autolink] = ACTIONS(2289), - [sym__highlight_span_start] = ACTIONS(2289), - [sym__insert_span_start] = ACTIONS(2289), - [sym__delete_span_start] = ACTIONS(2289), - [sym__edit_comment_span_start] = ACTIONS(2289), - [sym__single_quote_span_open] = ACTIONS(2289), - [sym__double_quote_span_open] = ACTIONS(2289), - [sym__shortcode_open_escaped] = ACTIONS(2289), - [sym__shortcode_open] = ACTIONS(2289), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2289), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2289), - [sym__cite_author_in_text] = ACTIONS(2289), - [sym__cite_suppress_author] = ACTIONS(2289), - [sym__strikeout_open] = ACTIONS(2289), - [sym__subscript_open] = ACTIONS(2289), - [sym__superscript_open] = ACTIONS(2289), - [sym__inline_note_start_token] = ACTIONS(2289), - [sym__strong_emphasis_open_star] = ACTIONS(2289), - [sym__strong_emphasis_open_underscore] = ACTIONS(2289), - [sym__emphasis_open_star] = ACTIONS(2289), - [sym__emphasis_open_underscore] = ACTIONS(2289), - [sym_inline_note_reference] = ACTIONS(2289), - [sym_html_element] = ACTIONS(2289), - [sym__pandoc_line_break] = ACTIONS(2289), + [sym__inlines] = STATE(3209), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1284), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(601), + [sym__inline_whitespace] = STATE(601), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2213), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2217), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(174)] = { - [sym_list_marker_parenthesis] = STATE(19), - [sym__list_item_parenthesis] = STATE(174), - [aux_sym__list_parenthesis_repeat1] = STATE(174), - [anon_sym_COLON] = ACTIONS(2296), - [sym_entity_reference] = ACTIONS(2296), - [sym_numeric_character_reference] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_BANG_LBRACK] = ACTIONS(2296), - [anon_sym_DOLLAR] = ACTIONS(2298), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [aux_sym_pandoc_str_token1] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2296), - [aux_sym__prose_punctuation_token1] = ACTIONS(2298), - [sym__line_ending] = ACTIONS(2296), - [sym__soft_line_ending] = ACTIONS(2296), - [sym__block_close] = ACTIONS(2296), - [sym__block_quote_start] = ACTIONS(2296), - [sym_atx_h1_marker] = ACTIONS(2296), - [sym_atx_h2_marker] = ACTIONS(2296), - [sym_atx_h3_marker] = ACTIONS(2296), - [sym_atx_h4_marker] = ACTIONS(2296), - [sym_atx_h5_marker] = ACTIONS(2296), - [sym_atx_h6_marker] = ACTIONS(2296), - [sym__thematic_break] = ACTIONS(2296), - [sym__list_marker_minus] = ACTIONS(2296), - [sym__list_marker_plus] = ACTIONS(2296), - [sym__list_marker_star] = ACTIONS(2296), - [sym__list_marker_parenthesis] = ACTIONS(2300), - [sym__list_marker_dot] = ACTIONS(2296), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2296), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2296), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2296), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2300), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2296), - [sym__list_marker_example] = ACTIONS(2296), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2296), - [sym__fenced_code_block_start_backtick] = ACTIONS(2296), - [sym_minus_metadata] = ACTIONS(2296), - [sym__pipe_table_start] = ACTIONS(2296), - [sym__fenced_div_start] = ACTIONS(2296), - [sym__fenced_div_end] = ACTIONS(2296), - [sym_ref_id_specifier] = ACTIONS(2296), - [sym__code_span_start] = ACTIONS(2296), - [sym__html_comment] = ACTIONS(2296), - [sym__autolink] = ACTIONS(2296), - [sym__highlight_span_start] = ACTIONS(2296), - [sym__insert_span_start] = ACTIONS(2296), - [sym__delete_span_start] = ACTIONS(2296), - [sym__edit_comment_span_start] = ACTIONS(2296), - [sym__single_quote_span_open] = ACTIONS(2296), - [sym__double_quote_span_open] = ACTIONS(2296), - [sym__shortcode_open_escaped] = ACTIONS(2296), - [sym__shortcode_open] = ACTIONS(2296), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2296), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2296), - [sym__cite_author_in_text] = ACTIONS(2296), - [sym__cite_suppress_author] = ACTIONS(2296), - [sym__strikeout_open] = ACTIONS(2296), - [sym__subscript_open] = ACTIONS(2296), - [sym__superscript_open] = ACTIONS(2296), - [sym__inline_note_start_token] = ACTIONS(2296), - [sym__strong_emphasis_open_star] = ACTIONS(2296), - [sym__strong_emphasis_open_underscore] = ACTIONS(2296), - [sym__emphasis_open_star] = ACTIONS(2296), - [sym__emphasis_open_underscore] = ACTIONS(2296), - [sym_inline_note_reference] = ACTIONS(2296), - [sym_html_element] = ACTIONS(2296), - [sym__pandoc_line_break] = ACTIONS(2296), + [sym__inlines] = STATE(3213), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1285), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(608), + [sym__inline_whitespace] = STATE(608), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2219), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2221), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(175)] = { - [sym__inlines] = STATE(2742), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1034), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(599), - [sym__inline_whitespace] = STATE(599), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2303), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2042), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2305), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym__inlines] = STATE(3117), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1312), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(592), + [sym__inline_whitespace] = STATE(592), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2223), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2225), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2227), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(176)] = { - [sym_list_marker_example] = STATE(2), - [sym__list_item_example] = STATE(176), - [aux_sym__list_example_repeat1] = STATE(176), - [anon_sym_COLON] = ACTIONS(2307), - [sym_entity_reference] = ACTIONS(2307), - [sym_numeric_character_reference] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_BANG_LBRACK] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [aux_sym_pandoc_str_token1] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2307), - [aux_sym__prose_punctuation_token1] = ACTIONS(2309), - [sym__line_ending] = ACTIONS(2307), - [sym__soft_line_ending] = ACTIONS(2307), - [sym__block_close] = ACTIONS(2307), - [sym__block_quote_start] = ACTIONS(2307), - [sym_atx_h1_marker] = ACTIONS(2307), - [sym_atx_h2_marker] = ACTIONS(2307), - [sym_atx_h3_marker] = ACTIONS(2307), - [sym_atx_h4_marker] = ACTIONS(2307), - [sym_atx_h5_marker] = ACTIONS(2307), - [sym_atx_h6_marker] = ACTIONS(2307), - [sym__thematic_break] = ACTIONS(2307), - [sym__list_marker_minus] = ACTIONS(2307), - [sym__list_marker_plus] = ACTIONS(2307), - [sym__list_marker_star] = ACTIONS(2307), - [sym__list_marker_parenthesis] = ACTIONS(2307), - [sym__list_marker_dot] = ACTIONS(2307), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_example] = ACTIONS(2311), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2311), - [sym__fenced_code_block_start_backtick] = ACTIONS(2307), - [sym_minus_metadata] = ACTIONS(2307), - [sym__pipe_table_start] = ACTIONS(2307), - [sym__fenced_div_start] = ACTIONS(2307), - [sym__fenced_div_end] = ACTIONS(2307), - [sym_ref_id_specifier] = ACTIONS(2307), - [sym__code_span_start] = ACTIONS(2307), - [sym__html_comment] = ACTIONS(2307), - [sym__autolink] = ACTIONS(2307), - [sym__highlight_span_start] = ACTIONS(2307), - [sym__insert_span_start] = ACTIONS(2307), - [sym__delete_span_start] = ACTIONS(2307), - [sym__edit_comment_span_start] = ACTIONS(2307), - [sym__single_quote_span_open] = ACTIONS(2307), - [sym__double_quote_span_open] = ACTIONS(2307), - [sym__shortcode_open_escaped] = ACTIONS(2307), - [sym__shortcode_open] = ACTIONS(2307), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2307), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2307), - [sym__cite_author_in_text] = ACTIONS(2307), - [sym__cite_suppress_author] = ACTIONS(2307), - [sym__strikeout_open] = ACTIONS(2307), - [sym__subscript_open] = ACTIONS(2307), - [sym__superscript_open] = ACTIONS(2307), - [sym__inline_note_start_token] = ACTIONS(2307), - [sym__strong_emphasis_open_star] = ACTIONS(2307), - [sym__strong_emphasis_open_underscore] = ACTIONS(2307), - [sym__emphasis_open_star] = ACTIONS(2307), - [sym__emphasis_open_underscore] = ACTIONS(2307), - [sym_inline_note_reference] = ACTIONS(2307), - [sym_html_element] = ACTIONS(2307), - [sym__pandoc_line_break] = ACTIONS(2307), + [sym__inlines] = STATE(3121), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1313), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(597), + [sym__inline_whitespace] = STATE(597), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2229), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2225), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2231), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(177)] = { - [sym__inlines] = STATE(2907), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1294), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(463), - [sym__inline_whitespace] = STATE(463), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2314), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2316), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym__inlines] = STATE(3202), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1348), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(605), + [sym__inline_whitespace] = STATE(605), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2233), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2235), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2237), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(178)] = { - [sym__inlines] = STATE(2826), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1421), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym__soft_line_break] = STATE(538), - [sym__inline_whitespace] = STATE(538), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(2318), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__whitespace] = ACTIONS(2320), - [sym__soft_line_ending] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [sym__inlines] = STATE(3208), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1349), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(606), + [sym__inline_whitespace] = STATE(606), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2239), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2235), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2241), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(179)] = { - [sym_list_marker_minus] = STATE(4), - [sym__list_item_minus] = STATE(186), - [aux_sym__list_minus_repeat1] = STATE(186), - [ts_builtin_sym_end] = ACTIONS(2106), - [anon_sym_COLON] = ACTIONS(2106), - [sym_entity_reference] = ACTIONS(2106), - [sym_numeric_character_reference] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_BANG_LBRACK] = ACTIONS(2106), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2106), - [aux_sym_pandoc_str_token1] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2106), - [aux_sym__prose_punctuation_token1] = ACTIONS(2108), - [sym__line_ending] = ACTIONS(2106), - [sym__soft_line_ending] = ACTIONS(2106), - [sym__block_quote_start] = ACTIONS(2106), - [sym_atx_h1_marker] = ACTIONS(2106), - [sym_atx_h2_marker] = ACTIONS(2106), - [sym_atx_h3_marker] = ACTIONS(2106), - [sym_atx_h4_marker] = ACTIONS(2106), - [sym_atx_h5_marker] = ACTIONS(2106), - [sym_atx_h6_marker] = ACTIONS(2106), - [sym__thematic_break] = ACTIONS(2106), - [sym__list_marker_minus] = ACTIONS(45), - [sym__list_marker_plus] = ACTIONS(2106), - [sym__list_marker_star] = ACTIONS(2106), - [sym__list_marker_parenthesis] = ACTIONS(2106), - [sym__list_marker_dot] = ACTIONS(2106), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2106), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2106), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2106), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2106), - [sym__list_marker_example] = ACTIONS(2106), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2106), - [sym__fenced_code_block_start_backtick] = ACTIONS(2106), - [sym_minus_metadata] = ACTIONS(2106), - [sym__pipe_table_start] = ACTIONS(2106), - [sym__fenced_div_start] = ACTIONS(2106), - [sym_ref_id_specifier] = ACTIONS(2106), - [sym__code_span_start] = ACTIONS(2106), - [sym__html_comment] = ACTIONS(2106), - [sym__autolink] = ACTIONS(2106), - [sym__highlight_span_start] = ACTIONS(2106), - [sym__insert_span_start] = ACTIONS(2106), - [sym__delete_span_start] = ACTIONS(2106), - [sym__edit_comment_span_start] = ACTIONS(2106), - [sym__single_quote_span_open] = ACTIONS(2106), - [sym__double_quote_span_open] = ACTIONS(2106), - [sym__shortcode_open_escaped] = ACTIONS(2106), - [sym__shortcode_open] = ACTIONS(2106), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2106), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2106), - [sym__cite_author_in_text] = ACTIONS(2106), - [sym__cite_suppress_author] = ACTIONS(2106), - [sym__strikeout_open] = ACTIONS(2106), - [sym__subscript_open] = ACTIONS(2106), - [sym__superscript_open] = ACTIONS(2106), - [sym__inline_note_start_token] = ACTIONS(2106), - [sym__strong_emphasis_open_star] = ACTIONS(2106), - [sym__strong_emphasis_open_underscore] = ACTIONS(2106), - [sym__emphasis_open_star] = ACTIONS(2106), - [sym__emphasis_open_underscore] = ACTIONS(2106), - [sym_inline_note_reference] = ACTIONS(2106), - [sym_html_element] = ACTIONS(2106), - [sym__pandoc_line_break] = ACTIONS(2106), + [sym__inlines] = STATE(3255), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1482), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(609), + [sym__inline_whitespace] = STATE(609), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2243), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2245), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2247), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(180)] = { - [sym_list_marker_example] = STATE(8), - [sym__list_item_example] = STATE(180), - [aux_sym__list_example_repeat1] = STATE(180), - [ts_builtin_sym_end] = ACTIONS(2307), - [anon_sym_COLON] = ACTIONS(2307), - [sym_entity_reference] = ACTIONS(2307), - [sym_numeric_character_reference] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_BANG_LBRACK] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [aux_sym_pandoc_str_token1] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2307), - [aux_sym__prose_punctuation_token1] = ACTIONS(2309), - [sym__line_ending] = ACTIONS(2307), - [sym__soft_line_ending] = ACTIONS(2307), - [sym__block_quote_start] = ACTIONS(2307), - [sym_atx_h1_marker] = ACTIONS(2307), - [sym_atx_h2_marker] = ACTIONS(2307), - [sym_atx_h3_marker] = ACTIONS(2307), - [sym_atx_h4_marker] = ACTIONS(2307), - [sym_atx_h5_marker] = ACTIONS(2307), - [sym_atx_h6_marker] = ACTIONS(2307), - [sym__thematic_break] = ACTIONS(2307), - [sym__list_marker_minus] = ACTIONS(2307), - [sym__list_marker_plus] = ACTIONS(2307), - [sym__list_marker_star] = ACTIONS(2307), - [sym__list_marker_parenthesis] = ACTIONS(2307), - [sym__list_marker_dot] = ACTIONS(2307), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_example] = ACTIONS(2311), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2311), - [sym__fenced_code_block_start_backtick] = ACTIONS(2307), - [sym_minus_metadata] = ACTIONS(2307), - [sym__pipe_table_start] = ACTIONS(2307), - [sym__fenced_div_start] = ACTIONS(2307), - [sym_ref_id_specifier] = ACTIONS(2307), - [sym__code_span_start] = ACTIONS(2307), - [sym__html_comment] = ACTIONS(2307), - [sym__autolink] = ACTIONS(2307), - [sym__highlight_span_start] = ACTIONS(2307), - [sym__insert_span_start] = ACTIONS(2307), - [sym__delete_span_start] = ACTIONS(2307), - [sym__edit_comment_span_start] = ACTIONS(2307), - [sym__single_quote_span_open] = ACTIONS(2307), - [sym__double_quote_span_open] = ACTIONS(2307), - [sym__shortcode_open_escaped] = ACTIONS(2307), - [sym__shortcode_open] = ACTIONS(2307), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2307), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2307), - [sym__cite_author_in_text] = ACTIONS(2307), - [sym__cite_suppress_author] = ACTIONS(2307), - [sym__strikeout_open] = ACTIONS(2307), - [sym__subscript_open] = ACTIONS(2307), - [sym__superscript_open] = ACTIONS(2307), - [sym__inline_note_start_token] = ACTIONS(2307), - [sym__strong_emphasis_open_star] = ACTIONS(2307), - [sym__strong_emphasis_open_underscore] = ACTIONS(2307), - [sym__emphasis_open_star] = ACTIONS(2307), - [sym__emphasis_open_underscore] = ACTIONS(2307), - [sym_inline_note_reference] = ACTIONS(2307), - [sym_html_element] = ACTIONS(2307), - [sym__pandoc_line_break] = ACTIONS(2307), + [sym__inlines] = STATE(3010), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1488), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(610), + [sym__inline_whitespace] = STATE(610), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2249), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2245), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2251), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(181)] = { - [sym_list_marker_example] = STATE(8), - [sym__list_item_example] = STATE(180), - [aux_sym__list_example_repeat1] = STATE(180), - [ts_builtin_sym_end] = ACTIONS(2132), - [anon_sym_COLON] = ACTIONS(2132), - [sym_entity_reference] = ACTIONS(2132), - [sym_numeric_character_reference] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_BANG_LBRACK] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2132), - [aux_sym_pandoc_str_token1] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2132), - [aux_sym__prose_punctuation_token1] = ACTIONS(2134), - [sym__line_ending] = ACTIONS(2132), - [sym__soft_line_ending] = ACTIONS(2132), - [sym__block_quote_start] = ACTIONS(2132), - [sym_atx_h1_marker] = ACTIONS(2132), - [sym_atx_h2_marker] = ACTIONS(2132), - [sym_atx_h3_marker] = ACTIONS(2132), - [sym_atx_h4_marker] = ACTIONS(2132), - [sym_atx_h5_marker] = ACTIONS(2132), - [sym_atx_h6_marker] = ACTIONS(2132), - [sym__thematic_break] = ACTIONS(2132), - [sym__list_marker_minus] = ACTIONS(2132), - [sym__list_marker_plus] = ACTIONS(2132), - [sym__list_marker_star] = ACTIONS(2132), - [sym__list_marker_parenthesis] = ACTIONS(2132), - [sym__list_marker_dot] = ACTIONS(2132), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_example] = ACTIONS(55), - [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(2132), - [sym_minus_metadata] = ACTIONS(2132), - [sym__pipe_table_start] = ACTIONS(2132), - [sym__fenced_div_start] = ACTIONS(2132), - [sym_ref_id_specifier] = ACTIONS(2132), - [sym__code_span_start] = ACTIONS(2132), - [sym__html_comment] = ACTIONS(2132), - [sym__autolink] = ACTIONS(2132), - [sym__highlight_span_start] = ACTIONS(2132), - [sym__insert_span_start] = ACTIONS(2132), - [sym__delete_span_start] = ACTIONS(2132), - [sym__edit_comment_span_start] = ACTIONS(2132), - [sym__single_quote_span_open] = ACTIONS(2132), - [sym__double_quote_span_open] = ACTIONS(2132), - [sym__shortcode_open_escaped] = ACTIONS(2132), - [sym__shortcode_open] = ACTIONS(2132), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2132), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2132), - [sym__cite_author_in_text] = ACTIONS(2132), - [sym__cite_suppress_author] = ACTIONS(2132), - [sym__strikeout_open] = ACTIONS(2132), - [sym__subscript_open] = ACTIONS(2132), - [sym__superscript_open] = ACTIONS(2132), - [sym__inline_note_start_token] = ACTIONS(2132), - [sym__strong_emphasis_open_star] = ACTIONS(2132), - [sym__strong_emphasis_open_underscore] = ACTIONS(2132), - [sym__emphasis_open_star] = ACTIONS(2132), - [sym__emphasis_open_underscore] = ACTIONS(2132), - [sym_inline_note_reference] = ACTIONS(2132), - [sym_html_element] = ACTIONS(2132), - [sym__pandoc_line_break] = ACTIONS(2132), + [sym__inlines] = STATE(3086), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1074), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(616), + [sym__inline_whitespace] = STATE(616), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2253), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2255), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2257), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(182)] = { - [sym_list_marker_plus] = STATE(3), - [sym__list_item_plus] = STATE(182), - [aux_sym__list_plus_repeat1] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(2136), - [anon_sym_COLON] = ACTIONS(2136), - [sym_entity_reference] = ACTIONS(2136), - [sym_numeric_character_reference] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_BANG_LBRACK] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2136), - [aux_sym_pandoc_str_token1] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2136), - [aux_sym__prose_punctuation_token1] = ACTIONS(2138), - [sym__line_ending] = ACTIONS(2136), - [sym__soft_line_ending] = ACTIONS(2136), - [sym__block_quote_start] = ACTIONS(2136), - [sym_atx_h1_marker] = ACTIONS(2136), - [sym_atx_h2_marker] = ACTIONS(2136), - [sym_atx_h3_marker] = ACTIONS(2136), - [sym_atx_h4_marker] = ACTIONS(2136), - [sym_atx_h5_marker] = ACTIONS(2136), - [sym_atx_h6_marker] = ACTIONS(2136), - [sym__thematic_break] = ACTIONS(2136), - [sym__list_marker_minus] = ACTIONS(2136), - [sym__list_marker_plus] = ACTIONS(2140), - [sym__list_marker_star] = ACTIONS(2136), - [sym__list_marker_parenthesis] = ACTIONS(2136), - [sym__list_marker_dot] = ACTIONS(2136), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2140), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_example] = ACTIONS(2136), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2136), - [sym__fenced_code_block_start_backtick] = ACTIONS(2136), - [sym_minus_metadata] = ACTIONS(2136), - [sym__pipe_table_start] = ACTIONS(2136), - [sym__fenced_div_start] = ACTIONS(2136), - [sym_ref_id_specifier] = ACTIONS(2136), - [sym__code_span_start] = ACTIONS(2136), - [sym__html_comment] = ACTIONS(2136), - [sym__autolink] = ACTIONS(2136), - [sym__highlight_span_start] = ACTIONS(2136), - [sym__insert_span_start] = ACTIONS(2136), - [sym__delete_span_start] = ACTIONS(2136), - [sym__edit_comment_span_start] = ACTIONS(2136), - [sym__single_quote_span_open] = ACTIONS(2136), - [sym__double_quote_span_open] = ACTIONS(2136), - [sym__shortcode_open_escaped] = ACTIONS(2136), - [sym__shortcode_open] = ACTIONS(2136), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2136), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2136), - [sym__cite_author_in_text] = ACTIONS(2136), - [sym__cite_suppress_author] = ACTIONS(2136), - [sym__strikeout_open] = ACTIONS(2136), - [sym__subscript_open] = ACTIONS(2136), - [sym__superscript_open] = ACTIONS(2136), - [sym__inline_note_start_token] = ACTIONS(2136), - [sym__strong_emphasis_open_star] = ACTIONS(2136), - [sym__strong_emphasis_open_underscore] = ACTIONS(2136), - [sym__emphasis_open_star] = ACTIONS(2136), - [sym__emphasis_open_underscore] = ACTIONS(2136), - [sym_inline_note_reference] = ACTIONS(2136), - [sym_html_element] = ACTIONS(2136), - [sym__pandoc_line_break] = ACTIONS(2136), + [sym__inlines] = STATE(3088), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1075), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(577), + [sym__inline_whitespace] = STATE(577), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2259), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2255), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2261), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(183)] = { - [sym_pipe_table_cell] = STATE(2567), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(2322), - [sym__line_ending] = ACTIONS(2324), - [sym__eof] = ACTIONS(2324), - [sym__pipe_table_line_ending] = ACTIONS(2324), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2326), - [sym__pandoc_line_break] = ACTIONS(1968), + [sym__inlines] = STATE(3113), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1200), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(579), + [sym__inline_whitespace] = STATE(579), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2263), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2267), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(184)] = { - [sym_pipe_table_cell] = STATE(2568), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym_pipe_table_row_repeat1] = STATE(187), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(2328), - [sym__line_ending] = ACTIONS(2330), - [sym__eof] = ACTIONS(2330), - [sym__pipe_table_line_ending] = ACTIONS(2330), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pandoc_line_break] = ACTIONS(1968), + [sym__inlines] = STATE(3115), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1203), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(580), + [sym__inline_whitespace] = STATE(580), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2269), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2271), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(185)] = { - [sym_pipe_table_cell] = STATE(2568), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym_pipe_table_row_repeat1] = STATE(197), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(2332), - [sym__line_ending] = ACTIONS(2334), - [sym__eof] = ACTIONS(2334), - [sym__pipe_table_line_ending] = ACTIONS(2334), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pandoc_line_break] = ACTIONS(1968), + [sym__inlines] = STATE(3152), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1354), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(582), + [sym__inline_whitespace] = STATE(582), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2273), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2277), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(186)] = { - [sym_list_marker_minus] = STATE(4), - [sym__list_item_minus] = STATE(186), - [aux_sym__list_minus_repeat1] = STATE(186), - [ts_builtin_sym_end] = ACTIONS(2275), - [anon_sym_COLON] = ACTIONS(2275), - [sym_entity_reference] = ACTIONS(2275), - [sym_numeric_character_reference] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_BANG_LBRACK] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [aux_sym_pandoc_str_token1] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(2275), - [aux_sym__prose_punctuation_token1] = ACTIONS(2277), - [sym__line_ending] = ACTIONS(2275), - [sym__soft_line_ending] = ACTIONS(2275), - [sym__block_quote_start] = ACTIONS(2275), - [sym_atx_h1_marker] = ACTIONS(2275), - [sym_atx_h2_marker] = ACTIONS(2275), - [sym_atx_h3_marker] = ACTIONS(2275), - [sym_atx_h4_marker] = ACTIONS(2275), - [sym_atx_h5_marker] = ACTIONS(2275), - [sym_atx_h6_marker] = ACTIONS(2275), - [sym__thematic_break] = ACTIONS(2275), - [sym__list_marker_minus] = ACTIONS(2279), - [sym__list_marker_plus] = ACTIONS(2275), - [sym__list_marker_star] = ACTIONS(2275), - [sym__list_marker_parenthesis] = ACTIONS(2275), - [sym__list_marker_dot] = ACTIONS(2275), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_example] = ACTIONS(2275), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2275), - [sym__fenced_code_block_start_backtick] = ACTIONS(2275), - [sym_minus_metadata] = ACTIONS(2275), - [sym__pipe_table_start] = ACTIONS(2275), - [sym__fenced_div_start] = ACTIONS(2275), - [sym_ref_id_specifier] = ACTIONS(2275), - [sym__code_span_start] = ACTIONS(2275), - [sym__html_comment] = ACTIONS(2275), - [sym__autolink] = ACTIONS(2275), - [sym__highlight_span_start] = ACTIONS(2275), - [sym__insert_span_start] = ACTIONS(2275), - [sym__delete_span_start] = ACTIONS(2275), - [sym__edit_comment_span_start] = ACTIONS(2275), - [sym__single_quote_span_open] = ACTIONS(2275), - [sym__double_quote_span_open] = ACTIONS(2275), - [sym__shortcode_open_escaped] = ACTIONS(2275), - [sym__shortcode_open] = ACTIONS(2275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2275), - [sym__cite_author_in_text] = ACTIONS(2275), - [sym__cite_suppress_author] = ACTIONS(2275), - [sym__strikeout_open] = ACTIONS(2275), - [sym__subscript_open] = ACTIONS(2275), - [sym__superscript_open] = ACTIONS(2275), - [sym__inline_note_start_token] = ACTIONS(2275), - [sym__strong_emphasis_open_star] = ACTIONS(2275), - [sym__strong_emphasis_open_underscore] = ACTIONS(2275), - [sym__emphasis_open_star] = ACTIONS(2275), - [sym__emphasis_open_underscore] = ACTIONS(2275), - [sym_inline_note_reference] = ACTIONS(2275), - [sym_html_element] = ACTIONS(2275), - [sym__pandoc_line_break] = ACTIONS(2275), + [sym__inlines] = STATE(3154), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1355), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(576), + [sym__inline_whitespace] = STATE(576), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2279), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2275), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2281), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(187)] = { - [sym_pipe_table_cell] = STATE(3065), - [sym_pandoc_span] = STATE(746), - [sym_pandoc_image] = STATE(746), - [sym_pandoc_math] = STATE(746), - [sym_pandoc_display_math] = STATE(746), - [sym_pandoc_code_span] = STATE(746), - [sym_pandoc_single_quote] = STATE(746), - [sym_pandoc_double_quote] = STATE(746), - [sym_insert] = STATE(746), - [sym_delete] = STATE(746), - [sym_edit_comment] = STATE(746), - [sym_highlight] = STATE(746), - [sym__pandoc_attr_specifier] = STATE(746), - [sym__line_with_maybe_spaces] = STATE(3072), - [sym__inline_element] = STATE(746), - [sym_shortcode_escaped] = STATE(746), - [sym_shortcode] = STATE(746), - [sym_citation] = STATE(746), - [sym_inline_note] = STATE(746), - [sym_pandoc_superscript] = STATE(746), - [sym_pandoc_subscript] = STATE(746), - [sym_pandoc_strikeout] = STATE(746), - [sym_pandoc_emph] = STATE(746), - [sym_pandoc_strong] = STATE(746), - [sym_pandoc_str] = STATE(746), - [sym__prose_punctuation] = STATE(746), - [aux_sym_pipe_table_row_repeat1] = STATE(187), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(746), - [sym_entity_reference] = ACTIONS(2336), - [sym_numeric_character_reference] = ACTIONS(2336), - [anon_sym_LBRACK] = ACTIONS(2339), - [anon_sym_BANG_LBRACK] = ACTIONS(2342), - [anon_sym_DOLLAR] = ACTIONS(2345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2348), - [anon_sym_LBRACE] = ACTIONS(2351), - [aux_sym_pandoc_str_token1] = ACTIONS(2354), - [anon_sym_PIPE] = ACTIONS(2357), - [aux_sym__prose_punctuation_token1] = ACTIONS(2360), - [sym__whitespace] = ACTIONS(2363), - [sym__line_ending] = ACTIONS(2366), - [sym__eof] = ACTIONS(2366), - [sym__pipe_table_line_ending] = ACTIONS(2366), - [sym__code_span_start] = ACTIONS(2368), - [sym__html_comment] = ACTIONS(2336), - [sym__autolink] = ACTIONS(2336), - [sym__highlight_span_start] = ACTIONS(2371), - [sym__insert_span_start] = ACTIONS(2374), - [sym__delete_span_start] = ACTIONS(2377), - [sym__edit_comment_span_start] = ACTIONS(2380), - [sym__single_quote_span_open] = ACTIONS(2383), - [sym__double_quote_span_open] = ACTIONS(2386), - [sym__shortcode_open_escaped] = ACTIONS(2389), - [sym__shortcode_open] = ACTIONS(2392), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2395), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2398), - [sym__cite_author_in_text] = ACTIONS(2401), - [sym__cite_suppress_author] = ACTIONS(2404), - [sym__strikeout_open] = ACTIONS(2407), - [sym__subscript_open] = ACTIONS(2410), - [sym__superscript_open] = ACTIONS(2413), - [sym__inline_note_start_token] = ACTIONS(2416), - [sym__strong_emphasis_open_star] = ACTIONS(2419), - [sym__strong_emphasis_open_underscore] = ACTIONS(2422), - [sym__emphasis_open_star] = ACTIONS(2425), - [sym__emphasis_open_underscore] = ACTIONS(2428), - [sym_inline_note_reference] = ACTIONS(2336), - [sym_html_element] = ACTIONS(2336), - [sym__pandoc_line_break] = ACTIONS(2336), + [sym__inlines] = STATE(3191), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1397), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(585), + [sym__inline_whitespace] = STATE(585), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2283), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2285), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2287), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(188)] = { - [sym_list_marker_plus] = STATE(9), - [sym__list_item_plus] = STATE(188), - [aux_sym__list_plus_repeat1] = STATE(188), - [anon_sym_COLON] = ACTIONS(2136), - [sym_entity_reference] = ACTIONS(2136), - [sym_numeric_character_reference] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_BANG_LBRACK] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2136), - [aux_sym_pandoc_str_token1] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2136), - [aux_sym__prose_punctuation_token1] = ACTIONS(2138), - [sym__line_ending] = ACTIONS(2136), - [sym__soft_line_ending] = ACTIONS(2136), - [sym__block_close] = ACTIONS(2136), - [sym__block_quote_start] = ACTIONS(2136), - [sym_atx_h1_marker] = ACTIONS(2136), - [sym_atx_h2_marker] = ACTIONS(2136), - [sym_atx_h3_marker] = ACTIONS(2136), - [sym_atx_h4_marker] = ACTIONS(2136), - [sym_atx_h5_marker] = ACTIONS(2136), - [sym_atx_h6_marker] = ACTIONS(2136), - [sym__thematic_break] = ACTIONS(2136), - [sym__list_marker_minus] = ACTIONS(2136), - [sym__list_marker_plus] = ACTIONS(2140), - [sym__list_marker_star] = ACTIONS(2136), - [sym__list_marker_parenthesis] = ACTIONS(2136), - [sym__list_marker_dot] = ACTIONS(2136), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2140), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_example] = ACTIONS(2136), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2136), - [sym__fenced_code_block_start_backtick] = ACTIONS(2136), - [sym_minus_metadata] = ACTIONS(2136), - [sym__pipe_table_start] = ACTIONS(2136), - [sym__fenced_div_start] = ACTIONS(2136), - [sym_ref_id_specifier] = ACTIONS(2136), - [sym__code_span_start] = ACTIONS(2136), - [sym__html_comment] = ACTIONS(2136), - [sym__autolink] = ACTIONS(2136), - [sym__highlight_span_start] = ACTIONS(2136), - [sym__insert_span_start] = ACTIONS(2136), - [sym__delete_span_start] = ACTIONS(2136), - [sym__edit_comment_span_start] = ACTIONS(2136), - [sym__single_quote_span_open] = ACTIONS(2136), - [sym__double_quote_span_open] = ACTIONS(2136), - [sym__shortcode_open_escaped] = ACTIONS(2136), - [sym__shortcode_open] = ACTIONS(2136), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2136), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2136), - [sym__cite_author_in_text] = ACTIONS(2136), - [sym__cite_suppress_author] = ACTIONS(2136), - [sym__strikeout_open] = ACTIONS(2136), - [sym__subscript_open] = ACTIONS(2136), - [sym__superscript_open] = ACTIONS(2136), - [sym__inline_note_start_token] = ACTIONS(2136), - [sym__strong_emphasis_open_star] = ACTIONS(2136), - [sym__strong_emphasis_open_underscore] = ACTIONS(2136), - [sym__emphasis_open_star] = ACTIONS(2136), - [sym__emphasis_open_underscore] = ACTIONS(2136), - [sym_inline_note_reference] = ACTIONS(2136), - [sym_html_element] = ACTIONS(2136), - [sym__pandoc_line_break] = ACTIONS(2136), + [sym__inlines] = STATE(3192), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1398), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(586), + [sym__inline_whitespace] = STATE(586), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2289), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2285), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2291), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(189)] = { - [sym_list_marker_minus] = STATE(10), - [sym__list_item_minus] = STATE(189), - [aux_sym__list_minus_repeat1] = STATE(189), - [anon_sym_COLON] = ACTIONS(2275), - [sym_entity_reference] = ACTIONS(2275), - [sym_numeric_character_reference] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_BANG_LBRACK] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [aux_sym_pandoc_str_token1] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(2275), - [aux_sym__prose_punctuation_token1] = ACTIONS(2277), - [sym__line_ending] = ACTIONS(2275), - [sym__soft_line_ending] = ACTIONS(2275), - [sym__block_close] = ACTIONS(2275), - [sym__block_quote_start] = ACTIONS(2275), - [sym_atx_h1_marker] = ACTIONS(2275), - [sym_atx_h2_marker] = ACTIONS(2275), - [sym_atx_h3_marker] = ACTIONS(2275), - [sym_atx_h4_marker] = ACTIONS(2275), - [sym_atx_h5_marker] = ACTIONS(2275), - [sym_atx_h6_marker] = ACTIONS(2275), - [sym__thematic_break] = ACTIONS(2275), - [sym__list_marker_minus] = ACTIONS(2279), - [sym__list_marker_plus] = ACTIONS(2275), - [sym__list_marker_star] = ACTIONS(2275), - [sym__list_marker_parenthesis] = ACTIONS(2275), - [sym__list_marker_dot] = ACTIONS(2275), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2279), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2275), - [sym__list_marker_example] = ACTIONS(2275), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2275), - [sym__fenced_code_block_start_backtick] = ACTIONS(2275), - [sym_minus_metadata] = ACTIONS(2275), - [sym__pipe_table_start] = ACTIONS(2275), - [sym__fenced_div_start] = ACTIONS(2275), - [sym_ref_id_specifier] = ACTIONS(2275), - [sym__code_span_start] = ACTIONS(2275), - [sym__html_comment] = ACTIONS(2275), - [sym__autolink] = ACTIONS(2275), - [sym__highlight_span_start] = ACTIONS(2275), - [sym__insert_span_start] = ACTIONS(2275), - [sym__delete_span_start] = ACTIONS(2275), - [sym__edit_comment_span_start] = ACTIONS(2275), - [sym__single_quote_span_open] = ACTIONS(2275), - [sym__double_quote_span_open] = ACTIONS(2275), - [sym__shortcode_open_escaped] = ACTIONS(2275), - [sym__shortcode_open] = ACTIONS(2275), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2275), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2275), - [sym__cite_author_in_text] = ACTIONS(2275), - [sym__cite_suppress_author] = ACTIONS(2275), - [sym__strikeout_open] = ACTIONS(2275), - [sym__subscript_open] = ACTIONS(2275), - [sym__superscript_open] = ACTIONS(2275), - [sym__inline_note_start_token] = ACTIONS(2275), - [sym__strong_emphasis_open_star] = ACTIONS(2275), - [sym__strong_emphasis_open_underscore] = ACTIONS(2275), - [sym__emphasis_open_star] = ACTIONS(2275), - [sym__emphasis_open_underscore] = ACTIONS(2275), - [sym_inline_note_reference] = ACTIONS(2275), - [sym_html_element] = ACTIONS(2275), - [sym__pandoc_line_break] = ACTIONS(2275), + [sym__inlines] = STATE(3216), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1037), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(589), + [sym__inline_whitespace] = STATE(589), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2293), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2297), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(190)] = { - [sym_list_marker_star] = STATE(11), - [sym__list_item_star] = STATE(190), - [aux_sym__list_star_repeat1] = STATE(190), - [anon_sym_COLON] = ACTIONS(2282), - [sym_entity_reference] = ACTIONS(2282), - [sym_numeric_character_reference] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_BANG_LBRACK] = ACTIONS(2282), - [anon_sym_DOLLAR] = ACTIONS(2284), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), - [aux_sym_pandoc_str_token1] = ACTIONS(2284), - [anon_sym_PIPE] = ACTIONS(2282), - [aux_sym__prose_punctuation_token1] = ACTIONS(2284), - [sym__line_ending] = ACTIONS(2282), - [sym__soft_line_ending] = ACTIONS(2282), - [sym__block_close] = ACTIONS(2282), - [sym__block_quote_start] = ACTIONS(2282), - [sym_atx_h1_marker] = ACTIONS(2282), - [sym_atx_h2_marker] = ACTIONS(2282), - [sym_atx_h3_marker] = ACTIONS(2282), - [sym_atx_h4_marker] = ACTIONS(2282), - [sym_atx_h5_marker] = ACTIONS(2282), - [sym_atx_h6_marker] = ACTIONS(2282), - [sym__thematic_break] = ACTIONS(2282), - [sym__list_marker_minus] = ACTIONS(2282), - [sym__list_marker_plus] = ACTIONS(2282), - [sym__list_marker_star] = ACTIONS(2286), - [sym__list_marker_parenthesis] = ACTIONS(2282), - [sym__list_marker_dot] = ACTIONS(2282), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2282), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2282), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2286), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2282), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2282), - [sym__list_marker_example] = ACTIONS(2282), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2282), - [sym__fenced_code_block_start_backtick] = ACTIONS(2282), - [sym_minus_metadata] = ACTIONS(2282), - [sym__pipe_table_start] = ACTIONS(2282), - [sym__fenced_div_start] = ACTIONS(2282), - [sym_ref_id_specifier] = ACTIONS(2282), - [sym__code_span_start] = ACTIONS(2282), - [sym__html_comment] = ACTIONS(2282), - [sym__autolink] = ACTIONS(2282), - [sym__highlight_span_start] = ACTIONS(2282), - [sym__insert_span_start] = ACTIONS(2282), - [sym__delete_span_start] = ACTIONS(2282), - [sym__edit_comment_span_start] = ACTIONS(2282), - [sym__single_quote_span_open] = ACTIONS(2282), - [sym__double_quote_span_open] = ACTIONS(2282), - [sym__shortcode_open_escaped] = ACTIONS(2282), - [sym__shortcode_open] = ACTIONS(2282), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2282), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2282), - [sym__cite_author_in_text] = ACTIONS(2282), - [sym__cite_suppress_author] = ACTIONS(2282), - [sym__strikeout_open] = ACTIONS(2282), - [sym__subscript_open] = ACTIONS(2282), - [sym__superscript_open] = ACTIONS(2282), - [sym__inline_note_start_token] = ACTIONS(2282), - [sym__strong_emphasis_open_star] = ACTIONS(2282), - [sym__strong_emphasis_open_underscore] = ACTIONS(2282), - [sym__emphasis_open_star] = ACTIONS(2282), - [sym__emphasis_open_underscore] = ACTIONS(2282), - [sym_inline_note_reference] = ACTIONS(2282), - [sym_html_element] = ACTIONS(2282), - [sym__pandoc_line_break] = ACTIONS(2282), + [sym__inlines] = STATE(3217), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1038), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(590), + [sym__inline_whitespace] = STATE(590), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2299), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2301), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(191)] = { - [sym_list_marker_dot] = STATE(13), - [sym__list_item_dot] = STATE(191), - [aux_sym__list_dot_repeat1] = STATE(191), - [anon_sym_COLON] = ACTIONS(2289), - [sym_entity_reference] = ACTIONS(2289), - [sym_numeric_character_reference] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_BANG_LBRACK] = ACTIONS(2289), - [anon_sym_DOLLAR] = ACTIONS(2291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [aux_sym_pandoc_str_token1] = ACTIONS(2291), - [anon_sym_PIPE] = ACTIONS(2289), - [aux_sym__prose_punctuation_token1] = ACTIONS(2291), - [sym__line_ending] = ACTIONS(2289), - [sym__soft_line_ending] = ACTIONS(2289), - [sym__block_close] = ACTIONS(2289), - [sym__block_quote_start] = ACTIONS(2289), - [sym_atx_h1_marker] = ACTIONS(2289), - [sym_atx_h2_marker] = ACTIONS(2289), - [sym_atx_h3_marker] = ACTIONS(2289), - [sym_atx_h4_marker] = ACTIONS(2289), - [sym_atx_h5_marker] = ACTIONS(2289), - [sym_atx_h6_marker] = ACTIONS(2289), - [sym__thematic_break] = ACTIONS(2289), - [sym__list_marker_minus] = ACTIONS(2289), - [sym__list_marker_plus] = ACTIONS(2289), - [sym__list_marker_star] = ACTIONS(2289), - [sym__list_marker_parenthesis] = ACTIONS(2289), - [sym__list_marker_dot] = ACTIONS(2293), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2289), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2289), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2289), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2289), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_example] = ACTIONS(2289), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2289), - [sym__fenced_code_block_start_backtick] = ACTIONS(2289), - [sym_minus_metadata] = ACTIONS(2289), - [sym__pipe_table_start] = ACTIONS(2289), - [sym__fenced_div_start] = ACTIONS(2289), - [sym_ref_id_specifier] = ACTIONS(2289), - [sym__code_span_start] = ACTIONS(2289), - [sym__html_comment] = ACTIONS(2289), - [sym__autolink] = ACTIONS(2289), - [sym__highlight_span_start] = ACTIONS(2289), - [sym__insert_span_start] = ACTIONS(2289), - [sym__delete_span_start] = ACTIONS(2289), - [sym__edit_comment_span_start] = ACTIONS(2289), - [sym__single_quote_span_open] = ACTIONS(2289), - [sym__double_quote_span_open] = ACTIONS(2289), - [sym__shortcode_open_escaped] = ACTIONS(2289), - [sym__shortcode_open] = ACTIONS(2289), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2289), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2289), - [sym__cite_author_in_text] = ACTIONS(2289), - [sym__cite_suppress_author] = ACTIONS(2289), - [sym__strikeout_open] = ACTIONS(2289), - [sym__subscript_open] = ACTIONS(2289), - [sym__superscript_open] = ACTIONS(2289), - [sym__inline_note_start_token] = ACTIONS(2289), - [sym__strong_emphasis_open_star] = ACTIONS(2289), - [sym__strong_emphasis_open_underscore] = ACTIONS(2289), - [sym__emphasis_open_star] = ACTIONS(2289), - [sym__emphasis_open_underscore] = ACTIONS(2289), - [sym_inline_note_reference] = ACTIONS(2289), - [sym_html_element] = ACTIONS(2289), - [sym__pandoc_line_break] = ACTIONS(2289), + [sym__inlines] = STATE(3234), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1994), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(593), + [sym__inline_whitespace] = STATE(593), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2303), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2307), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(192)] = { - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_parenthesis] = STATE(192), - [aux_sym__list_parenthesis_repeat1] = STATE(192), - [anon_sym_COLON] = ACTIONS(2296), - [sym_entity_reference] = ACTIONS(2296), - [sym_numeric_character_reference] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_BANG_LBRACK] = ACTIONS(2296), - [anon_sym_DOLLAR] = ACTIONS(2298), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [aux_sym_pandoc_str_token1] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2296), - [aux_sym__prose_punctuation_token1] = ACTIONS(2298), - [sym__line_ending] = ACTIONS(2296), - [sym__soft_line_ending] = ACTIONS(2296), - [sym__block_close] = ACTIONS(2296), - [sym__block_quote_start] = ACTIONS(2296), - [sym_atx_h1_marker] = ACTIONS(2296), - [sym_atx_h2_marker] = ACTIONS(2296), - [sym_atx_h3_marker] = ACTIONS(2296), - [sym_atx_h4_marker] = ACTIONS(2296), - [sym_atx_h5_marker] = ACTIONS(2296), - [sym_atx_h6_marker] = ACTIONS(2296), - [sym__thematic_break] = ACTIONS(2296), - [sym__list_marker_minus] = ACTIONS(2296), - [sym__list_marker_plus] = ACTIONS(2296), - [sym__list_marker_star] = ACTIONS(2296), - [sym__list_marker_parenthesis] = ACTIONS(2300), - [sym__list_marker_dot] = ACTIONS(2296), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2296), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2296), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2296), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2300), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2296), - [sym__list_marker_example] = ACTIONS(2296), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2296), - [sym__fenced_code_block_start_backtick] = ACTIONS(2296), - [sym_minus_metadata] = ACTIONS(2296), - [sym__pipe_table_start] = ACTIONS(2296), - [sym__fenced_div_start] = ACTIONS(2296), - [sym_ref_id_specifier] = ACTIONS(2296), - [sym__code_span_start] = ACTIONS(2296), - [sym__html_comment] = ACTIONS(2296), - [sym__autolink] = ACTIONS(2296), - [sym__highlight_span_start] = ACTIONS(2296), - [sym__insert_span_start] = ACTIONS(2296), - [sym__delete_span_start] = ACTIONS(2296), - [sym__edit_comment_span_start] = ACTIONS(2296), - [sym__single_quote_span_open] = ACTIONS(2296), - [sym__double_quote_span_open] = ACTIONS(2296), - [sym__shortcode_open_escaped] = ACTIONS(2296), - [sym__shortcode_open] = ACTIONS(2296), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2296), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2296), - [sym__cite_author_in_text] = ACTIONS(2296), - [sym__cite_suppress_author] = ACTIONS(2296), - [sym__strikeout_open] = ACTIONS(2296), - [sym__subscript_open] = ACTIONS(2296), - [sym__superscript_open] = ACTIONS(2296), - [sym__inline_note_start_token] = ACTIONS(2296), - [sym__strong_emphasis_open_star] = ACTIONS(2296), - [sym__strong_emphasis_open_underscore] = ACTIONS(2296), - [sym__emphasis_open_star] = ACTIONS(2296), - [sym__emphasis_open_underscore] = ACTIONS(2296), - [sym_inline_note_reference] = ACTIONS(2296), - [sym_html_element] = ACTIONS(2296), - [sym__pandoc_line_break] = ACTIONS(2296), + [sym__inlines] = STATE(3235), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1995), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(594), + [sym__inline_whitespace] = STATE(594), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2309), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2311), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(193)] = { - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_parenthesis] = STATE(195), - [aux_sym__list_parenthesis_repeat1] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(2128), - [anon_sym_COLON] = ACTIONS(2128), - [sym_entity_reference] = ACTIONS(2128), - [sym_numeric_character_reference] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_BANG_LBRACK] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2130), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2128), - [aux_sym_pandoc_str_token1] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(2128), - [aux_sym__prose_punctuation_token1] = ACTIONS(2130), - [sym__line_ending] = ACTIONS(2128), - [sym__soft_line_ending] = ACTIONS(2128), - [sym__block_quote_start] = ACTIONS(2128), - [sym_atx_h1_marker] = ACTIONS(2128), - [sym_atx_h2_marker] = ACTIONS(2128), - [sym_atx_h3_marker] = ACTIONS(2128), - [sym_atx_h4_marker] = ACTIONS(2128), - [sym_atx_h5_marker] = ACTIONS(2128), - [sym_atx_h6_marker] = ACTIONS(2128), - [sym__thematic_break] = ACTIONS(2128), - [sym__list_marker_minus] = ACTIONS(2128), - [sym__list_marker_plus] = ACTIONS(2128), - [sym__list_marker_star] = ACTIONS(2128), - [sym__list_marker_parenthesis] = ACTIONS(51), - [sym__list_marker_dot] = ACTIONS(2128), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_example] = ACTIONS(2128), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2128), - [sym__fenced_code_block_start_backtick] = ACTIONS(2128), - [sym_minus_metadata] = ACTIONS(2128), - [sym__pipe_table_start] = ACTIONS(2128), - [sym__fenced_div_start] = ACTIONS(2128), - [sym_ref_id_specifier] = ACTIONS(2128), - [sym__code_span_start] = ACTIONS(2128), - [sym__html_comment] = ACTIONS(2128), - [sym__autolink] = ACTIONS(2128), - [sym__highlight_span_start] = ACTIONS(2128), - [sym__insert_span_start] = ACTIONS(2128), - [sym__delete_span_start] = ACTIONS(2128), - [sym__edit_comment_span_start] = ACTIONS(2128), - [sym__single_quote_span_open] = ACTIONS(2128), - [sym__double_quote_span_open] = ACTIONS(2128), - [sym__shortcode_open_escaped] = ACTIONS(2128), - [sym__shortcode_open] = ACTIONS(2128), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2128), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2128), - [sym__cite_author_in_text] = ACTIONS(2128), - [sym__cite_suppress_author] = ACTIONS(2128), - [sym__strikeout_open] = ACTIONS(2128), - [sym__subscript_open] = ACTIONS(2128), - [sym__superscript_open] = ACTIONS(2128), - [sym__inline_note_start_token] = ACTIONS(2128), - [sym__strong_emphasis_open_star] = ACTIONS(2128), - [sym__strong_emphasis_open_underscore] = ACTIONS(2128), - [sym__emphasis_open_star] = ACTIONS(2128), - [sym__emphasis_open_underscore] = ACTIONS(2128), - [sym_inline_note_reference] = ACTIONS(2128), - [sym_html_element] = ACTIONS(2128), - [sym__pandoc_line_break] = ACTIONS(2128), + [sym__inlines] = STATE(3252), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(939), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(595), + [sym__inline_whitespace] = STATE(595), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2313), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2317), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(194)] = { - [sym_pipe_table_cell] = STATE(2567), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(2322), - [sym__line_ending] = ACTIONS(2330), - [sym__eof] = ACTIONS(2330), - [sym__pipe_table_line_ending] = ACTIONS(2330), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2326), - [sym__pandoc_line_break] = ACTIONS(1968), + [sym__inlines] = STATE(3253), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(922), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(617), + [sym__inline_whitespace] = STATE(617), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2319), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2321), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(195)] = { - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_parenthesis] = STATE(195), - [aux_sym__list_parenthesis_repeat1] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(2296), - [anon_sym_COLON] = ACTIONS(2296), - [sym_entity_reference] = ACTIONS(2296), - [sym_numeric_character_reference] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_BANG_LBRACK] = ACTIONS(2296), - [anon_sym_DOLLAR] = ACTIONS(2298), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [aux_sym_pandoc_str_token1] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2296), - [aux_sym__prose_punctuation_token1] = ACTIONS(2298), - [sym__line_ending] = ACTIONS(2296), - [sym__soft_line_ending] = ACTIONS(2296), - [sym__block_quote_start] = ACTIONS(2296), - [sym_atx_h1_marker] = ACTIONS(2296), - [sym_atx_h2_marker] = ACTIONS(2296), - [sym_atx_h3_marker] = ACTIONS(2296), - [sym_atx_h4_marker] = ACTIONS(2296), - [sym_atx_h5_marker] = ACTIONS(2296), - [sym_atx_h6_marker] = ACTIONS(2296), - [sym__thematic_break] = ACTIONS(2296), - [sym__list_marker_minus] = ACTIONS(2296), - [sym__list_marker_plus] = ACTIONS(2296), - [sym__list_marker_star] = ACTIONS(2296), - [sym__list_marker_parenthesis] = ACTIONS(2300), - [sym__list_marker_dot] = ACTIONS(2296), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2296), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2296), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2296), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2300), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2296), - [sym__list_marker_example] = ACTIONS(2296), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2296), - [sym__fenced_code_block_start_backtick] = ACTIONS(2296), - [sym_minus_metadata] = ACTIONS(2296), - [sym__pipe_table_start] = ACTIONS(2296), - [sym__fenced_div_start] = ACTIONS(2296), - [sym_ref_id_specifier] = ACTIONS(2296), - [sym__code_span_start] = ACTIONS(2296), - [sym__html_comment] = ACTIONS(2296), - [sym__autolink] = ACTIONS(2296), - [sym__highlight_span_start] = ACTIONS(2296), - [sym__insert_span_start] = ACTIONS(2296), - [sym__delete_span_start] = ACTIONS(2296), - [sym__edit_comment_span_start] = ACTIONS(2296), - [sym__single_quote_span_open] = ACTIONS(2296), - [sym__double_quote_span_open] = ACTIONS(2296), - [sym__shortcode_open_escaped] = ACTIONS(2296), - [sym__shortcode_open] = ACTIONS(2296), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2296), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2296), - [sym__cite_author_in_text] = ACTIONS(2296), - [sym__cite_suppress_author] = ACTIONS(2296), - [sym__strikeout_open] = ACTIONS(2296), - [sym__subscript_open] = ACTIONS(2296), - [sym__superscript_open] = ACTIONS(2296), - [sym__inline_note_start_token] = ACTIONS(2296), - [sym__strong_emphasis_open_star] = ACTIONS(2296), - [sym__strong_emphasis_open_underscore] = ACTIONS(2296), - [sym__emphasis_open_star] = ACTIONS(2296), - [sym__emphasis_open_underscore] = ACTIONS(2296), - [sym_inline_note_reference] = ACTIONS(2296), - [sym_html_element] = ACTIONS(2296), - [sym__pandoc_line_break] = ACTIONS(2296), + [sym__inlines] = STATE(3254), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1252), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(596), + [sym__inline_whitespace] = STATE(596), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2323), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2325), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(196)] = { - [sym_pipe_table_cell] = STATE(2588), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(2322), - [sym__line_ending] = ACTIONS(2324), - [sym__eof] = ACTIONS(2324), - [sym__pipe_table_line_ending] = ACTIONS(2324), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2326), - [sym__pandoc_line_break] = ACTIONS(1968), + [anon_sym_COLON] = ACTIONS(2327), + [sym_entity_reference] = ACTIONS(2327), + [sym_numeric_character_reference] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_BANG_LBRACK] = ACTIONS(2327), + [anon_sym_DOLLAR] = ACTIONS(2329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [aux_sym_pandoc_str_token1] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2327), + [sym__whitespace] = ACTIONS(2327), + [sym__line_ending] = ACTIONS(2327), + [sym__soft_line_ending] = ACTIONS(2327), + [sym__block_close] = ACTIONS(2327), + [sym_block_continuation] = ACTIONS(2331), + [sym__block_quote_start] = ACTIONS(2327), + [sym_atx_h1_marker] = ACTIONS(2327), + [sym_atx_h2_marker] = ACTIONS(2327), + [sym_atx_h3_marker] = ACTIONS(2327), + [sym_atx_h4_marker] = ACTIONS(2327), + [sym_atx_h5_marker] = ACTIONS(2327), + [sym_atx_h6_marker] = ACTIONS(2327), + [sym__thematic_break] = ACTIONS(2327), + [sym__list_marker_minus] = ACTIONS(2327), + [sym__list_marker_plus] = ACTIONS(2327), + [sym__list_marker_star] = ACTIONS(2327), + [sym__list_marker_parenthesis] = ACTIONS(2327), + [sym__list_marker_dot] = ACTIONS(2327), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_example] = ACTIONS(2327), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2327), + [sym__fenced_code_block_start_backtick] = ACTIONS(2327), + [sym_minus_metadata] = ACTIONS(2327), + [sym__pipe_table_start] = ACTIONS(2327), + [sym__fenced_div_start] = ACTIONS(2327), + [sym__fenced_div_end] = ACTIONS(2327), + [sym_ref_id_specifier] = ACTIONS(2327), + [sym__code_span_start] = ACTIONS(2327), + [sym__html_comment] = ACTIONS(2327), + [sym__autolink] = ACTIONS(2327), + [sym__highlight_span_start] = ACTIONS(2327), + [sym__insert_span_start] = ACTIONS(2327), + [sym__delete_span_start] = ACTIONS(2327), + [sym__edit_comment_span_start] = ACTIONS(2327), + [sym__single_quote_span_open] = ACTIONS(2327), + [sym__double_quote_span_open] = ACTIONS(2327), + [sym__shortcode_open_escaped] = ACTIONS(2327), + [sym__shortcode_open] = ACTIONS(2327), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2327), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2327), + [sym__cite_author_in_text] = ACTIONS(2327), + [sym__cite_suppress_author] = ACTIONS(2327), + [sym__strikeout_open] = ACTIONS(2327), + [sym__subscript_open] = ACTIONS(2327), + [sym__superscript_open] = ACTIONS(2327), + [sym__inline_note_start_token] = ACTIONS(2327), + [sym__strong_emphasis_open_star] = ACTIONS(2327), + [sym__strong_emphasis_open_underscore] = ACTIONS(2327), + [sym__emphasis_open_star] = ACTIONS(2327), + [sym__emphasis_open_underscore] = ACTIONS(2327), + [sym_inline_note_reference] = ACTIONS(2327), + [sym_html_element] = ACTIONS(2327), + [sym__pandoc_line_break] = ACTIONS(2327), }, [STATE(197)] = { - [sym_pipe_table_cell] = STATE(2589), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym_pipe_table_row_repeat1] = STATE(187), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(2431), - [sym__line_ending] = ACTIONS(2433), - [sym__eof] = ACTIONS(2433), - [sym__pipe_table_line_ending] = ACTIONS(2433), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pandoc_line_break] = ACTIONS(1968), + [anon_sym_COLON] = ACTIONS(2333), + [sym_entity_reference] = ACTIONS(2333), + [sym_numeric_character_reference] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_BANG_LBRACK] = ACTIONS(2333), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [aux_sym_pandoc_str_token1] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2333), + [sym__whitespace] = ACTIONS(2333), + [sym__line_ending] = ACTIONS(2333), + [sym__soft_line_ending] = ACTIONS(2333), + [sym__block_close] = ACTIONS(2333), + [sym_block_continuation] = ACTIONS(2337), + [sym__block_quote_start] = ACTIONS(2333), + [sym_atx_h1_marker] = ACTIONS(2333), + [sym_atx_h2_marker] = ACTIONS(2333), + [sym_atx_h3_marker] = ACTIONS(2333), + [sym_atx_h4_marker] = ACTIONS(2333), + [sym_atx_h5_marker] = ACTIONS(2333), + [sym_atx_h6_marker] = ACTIONS(2333), + [sym__thematic_break] = ACTIONS(2333), + [sym__list_marker_minus] = ACTIONS(2333), + [sym__list_marker_plus] = ACTIONS(2333), + [sym__list_marker_star] = ACTIONS(2333), + [sym__list_marker_parenthesis] = ACTIONS(2333), + [sym__list_marker_dot] = ACTIONS(2333), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_example] = ACTIONS(2333), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2333), + [sym__fenced_code_block_start_backtick] = ACTIONS(2333), + [sym_minus_metadata] = ACTIONS(2333), + [sym__pipe_table_start] = ACTIONS(2333), + [sym__fenced_div_start] = ACTIONS(2333), + [sym__fenced_div_end] = ACTIONS(2333), + [sym_ref_id_specifier] = ACTIONS(2333), + [sym__code_span_start] = ACTIONS(2333), + [sym__html_comment] = ACTIONS(2333), + [sym__autolink] = ACTIONS(2333), + [sym__highlight_span_start] = ACTIONS(2333), + [sym__insert_span_start] = ACTIONS(2333), + [sym__delete_span_start] = ACTIONS(2333), + [sym__edit_comment_span_start] = ACTIONS(2333), + [sym__single_quote_span_open] = ACTIONS(2333), + [sym__double_quote_span_open] = ACTIONS(2333), + [sym__shortcode_open_escaped] = ACTIONS(2333), + [sym__shortcode_open] = ACTIONS(2333), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2333), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2333), + [sym__cite_author_in_text] = ACTIONS(2333), + [sym__cite_suppress_author] = ACTIONS(2333), + [sym__strikeout_open] = ACTIONS(2333), + [sym__subscript_open] = ACTIONS(2333), + [sym__superscript_open] = ACTIONS(2333), + [sym__inline_note_start_token] = ACTIONS(2333), + [sym__strong_emphasis_open_star] = ACTIONS(2333), + [sym__strong_emphasis_open_underscore] = ACTIONS(2333), + [sym__emphasis_open_star] = ACTIONS(2333), + [sym__emphasis_open_underscore] = ACTIONS(2333), + [sym_inline_note_reference] = ACTIONS(2333), + [sym_html_element] = ACTIONS(2333), + [sym__pandoc_line_break] = ACTIONS(2333), }, [STATE(198)] = { - [sym_pipe_table_cell] = STATE(2604), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(2322), - [sym__line_ending] = ACTIONS(2435), - [sym__eof] = ACTIONS(2435), - [sym__pipe_table_line_ending] = ACTIONS(2435), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2326), - [sym__pandoc_line_break] = ACTIONS(1968), + [sym__inlines] = STATE(3120), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1088), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(587), + [sym__inline_whitespace] = STATE(587), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2339), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2343), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(199)] = { - [sym_list_marker_plus] = STATE(9), - [sym__list_item_plus] = STATE(188), - [aux_sym__list_plus_repeat1] = STATE(188), - [anon_sym_COLON] = ACTIONS(2102), - [sym_entity_reference] = ACTIONS(2102), - [sym_numeric_character_reference] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_BANG_LBRACK] = ACTIONS(2102), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2102), - [aux_sym_pandoc_str_token1] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2102), - [aux_sym__prose_punctuation_token1] = ACTIONS(2104), - [sym__line_ending] = ACTIONS(2102), - [sym__soft_line_ending] = ACTIONS(2102), - [sym__block_close] = ACTIONS(2102), - [sym__block_quote_start] = ACTIONS(2102), - [sym_atx_h1_marker] = ACTIONS(2102), - [sym_atx_h2_marker] = ACTIONS(2102), - [sym_atx_h3_marker] = ACTIONS(2102), - [sym_atx_h4_marker] = ACTIONS(2102), - [sym_atx_h5_marker] = ACTIONS(2102), - [sym_atx_h6_marker] = ACTIONS(2102), - [sym__thematic_break] = ACTIONS(2102), - [sym__list_marker_minus] = ACTIONS(2102), - [sym__list_marker_plus] = ACTIONS(47), - [sym__list_marker_star] = ACTIONS(2102), - [sym__list_marker_parenthesis] = ACTIONS(2102), - [sym__list_marker_dot] = ACTIONS(2102), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2102), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2102), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2102), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2102), - [sym__list_marker_example] = ACTIONS(2102), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2102), - [sym__fenced_code_block_start_backtick] = ACTIONS(2102), - [sym_minus_metadata] = ACTIONS(2102), - [sym__pipe_table_start] = ACTIONS(2102), - [sym__fenced_div_start] = ACTIONS(2102), - [sym_ref_id_specifier] = ACTIONS(2102), - [sym__code_span_start] = ACTIONS(2102), - [sym__html_comment] = ACTIONS(2102), - [sym__autolink] = ACTIONS(2102), - [sym__highlight_span_start] = ACTIONS(2102), - [sym__insert_span_start] = ACTIONS(2102), - [sym__delete_span_start] = ACTIONS(2102), - [sym__edit_comment_span_start] = ACTIONS(2102), - [sym__single_quote_span_open] = ACTIONS(2102), - [sym__double_quote_span_open] = ACTIONS(2102), - [sym__shortcode_open_escaped] = ACTIONS(2102), - [sym__shortcode_open] = ACTIONS(2102), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2102), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2102), - [sym__cite_author_in_text] = ACTIONS(2102), - [sym__cite_suppress_author] = ACTIONS(2102), - [sym__strikeout_open] = ACTIONS(2102), - [sym__subscript_open] = ACTIONS(2102), - [sym__superscript_open] = ACTIONS(2102), - [sym__inline_note_start_token] = ACTIONS(2102), - [sym__strong_emphasis_open_star] = ACTIONS(2102), - [sym__strong_emphasis_open_underscore] = ACTIONS(2102), - [sym__emphasis_open_star] = ACTIONS(2102), - [sym__emphasis_open_underscore] = ACTIONS(2102), - [sym_inline_note_reference] = ACTIONS(2102), - [sym_html_element] = ACTIONS(2102), - [sym__pandoc_line_break] = ACTIONS(2102), + [sym__inlines] = STATE(3125), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1089), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(588), + [sym__inline_whitespace] = STATE(588), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2345), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2347), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(200)] = { - [sym_list_marker_example] = STATE(14), - [sym__list_item_example] = STATE(200), - [aux_sym__list_example_repeat1] = STATE(200), - [anon_sym_COLON] = ACTIONS(2307), - [sym_entity_reference] = ACTIONS(2307), - [sym_numeric_character_reference] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_BANG_LBRACK] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [aux_sym_pandoc_str_token1] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2307), - [aux_sym__prose_punctuation_token1] = ACTIONS(2309), - [sym__line_ending] = ACTIONS(2307), - [sym__soft_line_ending] = ACTIONS(2307), - [sym__block_close] = ACTIONS(2307), - [sym__block_quote_start] = ACTIONS(2307), - [sym_atx_h1_marker] = ACTIONS(2307), - [sym_atx_h2_marker] = ACTIONS(2307), - [sym_atx_h3_marker] = ACTIONS(2307), - [sym_atx_h4_marker] = ACTIONS(2307), - [sym_atx_h5_marker] = ACTIONS(2307), - [sym_atx_h6_marker] = ACTIONS(2307), - [sym__thematic_break] = ACTIONS(2307), - [sym__list_marker_minus] = ACTIONS(2307), - [sym__list_marker_plus] = ACTIONS(2307), - [sym__list_marker_star] = ACTIONS(2307), - [sym__list_marker_parenthesis] = ACTIONS(2307), - [sym__list_marker_dot] = ACTIONS(2307), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2307), - [sym__list_marker_example] = ACTIONS(2311), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2311), - [sym__fenced_code_block_start_backtick] = ACTIONS(2307), - [sym_minus_metadata] = ACTIONS(2307), - [sym__pipe_table_start] = ACTIONS(2307), - [sym__fenced_div_start] = ACTIONS(2307), - [sym_ref_id_specifier] = ACTIONS(2307), - [sym__code_span_start] = ACTIONS(2307), - [sym__html_comment] = ACTIONS(2307), - [sym__autolink] = ACTIONS(2307), - [sym__highlight_span_start] = ACTIONS(2307), - [sym__insert_span_start] = ACTIONS(2307), - [sym__delete_span_start] = ACTIONS(2307), - [sym__edit_comment_span_start] = ACTIONS(2307), - [sym__single_quote_span_open] = ACTIONS(2307), - [sym__double_quote_span_open] = ACTIONS(2307), - [sym__shortcode_open_escaped] = ACTIONS(2307), - [sym__shortcode_open] = ACTIONS(2307), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2307), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2307), - [sym__cite_author_in_text] = ACTIONS(2307), - [sym__cite_suppress_author] = ACTIONS(2307), - [sym__strikeout_open] = ACTIONS(2307), - [sym__subscript_open] = ACTIONS(2307), - [sym__superscript_open] = ACTIONS(2307), - [sym__inline_note_start_token] = ACTIONS(2307), - [sym__strong_emphasis_open_star] = ACTIONS(2307), - [sym__strong_emphasis_open_underscore] = ACTIONS(2307), - [sym__emphasis_open_star] = ACTIONS(2307), - [sym__emphasis_open_underscore] = ACTIONS(2307), - [sym_inline_note_reference] = ACTIONS(2307), - [sym_html_element] = ACTIONS(2307), - [sym__pandoc_line_break] = ACTIONS(2307), + [sym__inlines] = STATE(3104), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(952), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(600), + [sym__inline_whitespace] = STATE(600), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2349), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2149), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2351), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(201)] = { - [sym_list_marker_star] = STATE(5), - [sym__list_item_star] = STATE(201), - [aux_sym__list_star_repeat1] = STATE(201), - [ts_builtin_sym_end] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2282), - [sym_entity_reference] = ACTIONS(2282), - [sym_numeric_character_reference] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_BANG_LBRACK] = ACTIONS(2282), - [anon_sym_DOLLAR] = ACTIONS(2284), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), - [aux_sym_pandoc_str_token1] = ACTIONS(2284), - [anon_sym_PIPE] = ACTIONS(2282), - [aux_sym__prose_punctuation_token1] = ACTIONS(2284), - [sym__line_ending] = ACTIONS(2282), - [sym__soft_line_ending] = ACTIONS(2282), - [sym__block_quote_start] = ACTIONS(2282), - [sym_atx_h1_marker] = ACTIONS(2282), - [sym_atx_h2_marker] = ACTIONS(2282), - [sym_atx_h3_marker] = ACTIONS(2282), - [sym_atx_h4_marker] = ACTIONS(2282), - [sym_atx_h5_marker] = ACTIONS(2282), - [sym_atx_h6_marker] = ACTIONS(2282), - [sym__thematic_break] = ACTIONS(2282), - [sym__list_marker_minus] = ACTIONS(2282), - [sym__list_marker_plus] = ACTIONS(2282), - [sym__list_marker_star] = ACTIONS(2286), - [sym__list_marker_parenthesis] = ACTIONS(2282), - [sym__list_marker_dot] = ACTIONS(2282), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2282), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2282), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2286), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2282), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2282), - [sym__list_marker_example] = ACTIONS(2282), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2282), - [sym__fenced_code_block_start_backtick] = ACTIONS(2282), - [sym_minus_metadata] = ACTIONS(2282), - [sym__pipe_table_start] = ACTIONS(2282), - [sym__fenced_div_start] = ACTIONS(2282), - [sym_ref_id_specifier] = ACTIONS(2282), - [sym__code_span_start] = ACTIONS(2282), - [sym__html_comment] = ACTIONS(2282), - [sym__autolink] = ACTIONS(2282), - [sym__highlight_span_start] = ACTIONS(2282), - [sym__insert_span_start] = ACTIONS(2282), - [sym__delete_span_start] = ACTIONS(2282), - [sym__edit_comment_span_start] = ACTIONS(2282), - [sym__single_quote_span_open] = ACTIONS(2282), - [sym__double_quote_span_open] = ACTIONS(2282), - [sym__shortcode_open_escaped] = ACTIONS(2282), - [sym__shortcode_open] = ACTIONS(2282), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2282), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2282), - [sym__cite_author_in_text] = ACTIONS(2282), - [sym__cite_suppress_author] = ACTIONS(2282), - [sym__strikeout_open] = ACTIONS(2282), - [sym__subscript_open] = ACTIONS(2282), - [sym__superscript_open] = ACTIONS(2282), - [sym__inline_note_start_token] = ACTIONS(2282), - [sym__strong_emphasis_open_star] = ACTIONS(2282), - [sym__strong_emphasis_open_underscore] = ACTIONS(2282), - [sym__emphasis_open_star] = ACTIONS(2282), - [sym__emphasis_open_underscore] = ACTIONS(2282), - [sym_inline_note_reference] = ACTIONS(2282), - [sym_html_element] = ACTIONS(2282), - [sym__pandoc_line_break] = ACTIONS(2282), + [anon_sym_COLON] = ACTIONS(2353), + [sym_entity_reference] = ACTIONS(2353), + [sym_numeric_character_reference] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_BANG_LBRACK] = ACTIONS(2353), + [anon_sym_DOLLAR] = ACTIONS(2355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2353), + [aux_sym_pandoc_str_token1] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2353), + [sym__whitespace] = ACTIONS(2353), + [sym__line_ending] = ACTIONS(2353), + [sym__soft_line_ending] = ACTIONS(2353), + [sym__block_close] = ACTIONS(2353), + [sym_block_continuation] = ACTIONS(2357), + [sym__block_quote_start] = ACTIONS(2353), + [sym_atx_h1_marker] = ACTIONS(2353), + [sym_atx_h2_marker] = ACTIONS(2353), + [sym_atx_h3_marker] = ACTIONS(2353), + [sym_atx_h4_marker] = ACTIONS(2353), + [sym_atx_h5_marker] = ACTIONS(2353), + [sym_atx_h6_marker] = ACTIONS(2353), + [sym__thematic_break] = ACTIONS(2353), + [sym__list_marker_minus] = ACTIONS(2353), + [sym__list_marker_plus] = ACTIONS(2353), + [sym__list_marker_star] = ACTIONS(2353), + [sym__list_marker_parenthesis] = ACTIONS(2353), + [sym__list_marker_dot] = ACTIONS(2353), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_example] = ACTIONS(2353), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2353), + [sym__fenced_code_block_start_backtick] = ACTIONS(2353), + [sym_minus_metadata] = ACTIONS(2353), + [sym__pipe_table_start] = ACTIONS(2353), + [sym__fenced_div_start] = ACTIONS(2353), + [sym__fenced_div_end] = ACTIONS(2353), + [sym_ref_id_specifier] = ACTIONS(2353), + [sym__code_span_start] = ACTIONS(2353), + [sym__html_comment] = ACTIONS(2353), + [sym__autolink] = ACTIONS(2353), + [sym__highlight_span_start] = ACTIONS(2353), + [sym__insert_span_start] = ACTIONS(2353), + [sym__delete_span_start] = ACTIONS(2353), + [sym__edit_comment_span_start] = ACTIONS(2353), + [sym__single_quote_span_open] = ACTIONS(2353), + [sym__double_quote_span_open] = ACTIONS(2353), + [sym__shortcode_open_escaped] = ACTIONS(2353), + [sym__shortcode_open] = ACTIONS(2353), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2353), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2353), + [sym__cite_author_in_text] = ACTIONS(2353), + [sym__cite_suppress_author] = ACTIONS(2353), + [sym__strikeout_open] = ACTIONS(2353), + [sym__subscript_open] = ACTIONS(2353), + [sym__superscript_open] = ACTIONS(2353), + [sym__inline_note_start_token] = ACTIONS(2353), + [sym__strong_emphasis_open_star] = ACTIONS(2353), + [sym__strong_emphasis_open_underscore] = ACTIONS(2353), + [sym__emphasis_open_star] = ACTIONS(2353), + [sym__emphasis_open_underscore] = ACTIONS(2353), + [sym_inline_note_reference] = ACTIONS(2353), + [sym_html_element] = ACTIONS(2353), + [sym__pandoc_line_break] = ACTIONS(2353), }, [STATE(202)] = { - [sym_list_marker_dot] = STATE(6), - [sym__list_item_dot] = STATE(202), - [aux_sym__list_dot_repeat1] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(2289), - [anon_sym_COLON] = ACTIONS(2289), - [sym_entity_reference] = ACTIONS(2289), - [sym_numeric_character_reference] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_BANG_LBRACK] = ACTIONS(2289), - [anon_sym_DOLLAR] = ACTIONS(2291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [aux_sym_pandoc_str_token1] = ACTIONS(2291), - [anon_sym_PIPE] = ACTIONS(2289), - [aux_sym__prose_punctuation_token1] = ACTIONS(2291), - [sym__line_ending] = ACTIONS(2289), - [sym__soft_line_ending] = ACTIONS(2289), - [sym__block_quote_start] = ACTIONS(2289), - [sym_atx_h1_marker] = ACTIONS(2289), - [sym_atx_h2_marker] = ACTIONS(2289), - [sym_atx_h3_marker] = ACTIONS(2289), - [sym_atx_h4_marker] = ACTIONS(2289), - [sym_atx_h5_marker] = ACTIONS(2289), - [sym_atx_h6_marker] = ACTIONS(2289), - [sym__thematic_break] = ACTIONS(2289), - [sym__list_marker_minus] = ACTIONS(2289), - [sym__list_marker_plus] = ACTIONS(2289), - [sym__list_marker_star] = ACTIONS(2289), - [sym__list_marker_parenthesis] = ACTIONS(2289), - [sym__list_marker_dot] = ACTIONS(2293), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2289), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2289), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2289), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2289), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2293), - [sym__list_marker_example] = ACTIONS(2289), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2289), - [sym__fenced_code_block_start_backtick] = ACTIONS(2289), - [sym_minus_metadata] = ACTIONS(2289), - [sym__pipe_table_start] = ACTIONS(2289), - [sym__fenced_div_start] = ACTIONS(2289), - [sym_ref_id_specifier] = ACTIONS(2289), - [sym__code_span_start] = ACTIONS(2289), - [sym__html_comment] = ACTIONS(2289), - [sym__autolink] = ACTIONS(2289), - [sym__highlight_span_start] = ACTIONS(2289), - [sym__insert_span_start] = ACTIONS(2289), - [sym__delete_span_start] = ACTIONS(2289), - [sym__edit_comment_span_start] = ACTIONS(2289), - [sym__single_quote_span_open] = ACTIONS(2289), - [sym__double_quote_span_open] = ACTIONS(2289), - [sym__shortcode_open_escaped] = ACTIONS(2289), - [sym__shortcode_open] = ACTIONS(2289), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2289), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2289), - [sym__cite_author_in_text] = ACTIONS(2289), - [sym__cite_suppress_author] = ACTIONS(2289), - [sym__strikeout_open] = ACTIONS(2289), - [sym__subscript_open] = ACTIONS(2289), - [sym__superscript_open] = ACTIONS(2289), - [sym__inline_note_start_token] = ACTIONS(2289), - [sym__strong_emphasis_open_star] = ACTIONS(2289), - [sym__strong_emphasis_open_underscore] = ACTIONS(2289), - [sym__emphasis_open_star] = ACTIONS(2289), - [sym__emphasis_open_underscore] = ACTIONS(2289), - [sym_inline_note_reference] = ACTIONS(2289), - [sym_html_element] = ACTIONS(2289), - [sym__pandoc_line_break] = ACTIONS(2289), + [anon_sym_COLON] = ACTIONS(2359), + [sym_entity_reference] = ACTIONS(2359), + [sym_numeric_character_reference] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_BANG_LBRACK] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [aux_sym_pandoc_str_token1] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2359), + [sym__line_ending] = ACTIONS(2359), + [sym__soft_line_ending] = ACTIONS(2359), + [sym__block_close] = ACTIONS(2359), + [sym_block_continuation] = ACTIONS(2363), + [sym__block_quote_start] = ACTIONS(2359), + [sym_atx_h1_marker] = ACTIONS(2359), + [sym_atx_h2_marker] = ACTIONS(2359), + [sym_atx_h3_marker] = ACTIONS(2359), + [sym_atx_h4_marker] = ACTIONS(2359), + [sym_atx_h5_marker] = ACTIONS(2359), + [sym_atx_h6_marker] = ACTIONS(2359), + [sym__thematic_break] = ACTIONS(2359), + [sym__list_marker_minus] = ACTIONS(2359), + [sym__list_marker_plus] = ACTIONS(2359), + [sym__list_marker_star] = ACTIONS(2359), + [sym__list_marker_parenthesis] = ACTIONS(2359), + [sym__list_marker_dot] = ACTIONS(2359), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_example] = ACTIONS(2359), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2359), + [sym__fenced_code_block_start_backtick] = ACTIONS(2359), + [sym_minus_metadata] = ACTIONS(2359), + [sym__pipe_table_start] = ACTIONS(2359), + [sym__fenced_div_start] = ACTIONS(2359), + [sym__fenced_div_end] = ACTIONS(2359), + [sym_ref_id_specifier] = ACTIONS(2359), + [sym__code_span_start] = ACTIONS(2359), + [sym__html_comment] = ACTIONS(2359), + [sym__autolink] = ACTIONS(2359), + [sym__highlight_span_start] = ACTIONS(2359), + [sym__insert_span_start] = ACTIONS(2359), + [sym__delete_span_start] = ACTIONS(2359), + [sym__edit_comment_span_start] = ACTIONS(2359), + [sym__single_quote_span_open] = ACTIONS(2359), + [sym__double_quote_span_open] = ACTIONS(2359), + [sym__shortcode_open_escaped] = ACTIONS(2359), + [sym__shortcode_open] = ACTIONS(2359), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2359), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2359), + [sym__cite_author_in_text] = ACTIONS(2359), + [sym__cite_suppress_author] = ACTIONS(2359), + [sym__strikeout_open] = ACTIONS(2359), + [sym__subscript_open] = ACTIONS(2359), + [sym__superscript_open] = ACTIONS(2359), + [sym__inline_note_start_token] = ACTIONS(2359), + [sym__strong_emphasis_open_star] = ACTIONS(2359), + [sym__strong_emphasis_open_underscore] = ACTIONS(2359), + [sym__emphasis_open_star] = ACTIONS(2359), + [sym__emphasis_open_underscore] = ACTIONS(2359), + [sym_inline_note_reference] = ACTIONS(2359), + [sym_html_element] = ACTIONS(2359), + [sym__pandoc_line_break] = ACTIONS(2359), }, [STATE(203)] = { - [sym_list_marker_minus] = STATE(10), - [sym__list_item_minus] = STATE(189), - [aux_sym__list_minus_repeat1] = STATE(189), - [anon_sym_COLON] = ACTIONS(2106), - [sym_entity_reference] = ACTIONS(2106), - [sym_numeric_character_reference] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_BANG_LBRACK] = ACTIONS(2106), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2106), - [aux_sym_pandoc_str_token1] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2106), - [aux_sym__prose_punctuation_token1] = ACTIONS(2108), - [sym__line_ending] = ACTIONS(2106), - [sym__soft_line_ending] = ACTIONS(2106), - [sym__block_close] = ACTIONS(2106), - [sym__block_quote_start] = ACTIONS(2106), - [sym_atx_h1_marker] = ACTIONS(2106), - [sym_atx_h2_marker] = ACTIONS(2106), - [sym_atx_h3_marker] = ACTIONS(2106), - [sym_atx_h4_marker] = ACTIONS(2106), - [sym_atx_h5_marker] = ACTIONS(2106), - [sym_atx_h6_marker] = ACTIONS(2106), - [sym__thematic_break] = ACTIONS(2106), - [sym__list_marker_minus] = ACTIONS(45), - [sym__list_marker_plus] = ACTIONS(2106), - [sym__list_marker_star] = ACTIONS(2106), - [sym__list_marker_parenthesis] = ACTIONS(2106), - [sym__list_marker_dot] = ACTIONS(2106), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(45), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2106), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2106), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2106), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2106), - [sym__list_marker_example] = ACTIONS(2106), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2106), - [sym__fenced_code_block_start_backtick] = ACTIONS(2106), - [sym_minus_metadata] = ACTIONS(2106), - [sym__pipe_table_start] = ACTIONS(2106), - [sym__fenced_div_start] = ACTIONS(2106), - [sym_ref_id_specifier] = ACTIONS(2106), - [sym__code_span_start] = ACTIONS(2106), - [sym__html_comment] = ACTIONS(2106), - [sym__autolink] = ACTIONS(2106), - [sym__highlight_span_start] = ACTIONS(2106), - [sym__insert_span_start] = ACTIONS(2106), - [sym__delete_span_start] = ACTIONS(2106), - [sym__edit_comment_span_start] = ACTIONS(2106), - [sym__single_quote_span_open] = ACTIONS(2106), - [sym__double_quote_span_open] = ACTIONS(2106), - [sym__shortcode_open_escaped] = ACTIONS(2106), - [sym__shortcode_open] = ACTIONS(2106), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2106), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2106), - [sym__cite_author_in_text] = ACTIONS(2106), - [sym__cite_suppress_author] = ACTIONS(2106), - [sym__strikeout_open] = ACTIONS(2106), - [sym__subscript_open] = ACTIONS(2106), - [sym__superscript_open] = ACTIONS(2106), - [sym__inline_note_start_token] = ACTIONS(2106), - [sym__strong_emphasis_open_star] = ACTIONS(2106), - [sym__strong_emphasis_open_underscore] = ACTIONS(2106), - [sym__emphasis_open_star] = ACTIONS(2106), - [sym__emphasis_open_underscore] = ACTIONS(2106), - [sym_inline_note_reference] = ACTIONS(2106), - [sym_html_element] = ACTIONS(2106), - [sym__pandoc_line_break] = ACTIONS(2106), + [anon_sym_COLON] = ACTIONS(2365), + [sym_entity_reference] = ACTIONS(2365), + [sym_numeric_character_reference] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_BANG_LBRACK] = ACTIONS(2365), + [anon_sym_DOLLAR] = ACTIONS(2367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2365), + [aux_sym_pandoc_str_token1] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2365), + [sym__whitespace] = ACTIONS(2365), + [sym__line_ending] = ACTIONS(2365), + [sym__soft_line_ending] = ACTIONS(2365), + [sym__block_close] = ACTIONS(2365), + [sym_block_continuation] = ACTIONS(2369), + [sym__block_quote_start] = ACTIONS(2365), + [sym_atx_h1_marker] = ACTIONS(2365), + [sym_atx_h2_marker] = ACTIONS(2365), + [sym_atx_h3_marker] = ACTIONS(2365), + [sym_atx_h4_marker] = ACTIONS(2365), + [sym_atx_h5_marker] = ACTIONS(2365), + [sym_atx_h6_marker] = ACTIONS(2365), + [sym__thematic_break] = ACTIONS(2365), + [sym__list_marker_minus] = ACTIONS(2365), + [sym__list_marker_plus] = ACTIONS(2365), + [sym__list_marker_star] = ACTIONS(2365), + [sym__list_marker_parenthesis] = ACTIONS(2365), + [sym__list_marker_dot] = ACTIONS(2365), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_example] = ACTIONS(2365), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2365), + [sym__fenced_code_block_start_backtick] = ACTIONS(2365), + [sym_minus_metadata] = ACTIONS(2365), + [sym__pipe_table_start] = ACTIONS(2365), + [sym__fenced_div_start] = ACTIONS(2365), + [sym__fenced_div_end] = ACTIONS(2365), + [sym_ref_id_specifier] = ACTIONS(2365), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2365), + [sym__autolink] = ACTIONS(2365), + [sym__highlight_span_start] = ACTIONS(2365), + [sym__insert_span_start] = ACTIONS(2365), + [sym__delete_span_start] = ACTIONS(2365), + [sym__edit_comment_span_start] = ACTIONS(2365), + [sym__single_quote_span_open] = ACTIONS(2365), + [sym__double_quote_span_open] = ACTIONS(2365), + [sym__shortcode_open_escaped] = ACTIONS(2365), + [sym__shortcode_open] = ACTIONS(2365), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2365), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2365), + [sym__cite_author_in_text] = ACTIONS(2365), + [sym__cite_suppress_author] = ACTIONS(2365), + [sym__strikeout_open] = ACTIONS(2365), + [sym__subscript_open] = ACTIONS(2365), + [sym__superscript_open] = ACTIONS(2365), + [sym__inline_note_start_token] = ACTIONS(2365), + [sym__strong_emphasis_open_star] = ACTIONS(2365), + [sym__strong_emphasis_open_underscore] = ACTIONS(2365), + [sym__emphasis_open_star] = ACTIONS(2365), + [sym__emphasis_open_underscore] = ACTIONS(2365), + [sym_inline_note_reference] = ACTIONS(2365), + [sym_html_element] = ACTIONS(2365), + [sym__pandoc_line_break] = ACTIONS(2365), }, [STATE(204)] = { - [sym_list_marker_plus] = STATE(3), - [sym__list_item_plus] = STATE(182), - [aux_sym__list_plus_repeat1] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(2102), - [anon_sym_COLON] = ACTIONS(2102), - [sym_entity_reference] = ACTIONS(2102), - [sym_numeric_character_reference] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_BANG_LBRACK] = ACTIONS(2102), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2102), - [aux_sym_pandoc_str_token1] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2102), - [aux_sym__prose_punctuation_token1] = ACTIONS(2104), - [sym__line_ending] = ACTIONS(2102), - [sym__soft_line_ending] = ACTIONS(2102), - [sym__block_quote_start] = ACTIONS(2102), - [sym_atx_h1_marker] = ACTIONS(2102), - [sym_atx_h2_marker] = ACTIONS(2102), - [sym_atx_h3_marker] = ACTIONS(2102), - [sym_atx_h4_marker] = ACTIONS(2102), - [sym_atx_h5_marker] = ACTIONS(2102), - [sym_atx_h6_marker] = ACTIONS(2102), - [sym__thematic_break] = ACTIONS(2102), - [sym__list_marker_minus] = ACTIONS(2102), - [sym__list_marker_plus] = ACTIONS(47), - [sym__list_marker_star] = ACTIONS(2102), - [sym__list_marker_parenthesis] = ACTIONS(2102), - [sym__list_marker_dot] = ACTIONS(2102), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2102), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2102), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2102), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2102), - [sym__list_marker_example] = ACTIONS(2102), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2102), - [sym__fenced_code_block_start_backtick] = ACTIONS(2102), - [sym_minus_metadata] = ACTIONS(2102), - [sym__pipe_table_start] = ACTIONS(2102), - [sym__fenced_div_start] = ACTIONS(2102), - [sym_ref_id_specifier] = ACTIONS(2102), - [sym__code_span_start] = ACTIONS(2102), - [sym__html_comment] = ACTIONS(2102), - [sym__autolink] = ACTIONS(2102), - [sym__highlight_span_start] = ACTIONS(2102), - [sym__insert_span_start] = ACTIONS(2102), - [sym__delete_span_start] = ACTIONS(2102), - [sym__edit_comment_span_start] = ACTIONS(2102), - [sym__single_quote_span_open] = ACTIONS(2102), - [sym__double_quote_span_open] = ACTIONS(2102), - [sym__shortcode_open_escaped] = ACTIONS(2102), - [sym__shortcode_open] = ACTIONS(2102), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2102), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2102), - [sym__cite_author_in_text] = ACTIONS(2102), - [sym__cite_suppress_author] = ACTIONS(2102), - [sym__strikeout_open] = ACTIONS(2102), - [sym__subscript_open] = ACTIONS(2102), - [sym__superscript_open] = ACTIONS(2102), - [sym__inline_note_start_token] = ACTIONS(2102), - [sym__strong_emphasis_open_star] = ACTIONS(2102), - [sym__strong_emphasis_open_underscore] = ACTIONS(2102), - [sym__emphasis_open_star] = ACTIONS(2102), - [sym__emphasis_open_underscore] = ACTIONS(2102), - [sym_inline_note_reference] = ACTIONS(2102), - [sym_html_element] = ACTIONS(2102), - [sym__pandoc_line_break] = ACTIONS(2102), + [anon_sym_COLON] = ACTIONS(2371), + [sym_entity_reference] = ACTIONS(2371), + [sym_numeric_character_reference] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_BANG_LBRACK] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [aux_sym_pandoc_str_token1] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2371), + [sym__whitespace] = ACTIONS(2371), + [sym__line_ending] = ACTIONS(2371), + [sym__soft_line_ending] = ACTIONS(2371), + [sym__block_close] = ACTIONS(2371), + [sym_block_continuation] = ACTIONS(2375), + [sym__block_quote_start] = ACTIONS(2371), + [sym_atx_h1_marker] = ACTIONS(2371), + [sym_atx_h2_marker] = ACTIONS(2371), + [sym_atx_h3_marker] = ACTIONS(2371), + [sym_atx_h4_marker] = ACTIONS(2371), + [sym_atx_h5_marker] = ACTIONS(2371), + [sym_atx_h6_marker] = ACTIONS(2371), + [sym__thematic_break] = ACTIONS(2371), + [sym__list_marker_minus] = ACTIONS(2371), + [sym__list_marker_plus] = ACTIONS(2371), + [sym__list_marker_star] = ACTIONS(2371), + [sym__list_marker_parenthesis] = ACTIONS(2371), + [sym__list_marker_dot] = ACTIONS(2371), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_example] = ACTIONS(2371), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2371), + [sym__fenced_code_block_start_backtick] = ACTIONS(2371), + [sym_minus_metadata] = ACTIONS(2371), + [sym__pipe_table_start] = ACTIONS(2371), + [sym__fenced_div_start] = ACTIONS(2371), + [sym__fenced_div_end] = ACTIONS(2371), + [sym_ref_id_specifier] = ACTIONS(2371), + [sym__code_span_start] = ACTIONS(2371), + [sym__html_comment] = ACTIONS(2371), + [sym__autolink] = ACTIONS(2371), + [sym__highlight_span_start] = ACTIONS(2371), + [sym__insert_span_start] = ACTIONS(2371), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2371), + [sym__single_quote_span_open] = ACTIONS(2371), + [sym__double_quote_span_open] = ACTIONS(2371), + [sym__shortcode_open_escaped] = ACTIONS(2371), + [sym__shortcode_open] = ACTIONS(2371), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2371), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2371), + [sym__cite_author_in_text] = ACTIONS(2371), + [sym__cite_suppress_author] = ACTIONS(2371), + [sym__strikeout_open] = ACTIONS(2371), + [sym__subscript_open] = ACTIONS(2371), + [sym__superscript_open] = ACTIONS(2371), + [sym__inline_note_start_token] = ACTIONS(2371), + [sym__strong_emphasis_open_star] = ACTIONS(2371), + [sym__strong_emphasis_open_underscore] = ACTIONS(2371), + [sym__emphasis_open_star] = ACTIONS(2371), + [sym__emphasis_open_underscore] = ACTIONS(2371), + [sym_inline_note_reference] = ACTIONS(2371), + [sym_html_element] = ACTIONS(2371), + [sym__pandoc_line_break] = ACTIONS(2371), }, [STATE(205)] = { - [sym_pipe_table_cell] = STATE(2540), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym_pipe_table_row_repeat1] = STATE(187), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(2437), - [sym__line_ending] = ACTIONS(2439), - [sym__eof] = ACTIONS(2439), - [sym__pipe_table_line_ending] = ACTIONS(2439), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pandoc_line_break] = ACTIONS(1968), + [anon_sym_COLON] = ACTIONS(2377), + [sym_entity_reference] = ACTIONS(2377), + [sym_numeric_character_reference] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_BANG_LBRACK] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [aux_sym_pandoc_str_token1] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2377), + [sym__whitespace] = ACTIONS(2377), + [sym__line_ending] = ACTIONS(2377), + [sym__soft_line_ending] = ACTIONS(2377), + [sym__block_close] = ACTIONS(2377), + [sym_block_continuation] = ACTIONS(2381), + [sym__block_quote_start] = ACTIONS(2377), + [sym_atx_h1_marker] = ACTIONS(2377), + [sym_atx_h2_marker] = ACTIONS(2377), + [sym_atx_h3_marker] = ACTIONS(2377), + [sym_atx_h4_marker] = ACTIONS(2377), + [sym_atx_h5_marker] = ACTIONS(2377), + [sym_atx_h6_marker] = ACTIONS(2377), + [sym__thematic_break] = ACTIONS(2377), + [sym__list_marker_minus] = ACTIONS(2377), + [sym__list_marker_plus] = ACTIONS(2377), + [sym__list_marker_star] = ACTIONS(2377), + [sym__list_marker_parenthesis] = ACTIONS(2377), + [sym__list_marker_dot] = ACTIONS(2377), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_example] = ACTIONS(2377), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2377), + [sym__fenced_code_block_start_backtick] = ACTIONS(2377), + [sym_minus_metadata] = ACTIONS(2377), + [sym__pipe_table_start] = ACTIONS(2377), + [sym__fenced_div_start] = ACTIONS(2377), + [sym__fenced_div_end] = ACTIONS(2377), + [sym_ref_id_specifier] = ACTIONS(2377), + [sym__code_span_start] = ACTIONS(2377), + [sym__html_comment] = ACTIONS(2377), + [sym__autolink] = ACTIONS(2377), + [sym__highlight_span_start] = ACTIONS(2377), + [sym__insert_span_start] = ACTIONS(2377), + [sym__delete_span_start] = ACTIONS(2377), + [sym__edit_comment_span_start] = ACTIONS(2377), + [sym__single_quote_span_open] = ACTIONS(2377), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2377), + [sym__shortcode_open] = ACTIONS(2377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2377), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2377), + [sym__cite_author_in_text] = ACTIONS(2377), + [sym__cite_suppress_author] = ACTIONS(2377), + [sym__strikeout_open] = ACTIONS(2377), + [sym__subscript_open] = ACTIONS(2377), + [sym__superscript_open] = ACTIONS(2377), + [sym__inline_note_start_token] = ACTIONS(2377), + [sym__strong_emphasis_open_star] = ACTIONS(2377), + [sym__strong_emphasis_open_underscore] = ACTIONS(2377), + [sym__emphasis_open_star] = ACTIONS(2377), + [sym__emphasis_open_underscore] = ACTIONS(2377), + [sym_inline_note_reference] = ACTIONS(2377), + [sym_html_element] = ACTIONS(2377), + [sym__pandoc_line_break] = ACTIONS(2377), }, [STATE(206)] = { - [sym_list_marker_star] = STATE(5), - [sym__list_item_star] = STATE(201), - [aux_sym__list_star_repeat1] = STATE(201), - [ts_builtin_sym_end] = ACTIONS(2110), - [anon_sym_COLON] = ACTIONS(2110), - [sym_entity_reference] = ACTIONS(2110), - [sym_numeric_character_reference] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_BANG_LBRACK] = ACTIONS(2110), - [anon_sym_DOLLAR] = ACTIONS(2112), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [aux_sym_pandoc_str_token1] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2110), - [aux_sym__prose_punctuation_token1] = ACTIONS(2112), - [sym__line_ending] = ACTIONS(2110), - [sym__soft_line_ending] = ACTIONS(2110), - [sym__block_quote_start] = ACTIONS(2110), - [sym_atx_h1_marker] = ACTIONS(2110), - [sym_atx_h2_marker] = ACTIONS(2110), - [sym_atx_h3_marker] = ACTIONS(2110), - [sym_atx_h4_marker] = ACTIONS(2110), - [sym_atx_h5_marker] = ACTIONS(2110), - [sym_atx_h6_marker] = ACTIONS(2110), - [sym__thematic_break] = ACTIONS(2110), - [sym__list_marker_minus] = ACTIONS(2110), - [sym__list_marker_plus] = ACTIONS(2110), - [sym__list_marker_star] = ACTIONS(49), - [sym__list_marker_parenthesis] = ACTIONS(2110), - [sym__list_marker_dot] = ACTIONS(2110), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2110), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2110), - [sym__list_marker_star_dont_interrupt] = ACTIONS(49), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2110), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2110), - [sym__list_marker_example] = ACTIONS(2110), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2110), - [sym__fenced_code_block_start_backtick] = ACTIONS(2110), - [sym_minus_metadata] = ACTIONS(2110), - [sym__pipe_table_start] = ACTIONS(2110), - [sym__fenced_div_start] = ACTIONS(2110), - [sym_ref_id_specifier] = ACTIONS(2110), - [sym__code_span_start] = ACTIONS(2110), - [sym__html_comment] = ACTIONS(2110), - [sym__autolink] = ACTIONS(2110), - [sym__highlight_span_start] = ACTIONS(2110), - [sym__insert_span_start] = ACTIONS(2110), - [sym__delete_span_start] = ACTIONS(2110), - [sym__edit_comment_span_start] = ACTIONS(2110), - [sym__single_quote_span_open] = ACTIONS(2110), - [sym__double_quote_span_open] = ACTIONS(2110), - [sym__shortcode_open_escaped] = ACTIONS(2110), - [sym__shortcode_open] = ACTIONS(2110), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2110), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2110), - [sym__cite_author_in_text] = ACTIONS(2110), - [sym__cite_suppress_author] = ACTIONS(2110), - [sym__strikeout_open] = ACTIONS(2110), - [sym__subscript_open] = ACTIONS(2110), - [sym__superscript_open] = ACTIONS(2110), - [sym__inline_note_start_token] = ACTIONS(2110), - [sym__strong_emphasis_open_star] = ACTIONS(2110), - [sym__strong_emphasis_open_underscore] = ACTIONS(2110), - [sym__emphasis_open_star] = ACTIONS(2110), - [sym__emphasis_open_underscore] = ACTIONS(2110), - [sym_inline_note_reference] = ACTIONS(2110), - [sym_html_element] = ACTIONS(2110), - [sym__pandoc_line_break] = ACTIONS(2110), + [anon_sym_COLON] = ACTIONS(2383), + [sym_entity_reference] = ACTIONS(2383), + [sym_numeric_character_reference] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_BANG_LBRACK] = ACTIONS(2383), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [aux_sym_pandoc_str_token1] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2383), + [sym__whitespace] = ACTIONS(2383), + [sym__line_ending] = ACTIONS(2383), + [sym__soft_line_ending] = ACTIONS(2383), + [sym__block_close] = ACTIONS(2383), + [sym_block_continuation] = ACTIONS(2387), + [sym__block_quote_start] = ACTIONS(2383), + [sym_atx_h1_marker] = ACTIONS(2383), + [sym_atx_h2_marker] = ACTIONS(2383), + [sym_atx_h3_marker] = ACTIONS(2383), + [sym_atx_h4_marker] = ACTIONS(2383), + [sym_atx_h5_marker] = ACTIONS(2383), + [sym_atx_h6_marker] = ACTIONS(2383), + [sym__thematic_break] = ACTIONS(2383), + [sym__list_marker_minus] = ACTIONS(2383), + [sym__list_marker_plus] = ACTIONS(2383), + [sym__list_marker_star] = ACTIONS(2383), + [sym__list_marker_parenthesis] = ACTIONS(2383), + [sym__list_marker_dot] = ACTIONS(2383), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_example] = ACTIONS(2383), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2383), + [sym__fenced_code_block_start_backtick] = ACTIONS(2383), + [sym_minus_metadata] = ACTIONS(2383), + [sym__pipe_table_start] = ACTIONS(2383), + [sym__fenced_div_start] = ACTIONS(2383), + [sym__fenced_div_end] = ACTIONS(2383), + [sym_ref_id_specifier] = ACTIONS(2383), + [sym__code_span_start] = ACTIONS(2383), + [sym__html_comment] = ACTIONS(2383), + [sym__autolink] = ACTIONS(2383), + [sym__highlight_span_start] = ACTIONS(2383), + [sym__insert_span_start] = ACTIONS(2383), + [sym__delete_span_start] = ACTIONS(2383), + [sym__edit_comment_span_start] = ACTIONS(2383), + [sym__single_quote_span_open] = ACTIONS(2383), + [sym__double_quote_span_open] = ACTIONS(2383), + [sym__shortcode_open_escaped] = ACTIONS(2383), + [sym__shortcode_open] = ACTIONS(2383), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2383), + [sym__cite_author_in_text] = ACTIONS(2383), + [sym__cite_suppress_author] = ACTIONS(2383), + [sym__strikeout_open] = ACTIONS(2383), + [sym__subscript_open] = ACTIONS(2383), + [sym__superscript_open] = ACTIONS(2383), + [sym__inline_note_start_token] = ACTIONS(2383), + [sym__strong_emphasis_open_star] = ACTIONS(2383), + [sym__strong_emphasis_open_underscore] = ACTIONS(2383), + [sym__emphasis_open_star] = ACTIONS(2383), + [sym__emphasis_open_underscore] = ACTIONS(2383), + [sym_inline_note_reference] = ACTIONS(2383), + [sym_html_element] = ACTIONS(2383), + [sym__pandoc_line_break] = ACTIONS(2383), }, [STATE(207)] = { - [sym_list_marker_dot] = STATE(6), - [sym__list_item_dot] = STATE(202), - [aux_sym__list_dot_repeat1] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(2124), - [anon_sym_COLON] = ACTIONS(2124), - [sym_entity_reference] = ACTIONS(2124), - [sym_numeric_character_reference] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_BANG_LBRACK] = ACTIONS(2124), - [anon_sym_DOLLAR] = ACTIONS(2126), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2124), - [anon_sym_LBRACE] = ACTIONS(2124), - [aux_sym_pandoc_str_token1] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2124), - [aux_sym__prose_punctuation_token1] = ACTIONS(2126), - [sym__line_ending] = ACTIONS(2124), - [sym__soft_line_ending] = ACTIONS(2124), - [sym__block_quote_start] = ACTIONS(2124), - [sym_atx_h1_marker] = ACTIONS(2124), - [sym_atx_h2_marker] = ACTIONS(2124), - [sym_atx_h3_marker] = ACTIONS(2124), - [sym_atx_h4_marker] = ACTIONS(2124), - [sym_atx_h5_marker] = ACTIONS(2124), - [sym_atx_h6_marker] = ACTIONS(2124), - [sym__thematic_break] = ACTIONS(2124), - [sym__list_marker_minus] = ACTIONS(2124), - [sym__list_marker_plus] = ACTIONS(2124), - [sym__list_marker_star] = ACTIONS(2124), - [sym__list_marker_parenthesis] = ACTIONS(2124), - [sym__list_marker_dot] = ACTIONS(53), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), - [sym__list_marker_example] = ACTIONS(2124), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2124), - [sym__fenced_code_block_start_backtick] = ACTIONS(2124), - [sym_minus_metadata] = ACTIONS(2124), - [sym__pipe_table_start] = ACTIONS(2124), - [sym__fenced_div_start] = ACTIONS(2124), - [sym_ref_id_specifier] = ACTIONS(2124), - [sym__code_span_start] = ACTIONS(2124), - [sym__html_comment] = ACTIONS(2124), - [sym__autolink] = ACTIONS(2124), - [sym__highlight_span_start] = ACTIONS(2124), - [sym__insert_span_start] = ACTIONS(2124), - [sym__delete_span_start] = ACTIONS(2124), - [sym__edit_comment_span_start] = ACTIONS(2124), - [sym__single_quote_span_open] = ACTIONS(2124), - [sym__double_quote_span_open] = ACTIONS(2124), - [sym__shortcode_open_escaped] = ACTIONS(2124), - [sym__shortcode_open] = ACTIONS(2124), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2124), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2124), - [sym__cite_author_in_text] = ACTIONS(2124), - [sym__cite_suppress_author] = ACTIONS(2124), - [sym__strikeout_open] = ACTIONS(2124), - [sym__subscript_open] = ACTIONS(2124), - [sym__superscript_open] = ACTIONS(2124), - [sym__inline_note_start_token] = ACTIONS(2124), - [sym__strong_emphasis_open_star] = ACTIONS(2124), - [sym__strong_emphasis_open_underscore] = ACTIONS(2124), - [sym__emphasis_open_star] = ACTIONS(2124), - [sym__emphasis_open_underscore] = ACTIONS(2124), - [sym_inline_note_reference] = ACTIONS(2124), - [sym_html_element] = ACTIONS(2124), - [sym__pandoc_line_break] = ACTIONS(2124), + [anon_sym_COLON] = ACTIONS(2389), + [sym_entity_reference] = ACTIONS(2389), + [sym_numeric_character_reference] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_BANG_LBRACK] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [aux_sym_pandoc_str_token1] = ACTIONS(2391), + [anon_sym_PIPE] = ACTIONS(2389), + [sym__whitespace] = ACTIONS(2389), + [sym__line_ending] = ACTIONS(2389), + [sym__soft_line_ending] = ACTIONS(2389), + [sym__block_close] = ACTIONS(2389), + [sym_block_continuation] = ACTIONS(2393), + [sym__block_quote_start] = ACTIONS(2389), + [sym_atx_h1_marker] = ACTIONS(2389), + [sym_atx_h2_marker] = ACTIONS(2389), + [sym_atx_h3_marker] = ACTIONS(2389), + [sym_atx_h4_marker] = ACTIONS(2389), + [sym_atx_h5_marker] = ACTIONS(2389), + [sym_atx_h6_marker] = ACTIONS(2389), + [sym__thematic_break] = ACTIONS(2389), + [sym__list_marker_minus] = ACTIONS(2389), + [sym__list_marker_plus] = ACTIONS(2389), + [sym__list_marker_star] = ACTIONS(2389), + [sym__list_marker_parenthesis] = ACTIONS(2389), + [sym__list_marker_dot] = ACTIONS(2389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_example] = ACTIONS(2389), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2389), + [sym__fenced_code_block_start_backtick] = ACTIONS(2389), + [sym_minus_metadata] = ACTIONS(2389), + [sym__pipe_table_start] = ACTIONS(2389), + [sym__fenced_div_start] = ACTIONS(2389), + [sym__fenced_div_end] = ACTIONS(2389), + [sym_ref_id_specifier] = ACTIONS(2389), + [sym__code_span_start] = ACTIONS(2389), + [sym__html_comment] = ACTIONS(2389), + [sym__autolink] = ACTIONS(2389), + [sym__highlight_span_start] = ACTIONS(2389), + [sym__insert_span_start] = ACTIONS(2389), + [sym__delete_span_start] = ACTIONS(2389), + [sym__edit_comment_span_start] = ACTIONS(2389), + [sym__single_quote_span_open] = ACTIONS(2389), + [sym__double_quote_span_open] = ACTIONS(2389), + [sym__shortcode_open_escaped] = ACTIONS(2389), + [sym__shortcode_open] = ACTIONS(2389), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2389), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2389), + [sym__cite_author_in_text] = ACTIONS(2389), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2389), + [sym__subscript_open] = ACTIONS(2389), + [sym__superscript_open] = ACTIONS(2389), + [sym__inline_note_start_token] = ACTIONS(2389), + [sym__strong_emphasis_open_star] = ACTIONS(2389), + [sym__strong_emphasis_open_underscore] = ACTIONS(2389), + [sym__emphasis_open_star] = ACTIONS(2389), + [sym__emphasis_open_underscore] = ACTIONS(2389), + [sym_inline_note_reference] = ACTIONS(2389), + [sym_html_element] = ACTIONS(2389), + [sym__pandoc_line_break] = ACTIONS(2389), }, [STATE(208)] = { - [sym_list_marker_star] = STATE(11), - [sym__list_item_star] = STATE(190), - [aux_sym__list_star_repeat1] = STATE(190), - [anon_sym_COLON] = ACTIONS(2110), - [sym_entity_reference] = ACTIONS(2110), - [sym_numeric_character_reference] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_BANG_LBRACK] = ACTIONS(2110), - [anon_sym_DOLLAR] = ACTIONS(2112), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [aux_sym_pandoc_str_token1] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2110), - [aux_sym__prose_punctuation_token1] = ACTIONS(2112), - [sym__line_ending] = ACTIONS(2110), - [sym__soft_line_ending] = ACTIONS(2110), - [sym__block_close] = ACTIONS(2110), - [sym__block_quote_start] = ACTIONS(2110), - [sym_atx_h1_marker] = ACTIONS(2110), - [sym_atx_h2_marker] = ACTIONS(2110), - [sym_atx_h3_marker] = ACTIONS(2110), - [sym_atx_h4_marker] = ACTIONS(2110), - [sym_atx_h5_marker] = ACTIONS(2110), - [sym_atx_h6_marker] = ACTIONS(2110), - [sym__thematic_break] = ACTIONS(2110), - [sym__list_marker_minus] = ACTIONS(2110), - [sym__list_marker_plus] = ACTIONS(2110), - [sym__list_marker_star] = ACTIONS(49), - [sym__list_marker_parenthesis] = ACTIONS(2110), - [sym__list_marker_dot] = ACTIONS(2110), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2110), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2110), - [sym__list_marker_star_dont_interrupt] = ACTIONS(49), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2110), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2110), - [sym__list_marker_example] = ACTIONS(2110), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2110), - [sym__fenced_code_block_start_backtick] = ACTIONS(2110), - [sym_minus_metadata] = ACTIONS(2110), - [sym__pipe_table_start] = ACTIONS(2110), - [sym__fenced_div_start] = ACTIONS(2110), - [sym_ref_id_specifier] = ACTIONS(2110), - [sym__code_span_start] = ACTIONS(2110), - [sym__html_comment] = ACTIONS(2110), - [sym__autolink] = ACTIONS(2110), - [sym__highlight_span_start] = ACTIONS(2110), - [sym__insert_span_start] = ACTIONS(2110), - [sym__delete_span_start] = ACTIONS(2110), - [sym__edit_comment_span_start] = ACTIONS(2110), - [sym__single_quote_span_open] = ACTIONS(2110), - [sym__double_quote_span_open] = ACTIONS(2110), - [sym__shortcode_open_escaped] = ACTIONS(2110), - [sym__shortcode_open] = ACTIONS(2110), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2110), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2110), - [sym__cite_author_in_text] = ACTIONS(2110), - [sym__cite_suppress_author] = ACTIONS(2110), - [sym__strikeout_open] = ACTIONS(2110), - [sym__subscript_open] = ACTIONS(2110), - [sym__superscript_open] = ACTIONS(2110), - [sym__inline_note_start_token] = ACTIONS(2110), - [sym__strong_emphasis_open_star] = ACTIONS(2110), - [sym__strong_emphasis_open_underscore] = ACTIONS(2110), - [sym__emphasis_open_star] = ACTIONS(2110), - [sym__emphasis_open_underscore] = ACTIONS(2110), - [sym_inline_note_reference] = ACTIONS(2110), - [sym_html_element] = ACTIONS(2110), - [sym__pandoc_line_break] = ACTIONS(2110), + [anon_sym_COLON] = ACTIONS(2395), + [sym_entity_reference] = ACTIONS(2395), + [sym_numeric_character_reference] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_BANG_LBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [aux_sym_pandoc_str_token1] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2395), + [sym__whitespace] = ACTIONS(2395), + [sym__line_ending] = ACTIONS(2395), + [sym__soft_line_ending] = ACTIONS(2395), + [sym__block_close] = ACTIONS(2395), + [sym_block_continuation] = ACTIONS(2399), + [sym__block_quote_start] = ACTIONS(2395), + [sym_atx_h1_marker] = ACTIONS(2395), + [sym_atx_h2_marker] = ACTIONS(2395), + [sym_atx_h3_marker] = ACTIONS(2395), + [sym_atx_h4_marker] = ACTIONS(2395), + [sym_atx_h5_marker] = ACTIONS(2395), + [sym_atx_h6_marker] = ACTIONS(2395), + [sym__thematic_break] = ACTIONS(2395), + [sym__list_marker_minus] = ACTIONS(2395), + [sym__list_marker_plus] = ACTIONS(2395), + [sym__list_marker_star] = ACTIONS(2395), + [sym__list_marker_parenthesis] = ACTIONS(2395), + [sym__list_marker_dot] = ACTIONS(2395), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_example] = ACTIONS(2395), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2395), + [sym__fenced_code_block_start_backtick] = ACTIONS(2395), + [sym_minus_metadata] = ACTIONS(2395), + [sym__pipe_table_start] = ACTIONS(2395), + [sym__fenced_div_start] = ACTIONS(2395), + [sym__fenced_div_end] = ACTIONS(2395), + [sym_ref_id_specifier] = ACTIONS(2395), + [sym__code_span_start] = ACTIONS(2395), + [sym__html_comment] = ACTIONS(2395), + [sym__autolink] = ACTIONS(2395), + [sym__highlight_span_start] = ACTIONS(2395), + [sym__insert_span_start] = ACTIONS(2395), + [sym__delete_span_start] = ACTIONS(2395), + [sym__edit_comment_span_start] = ACTIONS(2395), + [sym__single_quote_span_open] = ACTIONS(2395), + [sym__double_quote_span_open] = ACTIONS(2395), + [sym__shortcode_open_escaped] = ACTIONS(2395), + [sym__shortcode_open] = ACTIONS(2395), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2395), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2395), + [sym__cite_author_in_text] = ACTIONS(2395), + [sym__cite_suppress_author] = ACTIONS(2395), + [sym__strikeout_open] = ACTIONS(2395), + [sym__subscript_open] = ACTIONS(2395), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2395), + [sym__strong_emphasis_open_star] = ACTIONS(2395), + [sym__strong_emphasis_open_underscore] = ACTIONS(2395), + [sym__emphasis_open_star] = ACTIONS(2395), + [sym__emphasis_open_underscore] = ACTIONS(2395), + [sym_inline_note_reference] = ACTIONS(2395), + [sym_html_element] = ACTIONS(2395), + [sym__pandoc_line_break] = ACTIONS(2395), }, [STATE(209)] = { - [sym_list_marker_dot] = STATE(13), - [sym__list_item_dot] = STATE(191), - [aux_sym__list_dot_repeat1] = STATE(191), - [anon_sym_COLON] = ACTIONS(2124), - [sym_entity_reference] = ACTIONS(2124), - [sym_numeric_character_reference] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_BANG_LBRACK] = ACTIONS(2124), - [anon_sym_DOLLAR] = ACTIONS(2126), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2124), - [anon_sym_LBRACE] = ACTIONS(2124), - [aux_sym_pandoc_str_token1] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(2124), - [aux_sym__prose_punctuation_token1] = ACTIONS(2126), - [sym__line_ending] = ACTIONS(2124), - [sym__soft_line_ending] = ACTIONS(2124), - [sym__block_close] = ACTIONS(2124), - [sym__block_quote_start] = ACTIONS(2124), - [sym_atx_h1_marker] = ACTIONS(2124), - [sym_atx_h2_marker] = ACTIONS(2124), - [sym_atx_h3_marker] = ACTIONS(2124), - [sym_atx_h4_marker] = ACTIONS(2124), - [sym_atx_h5_marker] = ACTIONS(2124), - [sym_atx_h6_marker] = ACTIONS(2124), - [sym__thematic_break] = ACTIONS(2124), - [sym__list_marker_minus] = ACTIONS(2124), - [sym__list_marker_plus] = ACTIONS(2124), - [sym__list_marker_star] = ACTIONS(2124), - [sym__list_marker_parenthesis] = ACTIONS(2124), - [sym__list_marker_dot] = ACTIONS(53), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2124), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(53), - [sym__list_marker_example] = ACTIONS(2124), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2124), - [sym__fenced_code_block_start_backtick] = ACTIONS(2124), - [sym_minus_metadata] = ACTIONS(2124), - [sym__pipe_table_start] = ACTIONS(2124), - [sym__fenced_div_start] = ACTIONS(2124), - [sym_ref_id_specifier] = ACTIONS(2124), - [sym__code_span_start] = ACTIONS(2124), - [sym__html_comment] = ACTIONS(2124), - [sym__autolink] = ACTIONS(2124), - [sym__highlight_span_start] = ACTIONS(2124), - [sym__insert_span_start] = ACTIONS(2124), - [sym__delete_span_start] = ACTIONS(2124), - [sym__edit_comment_span_start] = ACTIONS(2124), - [sym__single_quote_span_open] = ACTIONS(2124), - [sym__double_quote_span_open] = ACTIONS(2124), - [sym__shortcode_open_escaped] = ACTIONS(2124), - [sym__shortcode_open] = ACTIONS(2124), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2124), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2124), - [sym__cite_author_in_text] = ACTIONS(2124), - [sym__cite_suppress_author] = ACTIONS(2124), - [sym__strikeout_open] = ACTIONS(2124), - [sym__subscript_open] = ACTIONS(2124), - [sym__superscript_open] = ACTIONS(2124), - [sym__inline_note_start_token] = ACTIONS(2124), - [sym__strong_emphasis_open_star] = ACTIONS(2124), - [sym__strong_emphasis_open_underscore] = ACTIONS(2124), - [sym__emphasis_open_star] = ACTIONS(2124), - [sym__emphasis_open_underscore] = ACTIONS(2124), - [sym_inline_note_reference] = ACTIONS(2124), - [sym_html_element] = ACTIONS(2124), - [sym__pandoc_line_break] = ACTIONS(2124), + [anon_sym_COLON] = ACTIONS(2401), + [sym_entity_reference] = ACTIONS(2401), + [sym_numeric_character_reference] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_BANG_LBRACK] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [aux_sym_pandoc_str_token1] = ACTIONS(2403), + [anon_sym_PIPE] = ACTIONS(2401), + [sym__whitespace] = ACTIONS(2401), + [sym__line_ending] = ACTIONS(2401), + [sym__soft_line_ending] = ACTIONS(2401), + [sym__block_close] = ACTIONS(2401), + [sym_block_continuation] = ACTIONS(2405), + [sym__block_quote_start] = ACTIONS(2401), + [sym_atx_h1_marker] = ACTIONS(2401), + [sym_atx_h2_marker] = ACTIONS(2401), + [sym_atx_h3_marker] = ACTIONS(2401), + [sym_atx_h4_marker] = ACTIONS(2401), + [sym_atx_h5_marker] = ACTIONS(2401), + [sym_atx_h6_marker] = ACTIONS(2401), + [sym__thematic_break] = ACTIONS(2401), + [sym__list_marker_minus] = ACTIONS(2401), + [sym__list_marker_plus] = ACTIONS(2401), + [sym__list_marker_star] = ACTIONS(2401), + [sym__list_marker_parenthesis] = ACTIONS(2401), + [sym__list_marker_dot] = ACTIONS(2401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_example] = ACTIONS(2401), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2401), + [sym__fenced_code_block_start_backtick] = ACTIONS(2401), + [sym_minus_metadata] = ACTIONS(2401), + [sym__pipe_table_start] = ACTIONS(2401), + [sym__fenced_div_start] = ACTIONS(2401), + [sym__fenced_div_end] = ACTIONS(2401), + [sym_ref_id_specifier] = ACTIONS(2401), + [sym__code_span_start] = ACTIONS(2401), + [sym__html_comment] = ACTIONS(2401), + [sym__autolink] = ACTIONS(2401), + [sym__highlight_span_start] = ACTIONS(2401), + [sym__insert_span_start] = ACTIONS(2401), + [sym__delete_span_start] = ACTIONS(2401), + [sym__edit_comment_span_start] = ACTIONS(2401), + [sym__single_quote_span_open] = ACTIONS(2401), + [sym__double_quote_span_open] = ACTIONS(2401), + [sym__shortcode_open_escaped] = ACTIONS(2401), + [sym__shortcode_open] = ACTIONS(2401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2401), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2401), + [sym__cite_author_in_text] = ACTIONS(2401), + [sym__cite_suppress_author] = ACTIONS(2401), + [sym__strikeout_open] = ACTIONS(2401), + [sym__subscript_open] = ACTIONS(2401), + [sym__superscript_open] = ACTIONS(2401), + [sym__inline_note_start_token] = ACTIONS(2401), + [sym__strong_emphasis_open_star] = ACTIONS(2401), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2401), + [sym__emphasis_open_underscore] = ACTIONS(2401), + [sym_inline_note_reference] = ACTIONS(2401), + [sym_html_element] = ACTIONS(2401), + [sym__pandoc_line_break] = ACTIONS(2401), }, [STATE(210)] = { - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_parenthesis] = STATE(192), - [aux_sym__list_parenthesis_repeat1] = STATE(192), - [anon_sym_COLON] = ACTIONS(2128), - [sym_entity_reference] = ACTIONS(2128), - [sym_numeric_character_reference] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_BANG_LBRACK] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2130), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2128), - [aux_sym_pandoc_str_token1] = ACTIONS(2130), - [anon_sym_PIPE] = ACTIONS(2128), - [aux_sym__prose_punctuation_token1] = ACTIONS(2130), - [sym__line_ending] = ACTIONS(2128), - [sym__soft_line_ending] = ACTIONS(2128), - [sym__block_close] = ACTIONS(2128), - [sym__block_quote_start] = ACTIONS(2128), - [sym_atx_h1_marker] = ACTIONS(2128), - [sym_atx_h2_marker] = ACTIONS(2128), - [sym_atx_h3_marker] = ACTIONS(2128), - [sym_atx_h4_marker] = ACTIONS(2128), - [sym_atx_h5_marker] = ACTIONS(2128), - [sym_atx_h6_marker] = ACTIONS(2128), - [sym__thematic_break] = ACTIONS(2128), - [sym__list_marker_minus] = ACTIONS(2128), - [sym__list_marker_plus] = ACTIONS(2128), - [sym__list_marker_star] = ACTIONS(2128), - [sym__list_marker_parenthesis] = ACTIONS(51), - [sym__list_marker_dot] = ACTIONS(2128), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(51), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2128), - [sym__list_marker_example] = ACTIONS(2128), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2128), - [sym__fenced_code_block_start_backtick] = ACTIONS(2128), - [sym_minus_metadata] = ACTIONS(2128), - [sym__pipe_table_start] = ACTIONS(2128), - [sym__fenced_div_start] = ACTIONS(2128), - [sym_ref_id_specifier] = ACTIONS(2128), - [sym__code_span_start] = ACTIONS(2128), - [sym__html_comment] = ACTIONS(2128), - [sym__autolink] = ACTIONS(2128), - [sym__highlight_span_start] = ACTIONS(2128), - [sym__insert_span_start] = ACTIONS(2128), - [sym__delete_span_start] = ACTIONS(2128), - [sym__edit_comment_span_start] = ACTIONS(2128), - [sym__single_quote_span_open] = ACTIONS(2128), - [sym__double_quote_span_open] = ACTIONS(2128), - [sym__shortcode_open_escaped] = ACTIONS(2128), - [sym__shortcode_open] = ACTIONS(2128), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2128), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2128), - [sym__cite_author_in_text] = ACTIONS(2128), - [sym__cite_suppress_author] = ACTIONS(2128), - [sym__strikeout_open] = ACTIONS(2128), - [sym__subscript_open] = ACTIONS(2128), - [sym__superscript_open] = ACTIONS(2128), - [sym__inline_note_start_token] = ACTIONS(2128), - [sym__strong_emphasis_open_star] = ACTIONS(2128), - [sym__strong_emphasis_open_underscore] = ACTIONS(2128), - [sym__emphasis_open_star] = ACTIONS(2128), - [sym__emphasis_open_underscore] = ACTIONS(2128), - [sym_inline_note_reference] = ACTIONS(2128), - [sym_html_element] = ACTIONS(2128), - [sym__pandoc_line_break] = ACTIONS(2128), + [anon_sym_COLON] = ACTIONS(2407), + [sym_entity_reference] = ACTIONS(2407), + [sym_numeric_character_reference] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_BANG_LBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [aux_sym_pandoc_str_token1] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2407), + [sym__whitespace] = ACTIONS(2407), + [sym__line_ending] = ACTIONS(2407), + [sym__soft_line_ending] = ACTIONS(2407), + [sym__block_close] = ACTIONS(2407), + [sym_block_continuation] = ACTIONS(2411), + [sym__block_quote_start] = ACTIONS(2407), + [sym_atx_h1_marker] = ACTIONS(2407), + [sym_atx_h2_marker] = ACTIONS(2407), + [sym_atx_h3_marker] = ACTIONS(2407), + [sym_atx_h4_marker] = ACTIONS(2407), + [sym_atx_h5_marker] = ACTIONS(2407), + [sym_atx_h6_marker] = ACTIONS(2407), + [sym__thematic_break] = ACTIONS(2407), + [sym__list_marker_minus] = ACTIONS(2407), + [sym__list_marker_plus] = ACTIONS(2407), + [sym__list_marker_star] = ACTIONS(2407), + [sym__list_marker_parenthesis] = ACTIONS(2407), + [sym__list_marker_dot] = ACTIONS(2407), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_example] = ACTIONS(2407), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2407), + [sym__fenced_code_block_start_backtick] = ACTIONS(2407), + [sym_minus_metadata] = ACTIONS(2407), + [sym__pipe_table_start] = ACTIONS(2407), + [sym__fenced_div_start] = ACTIONS(2407), + [sym__fenced_div_end] = ACTIONS(2407), + [sym_ref_id_specifier] = ACTIONS(2407), + [sym__code_span_start] = ACTIONS(2407), + [sym__html_comment] = ACTIONS(2407), + [sym__autolink] = ACTIONS(2407), + [sym__highlight_span_start] = ACTIONS(2407), + [sym__insert_span_start] = ACTIONS(2407), + [sym__delete_span_start] = ACTIONS(2407), + [sym__edit_comment_span_start] = ACTIONS(2407), + [sym__single_quote_span_open] = ACTIONS(2407), + [sym__double_quote_span_open] = ACTIONS(2407), + [sym__shortcode_open_escaped] = ACTIONS(2407), + [sym__shortcode_open] = ACTIONS(2407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2407), + [sym__cite_author_in_text] = ACTIONS(2407), + [sym__cite_suppress_author] = ACTIONS(2407), + [sym__strikeout_open] = ACTIONS(2407), + [sym__subscript_open] = ACTIONS(2407), + [sym__superscript_open] = ACTIONS(2407), + [sym__inline_note_start_token] = ACTIONS(2407), + [sym__strong_emphasis_open_star] = ACTIONS(2407), + [sym__strong_emphasis_open_underscore] = ACTIONS(2407), + [sym__emphasis_open_star] = ACTIONS(2407), + [sym__emphasis_open_underscore] = ACTIONS(2407), + [sym_inline_note_reference] = ACTIONS(2407), + [sym_html_element] = ACTIONS(2407), + [sym__pandoc_line_break] = ACTIONS(2407), }, [STATE(211)] = { - [sym_list_marker_example] = STATE(14), - [sym__list_item_example] = STATE(200), - [aux_sym__list_example_repeat1] = STATE(200), - [anon_sym_COLON] = ACTIONS(2132), - [sym_entity_reference] = ACTIONS(2132), - [sym_numeric_character_reference] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_BANG_LBRACK] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2132), - [aux_sym_pandoc_str_token1] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2132), - [aux_sym__prose_punctuation_token1] = ACTIONS(2134), - [sym__line_ending] = ACTIONS(2132), - [sym__soft_line_ending] = ACTIONS(2132), - [sym__block_close] = ACTIONS(2132), - [sym__block_quote_start] = ACTIONS(2132), - [sym_atx_h1_marker] = ACTIONS(2132), - [sym_atx_h2_marker] = ACTIONS(2132), - [sym_atx_h3_marker] = ACTIONS(2132), - [sym_atx_h4_marker] = ACTIONS(2132), - [sym_atx_h5_marker] = ACTIONS(2132), - [sym_atx_h6_marker] = ACTIONS(2132), - [sym__thematic_break] = ACTIONS(2132), - [sym__list_marker_minus] = ACTIONS(2132), - [sym__list_marker_plus] = ACTIONS(2132), - [sym__list_marker_star] = ACTIONS(2132), - [sym__list_marker_parenthesis] = ACTIONS(2132), - [sym__list_marker_dot] = ACTIONS(2132), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_example] = ACTIONS(55), - [sym__list_marker_example_dont_interrupt] = ACTIONS(55), - [sym__fenced_code_block_start_backtick] = ACTIONS(2132), - [sym_minus_metadata] = ACTIONS(2132), - [sym__pipe_table_start] = ACTIONS(2132), - [sym__fenced_div_start] = ACTIONS(2132), - [sym_ref_id_specifier] = ACTIONS(2132), - [sym__code_span_start] = ACTIONS(2132), - [sym__html_comment] = ACTIONS(2132), - [sym__autolink] = ACTIONS(2132), - [sym__highlight_span_start] = ACTIONS(2132), - [sym__insert_span_start] = ACTIONS(2132), - [sym__delete_span_start] = ACTIONS(2132), - [sym__edit_comment_span_start] = ACTIONS(2132), - [sym__single_quote_span_open] = ACTIONS(2132), - [sym__double_quote_span_open] = ACTIONS(2132), - [sym__shortcode_open_escaped] = ACTIONS(2132), - [sym__shortcode_open] = ACTIONS(2132), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2132), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2132), - [sym__cite_author_in_text] = ACTIONS(2132), - [sym__cite_suppress_author] = ACTIONS(2132), - [sym__strikeout_open] = ACTIONS(2132), - [sym__subscript_open] = ACTIONS(2132), - [sym__superscript_open] = ACTIONS(2132), - [sym__inline_note_start_token] = ACTIONS(2132), - [sym__strong_emphasis_open_star] = ACTIONS(2132), - [sym__strong_emphasis_open_underscore] = ACTIONS(2132), - [sym__emphasis_open_star] = ACTIONS(2132), - [sym__emphasis_open_underscore] = ACTIONS(2132), - [sym_inline_note_reference] = ACTIONS(2132), - [sym_html_element] = ACTIONS(2132), - [sym__pandoc_line_break] = ACTIONS(2132), + [anon_sym_COLON] = ACTIONS(2413), + [sym_entity_reference] = ACTIONS(2413), + [sym_numeric_character_reference] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_BANG_LBRACK] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2413), + [aux_sym_pandoc_str_token1] = ACTIONS(2415), + [anon_sym_PIPE] = ACTIONS(2413), + [sym__whitespace] = ACTIONS(2413), + [sym__line_ending] = ACTIONS(2413), + [sym__soft_line_ending] = ACTIONS(2413), + [sym__block_close] = ACTIONS(2413), + [sym_block_continuation] = ACTIONS(2417), + [sym__block_quote_start] = ACTIONS(2413), + [sym_atx_h1_marker] = ACTIONS(2413), + [sym_atx_h2_marker] = ACTIONS(2413), + [sym_atx_h3_marker] = ACTIONS(2413), + [sym_atx_h4_marker] = ACTIONS(2413), + [sym_atx_h5_marker] = ACTIONS(2413), + [sym_atx_h6_marker] = ACTIONS(2413), + [sym__thematic_break] = ACTIONS(2413), + [sym__list_marker_minus] = ACTIONS(2413), + [sym__list_marker_plus] = ACTIONS(2413), + [sym__list_marker_star] = ACTIONS(2413), + [sym__list_marker_parenthesis] = ACTIONS(2413), + [sym__list_marker_dot] = ACTIONS(2413), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_example] = ACTIONS(2413), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2413), + [sym__fenced_code_block_start_backtick] = ACTIONS(2413), + [sym_minus_metadata] = ACTIONS(2413), + [sym__pipe_table_start] = ACTIONS(2413), + [sym__fenced_div_start] = ACTIONS(2413), + [sym__fenced_div_end] = ACTIONS(2413), + [sym_ref_id_specifier] = ACTIONS(2413), + [sym__code_span_start] = ACTIONS(2413), + [sym__html_comment] = ACTIONS(2413), + [sym__autolink] = ACTIONS(2413), + [sym__highlight_span_start] = ACTIONS(2413), + [sym__insert_span_start] = ACTIONS(2413), + [sym__delete_span_start] = ACTIONS(2413), + [sym__edit_comment_span_start] = ACTIONS(2413), + [sym__single_quote_span_open] = ACTIONS(2413), + [sym__double_quote_span_open] = ACTIONS(2413), + [sym__shortcode_open_escaped] = ACTIONS(2413), + [sym__shortcode_open] = ACTIONS(2413), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2413), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2413), + [sym__cite_author_in_text] = ACTIONS(2413), + [sym__cite_suppress_author] = ACTIONS(2413), + [sym__strikeout_open] = ACTIONS(2413), + [sym__subscript_open] = ACTIONS(2413), + [sym__superscript_open] = ACTIONS(2413), + [sym__inline_note_start_token] = ACTIONS(2413), + [sym__strong_emphasis_open_star] = ACTIONS(2413), + [sym__strong_emphasis_open_underscore] = ACTIONS(2413), + [sym__emphasis_open_star] = ACTIONS(2413), + [sym__emphasis_open_underscore] = ACTIONS(2413), + [sym_inline_note_reference] = ACTIONS(2413), + [sym_html_element] = ACTIONS(2413), + [sym__pandoc_line_break] = ACTIONS(2413), }, [STATE(212)] = { - [sym_pipe_table_cell] = STATE(2541), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(2322), - [sym__line_ending] = ACTIONS(2324), - [sym__eof] = ACTIONS(2324), - [sym__pipe_table_line_ending] = ACTIONS(2324), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2441), - [sym__pandoc_line_break] = ACTIONS(1968), + [anon_sym_COLON] = ACTIONS(2419), + [sym_entity_reference] = ACTIONS(2419), + [sym_numeric_character_reference] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_BANG_LBRACK] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [aux_sym_pandoc_str_token1] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(2419), + [sym__whitespace] = ACTIONS(2419), + [sym__line_ending] = ACTIONS(2419), + [sym__soft_line_ending] = ACTIONS(2419), + [sym__block_close] = ACTIONS(2419), + [sym_block_continuation] = ACTIONS(2423), + [sym__block_quote_start] = ACTIONS(2419), + [sym_atx_h1_marker] = ACTIONS(2419), + [sym_atx_h2_marker] = ACTIONS(2419), + [sym_atx_h3_marker] = ACTIONS(2419), + [sym_atx_h4_marker] = ACTIONS(2419), + [sym_atx_h5_marker] = ACTIONS(2419), + [sym_atx_h6_marker] = ACTIONS(2419), + [sym__thematic_break] = ACTIONS(2419), + [sym__list_marker_minus] = ACTIONS(2419), + [sym__list_marker_plus] = ACTIONS(2419), + [sym__list_marker_star] = ACTIONS(2419), + [sym__list_marker_parenthesis] = ACTIONS(2419), + [sym__list_marker_dot] = ACTIONS(2419), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_example] = ACTIONS(2419), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2419), + [sym__fenced_code_block_start_backtick] = ACTIONS(2419), + [sym_minus_metadata] = ACTIONS(2419), + [sym__pipe_table_start] = ACTIONS(2419), + [sym__fenced_div_start] = ACTIONS(2419), + [sym__fenced_div_end] = ACTIONS(2419), + [sym_ref_id_specifier] = ACTIONS(2419), + [sym__code_span_start] = ACTIONS(2419), + [sym__html_comment] = ACTIONS(2419), + [sym__autolink] = ACTIONS(2419), + [sym__highlight_span_start] = ACTIONS(2419), + [sym__insert_span_start] = ACTIONS(2419), + [sym__delete_span_start] = ACTIONS(2419), + [sym__edit_comment_span_start] = ACTIONS(2419), + [sym__single_quote_span_open] = ACTIONS(2419), + [sym__double_quote_span_open] = ACTIONS(2419), + [sym__shortcode_open_escaped] = ACTIONS(2419), + [sym__shortcode_open] = ACTIONS(2419), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2419), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2419), + [sym__cite_author_in_text] = ACTIONS(2419), + [sym__cite_suppress_author] = ACTIONS(2419), + [sym__strikeout_open] = ACTIONS(2419), + [sym__subscript_open] = ACTIONS(2419), + [sym__superscript_open] = ACTIONS(2419), + [sym__inline_note_start_token] = ACTIONS(2419), + [sym__strong_emphasis_open_star] = ACTIONS(2419), + [sym__strong_emphasis_open_underscore] = ACTIONS(2419), + [sym__emphasis_open_star] = ACTIONS(2419), + [sym__emphasis_open_underscore] = ACTIONS(2419), + [sym_inline_note_reference] = ACTIONS(2419), + [sym_html_element] = ACTIONS(2419), + [sym__pandoc_line_break] = ACTIONS(2419), }, [STATE(213)] = { - [sym_pipe_table_cell] = STATE(2588), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(2322), - [sym__line_ending] = ACTIONS(2433), - [sym__eof] = ACTIONS(2433), - [sym__pipe_table_line_ending] = ACTIONS(2433), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pipe_table_delimiter] = ACTIONS(2326), - [sym__pandoc_line_break] = ACTIONS(1968), + [anon_sym_COLON] = ACTIONS(2425), + [sym_entity_reference] = ACTIONS(2425), + [sym_numeric_character_reference] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_BANG_LBRACK] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2425), + [aux_sym_pandoc_str_token1] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2425), + [sym__whitespace] = ACTIONS(2425), + [sym__line_ending] = ACTIONS(2425), + [sym__soft_line_ending] = ACTIONS(2425), + [sym__block_close] = ACTIONS(2425), + [sym_block_continuation] = ACTIONS(2429), + [sym__block_quote_start] = ACTIONS(2425), + [sym_atx_h1_marker] = ACTIONS(2425), + [sym_atx_h2_marker] = ACTIONS(2425), + [sym_atx_h3_marker] = ACTIONS(2425), + [sym_atx_h4_marker] = ACTIONS(2425), + [sym_atx_h5_marker] = ACTIONS(2425), + [sym_atx_h6_marker] = ACTIONS(2425), + [sym__thematic_break] = ACTIONS(2425), + [sym__list_marker_minus] = ACTIONS(2425), + [sym__list_marker_plus] = ACTIONS(2425), + [sym__list_marker_star] = ACTIONS(2425), + [sym__list_marker_parenthesis] = ACTIONS(2425), + [sym__list_marker_dot] = ACTIONS(2425), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_example] = ACTIONS(2425), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2425), + [sym__fenced_code_block_start_backtick] = ACTIONS(2425), + [sym_minus_metadata] = ACTIONS(2425), + [sym__pipe_table_start] = ACTIONS(2425), + [sym__fenced_div_start] = ACTIONS(2425), + [sym__fenced_div_end] = ACTIONS(2425), + [sym_ref_id_specifier] = ACTIONS(2425), + [sym__code_span_start] = ACTIONS(2425), + [sym__html_comment] = ACTIONS(2425), + [sym__autolink] = ACTIONS(2425), + [sym__highlight_span_start] = ACTIONS(2425), + [sym__insert_span_start] = ACTIONS(2425), + [sym__delete_span_start] = ACTIONS(2425), + [sym__edit_comment_span_start] = ACTIONS(2425), + [sym__single_quote_span_open] = ACTIONS(2425), + [sym__double_quote_span_open] = ACTIONS(2425), + [sym__shortcode_open_escaped] = ACTIONS(2425), + [sym__shortcode_open] = ACTIONS(2425), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2425), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2425), + [sym__cite_author_in_text] = ACTIONS(2425), + [sym__cite_suppress_author] = ACTIONS(2425), + [sym__strikeout_open] = ACTIONS(2425), + [sym__subscript_open] = ACTIONS(2425), + [sym__superscript_open] = ACTIONS(2425), + [sym__inline_note_start_token] = ACTIONS(2425), + [sym__strong_emphasis_open_star] = ACTIONS(2425), + [sym__strong_emphasis_open_underscore] = ACTIONS(2425), + [sym__emphasis_open_star] = ACTIONS(2425), + [sym__emphasis_open_underscore] = ACTIONS(2425), + [sym_inline_note_reference] = ACTIONS(2425), + [sym_html_element] = ACTIONS(2425), + [sym__pandoc_line_break] = ACTIONS(2425), }, [STATE(214)] = { - [sym__inlines] = STATE(3763), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(658), - [sym__inline_whitespace] = STATE(658), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2463), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [sym__inlines] = STATE(3089), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1218), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(603), + [sym__inline_whitespace] = STATE(603), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2431), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2433), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2435), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(215)] = { - [sym_pipe_table_row] = STATE(3088), - [sym_pipe_table_cell] = STATE(2853), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym_pipe_table_row_repeat1] = STATE(394), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(2527), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pipe_table_delimiter] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2509), + [sym__inlines] = STATE(3230), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1384), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(611), + [sym__inline_whitespace] = STATE(611), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2437), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2439), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2441), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(216)] = { - [sym__atx_heading_content] = STATE(3014), - [sym__inlines] = STATE(3014), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(466), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(25), - [sym__eof] = ACTIONS(2575), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [sym__inlines] = STATE(3232), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1391), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(612), + [sym__inline_whitespace] = STATE(612), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2443), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2439), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2445), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(217)] = { - [sym_pipe_table_row] = STATE(3148), - [sym_pipe_table_cell] = STATE(2853), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym_pipe_table_row_repeat1] = STATE(394), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(2527), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pipe_table_delimiter] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2509), - }, - [STATE(218)] = { - [sym__inlines] = STATE(3891), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(712), - [sym__inline_whitespace] = STATE(712), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_COLON] = ACTIONS(2447), + [sym_entity_reference] = ACTIONS(2447), + [sym_numeric_character_reference] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2447), [anon_sym_BANG_LBRACK] = ACTIONS(2447), [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2579), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [aux_sym_pandoc_str_token1] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2447), + [sym__whitespace] = ACTIONS(2447), + [sym__line_ending] = ACTIONS(2447), + [sym__soft_line_ending] = ACTIONS(2447), + [sym__block_close] = ACTIONS(2447), + [sym_block_continuation] = ACTIONS(2451), + [sym__block_quote_start] = ACTIONS(2447), + [sym_atx_h1_marker] = ACTIONS(2447), + [sym_atx_h2_marker] = ACTIONS(2447), + [sym_atx_h3_marker] = ACTIONS(2447), + [sym_atx_h4_marker] = ACTIONS(2447), + [sym_atx_h5_marker] = ACTIONS(2447), + [sym_atx_h6_marker] = ACTIONS(2447), + [sym__thematic_break] = ACTIONS(2447), + [sym__list_marker_minus] = ACTIONS(2447), + [sym__list_marker_plus] = ACTIONS(2447), + [sym__list_marker_star] = ACTIONS(2447), + [sym__list_marker_parenthesis] = ACTIONS(2447), + [sym__list_marker_dot] = ACTIONS(2447), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_example] = ACTIONS(2447), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2447), + [sym__fenced_code_block_start_backtick] = ACTIONS(2447), + [sym_minus_metadata] = ACTIONS(2447), + [sym__pipe_table_start] = ACTIONS(2447), + [sym__fenced_div_start] = ACTIONS(2447), + [sym__fenced_div_end] = ACTIONS(2447), + [sym_ref_id_specifier] = ACTIONS(2447), + [sym__code_span_start] = ACTIONS(2447), + [sym__html_comment] = ACTIONS(2447), + [sym__autolink] = ACTIONS(2447), + [sym__highlight_span_start] = ACTIONS(2447), + [sym__insert_span_start] = ACTIONS(2447), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2447), + [sym__single_quote_span_open] = ACTIONS(2447), + [sym__double_quote_span_open] = ACTIONS(2447), + [sym__shortcode_open_escaped] = ACTIONS(2447), + [sym__shortcode_open] = ACTIONS(2447), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2447), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2447), + [sym__cite_author_in_text] = ACTIONS(2447), + [sym__cite_suppress_author] = ACTIONS(2447), + [sym__strikeout_open] = ACTIONS(2447), + [sym__subscript_open] = ACTIONS(2447), + [sym__superscript_open] = ACTIONS(2447), + [sym__inline_note_start_token] = ACTIONS(2447), + [sym__strong_emphasis_open_star] = ACTIONS(2447), + [sym__strong_emphasis_open_underscore] = ACTIONS(2447), + [sym__emphasis_open_star] = ACTIONS(2447), + [sym__emphasis_open_underscore] = ACTIONS(2447), + [sym_inline_note_reference] = ACTIONS(2447), + [sym_html_element] = ACTIONS(2447), + [sym__pandoc_line_break] = ACTIONS(2447), + }, + [STATE(218)] = { + [sym__inlines] = STATE(3156), + [sym_pandoc_span] = STATE(578), + [sym_pandoc_image] = STATE(578), + [sym_target] = STATE(1219), + [sym_pandoc_math] = STATE(578), + [sym_pandoc_display_math] = STATE(578), + [sym_pandoc_code_span] = STATE(578), + [sym_pandoc_single_quote] = STATE(578), + [sym_pandoc_double_quote] = STATE(578), + [sym_insert] = STATE(578), + [sym_delete] = STATE(578), + [sym_edit_comment] = STATE(578), + [sym_highlight] = STATE(578), + [sym__pandoc_attr_specifier] = STATE(578), + [sym__line] = STATE(2853), + [sym__inline_element] = STATE(578), + [sym_shortcode_escaped] = STATE(578), + [sym_shortcode] = STATE(578), + [sym_citation] = STATE(578), + [sym_inline_note] = STATE(578), + [sym_pandoc_superscript] = STATE(578), + [sym_pandoc_subscript] = STATE(578), + [sym_pandoc_strikeout] = STATE(578), + [sym_pandoc_emph] = STATE(578), + [sym_pandoc_strong] = STATE(578), + [sym_pandoc_str] = STATE(578), + [sym__soft_line_break] = STATE(604), + [sym__inline_whitespace] = STATE(604), + [sym_entity_reference] = ACTIONS(2141), + [sym_numeric_character_reference] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [aux_sym_pandoc_span_token1] = ACTIONS(2453), + [anon_sym_BANG_LBRACK] = ACTIONS(2147), + [aux_sym_target_token1] = ACTIONS(2433), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2155), + [aux_sym_pandoc_str_token1] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [sym__whitespace] = ACTIONS(2455), + [sym__soft_line_ending] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2165), + [sym__html_comment] = ACTIONS(2141), + [sym__autolink] = ACTIONS(2141), + [sym__highlight_span_start] = ACTIONS(2167), + [sym__insert_span_start] = ACTIONS(2169), + [sym__delete_span_start] = ACTIONS(2171), + [sym__edit_comment_span_start] = ACTIONS(2173), + [sym__single_quote_span_open] = ACTIONS(2175), + [sym__double_quote_span_open] = ACTIONS(2177), + [sym__shortcode_open_escaped] = ACTIONS(2179), + [sym__shortcode_open] = ACTIONS(2181), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2183), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2185), + [sym__cite_author_in_text] = ACTIONS(2187), + [sym__cite_suppress_author] = ACTIONS(2189), + [sym__strikeout_open] = ACTIONS(2191), + [sym__subscript_open] = ACTIONS(2193), + [sym__superscript_open] = ACTIONS(2195), + [sym__inline_note_start_token] = ACTIONS(2197), + [sym__strong_emphasis_open_star] = ACTIONS(2199), + [sym__strong_emphasis_open_underscore] = ACTIONS(2201), + [sym__emphasis_open_star] = ACTIONS(2203), + [sym__emphasis_open_underscore] = ACTIONS(2205), + [sym_inline_note_reference] = ACTIONS(2141), + [sym_html_element] = ACTIONS(2141), + [sym__pandoc_line_break] = ACTIONS(2141), }, [STATE(219)] = { - [sym__inlines] = STATE(3515), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(713), - [sym__inline_whitespace] = STATE(713), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2583), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2457), + [sym_entity_reference] = ACTIONS(2457), + [sym_numeric_character_reference] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_BANG_LBRACK] = ACTIONS(2457), + [anon_sym_DOLLAR] = ACTIONS(2459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [aux_sym_pandoc_str_token1] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2457), + [sym__whitespace] = ACTIONS(2457), + [sym__line_ending] = ACTIONS(2457), + [sym__soft_line_ending] = ACTIONS(2457), + [sym__block_close] = ACTIONS(2457), + [sym_block_continuation] = ACTIONS(2461), + [sym__block_quote_start] = ACTIONS(2457), + [sym_atx_h1_marker] = ACTIONS(2457), + [sym_atx_h2_marker] = ACTIONS(2457), + [sym_atx_h3_marker] = ACTIONS(2457), + [sym_atx_h4_marker] = ACTIONS(2457), + [sym_atx_h5_marker] = ACTIONS(2457), + [sym_atx_h6_marker] = ACTIONS(2457), + [sym__thematic_break] = ACTIONS(2457), + [sym__list_marker_minus] = ACTIONS(2457), + [sym__list_marker_plus] = ACTIONS(2457), + [sym__list_marker_star] = ACTIONS(2457), + [sym__list_marker_parenthesis] = ACTIONS(2457), + [sym__list_marker_dot] = ACTIONS(2457), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_example] = ACTIONS(2457), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2457), + [sym__fenced_code_block_start_backtick] = ACTIONS(2457), + [sym_minus_metadata] = ACTIONS(2457), + [sym__pipe_table_start] = ACTIONS(2457), + [sym__fenced_div_start] = ACTIONS(2457), + [sym__fenced_div_end] = ACTIONS(2457), + [sym_ref_id_specifier] = ACTIONS(2457), + [sym__code_span_start] = ACTIONS(2457), + [sym__html_comment] = ACTIONS(2457), + [sym__autolink] = ACTIONS(2457), + [sym__highlight_span_start] = ACTIONS(2457), + [sym__insert_span_start] = ACTIONS(2457), + [sym__delete_span_start] = ACTIONS(2457), + [sym__edit_comment_span_start] = ACTIONS(2457), + [sym__single_quote_span_open] = ACTIONS(2457), + [sym__double_quote_span_open] = ACTIONS(2457), + [sym__shortcode_open_escaped] = ACTIONS(2457), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2457), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2457), + [sym__cite_author_in_text] = ACTIONS(2457), + [sym__cite_suppress_author] = ACTIONS(2457), + [sym__strikeout_open] = ACTIONS(2457), + [sym__subscript_open] = ACTIONS(2457), + [sym__superscript_open] = ACTIONS(2457), + [sym__inline_note_start_token] = ACTIONS(2457), + [sym__strong_emphasis_open_star] = ACTIONS(2457), + [sym__strong_emphasis_open_underscore] = ACTIONS(2457), + [sym__emphasis_open_star] = ACTIONS(2457), + [sym__emphasis_open_underscore] = ACTIONS(2457), + [sym_inline_note_reference] = ACTIONS(2457), + [sym_html_element] = ACTIONS(2457), + [sym__pandoc_line_break] = ACTIONS(2457), }, [STATE(220)] = { - [sym__inlines] = STATE(3240), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(714), - [sym__inline_whitespace] = STATE(714), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2587), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [anon_sym_COLON] = ACTIONS(2463), + [sym_entity_reference] = ACTIONS(2463), + [sym_numeric_character_reference] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_BANG_LBRACK] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(2465), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [aux_sym_pandoc_str_token1] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2463), + [sym__whitespace] = ACTIONS(2463), + [sym__line_ending] = ACTIONS(2463), + [sym__soft_line_ending] = ACTIONS(2463), + [sym__block_close] = ACTIONS(2463), + [sym__block_quote_start] = ACTIONS(2463), + [sym_atx_h1_marker] = ACTIONS(2463), + [sym_atx_h2_marker] = ACTIONS(2463), + [sym_atx_h3_marker] = ACTIONS(2463), + [sym_atx_h4_marker] = ACTIONS(2463), + [sym_atx_h5_marker] = ACTIONS(2463), + [sym_atx_h6_marker] = ACTIONS(2463), + [sym__thematic_break] = ACTIONS(2463), + [sym__list_marker_minus] = ACTIONS(2463), + [sym__list_marker_plus] = ACTIONS(2463), + [sym__list_marker_star] = ACTIONS(2463), + [sym__list_marker_parenthesis] = ACTIONS(2463), + [sym__list_marker_dot] = ACTIONS(2463), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_example] = ACTIONS(2463), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2463), + [sym__fenced_code_block_start_backtick] = ACTIONS(2463), + [sym_minus_metadata] = ACTIONS(2463), + [sym__pipe_table_start] = ACTIONS(2463), + [sym__fenced_div_start] = ACTIONS(2463), + [sym__fenced_div_end] = ACTIONS(2463), + [sym_ref_id_specifier] = ACTIONS(2463), + [sym__code_span_start] = ACTIONS(2463), + [sym__html_comment] = ACTIONS(2463), + [sym__autolink] = ACTIONS(2463), + [sym__highlight_span_start] = ACTIONS(2463), + [sym__insert_span_start] = ACTIONS(2463), + [sym__delete_span_start] = ACTIONS(2463), + [sym__edit_comment_span_start] = ACTIONS(2463), + [sym__single_quote_span_open] = ACTIONS(2463), + [sym__double_quote_span_open] = ACTIONS(2463), + [sym__shortcode_open_escaped] = ACTIONS(2463), + [sym__shortcode_open] = ACTIONS(2463), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2463), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2463), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2463), + [sym__strikeout_open] = ACTIONS(2463), + [sym__subscript_open] = ACTIONS(2463), + [sym__superscript_open] = ACTIONS(2463), + [sym__inline_note_start_token] = ACTIONS(2463), + [sym__strong_emphasis_open_star] = ACTIONS(2463), + [sym__strong_emphasis_open_underscore] = ACTIONS(2463), + [sym__emphasis_open_star] = ACTIONS(2463), + [sym__emphasis_open_underscore] = ACTIONS(2463), + [sym_inline_note_reference] = ACTIONS(2463), + [sym_html_element] = ACTIONS(2463), + [sym__pandoc_line_break] = ACTIONS(2463), }, [STATE(221)] = { - [sym__inlines] = STATE(3361), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(715), - [sym__inline_whitespace] = STATE(715), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2591), - [sym__soft_line_ending] = ACTIONS(2465), + [anon_sym_COLON] = ACTIONS(2467), + [sym_entity_reference] = ACTIONS(2467), + [sym_numeric_character_reference] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_BANG_LBRACK] = ACTIONS(2467), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [aux_sym_pandoc_str_token1] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2467), + [sym__whitespace] = ACTIONS(2467), + [sym__line_ending] = ACTIONS(2467), + [sym__soft_line_ending] = ACTIONS(2467), + [sym_block_continuation] = ACTIONS(2467), + [sym__block_quote_start] = ACTIONS(2467), + [sym_atx_h1_marker] = ACTIONS(2467), + [sym_atx_h2_marker] = ACTIONS(2467), + [sym_atx_h3_marker] = ACTIONS(2467), + [sym_atx_h4_marker] = ACTIONS(2467), + [sym_atx_h5_marker] = ACTIONS(2467), + [sym_atx_h6_marker] = ACTIONS(2467), + [sym__thematic_break] = ACTIONS(2467), + [sym__list_marker_minus] = ACTIONS(2467), + [sym__list_marker_plus] = ACTIONS(2467), + [sym__list_marker_star] = ACTIONS(2467), + [sym__list_marker_parenthesis] = ACTIONS(2467), + [sym__list_marker_dot] = ACTIONS(2467), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2467), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2467), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2467), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2467), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2467), + [sym__list_marker_example] = ACTIONS(2467), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2467), + [sym__fenced_code_block_start_backtick] = ACTIONS(2467), + [sym__blank_line_start] = ACTIONS(2467), + [sym_minus_metadata] = ACTIONS(2467), + [sym__pipe_table_start] = ACTIONS(2467), + [sym__fenced_div_start] = ACTIONS(2467), + [sym_ref_id_specifier] = ACTIONS(2467), [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [sym__html_comment] = ACTIONS(2467), + [sym__autolink] = ACTIONS(2467), + [sym__highlight_span_start] = ACTIONS(2467), + [sym__insert_span_start] = ACTIONS(2467), + [sym__delete_span_start] = ACTIONS(2467), + [sym__edit_comment_span_start] = ACTIONS(2467), + [sym__single_quote_span_open] = ACTIONS(2467), + [sym__double_quote_span_open] = ACTIONS(2467), + [sym__shortcode_open_escaped] = ACTIONS(2467), + [sym__shortcode_open] = ACTIONS(2467), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2467), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2467), + [sym__cite_author_in_text] = ACTIONS(2467), + [sym__cite_suppress_author] = ACTIONS(2467), + [sym__strikeout_open] = ACTIONS(2467), + [sym__subscript_open] = ACTIONS(2467), + [sym__superscript_open] = ACTIONS(2467), + [sym__inline_note_start_token] = ACTIONS(2467), + [sym__strong_emphasis_open_star] = ACTIONS(2467), + [sym__strong_emphasis_open_underscore] = ACTIONS(2467), + [sym__emphasis_open_star] = ACTIONS(2467), + [sym__emphasis_open_underscore] = ACTIONS(2467), + [sym_inline_note_reference] = ACTIONS(2467), + [sym_html_element] = ACTIONS(2467), + [sym__pandoc_line_break] = ACTIONS(2467), }, [STATE(222)] = { - [sym__atx_heading_content] = STATE(2760), - [sym__inlines] = STATE(2760), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(470), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(25), - [sym__eof] = ACTIONS(2593), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(2471), + [sym_entity_reference] = ACTIONS(2471), + [sym_numeric_character_reference] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_BANG_LBRACK] = ACTIONS(2471), + [anon_sym_DOLLAR] = ACTIONS(2473), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [aux_sym_pandoc_str_token1] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2471), + [sym__whitespace] = ACTIONS(2471), + [sym__line_ending] = ACTIONS(2471), + [sym__soft_line_ending] = ACTIONS(2471), + [sym_block_continuation] = ACTIONS(2471), + [sym__block_quote_start] = ACTIONS(2471), + [sym_atx_h1_marker] = ACTIONS(2471), + [sym_atx_h2_marker] = ACTIONS(2471), + [sym_atx_h3_marker] = ACTIONS(2471), + [sym_atx_h4_marker] = ACTIONS(2471), + [sym_atx_h5_marker] = ACTIONS(2471), + [sym_atx_h6_marker] = ACTIONS(2471), + [sym__thematic_break] = ACTIONS(2471), + [sym__list_marker_minus] = ACTIONS(2471), + [sym__list_marker_plus] = ACTIONS(2471), + [sym__list_marker_star] = ACTIONS(2471), + [sym__list_marker_parenthesis] = ACTIONS(2471), + [sym__list_marker_dot] = ACTIONS(2471), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2471), + [sym__list_marker_example] = ACTIONS(2471), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2471), + [sym__fenced_code_block_start_backtick] = ACTIONS(2471), + [sym__blank_line_start] = ACTIONS(2471), + [sym_minus_metadata] = ACTIONS(2471), + [sym__pipe_table_start] = ACTIONS(2471), + [sym__fenced_div_start] = ACTIONS(2471), + [sym_ref_id_specifier] = ACTIONS(2471), + [sym__code_span_start] = ACTIONS(2471), + [sym__html_comment] = ACTIONS(2471), + [sym__autolink] = ACTIONS(2471), + [sym__highlight_span_start] = ACTIONS(2471), + [sym__insert_span_start] = ACTIONS(2471), + [sym__delete_span_start] = ACTIONS(2471), + [sym__edit_comment_span_start] = ACTIONS(2471), + [sym__single_quote_span_open] = ACTIONS(2471), + [sym__double_quote_span_open] = ACTIONS(2471), + [sym__shortcode_open_escaped] = ACTIONS(2471), + [sym__shortcode_open] = ACTIONS(2471), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2471), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2471), + [sym__cite_author_in_text] = ACTIONS(2471), + [sym__cite_suppress_author] = ACTIONS(2471), + [sym__strikeout_open] = ACTIONS(2471), + [sym__subscript_open] = ACTIONS(2471), + [sym__superscript_open] = ACTIONS(2471), + [sym__inline_note_start_token] = ACTIONS(2471), + [sym__strong_emphasis_open_star] = ACTIONS(2471), + [sym__strong_emphasis_open_underscore] = ACTIONS(2471), + [sym__emphasis_open_star] = ACTIONS(2471), + [sym__emphasis_open_underscore] = ACTIONS(2471), + [sym_inline_note_reference] = ACTIONS(2471), + [sym_html_element] = ACTIONS(2471), + [sym__pandoc_line_break] = ACTIONS(2471), }, [STATE(223)] = { - [sym__atx_heading_content] = STATE(2937), - [sym__inlines] = STATE(2937), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(369), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(181), - [sym__eof] = ACTIONS(2595), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(2475), + [sym_entity_reference] = ACTIONS(2475), + [sym_numeric_character_reference] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_BANG_LBRACK] = ACTIONS(2475), + [anon_sym_DOLLAR] = ACTIONS(2477), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [aux_sym_pandoc_str_token1] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2475), + [sym__whitespace] = ACTIONS(2475), + [sym__line_ending] = ACTIONS(2475), + [sym__soft_line_ending] = ACTIONS(2475), + [sym_block_continuation] = ACTIONS(2475), + [sym__block_quote_start] = ACTIONS(2475), + [sym_atx_h1_marker] = ACTIONS(2475), + [sym_atx_h2_marker] = ACTIONS(2475), + [sym_atx_h3_marker] = ACTIONS(2475), + [sym_atx_h4_marker] = ACTIONS(2475), + [sym_atx_h5_marker] = ACTIONS(2475), + [sym_atx_h6_marker] = ACTIONS(2475), + [sym__thematic_break] = ACTIONS(2475), + [sym__list_marker_minus] = ACTIONS(2475), + [sym__list_marker_plus] = ACTIONS(2475), + [sym__list_marker_star] = ACTIONS(2475), + [sym__list_marker_parenthesis] = ACTIONS(2475), + [sym__list_marker_dot] = ACTIONS(2475), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2475), + [sym__list_marker_example] = ACTIONS(2475), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2475), + [sym__fenced_code_block_start_backtick] = ACTIONS(2475), + [sym__blank_line_start] = ACTIONS(2475), + [sym_minus_metadata] = ACTIONS(2475), + [sym__pipe_table_start] = ACTIONS(2475), + [sym__fenced_div_start] = ACTIONS(2475), + [sym_ref_id_specifier] = ACTIONS(2475), + [sym__code_span_start] = ACTIONS(2475), + [sym__html_comment] = ACTIONS(2475), + [sym__autolink] = ACTIONS(2475), + [sym__highlight_span_start] = ACTIONS(2475), + [sym__insert_span_start] = ACTIONS(2475), + [sym__delete_span_start] = ACTIONS(2475), + [sym__edit_comment_span_start] = ACTIONS(2475), + [sym__single_quote_span_open] = ACTIONS(2475), + [sym__double_quote_span_open] = ACTIONS(2475), + [sym__shortcode_open_escaped] = ACTIONS(2475), + [sym__shortcode_open] = ACTIONS(2475), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2475), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2475), + [sym__cite_author_in_text] = ACTIONS(2475), + [sym__cite_suppress_author] = ACTIONS(2475), + [sym__strikeout_open] = ACTIONS(2475), + [sym__subscript_open] = ACTIONS(2475), + [sym__superscript_open] = ACTIONS(2475), + [sym__inline_note_start_token] = ACTIONS(2475), + [sym__strong_emphasis_open_star] = ACTIONS(2475), + [sym__strong_emphasis_open_underscore] = ACTIONS(2475), + [sym__emphasis_open_star] = ACTIONS(2475), + [sym__emphasis_open_underscore] = ACTIONS(2475), + [sym_inline_note_reference] = ACTIONS(2475), + [sym_html_element] = ACTIONS(2475), + [sym__pandoc_line_break] = ACTIONS(2475), }, [STATE(224)] = { - [sym__atx_heading_content] = STATE(2955), - [sym__inlines] = STATE(2955), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(370), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(181), - [sym__eof] = ACTIONS(2597), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(2479), + [sym_entity_reference] = ACTIONS(2479), + [sym_numeric_character_reference] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_BANG_LBRACK] = ACTIONS(2479), + [anon_sym_DOLLAR] = ACTIONS(2481), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [aux_sym_pandoc_str_token1] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2479), + [sym__whitespace] = ACTIONS(2479), + [sym__line_ending] = ACTIONS(2479), + [sym__soft_line_ending] = ACTIONS(2479), + [sym_block_continuation] = ACTIONS(2479), + [sym__block_quote_start] = ACTIONS(2479), + [sym_atx_h1_marker] = ACTIONS(2479), + [sym_atx_h2_marker] = ACTIONS(2479), + [sym_atx_h3_marker] = ACTIONS(2479), + [sym_atx_h4_marker] = ACTIONS(2479), + [sym_atx_h5_marker] = ACTIONS(2479), + [sym_atx_h6_marker] = ACTIONS(2479), + [sym__thematic_break] = ACTIONS(2479), + [sym__list_marker_minus] = ACTIONS(2479), + [sym__list_marker_plus] = ACTIONS(2479), + [sym__list_marker_star] = ACTIONS(2479), + [sym__list_marker_parenthesis] = ACTIONS(2479), + [sym__list_marker_dot] = ACTIONS(2479), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2479), + [sym__list_marker_example] = ACTIONS(2479), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2479), + [sym__fenced_code_block_start_backtick] = ACTIONS(2479), + [sym__blank_line_start] = ACTIONS(2479), + [sym_minus_metadata] = ACTIONS(2479), + [sym__pipe_table_start] = ACTIONS(2479), + [sym__fenced_div_start] = ACTIONS(2479), + [sym_ref_id_specifier] = ACTIONS(2479), + [sym__code_span_start] = ACTIONS(2479), + [sym__html_comment] = ACTIONS(2479), + [sym__autolink] = ACTIONS(2479), + [sym__highlight_span_start] = ACTIONS(2479), + [sym__insert_span_start] = ACTIONS(2479), + [sym__delete_span_start] = ACTIONS(2479), + [sym__edit_comment_span_start] = ACTIONS(2479), + [sym__single_quote_span_open] = ACTIONS(2479), + [sym__double_quote_span_open] = ACTIONS(2479), + [sym__shortcode_open_escaped] = ACTIONS(2479), + [sym__shortcode_open] = ACTIONS(2479), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2479), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2479), + [sym__cite_author_in_text] = ACTIONS(2479), + [sym__cite_suppress_author] = ACTIONS(2479), + [sym__strikeout_open] = ACTIONS(2479), + [sym__subscript_open] = ACTIONS(2479), + [sym__superscript_open] = ACTIONS(2479), + [sym__inline_note_start_token] = ACTIONS(2479), + [sym__strong_emphasis_open_star] = ACTIONS(2479), + [sym__strong_emphasis_open_underscore] = ACTIONS(2479), + [sym__emphasis_open_star] = ACTIONS(2479), + [sym__emphasis_open_underscore] = ACTIONS(2479), + [sym_inline_note_reference] = ACTIONS(2479), + [sym_html_element] = ACTIONS(2479), + [sym__pandoc_line_break] = ACTIONS(2479), }, [STATE(225)] = { - [sym__atx_heading_content] = STATE(2988), - [sym__inlines] = STATE(2988), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(371), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(181), - [sym__eof] = ACTIONS(2599), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(2483), + [sym_entity_reference] = ACTIONS(2483), + [sym_numeric_character_reference] = ACTIONS(2483), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_BANG_LBRACK] = ACTIONS(2483), + [anon_sym_DOLLAR] = ACTIONS(2485), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [aux_sym_pandoc_str_token1] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2483), + [sym__whitespace] = ACTIONS(2483), + [sym__line_ending] = ACTIONS(2483), + [sym__soft_line_ending] = ACTIONS(2483), + [sym_block_continuation] = ACTIONS(2483), + [sym__block_quote_start] = ACTIONS(2483), + [sym_atx_h1_marker] = ACTIONS(2483), + [sym_atx_h2_marker] = ACTIONS(2483), + [sym_atx_h3_marker] = ACTIONS(2483), + [sym_atx_h4_marker] = ACTIONS(2483), + [sym_atx_h5_marker] = ACTIONS(2483), + [sym_atx_h6_marker] = ACTIONS(2483), + [sym__thematic_break] = ACTIONS(2483), + [sym__list_marker_minus] = ACTIONS(2483), + [sym__list_marker_plus] = ACTIONS(2483), + [sym__list_marker_star] = ACTIONS(2483), + [sym__list_marker_parenthesis] = ACTIONS(2483), + [sym__list_marker_dot] = ACTIONS(2483), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2483), + [sym__list_marker_example] = ACTIONS(2483), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2483), + [sym__fenced_code_block_start_backtick] = ACTIONS(2483), + [sym__blank_line_start] = ACTIONS(2483), + [sym_minus_metadata] = ACTIONS(2483), + [sym__pipe_table_start] = ACTIONS(2483), + [sym__fenced_div_start] = ACTIONS(2483), + [sym_ref_id_specifier] = ACTIONS(2483), + [sym__code_span_start] = ACTIONS(2483), + [sym__html_comment] = ACTIONS(2483), + [sym__autolink] = ACTIONS(2483), + [sym__highlight_span_start] = ACTIONS(2483), + [sym__insert_span_start] = ACTIONS(2483), + [sym__delete_span_start] = ACTIONS(2483), + [sym__edit_comment_span_start] = ACTIONS(2483), + [sym__single_quote_span_open] = ACTIONS(2483), + [sym__double_quote_span_open] = ACTIONS(2483), + [sym__shortcode_open_escaped] = ACTIONS(2483), + [sym__shortcode_open] = ACTIONS(2483), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2483), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2483), + [sym__cite_author_in_text] = ACTIONS(2483), + [sym__cite_suppress_author] = ACTIONS(2483), + [sym__strikeout_open] = ACTIONS(2483), + [sym__subscript_open] = ACTIONS(2483), + [sym__superscript_open] = ACTIONS(2483), + [sym__inline_note_start_token] = ACTIONS(2483), + [sym__strong_emphasis_open_star] = ACTIONS(2483), + [sym__strong_emphasis_open_underscore] = ACTIONS(2483), + [sym__emphasis_open_star] = ACTIONS(2483), + [sym__emphasis_open_underscore] = ACTIONS(2483), + [sym_inline_note_reference] = ACTIONS(2483), + [sym_html_element] = ACTIONS(2483), + [sym__pandoc_line_break] = ACTIONS(2483), }, [STATE(226)] = { - [sym__atx_heading_content] = STATE(3021), - [sym__inlines] = STATE(3021), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(372), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(181), - [sym__eof] = ACTIONS(2601), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(2487), + [sym_entity_reference] = ACTIONS(2487), + [sym_numeric_character_reference] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_BANG_LBRACK] = ACTIONS(2487), + [anon_sym_DOLLAR] = ACTIONS(2489), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [aux_sym_pandoc_str_token1] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2487), + [sym__whitespace] = ACTIONS(2487), + [sym__line_ending] = ACTIONS(2487), + [sym__soft_line_ending] = ACTIONS(2487), + [sym_block_continuation] = ACTIONS(2487), + [sym__block_quote_start] = ACTIONS(2487), + [sym_atx_h1_marker] = ACTIONS(2487), + [sym_atx_h2_marker] = ACTIONS(2487), + [sym_atx_h3_marker] = ACTIONS(2487), + [sym_atx_h4_marker] = ACTIONS(2487), + [sym_atx_h5_marker] = ACTIONS(2487), + [sym_atx_h6_marker] = ACTIONS(2487), + [sym__thematic_break] = ACTIONS(2487), + [sym__list_marker_minus] = ACTIONS(2487), + [sym__list_marker_plus] = ACTIONS(2487), + [sym__list_marker_star] = ACTIONS(2487), + [sym__list_marker_parenthesis] = ACTIONS(2487), + [sym__list_marker_dot] = ACTIONS(2487), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2487), + [sym__list_marker_example] = ACTIONS(2487), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2487), + [sym__fenced_code_block_start_backtick] = ACTIONS(2487), + [sym__blank_line_start] = ACTIONS(2487), + [sym_minus_metadata] = ACTIONS(2487), + [sym__pipe_table_start] = ACTIONS(2487), + [sym__fenced_div_start] = ACTIONS(2487), + [sym_ref_id_specifier] = ACTIONS(2487), + [sym__code_span_start] = ACTIONS(2487), + [sym__html_comment] = ACTIONS(2487), + [sym__autolink] = ACTIONS(2487), + [sym__highlight_span_start] = ACTIONS(2487), + [sym__insert_span_start] = ACTIONS(2487), + [sym__delete_span_start] = ACTIONS(2487), + [sym__edit_comment_span_start] = ACTIONS(2487), + [sym__single_quote_span_open] = ACTIONS(2487), + [sym__double_quote_span_open] = ACTIONS(2487), + [sym__shortcode_open_escaped] = ACTIONS(2487), + [sym__shortcode_open] = ACTIONS(2487), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2487), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), + [sym__cite_author_in_text] = ACTIONS(2487), + [sym__cite_suppress_author] = ACTIONS(2487), + [sym__strikeout_open] = ACTIONS(2487), + [sym__subscript_open] = ACTIONS(2487), + [sym__superscript_open] = ACTIONS(2487), + [sym__inline_note_start_token] = ACTIONS(2487), + [sym__strong_emphasis_open_star] = ACTIONS(2487), + [sym__strong_emphasis_open_underscore] = ACTIONS(2487), + [sym__emphasis_open_star] = ACTIONS(2487), + [sym__emphasis_open_underscore] = ACTIONS(2487), + [sym_inline_note_reference] = ACTIONS(2487), + [sym_html_element] = ACTIONS(2487), + [sym__pandoc_line_break] = ACTIONS(2487), }, [STATE(227)] = { - [sym__atx_heading_content] = STATE(2733), - [sym__inlines] = STATE(2733), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(373), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(181), - [sym__eof] = ACTIONS(2603), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(2333), + [sym_entity_reference] = ACTIONS(2333), + [sym_numeric_character_reference] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_BANG_LBRACK] = ACTIONS(2333), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [aux_sym_pandoc_str_token1] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2333), + [sym__whitespace] = ACTIONS(2333), + [sym__line_ending] = ACTIONS(2333), + [sym__soft_line_ending] = ACTIONS(2333), + [sym__block_close] = ACTIONS(2333), + [sym_block_continuation] = ACTIONS(2491), + [sym__block_quote_start] = ACTIONS(2333), + [sym_atx_h1_marker] = ACTIONS(2333), + [sym_atx_h2_marker] = ACTIONS(2333), + [sym_atx_h3_marker] = ACTIONS(2333), + [sym_atx_h4_marker] = ACTIONS(2333), + [sym_atx_h5_marker] = ACTIONS(2333), + [sym_atx_h6_marker] = ACTIONS(2333), + [sym__thematic_break] = ACTIONS(2333), + [sym__list_marker_minus] = ACTIONS(2333), + [sym__list_marker_plus] = ACTIONS(2333), + [sym__list_marker_star] = ACTIONS(2333), + [sym__list_marker_parenthesis] = ACTIONS(2333), + [sym__list_marker_dot] = ACTIONS(2333), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_example] = ACTIONS(2333), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2333), + [sym__fenced_code_block_start_backtick] = ACTIONS(2333), + [sym_minus_metadata] = ACTIONS(2333), + [sym__pipe_table_start] = ACTIONS(2333), + [sym__fenced_div_start] = ACTIONS(2333), + [sym_ref_id_specifier] = ACTIONS(2333), + [sym__code_span_start] = ACTIONS(2333), + [sym__html_comment] = ACTIONS(2333), + [sym__autolink] = ACTIONS(2333), + [sym__highlight_span_start] = ACTIONS(2333), + [sym__insert_span_start] = ACTIONS(2333), + [sym__delete_span_start] = ACTIONS(2333), + [sym__edit_comment_span_start] = ACTIONS(2333), + [sym__single_quote_span_open] = ACTIONS(2333), + [sym__double_quote_span_open] = ACTIONS(2333), + [sym__shortcode_open_escaped] = ACTIONS(2333), + [sym__shortcode_open] = ACTIONS(2333), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2333), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2333), + [sym__cite_author_in_text] = ACTIONS(2333), + [sym__cite_suppress_author] = ACTIONS(2333), + [sym__strikeout_open] = ACTIONS(2333), + [sym__subscript_open] = ACTIONS(2333), + [sym__superscript_open] = ACTIONS(2333), + [sym__inline_note_start_token] = ACTIONS(2333), + [sym__strong_emphasis_open_star] = ACTIONS(2333), + [sym__strong_emphasis_open_underscore] = ACTIONS(2333), + [sym__emphasis_open_star] = ACTIONS(2333), + [sym__emphasis_open_underscore] = ACTIONS(2333), + [sym_inline_note_reference] = ACTIONS(2333), + [sym_html_element] = ACTIONS(2333), + [sym__pandoc_line_break] = ACTIONS(2333), }, [STATE(228)] = { - [sym__atx_heading_content] = STATE(2743), - [sym__inlines] = STATE(2743), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(374), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(181), - [sym__eof] = ACTIONS(2605), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [sym_pipe_table_cell] = STATE(2723), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2493), + [sym__line_ending] = ACTIONS(2495), + [sym__eof] = ACTIONS(2495), + [sym__pipe_table_line_ending] = ACTIONS(2495), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2497), + [sym__pandoc_line_break] = ACTIONS(2011), }, [STATE(229)] = { - [anon_sym_COLON] = ACTIONS(2607), - [sym_entity_reference] = ACTIONS(2607), - [sym_numeric_character_reference] = ACTIONS(2607), - [anon_sym_LBRACK] = ACTIONS(2607), - [anon_sym_BANG_LBRACK] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [aux_sym_pandoc_str_token1] = ACTIONS(2609), - [anon_sym_PIPE] = ACTIONS(2607), - [aux_sym__prose_punctuation_token1] = ACTIONS(2609), - [sym__line_ending] = ACTIONS(2607), - [sym__soft_line_ending] = ACTIONS(2607), - [sym__block_close] = ACTIONS(2607), - [sym_block_continuation] = ACTIONS(2611), - [sym__block_quote_start] = ACTIONS(2607), - [sym_atx_h1_marker] = ACTIONS(2607), - [sym_atx_h2_marker] = ACTIONS(2607), - [sym_atx_h3_marker] = ACTIONS(2607), - [sym_atx_h4_marker] = ACTIONS(2607), - [sym_atx_h5_marker] = ACTIONS(2607), - [sym_atx_h6_marker] = ACTIONS(2607), - [sym__thematic_break] = ACTIONS(2607), - [sym__list_marker_minus] = ACTIONS(2607), - [sym__list_marker_plus] = ACTIONS(2607), - [sym__list_marker_star] = ACTIONS(2607), - [sym__list_marker_parenthesis] = ACTIONS(2607), - [sym__list_marker_dot] = ACTIONS(2607), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_example] = ACTIONS(2607), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2607), - [sym__fenced_code_block_start_backtick] = ACTIONS(2607), - [sym_minus_metadata] = ACTIONS(2607), - [sym__pipe_table_start] = ACTIONS(2607), - [sym__fenced_div_start] = ACTIONS(2607), - [sym__fenced_div_end] = ACTIONS(2607), - [sym_ref_id_specifier] = ACTIONS(2607), - [sym__code_span_start] = ACTIONS(2607), - [sym__html_comment] = ACTIONS(2607), - [sym__autolink] = ACTIONS(2607), - [sym__highlight_span_start] = ACTIONS(2607), - [sym__insert_span_start] = ACTIONS(2607), - [sym__delete_span_start] = ACTIONS(2607), - [sym__edit_comment_span_start] = ACTIONS(2607), - [sym__single_quote_span_open] = ACTIONS(2607), - [sym__double_quote_span_open] = ACTIONS(2607), - [sym__shortcode_open_escaped] = ACTIONS(2607), - [sym__shortcode_open] = ACTIONS(2607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2607), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2607), - [sym__cite_author_in_text] = ACTIONS(2607), - [sym__cite_suppress_author] = ACTIONS(2607), - [sym__strikeout_open] = ACTIONS(2607), - [sym__subscript_open] = ACTIONS(2607), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2607), - [sym__strong_emphasis_open_star] = ACTIONS(2607), - [sym__strong_emphasis_open_underscore] = ACTIONS(2607), - [sym__emphasis_open_star] = ACTIONS(2607), - [sym__emphasis_open_underscore] = ACTIONS(2607), - [sym_inline_note_reference] = ACTIONS(2607), - [sym_html_element] = ACTIONS(2607), - [sym__pandoc_line_break] = ACTIONS(2607), + [sym_pipe_table_cell] = STATE(2746), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym_pipe_table_row_repeat1] = STATE(232), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2499), + [sym__line_ending] = ACTIONS(2501), + [sym__eof] = ACTIONS(2501), + [sym__pipe_table_line_ending] = ACTIONS(2501), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pandoc_line_break] = ACTIONS(2011), }, [STATE(230)] = { - [sym__atx_heading_content] = STATE(2803), - [sym__inlines] = STATE(2803), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(474), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(25), - [sym__eof] = ACTIONS(2613), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [sym_pipe_table_cell] = STATE(2746), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym_pipe_table_row_repeat1] = STATE(242), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2503), + [sym__line_ending] = ACTIONS(2505), + [sym__eof] = ACTIONS(2505), + [sym__pipe_table_line_ending] = ACTIONS(2505), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pandoc_line_break] = ACTIONS(2011), }, [STATE(231)] = { - [anon_sym_COLON] = ACTIONS(2615), - [sym_entity_reference] = ACTIONS(2615), - [sym_numeric_character_reference] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_BANG_LBRACK] = ACTIONS(2615), - [anon_sym_DOLLAR] = ACTIONS(2617), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [aux_sym_pandoc_str_token1] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2615), - [aux_sym__prose_punctuation_token1] = ACTIONS(2617), - [sym__line_ending] = ACTIONS(2615), - [sym__soft_line_ending] = ACTIONS(2615), - [sym__block_close] = ACTIONS(2615), - [sym_block_continuation] = ACTIONS(2619), - [sym__block_quote_start] = ACTIONS(2615), - [sym_atx_h1_marker] = ACTIONS(2615), - [sym_atx_h2_marker] = ACTIONS(2615), - [sym_atx_h3_marker] = ACTIONS(2615), - [sym_atx_h4_marker] = ACTIONS(2615), - [sym_atx_h5_marker] = ACTIONS(2615), - [sym_atx_h6_marker] = ACTIONS(2615), - [sym__thematic_break] = ACTIONS(2615), - [sym__list_marker_minus] = ACTIONS(2615), - [sym__list_marker_plus] = ACTIONS(2615), - [sym__list_marker_star] = ACTIONS(2615), - [sym__list_marker_parenthesis] = ACTIONS(2615), - [sym__list_marker_dot] = ACTIONS(2615), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_example] = ACTIONS(2615), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2615), - [sym__fenced_code_block_start_backtick] = ACTIONS(2615), - [sym_minus_metadata] = ACTIONS(2615), - [sym__pipe_table_start] = ACTIONS(2615), - [sym__fenced_div_start] = ACTIONS(2615), - [sym__fenced_div_end] = ACTIONS(2615), - [sym_ref_id_specifier] = ACTIONS(2615), - [sym__code_span_start] = ACTIONS(2615), - [sym__html_comment] = ACTIONS(2615), - [sym__autolink] = ACTIONS(2615), - [sym__highlight_span_start] = ACTIONS(2615), - [sym__insert_span_start] = ACTIONS(2615), - [sym__delete_span_start] = ACTIONS(2615), - [sym__edit_comment_span_start] = ACTIONS(2615), - [sym__single_quote_span_open] = ACTIONS(2615), - [sym__double_quote_span_open] = ACTIONS(2615), - [sym__shortcode_open_escaped] = ACTIONS(2615), - [sym__shortcode_open] = ACTIONS(2615), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2615), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2615), - [sym__cite_author_in_text] = ACTIONS(2615), - [sym__cite_suppress_author] = ACTIONS(2615), - [sym__strikeout_open] = ACTIONS(2615), - [sym__subscript_open] = ACTIONS(2615), - [sym__superscript_open] = ACTIONS(2615), - [sym__inline_note_start_token] = ACTIONS(2615), - [sym__strong_emphasis_open_star] = ACTIONS(2615), - [sym__strong_emphasis_open_underscore] = ACTIONS(2615), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2615), - [sym_inline_note_reference] = ACTIONS(2615), - [sym_html_element] = ACTIONS(2615), - [sym__pandoc_line_break] = ACTIONS(2615), + [sym_pipe_table_cell] = STATE(2723), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2493), + [sym__line_ending] = ACTIONS(2501), + [sym__eof] = ACTIONS(2501), + [sym__pipe_table_line_ending] = ACTIONS(2501), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2497), + [sym__pandoc_line_break] = ACTIONS(2011), }, [STATE(232)] = { - [anon_sym_COLON] = ACTIONS(2621), - [sym_entity_reference] = ACTIONS(2621), - [sym_numeric_character_reference] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_BANG_LBRACK] = ACTIONS(2621), - [anon_sym_DOLLAR] = ACTIONS(2623), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [aux_sym_pandoc_str_token1] = ACTIONS(2623), - [anon_sym_PIPE] = ACTIONS(2621), - [aux_sym__prose_punctuation_token1] = ACTIONS(2623), - [sym__line_ending] = ACTIONS(2621), - [sym__soft_line_ending] = ACTIONS(2621), - [sym__block_close] = ACTIONS(2621), - [sym_block_continuation] = ACTIONS(2625), - [sym__block_quote_start] = ACTIONS(2621), - [sym_atx_h1_marker] = ACTIONS(2621), - [sym_atx_h2_marker] = ACTIONS(2621), - [sym_atx_h3_marker] = ACTIONS(2621), - [sym_atx_h4_marker] = ACTIONS(2621), - [sym_atx_h5_marker] = ACTIONS(2621), - [sym_atx_h6_marker] = ACTIONS(2621), - [sym__thematic_break] = ACTIONS(2621), - [sym__list_marker_minus] = ACTIONS(2621), - [sym__list_marker_plus] = ACTIONS(2621), - [sym__list_marker_star] = ACTIONS(2621), - [sym__list_marker_parenthesis] = ACTIONS(2621), - [sym__list_marker_dot] = ACTIONS(2621), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_example] = ACTIONS(2621), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2621), - [sym__fenced_code_block_start_backtick] = ACTIONS(2621), - [sym_minus_metadata] = ACTIONS(2621), - [sym__pipe_table_start] = ACTIONS(2621), - [sym__fenced_div_start] = ACTIONS(2621), - [sym__fenced_div_end] = ACTIONS(2621), - [sym_ref_id_specifier] = ACTIONS(2621), - [sym__code_span_start] = ACTIONS(2621), - [sym__html_comment] = ACTIONS(2621), - [sym__autolink] = ACTIONS(2621), - [sym__highlight_span_start] = ACTIONS(2621), - [sym__insert_span_start] = ACTIONS(2621), - [sym__delete_span_start] = ACTIONS(2621), - [sym__edit_comment_span_start] = ACTIONS(2621), - [sym__single_quote_span_open] = ACTIONS(2621), - [sym__double_quote_span_open] = ACTIONS(2621), - [sym__shortcode_open_escaped] = ACTIONS(2621), - [sym__shortcode_open] = ACTIONS(2621), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2621), - [sym__cite_author_in_text] = ACTIONS(2621), - [sym__cite_suppress_author] = ACTIONS(2621), - [sym__strikeout_open] = ACTIONS(2621), - [sym__subscript_open] = ACTIONS(2621), - [sym__superscript_open] = ACTIONS(2621), - [sym__inline_note_start_token] = ACTIONS(2621), - [sym__strong_emphasis_open_star] = ACTIONS(2621), - [sym__strong_emphasis_open_underscore] = ACTIONS(2621), - [sym__emphasis_open_star] = ACTIONS(2621), - [sym__emphasis_open_underscore] = ACTIONS(2621), - [sym_inline_note_reference] = ACTIONS(2621), - [sym_html_element] = ACTIONS(2621), - [sym__pandoc_line_break] = ACTIONS(2621), + [sym_pipe_table_cell] = STATE(3316), + [sym_pandoc_span] = STATE(740), + [sym_pandoc_image] = STATE(740), + [sym_pandoc_math] = STATE(740), + [sym_pandoc_display_math] = STATE(740), + [sym_pandoc_code_span] = STATE(740), + [sym_pandoc_single_quote] = STATE(740), + [sym_pandoc_double_quote] = STATE(740), + [sym_insert] = STATE(740), + [sym_delete] = STATE(740), + [sym_edit_comment] = STATE(740), + [sym_highlight] = STATE(740), + [sym__pandoc_attr_specifier] = STATE(740), + [sym__line_with_maybe_spaces] = STATE(3259), + [sym__inline_element] = STATE(740), + [sym_shortcode_escaped] = STATE(740), + [sym_shortcode] = STATE(740), + [sym_citation] = STATE(740), + [sym_inline_note] = STATE(740), + [sym_pandoc_superscript] = STATE(740), + [sym_pandoc_subscript] = STATE(740), + [sym_pandoc_strikeout] = STATE(740), + [sym_pandoc_emph] = STATE(740), + [sym_pandoc_strong] = STATE(740), + [sym_pandoc_str] = STATE(740), + [aux_sym_pipe_table_row_repeat1] = STATE(232), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(740), + [sym_entity_reference] = ACTIONS(2507), + [sym_numeric_character_reference] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_BANG_LBRACK] = ACTIONS(2513), + [anon_sym_DOLLAR] = ACTIONS(2516), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2522), + [aux_sym_pandoc_str_token1] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2528), + [sym__whitespace] = ACTIONS(2531), + [sym__line_ending] = ACTIONS(2534), + [sym__eof] = ACTIONS(2534), + [sym__pipe_table_line_ending] = ACTIONS(2534), + [sym__code_span_start] = ACTIONS(2536), + [sym__html_comment] = ACTIONS(2507), + [sym__autolink] = ACTIONS(2507), + [sym__highlight_span_start] = ACTIONS(2539), + [sym__insert_span_start] = ACTIONS(2542), + [sym__delete_span_start] = ACTIONS(2545), + [sym__edit_comment_span_start] = ACTIONS(2548), + [sym__single_quote_span_open] = ACTIONS(2551), + [sym__double_quote_span_open] = ACTIONS(2554), + [sym__shortcode_open_escaped] = ACTIONS(2557), + [sym__shortcode_open] = ACTIONS(2560), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2563), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2566), + [sym__cite_author_in_text] = ACTIONS(2569), + [sym__cite_suppress_author] = ACTIONS(2572), + [sym__strikeout_open] = ACTIONS(2575), + [sym__subscript_open] = ACTIONS(2578), + [sym__superscript_open] = ACTIONS(2581), + [sym__inline_note_start_token] = ACTIONS(2584), + [sym__strong_emphasis_open_star] = ACTIONS(2587), + [sym__strong_emphasis_open_underscore] = ACTIONS(2590), + [sym__emphasis_open_star] = ACTIONS(2593), + [sym__emphasis_open_underscore] = ACTIONS(2596), + [sym_inline_note_reference] = ACTIONS(2507), + [sym_html_element] = ACTIONS(2507), + [sym__pandoc_line_break] = ACTIONS(2507), }, [STATE(233)] = { - [anon_sym_COLON] = ACTIONS(2627), - [sym_entity_reference] = ACTIONS(2627), - [sym_numeric_character_reference] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_BANG_LBRACK] = ACTIONS(2627), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2627), - [aux_sym_pandoc_str_token1] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2627), - [aux_sym__prose_punctuation_token1] = ACTIONS(2629), - [sym__line_ending] = ACTIONS(2627), - [sym__soft_line_ending] = ACTIONS(2627), - [sym__block_close] = ACTIONS(2627), - [sym_block_continuation] = ACTIONS(2631), - [sym__block_quote_start] = ACTIONS(2627), - [sym_atx_h1_marker] = ACTIONS(2627), - [sym_atx_h2_marker] = ACTIONS(2627), - [sym_atx_h3_marker] = ACTIONS(2627), - [sym_atx_h4_marker] = ACTIONS(2627), - [sym_atx_h5_marker] = ACTIONS(2627), - [sym_atx_h6_marker] = ACTIONS(2627), - [sym__thematic_break] = ACTIONS(2627), - [sym__list_marker_minus] = ACTIONS(2627), - [sym__list_marker_plus] = ACTIONS(2627), - [sym__list_marker_star] = ACTIONS(2627), - [sym__list_marker_parenthesis] = ACTIONS(2627), - [sym__list_marker_dot] = ACTIONS(2627), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_example] = ACTIONS(2627), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2627), - [sym__fenced_code_block_start_backtick] = ACTIONS(2627), - [sym_minus_metadata] = ACTIONS(2627), - [sym__pipe_table_start] = ACTIONS(2627), - [sym__fenced_div_start] = ACTIONS(2627), - [sym__fenced_div_end] = ACTIONS(2627), - [sym_ref_id_specifier] = ACTIONS(2627), - [sym__code_span_start] = ACTIONS(2627), - [sym__html_comment] = ACTIONS(2627), - [sym__autolink] = ACTIONS(2627), - [sym__highlight_span_start] = ACTIONS(2627), - [sym__insert_span_start] = ACTIONS(2627), - [sym__delete_span_start] = ACTIONS(2627), - [sym__edit_comment_span_start] = ACTIONS(2627), - [sym__single_quote_span_open] = ACTIONS(2627), - [sym__double_quote_span_open] = ACTIONS(2627), - [sym__shortcode_open_escaped] = ACTIONS(2627), - [sym__shortcode_open] = ACTIONS(2627), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2627), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2627), - [sym__cite_author_in_text] = ACTIONS(2627), - [sym__cite_suppress_author] = ACTIONS(2627), - [sym__strikeout_open] = ACTIONS(2627), - [sym__subscript_open] = ACTIONS(2627), - [sym__superscript_open] = ACTIONS(2627), - [sym__inline_note_start_token] = ACTIONS(2627), - [sym__strong_emphasis_open_star] = ACTIONS(2627), - [sym__strong_emphasis_open_underscore] = ACTIONS(2627), - [sym__emphasis_open_star] = ACTIONS(2627), - [sym__emphasis_open_underscore] = ACTIONS(2627), - [sym_inline_note_reference] = ACTIONS(2627), - [sym_html_element] = ACTIONS(2627), - [sym__pandoc_line_break] = ACTIONS(2627), + [anon_sym_COLON] = ACTIONS(2353), + [sym_entity_reference] = ACTIONS(2353), + [sym_numeric_character_reference] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_BANG_LBRACK] = ACTIONS(2353), + [anon_sym_DOLLAR] = ACTIONS(2355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2353), + [aux_sym_pandoc_str_token1] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2353), + [sym__whitespace] = ACTIONS(2353), + [sym__line_ending] = ACTIONS(2353), + [sym__soft_line_ending] = ACTIONS(2353), + [sym__block_close] = ACTIONS(2353), + [sym_block_continuation] = ACTIONS(2599), + [sym__block_quote_start] = ACTIONS(2353), + [sym_atx_h1_marker] = ACTIONS(2353), + [sym_atx_h2_marker] = ACTIONS(2353), + [sym_atx_h3_marker] = ACTIONS(2353), + [sym_atx_h4_marker] = ACTIONS(2353), + [sym_atx_h5_marker] = ACTIONS(2353), + [sym_atx_h6_marker] = ACTIONS(2353), + [sym__thematic_break] = ACTIONS(2353), + [sym__list_marker_minus] = ACTIONS(2353), + [sym__list_marker_plus] = ACTIONS(2353), + [sym__list_marker_star] = ACTIONS(2353), + [sym__list_marker_parenthesis] = ACTIONS(2353), + [sym__list_marker_dot] = ACTIONS(2353), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_example] = ACTIONS(2353), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2353), + [sym__fenced_code_block_start_backtick] = ACTIONS(2353), + [sym_minus_metadata] = ACTIONS(2353), + [sym__pipe_table_start] = ACTIONS(2353), + [sym__fenced_div_start] = ACTIONS(2353), + [sym_ref_id_specifier] = ACTIONS(2353), + [sym__code_span_start] = ACTIONS(2353), + [sym__html_comment] = ACTIONS(2353), + [sym__autolink] = ACTIONS(2353), + [sym__highlight_span_start] = ACTIONS(2353), + [sym__insert_span_start] = ACTIONS(2353), + [sym__delete_span_start] = ACTIONS(2353), + [sym__edit_comment_span_start] = ACTIONS(2353), + [sym__single_quote_span_open] = ACTIONS(2353), + [sym__double_quote_span_open] = ACTIONS(2353), + [sym__shortcode_open_escaped] = ACTIONS(2353), + [sym__shortcode_open] = ACTIONS(2353), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2353), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2353), + [sym__cite_author_in_text] = ACTIONS(2353), + [sym__cite_suppress_author] = ACTIONS(2353), + [sym__strikeout_open] = ACTIONS(2353), + [sym__subscript_open] = ACTIONS(2353), + [sym__superscript_open] = ACTIONS(2353), + [sym__inline_note_start_token] = ACTIONS(2353), + [sym__strong_emphasis_open_star] = ACTIONS(2353), + [sym__strong_emphasis_open_underscore] = ACTIONS(2353), + [sym__emphasis_open_star] = ACTIONS(2353), + [sym__emphasis_open_underscore] = ACTIONS(2353), + [sym_inline_note_reference] = ACTIONS(2353), + [sym_html_element] = ACTIONS(2353), + [sym__pandoc_line_break] = ACTIONS(2353), }, [STATE(234)] = { - [anon_sym_COLON] = ACTIONS(2633), - [sym_entity_reference] = ACTIONS(2633), - [sym_numeric_character_reference] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_BANG_LBRACK] = ACTIONS(2633), - [anon_sym_DOLLAR] = ACTIONS(2635), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [aux_sym_pandoc_str_token1] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2633), - [aux_sym__prose_punctuation_token1] = ACTIONS(2635), - [sym__line_ending] = ACTIONS(2633), - [sym__soft_line_ending] = ACTIONS(2633), - [sym__block_close] = ACTIONS(2633), - [sym_block_continuation] = ACTIONS(2637), - [sym__block_quote_start] = ACTIONS(2633), - [sym_atx_h1_marker] = ACTIONS(2633), - [sym_atx_h2_marker] = ACTIONS(2633), - [sym_atx_h3_marker] = ACTIONS(2633), - [sym_atx_h4_marker] = ACTIONS(2633), - [sym_atx_h5_marker] = ACTIONS(2633), - [sym_atx_h6_marker] = ACTIONS(2633), - [sym__thematic_break] = ACTIONS(2633), - [sym__list_marker_minus] = ACTIONS(2633), - [sym__list_marker_plus] = ACTIONS(2633), - [sym__list_marker_star] = ACTIONS(2633), - [sym__list_marker_parenthesis] = ACTIONS(2633), - [sym__list_marker_dot] = ACTIONS(2633), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_example] = ACTIONS(2633), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2633), - [sym__fenced_code_block_start_backtick] = ACTIONS(2633), - [sym_minus_metadata] = ACTIONS(2633), - [sym__pipe_table_start] = ACTIONS(2633), - [sym__fenced_div_start] = ACTIONS(2633), - [sym__fenced_div_end] = ACTIONS(2633), - [sym_ref_id_specifier] = ACTIONS(2633), - [sym__code_span_start] = ACTIONS(2633), - [sym__html_comment] = ACTIONS(2633), - [sym__autolink] = ACTIONS(2633), - [sym__highlight_span_start] = ACTIONS(2633), - [sym__insert_span_start] = ACTIONS(2633), - [sym__delete_span_start] = ACTIONS(2633), - [sym__edit_comment_span_start] = ACTIONS(2633), - [sym__single_quote_span_open] = ACTIONS(2633), - [sym__double_quote_span_open] = ACTIONS(2633), - [sym__shortcode_open_escaped] = ACTIONS(2633), - [sym__shortcode_open] = ACTIONS(2633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2633), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2633), - [sym__cite_author_in_text] = ACTIONS(2633), - [sym__cite_suppress_author] = ACTIONS(2633), - [sym__strikeout_open] = ACTIONS(2633), - [sym__subscript_open] = ACTIONS(2633), - [sym__superscript_open] = ACTIONS(2633), - [sym__inline_note_start_token] = ACTIONS(2633), - [sym__strong_emphasis_open_star] = ACTIONS(2633), - [sym__strong_emphasis_open_underscore] = ACTIONS(2633), - [sym__emphasis_open_star] = ACTIONS(2633), - [sym__emphasis_open_underscore] = ACTIONS(2633), - [sym_inline_note_reference] = ACTIONS(2633), - [sym_html_element] = ACTIONS(2633), - [sym__pandoc_line_break] = ACTIONS(2633), + [anon_sym_COLON] = ACTIONS(2359), + [sym_entity_reference] = ACTIONS(2359), + [sym_numeric_character_reference] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_BANG_LBRACK] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [aux_sym_pandoc_str_token1] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2359), + [sym__line_ending] = ACTIONS(2359), + [sym__soft_line_ending] = ACTIONS(2359), + [sym__block_close] = ACTIONS(2359), + [sym_block_continuation] = ACTIONS(2601), + [sym__block_quote_start] = ACTIONS(2359), + [sym_atx_h1_marker] = ACTIONS(2359), + [sym_atx_h2_marker] = ACTIONS(2359), + [sym_atx_h3_marker] = ACTIONS(2359), + [sym_atx_h4_marker] = ACTIONS(2359), + [sym_atx_h5_marker] = ACTIONS(2359), + [sym_atx_h6_marker] = ACTIONS(2359), + [sym__thematic_break] = ACTIONS(2359), + [sym__list_marker_minus] = ACTIONS(2359), + [sym__list_marker_plus] = ACTIONS(2359), + [sym__list_marker_star] = ACTIONS(2359), + [sym__list_marker_parenthesis] = ACTIONS(2359), + [sym__list_marker_dot] = ACTIONS(2359), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_example] = ACTIONS(2359), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2359), + [sym__fenced_code_block_start_backtick] = ACTIONS(2359), + [sym_minus_metadata] = ACTIONS(2359), + [sym__pipe_table_start] = ACTIONS(2359), + [sym__fenced_div_start] = ACTIONS(2359), + [sym_ref_id_specifier] = ACTIONS(2359), + [sym__code_span_start] = ACTIONS(2359), + [sym__html_comment] = ACTIONS(2359), + [sym__autolink] = ACTIONS(2359), + [sym__highlight_span_start] = ACTIONS(2359), + [sym__insert_span_start] = ACTIONS(2359), + [sym__delete_span_start] = ACTIONS(2359), + [sym__edit_comment_span_start] = ACTIONS(2359), + [sym__single_quote_span_open] = ACTIONS(2359), + [sym__double_quote_span_open] = ACTIONS(2359), + [sym__shortcode_open_escaped] = ACTIONS(2359), + [sym__shortcode_open] = ACTIONS(2359), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2359), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2359), + [sym__cite_author_in_text] = ACTIONS(2359), + [sym__cite_suppress_author] = ACTIONS(2359), + [sym__strikeout_open] = ACTIONS(2359), + [sym__subscript_open] = ACTIONS(2359), + [sym__superscript_open] = ACTIONS(2359), + [sym__inline_note_start_token] = ACTIONS(2359), + [sym__strong_emphasis_open_star] = ACTIONS(2359), + [sym__strong_emphasis_open_underscore] = ACTIONS(2359), + [sym__emphasis_open_star] = ACTIONS(2359), + [sym__emphasis_open_underscore] = ACTIONS(2359), + [sym_inline_note_reference] = ACTIONS(2359), + [sym_html_element] = ACTIONS(2359), + [sym__pandoc_line_break] = ACTIONS(2359), }, [STATE(235)] = { - [anon_sym_COLON] = ACTIONS(2639), - [sym_entity_reference] = ACTIONS(2639), - [sym_numeric_character_reference] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_BANG_LBRACK] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2641), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2639), - [aux_sym_pandoc_str_token1] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2639), - [aux_sym__prose_punctuation_token1] = ACTIONS(2641), - [sym__line_ending] = ACTIONS(2639), - [sym__soft_line_ending] = ACTIONS(2639), - [sym__block_close] = ACTIONS(2639), - [sym_block_continuation] = ACTIONS(2643), - [sym__block_quote_start] = ACTIONS(2639), - [sym_atx_h1_marker] = ACTIONS(2639), - [sym_atx_h2_marker] = ACTIONS(2639), - [sym_atx_h3_marker] = ACTIONS(2639), - [sym_atx_h4_marker] = ACTIONS(2639), - [sym_atx_h5_marker] = ACTIONS(2639), - [sym_atx_h6_marker] = ACTIONS(2639), - [sym__thematic_break] = ACTIONS(2639), - [sym__list_marker_minus] = ACTIONS(2639), - [sym__list_marker_plus] = ACTIONS(2639), - [sym__list_marker_star] = ACTIONS(2639), - [sym__list_marker_parenthesis] = ACTIONS(2639), - [sym__list_marker_dot] = ACTIONS(2639), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_example] = ACTIONS(2639), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2639), - [sym__fenced_code_block_start_backtick] = ACTIONS(2639), - [sym_minus_metadata] = ACTIONS(2639), - [sym__pipe_table_start] = ACTIONS(2639), - [sym__fenced_div_start] = ACTIONS(2639), - [sym__fenced_div_end] = ACTIONS(2639), - [sym_ref_id_specifier] = ACTIONS(2639), - [sym__code_span_start] = ACTIONS(2639), - [sym__html_comment] = ACTIONS(2639), - [sym__autolink] = ACTIONS(2639), - [sym__highlight_span_start] = ACTIONS(2639), - [sym__insert_span_start] = ACTIONS(2639), - [sym__delete_span_start] = ACTIONS(2639), - [sym__edit_comment_span_start] = ACTIONS(2639), - [sym__single_quote_span_open] = ACTIONS(2639), - [sym__double_quote_span_open] = ACTIONS(2639), - [sym__shortcode_open_escaped] = ACTIONS(2639), - [sym__shortcode_open] = ACTIONS(2639), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2639), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2639), - [sym__cite_author_in_text] = ACTIONS(2639), - [sym__cite_suppress_author] = ACTIONS(2639), - [sym__strikeout_open] = ACTIONS(2639), - [sym__subscript_open] = ACTIONS(2639), - [sym__superscript_open] = ACTIONS(2639), - [sym__inline_note_start_token] = ACTIONS(2639), - [sym__strong_emphasis_open_star] = ACTIONS(2639), - [sym__strong_emphasis_open_underscore] = ACTIONS(2639), - [sym__emphasis_open_star] = ACTIONS(2639), - [sym__emphasis_open_underscore] = ACTIONS(2639), - [sym_inline_note_reference] = ACTIONS(2639), - [sym_html_element] = ACTIONS(2639), - [sym__pandoc_line_break] = ACTIONS(2639), + [anon_sym_COLON] = ACTIONS(2425), + [sym_entity_reference] = ACTIONS(2425), + [sym_numeric_character_reference] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_BANG_LBRACK] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2425), + [aux_sym_pandoc_str_token1] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2425), + [sym__whitespace] = ACTIONS(2425), + [sym__line_ending] = ACTIONS(2425), + [sym__soft_line_ending] = ACTIONS(2425), + [sym__block_close] = ACTIONS(2425), + [sym_block_continuation] = ACTIONS(2603), + [sym__block_quote_start] = ACTIONS(2425), + [sym_atx_h1_marker] = ACTIONS(2425), + [sym_atx_h2_marker] = ACTIONS(2425), + [sym_atx_h3_marker] = ACTIONS(2425), + [sym_atx_h4_marker] = ACTIONS(2425), + [sym_atx_h5_marker] = ACTIONS(2425), + [sym_atx_h6_marker] = ACTIONS(2425), + [sym__thematic_break] = ACTIONS(2425), + [sym__list_marker_minus] = ACTIONS(2425), + [sym__list_marker_plus] = ACTIONS(2425), + [sym__list_marker_star] = ACTIONS(2425), + [sym__list_marker_parenthesis] = ACTIONS(2425), + [sym__list_marker_dot] = ACTIONS(2425), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_example] = ACTIONS(2425), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2425), + [sym__fenced_code_block_start_backtick] = ACTIONS(2425), + [sym_minus_metadata] = ACTIONS(2425), + [sym__pipe_table_start] = ACTIONS(2425), + [sym__fenced_div_start] = ACTIONS(2425), + [sym_ref_id_specifier] = ACTIONS(2425), + [sym__code_span_start] = ACTIONS(2425), + [sym__html_comment] = ACTIONS(2425), + [sym__autolink] = ACTIONS(2425), + [sym__highlight_span_start] = ACTIONS(2425), + [sym__insert_span_start] = ACTIONS(2425), + [sym__delete_span_start] = ACTIONS(2425), + [sym__edit_comment_span_start] = ACTIONS(2425), + [sym__single_quote_span_open] = ACTIONS(2425), + [sym__double_quote_span_open] = ACTIONS(2425), + [sym__shortcode_open_escaped] = ACTIONS(2425), + [sym__shortcode_open] = ACTIONS(2425), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2425), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2425), + [sym__cite_author_in_text] = ACTIONS(2425), + [sym__cite_suppress_author] = ACTIONS(2425), + [sym__strikeout_open] = ACTIONS(2425), + [sym__subscript_open] = ACTIONS(2425), + [sym__superscript_open] = ACTIONS(2425), + [sym__inline_note_start_token] = ACTIONS(2425), + [sym__strong_emphasis_open_star] = ACTIONS(2425), + [sym__strong_emphasis_open_underscore] = ACTIONS(2425), + [sym__emphasis_open_star] = ACTIONS(2425), + [sym__emphasis_open_underscore] = ACTIONS(2425), + [sym_inline_note_reference] = ACTIONS(2425), + [sym_html_element] = ACTIONS(2425), + [sym__pandoc_line_break] = ACTIONS(2425), }, [STATE(236)] = { + [anon_sym_COLON] = ACTIONS(2457), + [sym_entity_reference] = ACTIONS(2457), + [sym_numeric_character_reference] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_BANG_LBRACK] = ACTIONS(2457), + [anon_sym_DOLLAR] = ACTIONS(2459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [aux_sym_pandoc_str_token1] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2457), + [sym__whitespace] = ACTIONS(2457), + [sym__line_ending] = ACTIONS(2457), + [sym__soft_line_ending] = ACTIONS(2457), + [sym__block_close] = ACTIONS(2457), + [sym_block_continuation] = ACTIONS(2605), + [sym__block_quote_start] = ACTIONS(2457), + [sym_atx_h1_marker] = ACTIONS(2457), + [sym_atx_h2_marker] = ACTIONS(2457), + [sym_atx_h3_marker] = ACTIONS(2457), + [sym_atx_h4_marker] = ACTIONS(2457), + [sym_atx_h5_marker] = ACTIONS(2457), + [sym_atx_h6_marker] = ACTIONS(2457), + [sym__thematic_break] = ACTIONS(2457), + [sym__list_marker_minus] = ACTIONS(2457), + [sym__list_marker_plus] = ACTIONS(2457), + [sym__list_marker_star] = ACTIONS(2457), + [sym__list_marker_parenthesis] = ACTIONS(2457), + [sym__list_marker_dot] = ACTIONS(2457), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_example] = ACTIONS(2457), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2457), + [sym__fenced_code_block_start_backtick] = ACTIONS(2457), + [sym_minus_metadata] = ACTIONS(2457), + [sym__pipe_table_start] = ACTIONS(2457), + [sym__fenced_div_start] = ACTIONS(2457), + [sym_ref_id_specifier] = ACTIONS(2457), + [sym__code_span_start] = ACTIONS(2457), + [sym__html_comment] = ACTIONS(2457), + [sym__autolink] = ACTIONS(2457), + [sym__highlight_span_start] = ACTIONS(2457), + [sym__insert_span_start] = ACTIONS(2457), + [sym__delete_span_start] = ACTIONS(2457), + [sym__edit_comment_span_start] = ACTIONS(2457), + [sym__single_quote_span_open] = ACTIONS(2457), + [sym__double_quote_span_open] = ACTIONS(2457), + [sym__shortcode_open_escaped] = ACTIONS(2457), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2457), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2457), + [sym__cite_author_in_text] = ACTIONS(2457), + [sym__cite_suppress_author] = ACTIONS(2457), + [sym__strikeout_open] = ACTIONS(2457), + [sym__subscript_open] = ACTIONS(2457), + [sym__superscript_open] = ACTIONS(2457), + [sym__inline_note_start_token] = ACTIONS(2457), + [sym__strong_emphasis_open_star] = ACTIONS(2457), + [sym__strong_emphasis_open_underscore] = ACTIONS(2457), + [sym__emphasis_open_star] = ACTIONS(2457), + [sym__emphasis_open_underscore] = ACTIONS(2457), + [sym_inline_note_reference] = ACTIONS(2457), + [sym_html_element] = ACTIONS(2457), + [sym__pandoc_line_break] = ACTIONS(2457), + }, + [STATE(237)] = { + [anon_sym_COLON] = ACTIONS(2327), + [sym_entity_reference] = ACTIONS(2327), + [sym_numeric_character_reference] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_BANG_LBRACK] = ACTIONS(2327), + [anon_sym_DOLLAR] = ACTIONS(2329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [aux_sym_pandoc_str_token1] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2327), + [sym__whitespace] = ACTIONS(2327), + [sym__line_ending] = ACTIONS(2327), + [sym__soft_line_ending] = ACTIONS(2327), + [sym__block_close] = ACTIONS(2327), + [sym_block_continuation] = ACTIONS(2607), + [sym__block_quote_start] = ACTIONS(2327), + [sym_atx_h1_marker] = ACTIONS(2327), + [sym_atx_h2_marker] = ACTIONS(2327), + [sym_atx_h3_marker] = ACTIONS(2327), + [sym_atx_h4_marker] = ACTIONS(2327), + [sym_atx_h5_marker] = ACTIONS(2327), + [sym_atx_h6_marker] = ACTIONS(2327), + [sym__thematic_break] = ACTIONS(2327), + [sym__list_marker_minus] = ACTIONS(2327), + [sym__list_marker_plus] = ACTIONS(2327), + [sym__list_marker_star] = ACTIONS(2327), + [sym__list_marker_parenthesis] = ACTIONS(2327), + [sym__list_marker_dot] = ACTIONS(2327), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_example] = ACTIONS(2327), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2327), + [sym__fenced_code_block_start_backtick] = ACTIONS(2327), + [sym_minus_metadata] = ACTIONS(2327), + [sym__pipe_table_start] = ACTIONS(2327), + [sym__fenced_div_start] = ACTIONS(2327), + [sym_ref_id_specifier] = ACTIONS(2327), + [sym__code_span_start] = ACTIONS(2327), + [sym__html_comment] = ACTIONS(2327), + [sym__autolink] = ACTIONS(2327), + [sym__highlight_span_start] = ACTIONS(2327), + [sym__insert_span_start] = ACTIONS(2327), + [sym__delete_span_start] = ACTIONS(2327), + [sym__edit_comment_span_start] = ACTIONS(2327), + [sym__single_quote_span_open] = ACTIONS(2327), + [sym__double_quote_span_open] = ACTIONS(2327), + [sym__shortcode_open_escaped] = ACTIONS(2327), + [sym__shortcode_open] = ACTIONS(2327), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2327), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2327), + [sym__cite_author_in_text] = ACTIONS(2327), + [sym__cite_suppress_author] = ACTIONS(2327), + [sym__strikeout_open] = ACTIONS(2327), + [sym__subscript_open] = ACTIONS(2327), + [sym__superscript_open] = ACTIONS(2327), + [sym__inline_note_start_token] = ACTIONS(2327), + [sym__strong_emphasis_open_star] = ACTIONS(2327), + [sym__strong_emphasis_open_underscore] = ACTIONS(2327), + [sym__emphasis_open_star] = ACTIONS(2327), + [sym__emphasis_open_underscore] = ACTIONS(2327), + [sym_inline_note_reference] = ACTIONS(2327), + [sym_html_element] = ACTIONS(2327), + [sym__pandoc_line_break] = ACTIONS(2327), + }, + [STATE(238)] = { + [anon_sym_COLON] = ACTIONS(2365), + [sym_entity_reference] = ACTIONS(2365), + [sym_numeric_character_reference] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_BANG_LBRACK] = ACTIONS(2365), + [anon_sym_DOLLAR] = ACTIONS(2367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2365), + [aux_sym_pandoc_str_token1] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2365), + [sym__whitespace] = ACTIONS(2365), + [sym__line_ending] = ACTIONS(2365), + [sym__soft_line_ending] = ACTIONS(2365), + [sym__block_close] = ACTIONS(2365), + [sym_block_continuation] = ACTIONS(2609), + [sym__block_quote_start] = ACTIONS(2365), + [sym_atx_h1_marker] = ACTIONS(2365), + [sym_atx_h2_marker] = ACTIONS(2365), + [sym_atx_h3_marker] = ACTIONS(2365), + [sym_atx_h4_marker] = ACTIONS(2365), + [sym_atx_h5_marker] = ACTIONS(2365), + [sym_atx_h6_marker] = ACTIONS(2365), + [sym__thematic_break] = ACTIONS(2365), + [sym__list_marker_minus] = ACTIONS(2365), + [sym__list_marker_plus] = ACTIONS(2365), + [sym__list_marker_star] = ACTIONS(2365), + [sym__list_marker_parenthesis] = ACTIONS(2365), + [sym__list_marker_dot] = ACTIONS(2365), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_example] = ACTIONS(2365), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2365), + [sym__fenced_code_block_start_backtick] = ACTIONS(2365), + [sym_minus_metadata] = ACTIONS(2365), + [sym__pipe_table_start] = ACTIONS(2365), + [sym__fenced_div_start] = ACTIONS(2365), + [sym_ref_id_specifier] = ACTIONS(2365), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2365), + [sym__autolink] = ACTIONS(2365), + [sym__highlight_span_start] = ACTIONS(2365), + [sym__insert_span_start] = ACTIONS(2365), + [sym__delete_span_start] = ACTIONS(2365), + [sym__edit_comment_span_start] = ACTIONS(2365), + [sym__single_quote_span_open] = ACTIONS(2365), + [sym__double_quote_span_open] = ACTIONS(2365), + [sym__shortcode_open_escaped] = ACTIONS(2365), + [sym__shortcode_open] = ACTIONS(2365), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2365), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2365), + [sym__cite_author_in_text] = ACTIONS(2365), + [sym__cite_suppress_author] = ACTIONS(2365), + [sym__strikeout_open] = ACTIONS(2365), + [sym__subscript_open] = ACTIONS(2365), + [sym__superscript_open] = ACTIONS(2365), + [sym__inline_note_start_token] = ACTIONS(2365), + [sym__strong_emphasis_open_star] = ACTIONS(2365), + [sym__strong_emphasis_open_underscore] = ACTIONS(2365), + [sym__emphasis_open_star] = ACTIONS(2365), + [sym__emphasis_open_underscore] = ACTIONS(2365), + [sym_inline_note_reference] = ACTIONS(2365), + [sym_html_element] = ACTIONS(2365), + [sym__pandoc_line_break] = ACTIONS(2365), + }, + [STATE(239)] = { + [anon_sym_COLON] = ACTIONS(2371), + [sym_entity_reference] = ACTIONS(2371), + [sym_numeric_character_reference] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_BANG_LBRACK] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [aux_sym_pandoc_str_token1] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2371), + [sym__whitespace] = ACTIONS(2371), + [sym__line_ending] = ACTIONS(2371), + [sym__soft_line_ending] = ACTIONS(2371), + [sym__block_close] = ACTIONS(2371), + [sym_block_continuation] = ACTIONS(2611), + [sym__block_quote_start] = ACTIONS(2371), + [sym_atx_h1_marker] = ACTIONS(2371), + [sym_atx_h2_marker] = ACTIONS(2371), + [sym_atx_h3_marker] = ACTIONS(2371), + [sym_atx_h4_marker] = ACTIONS(2371), + [sym_atx_h5_marker] = ACTIONS(2371), + [sym_atx_h6_marker] = ACTIONS(2371), + [sym__thematic_break] = ACTIONS(2371), + [sym__list_marker_minus] = ACTIONS(2371), + [sym__list_marker_plus] = ACTIONS(2371), + [sym__list_marker_star] = ACTIONS(2371), + [sym__list_marker_parenthesis] = ACTIONS(2371), + [sym__list_marker_dot] = ACTIONS(2371), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_example] = ACTIONS(2371), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2371), + [sym__fenced_code_block_start_backtick] = ACTIONS(2371), + [sym_minus_metadata] = ACTIONS(2371), + [sym__pipe_table_start] = ACTIONS(2371), + [sym__fenced_div_start] = ACTIONS(2371), + [sym_ref_id_specifier] = ACTIONS(2371), + [sym__code_span_start] = ACTIONS(2371), + [sym__html_comment] = ACTIONS(2371), + [sym__autolink] = ACTIONS(2371), + [sym__highlight_span_start] = ACTIONS(2371), + [sym__insert_span_start] = ACTIONS(2371), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2371), + [sym__single_quote_span_open] = ACTIONS(2371), + [sym__double_quote_span_open] = ACTIONS(2371), + [sym__shortcode_open_escaped] = ACTIONS(2371), + [sym__shortcode_open] = ACTIONS(2371), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2371), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2371), + [sym__cite_author_in_text] = ACTIONS(2371), + [sym__cite_suppress_author] = ACTIONS(2371), + [sym__strikeout_open] = ACTIONS(2371), + [sym__subscript_open] = ACTIONS(2371), + [sym__superscript_open] = ACTIONS(2371), + [sym__inline_note_start_token] = ACTIONS(2371), + [sym__strong_emphasis_open_star] = ACTIONS(2371), + [sym__strong_emphasis_open_underscore] = ACTIONS(2371), + [sym__emphasis_open_star] = ACTIONS(2371), + [sym__emphasis_open_underscore] = ACTIONS(2371), + [sym_inline_note_reference] = ACTIONS(2371), + [sym_html_element] = ACTIONS(2371), + [sym__pandoc_line_break] = ACTIONS(2371), + }, + [STATE(240)] = { + [sym_pipe_table_cell] = STATE(2767), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2493), + [sym__line_ending] = ACTIONS(2613), + [sym__eof] = ACTIONS(2613), + [sym__pipe_table_line_ending] = ACTIONS(2613), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2497), + [sym__pandoc_line_break] = ACTIONS(2011), + }, + [STATE(241)] = { + [sym_pipe_table_cell] = STATE(2767), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2493), + [sym__line_ending] = ACTIONS(2495), + [sym__eof] = ACTIONS(2495), + [sym__pipe_table_line_ending] = ACTIONS(2495), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2497), + [sym__pandoc_line_break] = ACTIONS(2011), + }, + [STATE(242)] = { + [sym_pipe_table_cell] = STATE(2787), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym_pipe_table_row_repeat1] = STATE(232), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2615), + [sym__line_ending] = ACTIONS(2613), + [sym__eof] = ACTIONS(2613), + [sym__pipe_table_line_ending] = ACTIONS(2613), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pandoc_line_break] = ACTIONS(2011), + }, + [STATE(243)] = { + [anon_sym_COLON] = ACTIONS(2377), + [sym_entity_reference] = ACTIONS(2377), + [sym_numeric_character_reference] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_BANG_LBRACK] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [aux_sym_pandoc_str_token1] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2377), + [sym__whitespace] = ACTIONS(2377), + [sym__line_ending] = ACTIONS(2377), + [sym__soft_line_ending] = ACTIONS(2377), + [sym__block_close] = ACTIONS(2377), + [sym_block_continuation] = ACTIONS(2617), + [sym__block_quote_start] = ACTIONS(2377), + [sym_atx_h1_marker] = ACTIONS(2377), + [sym_atx_h2_marker] = ACTIONS(2377), + [sym_atx_h3_marker] = ACTIONS(2377), + [sym_atx_h4_marker] = ACTIONS(2377), + [sym_atx_h5_marker] = ACTIONS(2377), + [sym_atx_h6_marker] = ACTIONS(2377), + [sym__thematic_break] = ACTIONS(2377), + [sym__list_marker_minus] = ACTIONS(2377), + [sym__list_marker_plus] = ACTIONS(2377), + [sym__list_marker_star] = ACTIONS(2377), + [sym__list_marker_parenthesis] = ACTIONS(2377), + [sym__list_marker_dot] = ACTIONS(2377), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_example] = ACTIONS(2377), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2377), + [sym__fenced_code_block_start_backtick] = ACTIONS(2377), + [sym_minus_metadata] = ACTIONS(2377), + [sym__pipe_table_start] = ACTIONS(2377), + [sym__fenced_div_start] = ACTIONS(2377), + [sym_ref_id_specifier] = ACTIONS(2377), + [sym__code_span_start] = ACTIONS(2377), + [sym__html_comment] = ACTIONS(2377), + [sym__autolink] = ACTIONS(2377), + [sym__highlight_span_start] = ACTIONS(2377), + [sym__insert_span_start] = ACTIONS(2377), + [sym__delete_span_start] = ACTIONS(2377), + [sym__edit_comment_span_start] = ACTIONS(2377), + [sym__single_quote_span_open] = ACTIONS(2377), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2377), + [sym__shortcode_open] = ACTIONS(2377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2377), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2377), + [sym__cite_author_in_text] = ACTIONS(2377), + [sym__cite_suppress_author] = ACTIONS(2377), + [sym__strikeout_open] = ACTIONS(2377), + [sym__subscript_open] = ACTIONS(2377), + [sym__superscript_open] = ACTIONS(2377), + [sym__inline_note_start_token] = ACTIONS(2377), + [sym__strong_emphasis_open_star] = ACTIONS(2377), + [sym__strong_emphasis_open_underscore] = ACTIONS(2377), + [sym__emphasis_open_star] = ACTIONS(2377), + [sym__emphasis_open_underscore] = ACTIONS(2377), + [sym_inline_note_reference] = ACTIONS(2377), + [sym_html_element] = ACTIONS(2377), + [sym__pandoc_line_break] = ACTIONS(2377), + }, + [STATE(244)] = { + [anon_sym_COLON] = ACTIONS(2383), + [sym_entity_reference] = ACTIONS(2383), + [sym_numeric_character_reference] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_BANG_LBRACK] = ACTIONS(2383), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [aux_sym_pandoc_str_token1] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2383), + [sym__whitespace] = ACTIONS(2383), + [sym__line_ending] = ACTIONS(2383), + [sym__soft_line_ending] = ACTIONS(2383), + [sym__block_close] = ACTIONS(2383), + [sym_block_continuation] = ACTIONS(2619), + [sym__block_quote_start] = ACTIONS(2383), + [sym_atx_h1_marker] = ACTIONS(2383), + [sym_atx_h2_marker] = ACTIONS(2383), + [sym_atx_h3_marker] = ACTIONS(2383), + [sym_atx_h4_marker] = ACTIONS(2383), + [sym_atx_h5_marker] = ACTIONS(2383), + [sym_atx_h6_marker] = ACTIONS(2383), + [sym__thematic_break] = ACTIONS(2383), + [sym__list_marker_minus] = ACTIONS(2383), + [sym__list_marker_plus] = ACTIONS(2383), + [sym__list_marker_star] = ACTIONS(2383), + [sym__list_marker_parenthesis] = ACTIONS(2383), + [sym__list_marker_dot] = ACTIONS(2383), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_example] = ACTIONS(2383), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2383), + [sym__fenced_code_block_start_backtick] = ACTIONS(2383), + [sym_minus_metadata] = ACTIONS(2383), + [sym__pipe_table_start] = ACTIONS(2383), + [sym__fenced_div_start] = ACTIONS(2383), + [sym_ref_id_specifier] = ACTIONS(2383), + [sym__code_span_start] = ACTIONS(2383), + [sym__html_comment] = ACTIONS(2383), + [sym__autolink] = ACTIONS(2383), + [sym__highlight_span_start] = ACTIONS(2383), + [sym__insert_span_start] = ACTIONS(2383), + [sym__delete_span_start] = ACTIONS(2383), + [sym__edit_comment_span_start] = ACTIONS(2383), + [sym__single_quote_span_open] = ACTIONS(2383), + [sym__double_quote_span_open] = ACTIONS(2383), + [sym__shortcode_open_escaped] = ACTIONS(2383), + [sym__shortcode_open] = ACTIONS(2383), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2383), + [sym__cite_author_in_text] = ACTIONS(2383), + [sym__cite_suppress_author] = ACTIONS(2383), + [sym__strikeout_open] = ACTIONS(2383), + [sym__subscript_open] = ACTIONS(2383), + [sym__superscript_open] = ACTIONS(2383), + [sym__inline_note_start_token] = ACTIONS(2383), + [sym__strong_emphasis_open_star] = ACTIONS(2383), + [sym__strong_emphasis_open_underscore] = ACTIONS(2383), + [sym__emphasis_open_star] = ACTIONS(2383), + [sym__emphasis_open_underscore] = ACTIONS(2383), + [sym_inline_note_reference] = ACTIONS(2383), + [sym_html_element] = ACTIONS(2383), + [sym__pandoc_line_break] = ACTIONS(2383), + }, + [STATE(245)] = { + [anon_sym_COLON] = ACTIONS(2389), + [sym_entity_reference] = ACTIONS(2389), + [sym_numeric_character_reference] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_BANG_LBRACK] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [aux_sym_pandoc_str_token1] = ACTIONS(2391), + [anon_sym_PIPE] = ACTIONS(2389), + [sym__whitespace] = ACTIONS(2389), + [sym__line_ending] = ACTIONS(2389), + [sym__soft_line_ending] = ACTIONS(2389), + [sym__block_close] = ACTIONS(2389), + [sym_block_continuation] = ACTIONS(2621), + [sym__block_quote_start] = ACTIONS(2389), + [sym_atx_h1_marker] = ACTIONS(2389), + [sym_atx_h2_marker] = ACTIONS(2389), + [sym_atx_h3_marker] = ACTIONS(2389), + [sym_atx_h4_marker] = ACTIONS(2389), + [sym_atx_h5_marker] = ACTIONS(2389), + [sym_atx_h6_marker] = ACTIONS(2389), + [sym__thematic_break] = ACTIONS(2389), + [sym__list_marker_minus] = ACTIONS(2389), + [sym__list_marker_plus] = ACTIONS(2389), + [sym__list_marker_star] = ACTIONS(2389), + [sym__list_marker_parenthesis] = ACTIONS(2389), + [sym__list_marker_dot] = ACTIONS(2389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_example] = ACTIONS(2389), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2389), + [sym__fenced_code_block_start_backtick] = ACTIONS(2389), + [sym_minus_metadata] = ACTIONS(2389), + [sym__pipe_table_start] = ACTIONS(2389), + [sym__fenced_div_start] = ACTIONS(2389), + [sym_ref_id_specifier] = ACTIONS(2389), + [sym__code_span_start] = ACTIONS(2389), + [sym__html_comment] = ACTIONS(2389), + [sym__autolink] = ACTIONS(2389), + [sym__highlight_span_start] = ACTIONS(2389), + [sym__insert_span_start] = ACTIONS(2389), + [sym__delete_span_start] = ACTIONS(2389), + [sym__edit_comment_span_start] = ACTIONS(2389), + [sym__single_quote_span_open] = ACTIONS(2389), + [sym__double_quote_span_open] = ACTIONS(2389), + [sym__shortcode_open_escaped] = ACTIONS(2389), + [sym__shortcode_open] = ACTIONS(2389), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2389), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2389), + [sym__cite_author_in_text] = ACTIONS(2389), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2389), + [sym__subscript_open] = ACTIONS(2389), + [sym__superscript_open] = ACTIONS(2389), + [sym__inline_note_start_token] = ACTIONS(2389), + [sym__strong_emphasis_open_star] = ACTIONS(2389), + [sym__strong_emphasis_open_underscore] = ACTIONS(2389), + [sym__emphasis_open_star] = ACTIONS(2389), + [sym__emphasis_open_underscore] = ACTIONS(2389), + [sym_inline_note_reference] = ACTIONS(2389), + [sym_html_element] = ACTIONS(2389), + [sym__pandoc_line_break] = ACTIONS(2389), + }, + [STATE(246)] = { + [anon_sym_COLON] = ACTIONS(2395), + [sym_entity_reference] = ACTIONS(2395), + [sym_numeric_character_reference] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_BANG_LBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [aux_sym_pandoc_str_token1] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2395), + [sym__whitespace] = ACTIONS(2395), + [sym__line_ending] = ACTIONS(2395), + [sym__soft_line_ending] = ACTIONS(2395), + [sym__block_close] = ACTIONS(2395), + [sym_block_continuation] = ACTIONS(2623), + [sym__block_quote_start] = ACTIONS(2395), + [sym_atx_h1_marker] = ACTIONS(2395), + [sym_atx_h2_marker] = ACTIONS(2395), + [sym_atx_h3_marker] = ACTIONS(2395), + [sym_atx_h4_marker] = ACTIONS(2395), + [sym_atx_h5_marker] = ACTIONS(2395), + [sym_atx_h6_marker] = ACTIONS(2395), + [sym__thematic_break] = ACTIONS(2395), + [sym__list_marker_minus] = ACTIONS(2395), + [sym__list_marker_plus] = ACTIONS(2395), + [sym__list_marker_star] = ACTIONS(2395), + [sym__list_marker_parenthesis] = ACTIONS(2395), + [sym__list_marker_dot] = ACTIONS(2395), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_example] = ACTIONS(2395), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2395), + [sym__fenced_code_block_start_backtick] = ACTIONS(2395), + [sym_minus_metadata] = ACTIONS(2395), + [sym__pipe_table_start] = ACTIONS(2395), + [sym__fenced_div_start] = ACTIONS(2395), + [sym_ref_id_specifier] = ACTIONS(2395), + [sym__code_span_start] = ACTIONS(2395), + [sym__html_comment] = ACTIONS(2395), + [sym__autolink] = ACTIONS(2395), + [sym__highlight_span_start] = ACTIONS(2395), + [sym__insert_span_start] = ACTIONS(2395), + [sym__delete_span_start] = ACTIONS(2395), + [sym__edit_comment_span_start] = ACTIONS(2395), + [sym__single_quote_span_open] = ACTIONS(2395), + [sym__double_quote_span_open] = ACTIONS(2395), + [sym__shortcode_open_escaped] = ACTIONS(2395), + [sym__shortcode_open] = ACTIONS(2395), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2395), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2395), + [sym__cite_author_in_text] = ACTIONS(2395), + [sym__cite_suppress_author] = ACTIONS(2395), + [sym__strikeout_open] = ACTIONS(2395), + [sym__subscript_open] = ACTIONS(2395), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2395), + [sym__strong_emphasis_open_star] = ACTIONS(2395), + [sym__strong_emphasis_open_underscore] = ACTIONS(2395), + [sym__emphasis_open_star] = ACTIONS(2395), + [sym__emphasis_open_underscore] = ACTIONS(2395), + [sym_inline_note_reference] = ACTIONS(2395), + [sym_html_element] = ACTIONS(2395), + [sym__pandoc_line_break] = ACTIONS(2395), + }, + [STATE(247)] = { + [anon_sym_COLON] = ACTIONS(2401), + [sym_entity_reference] = ACTIONS(2401), + [sym_numeric_character_reference] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_BANG_LBRACK] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [aux_sym_pandoc_str_token1] = ACTIONS(2403), + [anon_sym_PIPE] = ACTIONS(2401), + [sym__whitespace] = ACTIONS(2401), + [sym__line_ending] = ACTIONS(2401), + [sym__soft_line_ending] = ACTIONS(2401), + [sym__block_close] = ACTIONS(2401), + [sym_block_continuation] = ACTIONS(2625), + [sym__block_quote_start] = ACTIONS(2401), + [sym_atx_h1_marker] = ACTIONS(2401), + [sym_atx_h2_marker] = ACTIONS(2401), + [sym_atx_h3_marker] = ACTIONS(2401), + [sym_atx_h4_marker] = ACTIONS(2401), + [sym_atx_h5_marker] = ACTIONS(2401), + [sym_atx_h6_marker] = ACTIONS(2401), + [sym__thematic_break] = ACTIONS(2401), + [sym__list_marker_minus] = ACTIONS(2401), + [sym__list_marker_plus] = ACTIONS(2401), + [sym__list_marker_star] = ACTIONS(2401), + [sym__list_marker_parenthesis] = ACTIONS(2401), + [sym__list_marker_dot] = ACTIONS(2401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_example] = ACTIONS(2401), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2401), + [sym__fenced_code_block_start_backtick] = ACTIONS(2401), + [sym_minus_metadata] = ACTIONS(2401), + [sym__pipe_table_start] = ACTIONS(2401), + [sym__fenced_div_start] = ACTIONS(2401), + [sym_ref_id_specifier] = ACTIONS(2401), + [sym__code_span_start] = ACTIONS(2401), + [sym__html_comment] = ACTIONS(2401), + [sym__autolink] = ACTIONS(2401), + [sym__highlight_span_start] = ACTIONS(2401), + [sym__insert_span_start] = ACTIONS(2401), + [sym__delete_span_start] = ACTIONS(2401), + [sym__edit_comment_span_start] = ACTIONS(2401), + [sym__single_quote_span_open] = ACTIONS(2401), + [sym__double_quote_span_open] = ACTIONS(2401), + [sym__shortcode_open_escaped] = ACTIONS(2401), + [sym__shortcode_open] = ACTIONS(2401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2401), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2401), + [sym__cite_author_in_text] = ACTIONS(2401), + [sym__cite_suppress_author] = ACTIONS(2401), + [sym__strikeout_open] = ACTIONS(2401), + [sym__subscript_open] = ACTIONS(2401), + [sym__superscript_open] = ACTIONS(2401), + [sym__inline_note_start_token] = ACTIONS(2401), + [sym__strong_emphasis_open_star] = ACTIONS(2401), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2401), + [sym__emphasis_open_underscore] = ACTIONS(2401), + [sym_inline_note_reference] = ACTIONS(2401), + [sym_html_element] = ACTIONS(2401), + [sym__pandoc_line_break] = ACTIONS(2401), + }, + [STATE(248)] = { + [anon_sym_COLON] = ACTIONS(2407), + [sym_entity_reference] = ACTIONS(2407), + [sym_numeric_character_reference] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_BANG_LBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [aux_sym_pandoc_str_token1] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2407), + [sym__whitespace] = ACTIONS(2407), + [sym__line_ending] = ACTIONS(2407), + [sym__soft_line_ending] = ACTIONS(2407), + [sym__block_close] = ACTIONS(2407), + [sym_block_continuation] = ACTIONS(2627), + [sym__block_quote_start] = ACTIONS(2407), + [sym_atx_h1_marker] = ACTIONS(2407), + [sym_atx_h2_marker] = ACTIONS(2407), + [sym_atx_h3_marker] = ACTIONS(2407), + [sym_atx_h4_marker] = ACTIONS(2407), + [sym_atx_h5_marker] = ACTIONS(2407), + [sym_atx_h6_marker] = ACTIONS(2407), + [sym__thematic_break] = ACTIONS(2407), + [sym__list_marker_minus] = ACTIONS(2407), + [sym__list_marker_plus] = ACTIONS(2407), + [sym__list_marker_star] = ACTIONS(2407), + [sym__list_marker_parenthesis] = ACTIONS(2407), + [sym__list_marker_dot] = ACTIONS(2407), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_example] = ACTIONS(2407), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2407), + [sym__fenced_code_block_start_backtick] = ACTIONS(2407), + [sym_minus_metadata] = ACTIONS(2407), + [sym__pipe_table_start] = ACTIONS(2407), + [sym__fenced_div_start] = ACTIONS(2407), + [sym_ref_id_specifier] = ACTIONS(2407), + [sym__code_span_start] = ACTIONS(2407), + [sym__html_comment] = ACTIONS(2407), + [sym__autolink] = ACTIONS(2407), + [sym__highlight_span_start] = ACTIONS(2407), + [sym__insert_span_start] = ACTIONS(2407), + [sym__delete_span_start] = ACTIONS(2407), + [sym__edit_comment_span_start] = ACTIONS(2407), + [sym__single_quote_span_open] = ACTIONS(2407), + [sym__double_quote_span_open] = ACTIONS(2407), + [sym__shortcode_open_escaped] = ACTIONS(2407), + [sym__shortcode_open] = ACTIONS(2407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2407), + [sym__cite_author_in_text] = ACTIONS(2407), + [sym__cite_suppress_author] = ACTIONS(2407), + [sym__strikeout_open] = ACTIONS(2407), + [sym__subscript_open] = ACTIONS(2407), + [sym__superscript_open] = ACTIONS(2407), + [sym__inline_note_start_token] = ACTIONS(2407), + [sym__strong_emphasis_open_star] = ACTIONS(2407), + [sym__strong_emphasis_open_underscore] = ACTIONS(2407), + [sym__emphasis_open_star] = ACTIONS(2407), + [sym__emphasis_open_underscore] = ACTIONS(2407), + [sym_inline_note_reference] = ACTIONS(2407), + [sym_html_element] = ACTIONS(2407), + [sym__pandoc_line_break] = ACTIONS(2407), + }, + [STATE(249)] = { + [sym_pipe_table_cell] = STATE(2858), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2493), + [sym__line_ending] = ACTIONS(2629), + [sym__eof] = ACTIONS(2629), + [sym__pipe_table_line_ending] = ACTIONS(2629), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2497), + [sym__pandoc_line_break] = ACTIONS(2011), + }, + [STATE(250)] = { + [anon_sym_COLON] = ACTIONS(2631), + [sym_entity_reference] = ACTIONS(2631), + [sym_numeric_character_reference] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_BANG_LBRACK] = ACTIONS(2631), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [aux_sym_pandoc_str_token1] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2631), + [sym__whitespace] = ACTIONS(2631), + [sym__line_ending] = ACTIONS(2631), + [sym__soft_line_ending] = ACTIONS(2631), + [sym__block_close] = ACTIONS(2631), + [sym__block_quote_start] = ACTIONS(2631), + [sym_atx_h1_marker] = ACTIONS(2631), + [sym_atx_h2_marker] = ACTIONS(2631), + [sym_atx_h3_marker] = ACTIONS(2631), + [sym_atx_h4_marker] = ACTIONS(2631), + [sym_atx_h5_marker] = ACTIONS(2631), + [sym_atx_h6_marker] = ACTIONS(2631), + [sym__thematic_break] = ACTIONS(2631), + [sym__list_marker_minus] = ACTIONS(2631), + [sym__list_marker_plus] = ACTIONS(2631), + [sym__list_marker_star] = ACTIONS(2631), + [sym__list_marker_parenthesis] = ACTIONS(2631), + [sym__list_marker_dot] = ACTIONS(2631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_example] = ACTIONS(2631), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2631), + [sym__fenced_code_block_start_backtick] = ACTIONS(2631), + [sym_minus_metadata] = ACTIONS(2631), + [sym__pipe_table_start] = ACTIONS(2631), + [sym__fenced_div_start] = ACTIONS(2631), + [sym__fenced_div_end] = ACTIONS(2631), + [sym_ref_id_specifier] = ACTIONS(2631), + [sym__code_span_start] = ACTIONS(2631), + [sym__html_comment] = ACTIONS(2631), + [sym__autolink] = ACTIONS(2631), + [sym__highlight_span_start] = ACTIONS(2631), + [sym__insert_span_start] = ACTIONS(2631), + [sym__delete_span_start] = ACTIONS(2631), + [sym__edit_comment_span_start] = ACTIONS(2631), + [sym__single_quote_span_open] = ACTIONS(2631), + [sym__double_quote_span_open] = ACTIONS(2631), + [sym__shortcode_open_escaped] = ACTIONS(2631), + [sym__shortcode_open] = ACTIONS(2631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2631), + [sym__cite_author_in_text] = ACTIONS(2631), + [sym__cite_suppress_author] = ACTIONS(2631), + [sym__strikeout_open] = ACTIONS(2631), + [sym__subscript_open] = ACTIONS(2631), + [sym__superscript_open] = ACTIONS(2631), + [sym__inline_note_start_token] = ACTIONS(2631), + [sym__strong_emphasis_open_star] = ACTIONS(2631), + [sym__strong_emphasis_open_underscore] = ACTIONS(2631), + [sym__emphasis_open_star] = ACTIONS(2631), + [sym__emphasis_open_underscore] = ACTIONS(2631), + [sym_inline_note_reference] = ACTIONS(2631), + [sym_html_element] = ACTIONS(2631), + [sym__pandoc_line_break] = ACTIONS(2631), + }, + [STATE(251)] = { + [anon_sym_COLON] = ACTIONS(2635), + [sym_entity_reference] = ACTIONS(2635), + [sym_numeric_character_reference] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_BANG_LBRACK] = ACTIONS(2635), + [anon_sym_DOLLAR] = ACTIONS(2637), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [aux_sym_pandoc_str_token1] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2635), + [sym__whitespace] = ACTIONS(2635), + [sym__line_ending] = ACTIONS(2635), + [sym__soft_line_ending] = ACTIONS(2635), + [sym__block_close] = ACTIONS(2635), + [sym__block_quote_start] = ACTIONS(2635), + [sym_atx_h1_marker] = ACTIONS(2635), + [sym_atx_h2_marker] = ACTIONS(2635), + [sym_atx_h3_marker] = ACTIONS(2635), + [sym_atx_h4_marker] = ACTIONS(2635), + [sym_atx_h5_marker] = ACTIONS(2635), + [sym_atx_h6_marker] = ACTIONS(2635), + [sym__thematic_break] = ACTIONS(2635), + [sym__list_marker_minus] = ACTIONS(2635), + [sym__list_marker_plus] = ACTIONS(2635), + [sym__list_marker_star] = ACTIONS(2635), + [sym__list_marker_parenthesis] = ACTIONS(2635), + [sym__list_marker_dot] = ACTIONS(2635), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_example] = ACTIONS(2635), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2635), + [sym__fenced_code_block_start_backtick] = ACTIONS(2635), + [sym_minus_metadata] = ACTIONS(2635), + [sym__pipe_table_start] = ACTIONS(2635), + [sym__fenced_div_start] = ACTIONS(2635), + [sym__fenced_div_end] = ACTIONS(2635), + [sym_ref_id_specifier] = ACTIONS(2635), + [sym__code_span_start] = ACTIONS(2635), + [sym__html_comment] = ACTIONS(2635), + [sym__autolink] = ACTIONS(2635), + [sym__highlight_span_start] = ACTIONS(2635), + [sym__insert_span_start] = ACTIONS(2635), + [sym__delete_span_start] = ACTIONS(2635), + [sym__edit_comment_span_start] = ACTIONS(2635), + [sym__single_quote_span_open] = ACTIONS(2635), + [sym__double_quote_span_open] = ACTIONS(2635), + [sym__shortcode_open_escaped] = ACTIONS(2635), + [sym__shortcode_open] = ACTIONS(2635), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2635), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2635), + [sym__cite_author_in_text] = ACTIONS(2635), + [sym__cite_suppress_author] = ACTIONS(2635), + [sym__strikeout_open] = ACTIONS(2635), + [sym__subscript_open] = ACTIONS(2635), + [sym__superscript_open] = ACTIONS(2635), + [sym__inline_note_start_token] = ACTIONS(2635), + [sym__strong_emphasis_open_star] = ACTIONS(2635), + [sym__strong_emphasis_open_underscore] = ACTIONS(2635), + [sym__emphasis_open_star] = ACTIONS(2635), + [sym__emphasis_open_underscore] = ACTIONS(2635), + [sym_inline_note_reference] = ACTIONS(2635), + [sym_html_element] = ACTIONS(2635), + [sym__pandoc_line_break] = ACTIONS(2635), + }, + [STATE(252)] = { + [ts_builtin_sym_end] = ACTIONS(2333), + [anon_sym_COLON] = ACTIONS(2333), + [sym_entity_reference] = ACTIONS(2333), + [sym_numeric_character_reference] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_BANG_LBRACK] = ACTIONS(2333), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [aux_sym_pandoc_str_token1] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2333), + [sym__whitespace] = ACTIONS(2333), + [sym__line_ending] = ACTIONS(2333), + [sym__soft_line_ending] = ACTIONS(2333), + [sym_block_continuation] = ACTIONS(2639), + [sym__block_quote_start] = ACTIONS(2333), + [sym_atx_h1_marker] = ACTIONS(2333), + [sym_atx_h2_marker] = ACTIONS(2333), + [sym_atx_h3_marker] = ACTIONS(2333), + [sym_atx_h4_marker] = ACTIONS(2333), + [sym_atx_h5_marker] = ACTIONS(2333), + [sym_atx_h6_marker] = ACTIONS(2333), + [sym__thematic_break] = ACTIONS(2333), + [sym__list_marker_minus] = ACTIONS(2333), + [sym__list_marker_plus] = ACTIONS(2333), + [sym__list_marker_star] = ACTIONS(2333), + [sym__list_marker_parenthesis] = ACTIONS(2333), + [sym__list_marker_dot] = ACTIONS(2333), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_example] = ACTIONS(2333), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2333), + [sym__fenced_code_block_start_backtick] = ACTIONS(2333), + [sym_minus_metadata] = ACTIONS(2333), + [sym__pipe_table_start] = ACTIONS(2333), + [sym__fenced_div_start] = ACTIONS(2333), + [sym_ref_id_specifier] = ACTIONS(2333), + [sym__code_span_start] = ACTIONS(2333), + [sym__html_comment] = ACTIONS(2333), + [sym__autolink] = ACTIONS(2333), + [sym__highlight_span_start] = ACTIONS(2333), + [sym__insert_span_start] = ACTIONS(2333), + [sym__delete_span_start] = ACTIONS(2333), + [sym__edit_comment_span_start] = ACTIONS(2333), + [sym__single_quote_span_open] = ACTIONS(2333), + [sym__double_quote_span_open] = ACTIONS(2333), + [sym__shortcode_open_escaped] = ACTIONS(2333), + [sym__shortcode_open] = ACTIONS(2333), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2333), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2333), + [sym__cite_author_in_text] = ACTIONS(2333), + [sym__cite_suppress_author] = ACTIONS(2333), + [sym__strikeout_open] = ACTIONS(2333), + [sym__subscript_open] = ACTIONS(2333), + [sym__superscript_open] = ACTIONS(2333), + [sym__inline_note_start_token] = ACTIONS(2333), + [sym__strong_emphasis_open_star] = ACTIONS(2333), + [sym__strong_emphasis_open_underscore] = ACTIONS(2333), + [sym__emphasis_open_star] = ACTIONS(2333), + [sym__emphasis_open_underscore] = ACTIONS(2333), + [sym_inline_note_reference] = ACTIONS(2333), + [sym_html_element] = ACTIONS(2333), + [sym__pandoc_line_break] = ACTIONS(2333), + }, + [STATE(253)] = { + [anon_sym_COLON] = ACTIONS(2641), + [sym_entity_reference] = ACTIONS(2641), + [sym_numeric_character_reference] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_BANG_LBRACK] = ACTIONS(2641), + [anon_sym_DOLLAR] = ACTIONS(2643), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [aux_sym_pandoc_str_token1] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2641), + [sym__whitespace] = ACTIONS(2641), + [sym__line_ending] = ACTIONS(2641), + [sym__soft_line_ending] = ACTIONS(2641), + [sym__block_close] = ACTIONS(2641), + [sym__block_quote_start] = ACTIONS(2641), + [sym_atx_h1_marker] = ACTIONS(2641), + [sym_atx_h2_marker] = ACTIONS(2641), + [sym_atx_h3_marker] = ACTIONS(2641), + [sym_atx_h4_marker] = ACTIONS(2641), + [sym_atx_h5_marker] = ACTIONS(2641), + [sym_atx_h6_marker] = ACTIONS(2641), + [sym__thematic_break] = ACTIONS(2641), + [sym__list_marker_minus] = ACTIONS(2641), + [sym__list_marker_plus] = ACTIONS(2641), + [sym__list_marker_star] = ACTIONS(2641), + [sym__list_marker_parenthesis] = ACTIONS(2641), + [sym__list_marker_dot] = ACTIONS(2641), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_example] = ACTIONS(2641), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2641), + [sym__fenced_code_block_start_backtick] = ACTIONS(2641), + [sym_minus_metadata] = ACTIONS(2641), + [sym__pipe_table_start] = ACTIONS(2641), + [sym__fenced_div_start] = ACTIONS(2641), + [sym__fenced_div_end] = ACTIONS(2641), + [sym_ref_id_specifier] = ACTIONS(2641), + [sym__code_span_start] = ACTIONS(2641), + [sym__html_comment] = ACTIONS(2641), + [sym__autolink] = ACTIONS(2641), + [sym__highlight_span_start] = ACTIONS(2641), + [sym__insert_span_start] = ACTIONS(2641), + [sym__delete_span_start] = ACTIONS(2641), + [sym__edit_comment_span_start] = ACTIONS(2641), + [sym__single_quote_span_open] = ACTIONS(2641), + [sym__double_quote_span_open] = ACTIONS(2641), + [sym__shortcode_open_escaped] = ACTIONS(2641), + [sym__shortcode_open] = ACTIONS(2641), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2641), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2641), + [sym__cite_author_in_text] = ACTIONS(2641), + [sym__cite_suppress_author] = ACTIONS(2641), + [sym__strikeout_open] = ACTIONS(2641), + [sym__subscript_open] = ACTIONS(2641), + [sym__superscript_open] = ACTIONS(2641), + [sym__inline_note_start_token] = ACTIONS(2641), + [sym__strong_emphasis_open_star] = ACTIONS(2641), + [sym__strong_emphasis_open_underscore] = ACTIONS(2641), + [sym__emphasis_open_star] = ACTIONS(2641), + [sym__emphasis_open_underscore] = ACTIONS(2641), + [sym_inline_note_reference] = ACTIONS(2641), + [sym_html_element] = ACTIONS(2641), + [sym__pandoc_line_break] = ACTIONS(2641), + }, + [STATE(254)] = { [anon_sym_COLON] = ACTIONS(2645), [sym_entity_reference] = ACTIONS(2645), [sym_numeric_character_reference] = ACTIONS(2645), @@ -45461,11 +48069,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2645), [aux_sym_pandoc_str_token1] = ACTIONS(2647), [anon_sym_PIPE] = ACTIONS(2645), - [aux_sym__prose_punctuation_token1] = ACTIONS(2647), + [sym__whitespace] = ACTIONS(2645), [sym__line_ending] = ACTIONS(2645), [sym__soft_line_ending] = ACTIONS(2645), [sym__block_close] = ACTIONS(2645), - [sym_block_continuation] = ACTIONS(2649), [sym__block_quote_start] = ACTIONS(2645), [sym_atx_h1_marker] = ACTIONS(2645), [sym_atx_h2_marker] = ACTIONS(2645), @@ -45519,76 +48126,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2645), [sym__pandoc_line_break] = ACTIONS(2645), }, - [STATE(237)] = { - [anon_sym_COLON] = ACTIONS(2651), - [sym_entity_reference] = ACTIONS(2651), - [sym_numeric_character_reference] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_BANG_LBRACK] = ACTIONS(2651), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2651), - [aux_sym_pandoc_str_token1] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2651), - [aux_sym__prose_punctuation_token1] = ACTIONS(2653), - [sym__line_ending] = ACTIONS(2651), - [sym__soft_line_ending] = ACTIONS(2651), - [sym__block_close] = ACTIONS(2651), - [sym_block_continuation] = ACTIONS(2655), - [sym__block_quote_start] = ACTIONS(2651), - [sym_atx_h1_marker] = ACTIONS(2651), - [sym_atx_h2_marker] = ACTIONS(2651), - [sym_atx_h3_marker] = ACTIONS(2651), - [sym_atx_h4_marker] = ACTIONS(2651), - [sym_atx_h5_marker] = ACTIONS(2651), - [sym_atx_h6_marker] = ACTIONS(2651), - [sym__thematic_break] = ACTIONS(2651), - [sym__list_marker_minus] = ACTIONS(2651), - [sym__list_marker_plus] = ACTIONS(2651), - [sym__list_marker_star] = ACTIONS(2651), - [sym__list_marker_parenthesis] = ACTIONS(2651), - [sym__list_marker_dot] = ACTIONS(2651), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_example] = ACTIONS(2651), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2651), - [sym__fenced_code_block_start_backtick] = ACTIONS(2651), - [sym_minus_metadata] = ACTIONS(2651), - [sym__pipe_table_start] = ACTIONS(2651), - [sym__fenced_div_start] = ACTIONS(2651), - [sym__fenced_div_end] = ACTIONS(2651), - [sym_ref_id_specifier] = ACTIONS(2651), - [sym__code_span_start] = ACTIONS(2651), - [sym__html_comment] = ACTIONS(2651), - [sym__autolink] = ACTIONS(2651), - [sym__highlight_span_start] = ACTIONS(2651), - [sym__insert_span_start] = ACTIONS(2651), - [sym__delete_span_start] = ACTIONS(2651), - [sym__edit_comment_span_start] = ACTIONS(2651), - [sym__single_quote_span_open] = ACTIONS(2651), - [sym__double_quote_span_open] = ACTIONS(2651), - [sym__shortcode_open_escaped] = ACTIONS(2651), - [sym__shortcode_open] = ACTIONS(2651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2651), - [sym__cite_author_in_text] = ACTIONS(2651), - [sym__cite_suppress_author] = ACTIONS(2651), - [sym__strikeout_open] = ACTIONS(2651), - [sym__subscript_open] = ACTIONS(2651), - [sym__superscript_open] = ACTIONS(2651), - [sym__inline_note_start_token] = ACTIONS(2651), - [sym__strong_emphasis_open_star] = ACTIONS(2651), - [sym__strong_emphasis_open_underscore] = ACTIONS(2651), - [sym__emphasis_open_star] = ACTIONS(2651), - [sym__emphasis_open_underscore] = ACTIONS(2651), - [sym_inline_note_reference] = ACTIONS(2651), - [sym_html_element] = ACTIONS(2651), - [sym__pandoc_line_break] = ACTIONS(2651), + [STATE(255)] = { + [anon_sym_COLON] = ACTIONS(2649), + [sym_entity_reference] = ACTIONS(2649), + [sym_numeric_character_reference] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_BANG_LBRACK] = ACTIONS(2649), + [anon_sym_DOLLAR] = ACTIONS(2651), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [aux_sym_pandoc_str_token1] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2649), + [sym__whitespace] = ACTIONS(2649), + [sym__line_ending] = ACTIONS(2649), + [sym__soft_line_ending] = ACTIONS(2649), + [sym__block_close] = ACTIONS(2649), + [sym__block_quote_start] = ACTIONS(2649), + [sym_atx_h1_marker] = ACTIONS(2649), + [sym_atx_h2_marker] = ACTIONS(2649), + [sym_atx_h3_marker] = ACTIONS(2649), + [sym_atx_h4_marker] = ACTIONS(2649), + [sym_atx_h5_marker] = ACTIONS(2649), + [sym_atx_h6_marker] = ACTIONS(2649), + [sym__thematic_break] = ACTIONS(2649), + [sym__list_marker_minus] = ACTIONS(2649), + [sym__list_marker_plus] = ACTIONS(2649), + [sym__list_marker_star] = ACTIONS(2649), + [sym__list_marker_parenthesis] = ACTIONS(2649), + [sym__list_marker_dot] = ACTIONS(2649), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_example] = ACTIONS(2649), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2649), + [sym__fenced_code_block_start_backtick] = ACTIONS(2649), + [sym_minus_metadata] = ACTIONS(2649), + [sym__pipe_table_start] = ACTIONS(2649), + [sym__fenced_div_start] = ACTIONS(2649), + [sym__fenced_div_end] = ACTIONS(2649), + [sym_ref_id_specifier] = ACTIONS(2649), + [sym__code_span_start] = ACTIONS(2649), + [sym__html_comment] = ACTIONS(2649), + [sym__autolink] = ACTIONS(2649), + [sym__highlight_span_start] = ACTIONS(2649), + [sym__insert_span_start] = ACTIONS(2649), + [sym__delete_span_start] = ACTIONS(2649), + [sym__edit_comment_span_start] = ACTIONS(2649), + [sym__single_quote_span_open] = ACTIONS(2649), + [sym__double_quote_span_open] = ACTIONS(2649), + [sym__shortcode_open_escaped] = ACTIONS(2649), + [sym__shortcode_open] = ACTIONS(2649), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2649), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2649), + [sym__cite_author_in_text] = ACTIONS(2649), + [sym__cite_suppress_author] = ACTIONS(2649), + [sym__strikeout_open] = ACTIONS(2649), + [sym__subscript_open] = ACTIONS(2649), + [sym__superscript_open] = ACTIONS(2649), + [sym__inline_note_start_token] = ACTIONS(2649), + [sym__strong_emphasis_open_star] = ACTIONS(2649), + [sym__strong_emphasis_open_underscore] = ACTIONS(2649), + [sym__emphasis_open_star] = ACTIONS(2649), + [sym__emphasis_open_underscore] = ACTIONS(2649), + [sym_inline_note_reference] = ACTIONS(2649), + [sym_html_element] = ACTIONS(2649), + [sym__pandoc_line_break] = ACTIONS(2649), }, - [STATE(238)] = { + [STATE(256)] = { + [anon_sym_COLON] = ACTIONS(2653), + [sym_entity_reference] = ACTIONS(2653), + [sym_numeric_character_reference] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_BANG_LBRACK] = ACTIONS(2653), + [anon_sym_DOLLAR] = ACTIONS(2655), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [aux_sym_pandoc_str_token1] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2653), + [sym__whitespace] = ACTIONS(2653), + [sym__line_ending] = ACTIONS(2653), + [sym__soft_line_ending] = ACTIONS(2653), + [sym__block_close] = ACTIONS(2653), + [sym__block_quote_start] = ACTIONS(2653), + [sym_atx_h1_marker] = ACTIONS(2653), + [sym_atx_h2_marker] = ACTIONS(2653), + [sym_atx_h3_marker] = ACTIONS(2653), + [sym_atx_h4_marker] = ACTIONS(2653), + [sym_atx_h5_marker] = ACTIONS(2653), + [sym_atx_h6_marker] = ACTIONS(2653), + [sym__thematic_break] = ACTIONS(2653), + [sym__list_marker_minus] = ACTIONS(2653), + [sym__list_marker_plus] = ACTIONS(2653), + [sym__list_marker_star] = ACTIONS(2653), + [sym__list_marker_parenthesis] = ACTIONS(2653), + [sym__list_marker_dot] = ACTIONS(2653), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_example] = ACTIONS(2653), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2653), + [sym__fenced_code_block_start_backtick] = ACTIONS(2653), + [sym_minus_metadata] = ACTIONS(2653), + [sym__pipe_table_start] = ACTIONS(2653), + [sym__fenced_div_start] = ACTIONS(2653), + [sym__fenced_div_end] = ACTIONS(2653), + [sym_ref_id_specifier] = ACTIONS(2653), + [sym__code_span_start] = ACTIONS(2653), + [sym__html_comment] = ACTIONS(2653), + [sym__autolink] = ACTIONS(2653), + [sym__highlight_span_start] = ACTIONS(2653), + [sym__insert_span_start] = ACTIONS(2653), + [sym__delete_span_start] = ACTIONS(2653), + [sym__edit_comment_span_start] = ACTIONS(2653), + [sym__single_quote_span_open] = ACTIONS(2653), + [sym__double_quote_span_open] = ACTIONS(2653), + [sym__shortcode_open_escaped] = ACTIONS(2653), + [sym__shortcode_open] = ACTIONS(2653), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2653), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2653), + [sym__cite_author_in_text] = ACTIONS(2653), + [sym__cite_suppress_author] = ACTIONS(2653), + [sym__strikeout_open] = ACTIONS(2653), + [sym__subscript_open] = ACTIONS(2653), + [sym__superscript_open] = ACTIONS(2653), + [sym__inline_note_start_token] = ACTIONS(2653), + [sym__strong_emphasis_open_star] = ACTIONS(2653), + [sym__strong_emphasis_open_underscore] = ACTIONS(2653), + [sym__emphasis_open_star] = ACTIONS(2653), + [sym__emphasis_open_underscore] = ACTIONS(2653), + [sym_inline_note_reference] = ACTIONS(2653), + [sym_html_element] = ACTIONS(2653), + [sym__pandoc_line_break] = ACTIONS(2653), + }, + [STATE(257)] = { [anon_sym_COLON] = ACTIONS(2657), [sym_entity_reference] = ACTIONS(2657), [sym_numeric_character_reference] = ACTIONS(2657), @@ -45599,11 +48273,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2657), [aux_sym_pandoc_str_token1] = ACTIONS(2659), [anon_sym_PIPE] = ACTIONS(2657), - [aux_sym__prose_punctuation_token1] = ACTIONS(2659), + [sym__whitespace] = ACTIONS(2657), [sym__line_ending] = ACTIONS(2657), [sym__soft_line_ending] = ACTIONS(2657), [sym__block_close] = ACTIONS(2657), - [sym_block_continuation] = ACTIONS(2661), [sym__block_quote_start] = ACTIONS(2657), [sym_atx_h1_marker] = ACTIONS(2657), [sym_atx_h2_marker] = ACTIONS(2657), @@ -45657,76 +48330,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2657), [sym__pandoc_line_break] = ACTIONS(2657), }, - [STATE(239)] = { - [anon_sym_COLON] = ACTIONS(2663), - [sym_entity_reference] = ACTIONS(2663), - [sym_numeric_character_reference] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_BANG_LBRACK] = ACTIONS(2663), - [anon_sym_DOLLAR] = ACTIONS(2665), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [aux_sym_pandoc_str_token1] = ACTIONS(2665), - [anon_sym_PIPE] = ACTIONS(2663), - [aux_sym__prose_punctuation_token1] = ACTIONS(2665), - [sym__line_ending] = ACTIONS(2663), - [sym__soft_line_ending] = ACTIONS(2663), - [sym__block_close] = ACTIONS(2663), - [sym_block_continuation] = ACTIONS(2667), - [sym__block_quote_start] = ACTIONS(2663), - [sym_atx_h1_marker] = ACTIONS(2663), - [sym_atx_h2_marker] = ACTIONS(2663), - [sym_atx_h3_marker] = ACTIONS(2663), - [sym_atx_h4_marker] = ACTIONS(2663), - [sym_atx_h5_marker] = ACTIONS(2663), - [sym_atx_h6_marker] = ACTIONS(2663), - [sym__thematic_break] = ACTIONS(2663), - [sym__list_marker_minus] = ACTIONS(2663), - [sym__list_marker_plus] = ACTIONS(2663), - [sym__list_marker_star] = ACTIONS(2663), - [sym__list_marker_parenthesis] = ACTIONS(2663), - [sym__list_marker_dot] = ACTIONS(2663), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_example] = ACTIONS(2663), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2663), - [sym__fenced_code_block_start_backtick] = ACTIONS(2663), - [sym_minus_metadata] = ACTIONS(2663), - [sym__pipe_table_start] = ACTIONS(2663), - [sym__fenced_div_start] = ACTIONS(2663), - [sym__fenced_div_end] = ACTIONS(2663), - [sym_ref_id_specifier] = ACTIONS(2663), - [sym__code_span_start] = ACTIONS(2663), - [sym__html_comment] = ACTIONS(2663), - [sym__autolink] = ACTIONS(2663), - [sym__highlight_span_start] = ACTIONS(2663), - [sym__insert_span_start] = ACTIONS(2663), - [sym__delete_span_start] = ACTIONS(2663), - [sym__edit_comment_span_start] = ACTIONS(2663), - [sym__single_quote_span_open] = ACTIONS(2663), - [sym__double_quote_span_open] = ACTIONS(2663), - [sym__shortcode_open_escaped] = ACTIONS(2663), - [sym__shortcode_open] = ACTIONS(2663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2663), - [sym__cite_author_in_text] = ACTIONS(2663), - [sym__cite_suppress_author] = ACTIONS(2663), - [sym__strikeout_open] = ACTIONS(2663), - [sym__subscript_open] = ACTIONS(2663), - [sym__superscript_open] = ACTIONS(2663), - [sym__inline_note_start_token] = ACTIONS(2663), - [sym__strong_emphasis_open_star] = ACTIONS(2663), - [sym__strong_emphasis_open_underscore] = ACTIONS(2663), - [sym__emphasis_open_star] = ACTIONS(2663), - [sym__emphasis_open_underscore] = ACTIONS(2663), - [sym_inline_note_reference] = ACTIONS(2663), - [sym_html_element] = ACTIONS(2663), - [sym__pandoc_line_break] = ACTIONS(2663), + [STATE(258)] = { + [anon_sym_COLON] = ACTIONS(2661), + [sym_entity_reference] = ACTIONS(2661), + [sym_numeric_character_reference] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_BANG_LBRACK] = ACTIONS(2661), + [anon_sym_DOLLAR] = ACTIONS(2663), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [aux_sym_pandoc_str_token1] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2661), + [sym__whitespace] = ACTIONS(2661), + [sym__line_ending] = ACTIONS(2661), + [sym__soft_line_ending] = ACTIONS(2661), + [sym__block_close] = ACTIONS(2661), + [sym__block_quote_start] = ACTIONS(2661), + [sym_atx_h1_marker] = ACTIONS(2661), + [sym_atx_h2_marker] = ACTIONS(2661), + [sym_atx_h3_marker] = ACTIONS(2661), + [sym_atx_h4_marker] = ACTIONS(2661), + [sym_atx_h5_marker] = ACTIONS(2661), + [sym_atx_h6_marker] = ACTIONS(2661), + [sym__thematic_break] = ACTIONS(2661), + [sym__list_marker_minus] = ACTIONS(2661), + [sym__list_marker_plus] = ACTIONS(2661), + [sym__list_marker_star] = ACTIONS(2661), + [sym__list_marker_parenthesis] = ACTIONS(2661), + [sym__list_marker_dot] = ACTIONS(2661), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_example] = ACTIONS(2661), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2661), + [sym__fenced_code_block_start_backtick] = ACTIONS(2661), + [sym_minus_metadata] = ACTIONS(2661), + [sym__pipe_table_start] = ACTIONS(2661), + [sym__fenced_div_start] = ACTIONS(2661), + [sym__fenced_div_end] = ACTIONS(2661), + [sym_ref_id_specifier] = ACTIONS(2661), + [sym__code_span_start] = ACTIONS(2661), + [sym__html_comment] = ACTIONS(2661), + [sym__autolink] = ACTIONS(2661), + [sym__highlight_span_start] = ACTIONS(2661), + [sym__insert_span_start] = ACTIONS(2661), + [sym__delete_span_start] = ACTIONS(2661), + [sym__edit_comment_span_start] = ACTIONS(2661), + [sym__single_quote_span_open] = ACTIONS(2661), + [sym__double_quote_span_open] = ACTIONS(2661), + [sym__shortcode_open_escaped] = ACTIONS(2661), + [sym__shortcode_open] = ACTIONS(2661), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2661), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2661), + [sym__cite_author_in_text] = ACTIONS(2661), + [sym__cite_suppress_author] = ACTIONS(2661), + [sym__strikeout_open] = ACTIONS(2661), + [sym__subscript_open] = ACTIONS(2661), + [sym__superscript_open] = ACTIONS(2661), + [sym__inline_note_start_token] = ACTIONS(2661), + [sym__strong_emphasis_open_star] = ACTIONS(2661), + [sym__strong_emphasis_open_underscore] = ACTIONS(2661), + [sym__emphasis_open_star] = ACTIONS(2661), + [sym__emphasis_open_underscore] = ACTIONS(2661), + [sym_inline_note_reference] = ACTIONS(2661), + [sym_html_element] = ACTIONS(2661), + [sym__pandoc_line_break] = ACTIONS(2661), }, - [STATE(240)] = { + [STATE(259)] = { + [anon_sym_COLON] = ACTIONS(2665), + [sym_entity_reference] = ACTIONS(2665), + [sym_numeric_character_reference] = ACTIONS(2665), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_BANG_LBRACK] = ACTIONS(2665), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2665), + [aux_sym_pandoc_str_token1] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2665), + [sym__whitespace] = ACTIONS(2665), + [sym__line_ending] = ACTIONS(2665), + [sym__soft_line_ending] = ACTIONS(2665), + [sym__block_close] = ACTIONS(2665), + [sym__block_quote_start] = ACTIONS(2665), + [sym_atx_h1_marker] = ACTIONS(2665), + [sym_atx_h2_marker] = ACTIONS(2665), + [sym_atx_h3_marker] = ACTIONS(2665), + [sym_atx_h4_marker] = ACTIONS(2665), + [sym_atx_h5_marker] = ACTIONS(2665), + [sym_atx_h6_marker] = ACTIONS(2665), + [sym__thematic_break] = ACTIONS(2665), + [sym__list_marker_minus] = ACTIONS(2665), + [sym__list_marker_plus] = ACTIONS(2665), + [sym__list_marker_star] = ACTIONS(2665), + [sym__list_marker_parenthesis] = ACTIONS(2665), + [sym__list_marker_dot] = ACTIONS(2665), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_example] = ACTIONS(2665), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2665), + [sym__fenced_code_block_start_backtick] = ACTIONS(2665), + [sym_minus_metadata] = ACTIONS(2665), + [sym__pipe_table_start] = ACTIONS(2665), + [sym__fenced_div_start] = ACTIONS(2665), + [sym__fenced_div_end] = ACTIONS(2665), + [sym_ref_id_specifier] = ACTIONS(2665), + [sym__code_span_start] = ACTIONS(2665), + [sym__html_comment] = ACTIONS(2665), + [sym__autolink] = ACTIONS(2665), + [sym__highlight_span_start] = ACTIONS(2665), + [sym__insert_span_start] = ACTIONS(2665), + [sym__delete_span_start] = ACTIONS(2665), + [sym__edit_comment_span_start] = ACTIONS(2665), + [sym__single_quote_span_open] = ACTIONS(2665), + [sym__double_quote_span_open] = ACTIONS(2665), + [sym__shortcode_open_escaped] = ACTIONS(2665), + [sym__shortcode_open] = ACTIONS(2665), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2665), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2665), + [sym__cite_author_in_text] = ACTIONS(2665), + [sym__cite_suppress_author] = ACTIONS(2665), + [sym__strikeout_open] = ACTIONS(2665), + [sym__subscript_open] = ACTIONS(2665), + [sym__superscript_open] = ACTIONS(2665), + [sym__inline_note_start_token] = ACTIONS(2665), + [sym__strong_emphasis_open_star] = ACTIONS(2665), + [sym__strong_emphasis_open_underscore] = ACTIONS(2665), + [sym__emphasis_open_star] = ACTIONS(2665), + [sym__emphasis_open_underscore] = ACTIONS(2665), + [sym_inline_note_reference] = ACTIONS(2665), + [sym_html_element] = ACTIONS(2665), + [sym__pandoc_line_break] = ACTIONS(2665), + }, + [STATE(260)] = { [anon_sym_COLON] = ACTIONS(2669), [sym_entity_reference] = ACTIONS(2669), [sym_numeric_character_reference] = ACTIONS(2669), @@ -45737,11 +48477,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2669), [aux_sym_pandoc_str_token1] = ACTIONS(2671), [anon_sym_PIPE] = ACTIONS(2669), - [aux_sym__prose_punctuation_token1] = ACTIONS(2671), + [sym__whitespace] = ACTIONS(2669), [sym__line_ending] = ACTIONS(2669), [sym__soft_line_ending] = ACTIONS(2669), [sym__block_close] = ACTIONS(2669), - [sym_block_continuation] = ACTIONS(2673), [sym__block_quote_start] = ACTIONS(2669), [sym_atx_h1_marker] = ACTIONS(2669), [sym_atx_h2_marker] = ACTIONS(2669), @@ -45795,76 +48534,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2669), [sym__pandoc_line_break] = ACTIONS(2669), }, - [STATE(241)] = { - [anon_sym_COLON] = ACTIONS(2675), - [sym_entity_reference] = ACTIONS(2675), - [sym_numeric_character_reference] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_BANG_LBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [aux_sym_pandoc_str_token1] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2675), - [aux_sym__prose_punctuation_token1] = ACTIONS(2677), - [sym__line_ending] = ACTIONS(2675), - [sym__soft_line_ending] = ACTIONS(2675), - [sym__block_close] = ACTIONS(2675), - [sym_block_continuation] = ACTIONS(2679), - [sym__block_quote_start] = ACTIONS(2675), - [sym_atx_h1_marker] = ACTIONS(2675), - [sym_atx_h2_marker] = ACTIONS(2675), - [sym_atx_h3_marker] = ACTIONS(2675), - [sym_atx_h4_marker] = ACTIONS(2675), - [sym_atx_h5_marker] = ACTIONS(2675), - [sym_atx_h6_marker] = ACTIONS(2675), - [sym__thematic_break] = ACTIONS(2675), - [sym__list_marker_minus] = ACTIONS(2675), - [sym__list_marker_plus] = ACTIONS(2675), - [sym__list_marker_star] = ACTIONS(2675), - [sym__list_marker_parenthesis] = ACTIONS(2675), - [sym__list_marker_dot] = ACTIONS(2675), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_example] = ACTIONS(2675), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2675), - [sym__fenced_code_block_start_backtick] = ACTIONS(2675), - [sym_minus_metadata] = ACTIONS(2675), - [sym__pipe_table_start] = ACTIONS(2675), - [sym__fenced_div_start] = ACTIONS(2675), - [sym__fenced_div_end] = ACTIONS(2675), - [sym_ref_id_specifier] = ACTIONS(2675), - [sym__code_span_start] = ACTIONS(2675), - [sym__html_comment] = ACTIONS(2675), - [sym__autolink] = ACTIONS(2675), - [sym__highlight_span_start] = ACTIONS(2675), - [sym__insert_span_start] = ACTIONS(2675), - [sym__delete_span_start] = ACTIONS(2675), - [sym__edit_comment_span_start] = ACTIONS(2675), - [sym__single_quote_span_open] = ACTIONS(2675), - [sym__double_quote_span_open] = ACTIONS(2675), - [sym__shortcode_open_escaped] = ACTIONS(2675), - [sym__shortcode_open] = ACTIONS(2675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2675), - [sym__cite_author_in_text] = ACTIONS(2675), - [sym__cite_suppress_author] = ACTIONS(2675), - [sym__strikeout_open] = ACTIONS(2675), - [sym__subscript_open] = ACTIONS(2675), - [sym__superscript_open] = ACTIONS(2675), - [sym__inline_note_start_token] = ACTIONS(2675), - [sym__strong_emphasis_open_star] = ACTIONS(2675), - [sym__strong_emphasis_open_underscore] = ACTIONS(2675), - [sym__emphasis_open_star] = ACTIONS(2675), - [sym__emphasis_open_underscore] = ACTIONS(2675), - [sym_inline_note_reference] = ACTIONS(2675), - [sym_html_element] = ACTIONS(2675), - [sym__pandoc_line_break] = ACTIONS(2675), + [STATE(261)] = { + [anon_sym_COLON] = ACTIONS(2673), + [sym_entity_reference] = ACTIONS(2673), + [sym_numeric_character_reference] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_BANG_LBRACK] = ACTIONS(2673), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2673), + [aux_sym_pandoc_str_token1] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2673), + [sym__whitespace] = ACTIONS(2673), + [sym__line_ending] = ACTIONS(2673), + [sym__soft_line_ending] = ACTIONS(2673), + [sym__block_close] = ACTIONS(2673), + [sym__block_quote_start] = ACTIONS(2673), + [sym_atx_h1_marker] = ACTIONS(2673), + [sym_atx_h2_marker] = ACTIONS(2673), + [sym_atx_h3_marker] = ACTIONS(2673), + [sym_atx_h4_marker] = ACTIONS(2673), + [sym_atx_h5_marker] = ACTIONS(2673), + [sym_atx_h6_marker] = ACTIONS(2673), + [sym__thematic_break] = ACTIONS(2673), + [sym__list_marker_minus] = ACTIONS(2673), + [sym__list_marker_plus] = ACTIONS(2673), + [sym__list_marker_star] = ACTIONS(2673), + [sym__list_marker_parenthesis] = ACTIONS(2673), + [sym__list_marker_dot] = ACTIONS(2673), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_example] = ACTIONS(2673), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2673), + [sym__fenced_code_block_start_backtick] = ACTIONS(2673), + [sym_minus_metadata] = ACTIONS(2673), + [sym__pipe_table_start] = ACTIONS(2673), + [sym__fenced_div_start] = ACTIONS(2673), + [sym__fenced_div_end] = ACTIONS(2673), + [sym_ref_id_specifier] = ACTIONS(2673), + [sym__code_span_start] = ACTIONS(2673), + [sym__html_comment] = ACTIONS(2673), + [sym__autolink] = ACTIONS(2673), + [sym__highlight_span_start] = ACTIONS(2673), + [sym__insert_span_start] = ACTIONS(2673), + [sym__delete_span_start] = ACTIONS(2673), + [sym__edit_comment_span_start] = ACTIONS(2673), + [sym__single_quote_span_open] = ACTIONS(2673), + [sym__double_quote_span_open] = ACTIONS(2673), + [sym__shortcode_open_escaped] = ACTIONS(2673), + [sym__shortcode_open] = ACTIONS(2673), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2673), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2673), + [sym__cite_author_in_text] = ACTIONS(2673), + [sym__cite_suppress_author] = ACTIONS(2673), + [sym__strikeout_open] = ACTIONS(2673), + [sym__subscript_open] = ACTIONS(2673), + [sym__superscript_open] = ACTIONS(2673), + [sym__inline_note_start_token] = ACTIONS(2673), + [sym__strong_emphasis_open_star] = ACTIONS(2673), + [sym__strong_emphasis_open_underscore] = ACTIONS(2673), + [sym__emphasis_open_star] = ACTIONS(2673), + [sym__emphasis_open_underscore] = ACTIONS(2673), + [sym_inline_note_reference] = ACTIONS(2673), + [sym_html_element] = ACTIONS(2673), + [sym__pandoc_line_break] = ACTIONS(2673), }, - [STATE(242)] = { + [STATE(262)] = { + [anon_sym_COLON] = ACTIONS(2677), + [sym_entity_reference] = ACTIONS(2677), + [sym_numeric_character_reference] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_BANG_LBRACK] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2677), + [aux_sym_pandoc_str_token1] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2677), + [sym__whitespace] = ACTIONS(2677), + [sym__line_ending] = ACTIONS(2677), + [sym__soft_line_ending] = ACTIONS(2677), + [sym__block_close] = ACTIONS(2677), + [sym__block_quote_start] = ACTIONS(2677), + [sym_atx_h1_marker] = ACTIONS(2677), + [sym_atx_h2_marker] = ACTIONS(2677), + [sym_atx_h3_marker] = ACTIONS(2677), + [sym_atx_h4_marker] = ACTIONS(2677), + [sym_atx_h5_marker] = ACTIONS(2677), + [sym_atx_h6_marker] = ACTIONS(2677), + [sym__thematic_break] = ACTIONS(2677), + [sym__list_marker_minus] = ACTIONS(2677), + [sym__list_marker_plus] = ACTIONS(2677), + [sym__list_marker_star] = ACTIONS(2677), + [sym__list_marker_parenthesis] = ACTIONS(2677), + [sym__list_marker_dot] = ACTIONS(2677), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_example] = ACTIONS(2677), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2677), + [sym__fenced_code_block_start_backtick] = ACTIONS(2677), + [sym_minus_metadata] = ACTIONS(2677), + [sym__pipe_table_start] = ACTIONS(2677), + [sym__fenced_div_start] = ACTIONS(2677), + [sym__fenced_div_end] = ACTIONS(2677), + [sym_ref_id_specifier] = ACTIONS(2677), + [sym__code_span_start] = ACTIONS(2677), + [sym__html_comment] = ACTIONS(2677), + [sym__autolink] = ACTIONS(2677), + [sym__highlight_span_start] = ACTIONS(2677), + [sym__insert_span_start] = ACTIONS(2677), + [sym__delete_span_start] = ACTIONS(2677), + [sym__edit_comment_span_start] = ACTIONS(2677), + [sym__single_quote_span_open] = ACTIONS(2677), + [sym__double_quote_span_open] = ACTIONS(2677), + [sym__shortcode_open_escaped] = ACTIONS(2677), + [sym__shortcode_open] = ACTIONS(2677), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2677), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2677), + [sym__cite_author_in_text] = ACTIONS(2677), + [sym__cite_suppress_author] = ACTIONS(2677), + [sym__strikeout_open] = ACTIONS(2677), + [sym__subscript_open] = ACTIONS(2677), + [sym__superscript_open] = ACTIONS(2677), + [sym__inline_note_start_token] = ACTIONS(2677), + [sym__strong_emphasis_open_star] = ACTIONS(2677), + [sym__strong_emphasis_open_underscore] = ACTIONS(2677), + [sym__emphasis_open_star] = ACTIONS(2677), + [sym__emphasis_open_underscore] = ACTIONS(2677), + [sym_inline_note_reference] = ACTIONS(2677), + [sym_html_element] = ACTIONS(2677), + [sym__pandoc_line_break] = ACTIONS(2677), + }, + [STATE(263)] = { [anon_sym_COLON] = ACTIONS(2681), [sym_entity_reference] = ACTIONS(2681), [sym_numeric_character_reference] = ACTIONS(2681), @@ -45875,11 +48681,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2681), [aux_sym_pandoc_str_token1] = ACTIONS(2683), [anon_sym_PIPE] = ACTIONS(2681), - [aux_sym__prose_punctuation_token1] = ACTIONS(2683), + [sym__whitespace] = ACTIONS(2681), [sym__line_ending] = ACTIONS(2681), [sym__soft_line_ending] = ACTIONS(2681), [sym__block_close] = ACTIONS(2681), - [sym_block_continuation] = ACTIONS(2685), [sym__block_quote_start] = ACTIONS(2681), [sym_atx_h1_marker] = ACTIONS(2681), [sym_atx_h2_marker] = ACTIONS(2681), @@ -45933,76 +48738,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2681), [sym__pandoc_line_break] = ACTIONS(2681), }, - [STATE(243)] = { - [anon_sym_COLON] = ACTIONS(2687), - [sym_entity_reference] = ACTIONS(2687), - [sym_numeric_character_reference] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_BANG_LBRACK] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [aux_sym_pandoc_str_token1] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2687), - [aux_sym__prose_punctuation_token1] = ACTIONS(2689), - [sym__line_ending] = ACTIONS(2687), - [sym__soft_line_ending] = ACTIONS(2687), - [sym__block_close] = ACTIONS(2687), - [sym_block_continuation] = ACTIONS(2691), - [sym__block_quote_start] = ACTIONS(2687), - [sym_atx_h1_marker] = ACTIONS(2687), - [sym_atx_h2_marker] = ACTIONS(2687), - [sym_atx_h3_marker] = ACTIONS(2687), - [sym_atx_h4_marker] = ACTIONS(2687), - [sym_atx_h5_marker] = ACTIONS(2687), - [sym_atx_h6_marker] = ACTIONS(2687), - [sym__thematic_break] = ACTIONS(2687), - [sym__list_marker_minus] = ACTIONS(2687), - [sym__list_marker_plus] = ACTIONS(2687), - [sym__list_marker_star] = ACTIONS(2687), - [sym__list_marker_parenthesis] = ACTIONS(2687), - [sym__list_marker_dot] = ACTIONS(2687), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_example] = ACTIONS(2687), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2687), - [sym__fenced_code_block_start_backtick] = ACTIONS(2687), - [sym_minus_metadata] = ACTIONS(2687), - [sym__pipe_table_start] = ACTIONS(2687), - [sym__fenced_div_start] = ACTIONS(2687), - [sym__fenced_div_end] = ACTIONS(2687), - [sym_ref_id_specifier] = ACTIONS(2687), - [sym__code_span_start] = ACTIONS(2687), - [sym__html_comment] = ACTIONS(2687), - [sym__autolink] = ACTIONS(2687), - [sym__highlight_span_start] = ACTIONS(2687), - [sym__insert_span_start] = ACTIONS(2687), - [sym__delete_span_start] = ACTIONS(2687), - [sym__edit_comment_span_start] = ACTIONS(2687), - [sym__single_quote_span_open] = ACTIONS(2687), - [sym__double_quote_span_open] = ACTIONS(2687), - [sym__shortcode_open_escaped] = ACTIONS(2687), - [sym__shortcode_open] = ACTIONS(2687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2687), - [sym__cite_author_in_text] = ACTIONS(2687), - [sym__cite_suppress_author] = ACTIONS(2687), - [sym__strikeout_open] = ACTIONS(2687), - [sym__subscript_open] = ACTIONS(2687), - [sym__superscript_open] = ACTIONS(2687), - [sym__inline_note_start_token] = ACTIONS(2687), - [sym__strong_emphasis_open_star] = ACTIONS(2687), - [sym__strong_emphasis_open_underscore] = ACTIONS(2687), - [sym__emphasis_open_star] = ACTIONS(2687), - [sym__emphasis_open_underscore] = ACTIONS(2687), - [sym_inline_note_reference] = ACTIONS(2687), - [sym_html_element] = ACTIONS(2687), - [sym__pandoc_line_break] = ACTIONS(2687), + [STATE(264)] = { + [anon_sym_COLON] = ACTIONS(2685), + [sym_entity_reference] = ACTIONS(2685), + [sym_numeric_character_reference] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_BANG_LBRACK] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [aux_sym_pandoc_str_token1] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2685), + [sym__whitespace] = ACTIONS(2685), + [sym__line_ending] = ACTIONS(2685), + [sym__soft_line_ending] = ACTIONS(2685), + [sym__block_close] = ACTIONS(2685), + [sym__block_quote_start] = ACTIONS(2685), + [sym_atx_h1_marker] = ACTIONS(2685), + [sym_atx_h2_marker] = ACTIONS(2685), + [sym_atx_h3_marker] = ACTIONS(2685), + [sym_atx_h4_marker] = ACTIONS(2685), + [sym_atx_h5_marker] = ACTIONS(2685), + [sym_atx_h6_marker] = ACTIONS(2685), + [sym__thematic_break] = ACTIONS(2685), + [sym__list_marker_minus] = ACTIONS(2685), + [sym__list_marker_plus] = ACTIONS(2685), + [sym__list_marker_star] = ACTIONS(2685), + [sym__list_marker_parenthesis] = ACTIONS(2685), + [sym__list_marker_dot] = ACTIONS(2685), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_example] = ACTIONS(2685), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2685), + [sym__fenced_code_block_start_backtick] = ACTIONS(2685), + [sym_minus_metadata] = ACTIONS(2685), + [sym__pipe_table_start] = ACTIONS(2685), + [sym__fenced_div_start] = ACTIONS(2685), + [sym__fenced_div_end] = ACTIONS(2685), + [sym_ref_id_specifier] = ACTIONS(2685), + [sym__code_span_start] = ACTIONS(2685), + [sym__html_comment] = ACTIONS(2685), + [sym__autolink] = ACTIONS(2685), + [sym__highlight_span_start] = ACTIONS(2685), + [sym__insert_span_start] = ACTIONS(2685), + [sym__delete_span_start] = ACTIONS(2685), + [sym__edit_comment_span_start] = ACTIONS(2685), + [sym__single_quote_span_open] = ACTIONS(2685), + [sym__double_quote_span_open] = ACTIONS(2685), + [sym__shortcode_open_escaped] = ACTIONS(2685), + [sym__shortcode_open] = ACTIONS(2685), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2685), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2685), + [sym__cite_author_in_text] = ACTIONS(2685), + [sym__cite_suppress_author] = ACTIONS(2685), + [sym__strikeout_open] = ACTIONS(2685), + [sym__subscript_open] = ACTIONS(2685), + [sym__superscript_open] = ACTIONS(2685), + [sym__inline_note_start_token] = ACTIONS(2685), + [sym__strong_emphasis_open_star] = ACTIONS(2685), + [sym__strong_emphasis_open_underscore] = ACTIONS(2685), + [sym__emphasis_open_star] = ACTIONS(2685), + [sym__emphasis_open_underscore] = ACTIONS(2685), + [sym_inline_note_reference] = ACTIONS(2685), + [sym_html_element] = ACTIONS(2685), + [sym__pandoc_line_break] = ACTIONS(2685), }, - [STATE(244)] = { + [STATE(265)] = { + [anon_sym_COLON] = ACTIONS(2689), + [sym_entity_reference] = ACTIONS(2689), + [sym_numeric_character_reference] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_BANG_LBRACK] = ACTIONS(2689), + [anon_sym_DOLLAR] = ACTIONS(2691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [aux_sym_pandoc_str_token1] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2689), + [sym__whitespace] = ACTIONS(2689), + [sym__line_ending] = ACTIONS(2689), + [sym__soft_line_ending] = ACTIONS(2689), + [sym__block_close] = ACTIONS(2689), + [sym__block_quote_start] = ACTIONS(2689), + [sym_atx_h1_marker] = ACTIONS(2689), + [sym_atx_h2_marker] = ACTIONS(2689), + [sym_atx_h3_marker] = ACTIONS(2689), + [sym_atx_h4_marker] = ACTIONS(2689), + [sym_atx_h5_marker] = ACTIONS(2689), + [sym_atx_h6_marker] = ACTIONS(2689), + [sym__thematic_break] = ACTIONS(2689), + [sym__list_marker_minus] = ACTIONS(2689), + [sym__list_marker_plus] = ACTIONS(2689), + [sym__list_marker_star] = ACTIONS(2689), + [sym__list_marker_parenthesis] = ACTIONS(2689), + [sym__list_marker_dot] = ACTIONS(2689), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_example] = ACTIONS(2689), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2689), + [sym__fenced_code_block_start_backtick] = ACTIONS(2689), + [sym_minus_metadata] = ACTIONS(2689), + [sym__pipe_table_start] = ACTIONS(2689), + [sym__fenced_div_start] = ACTIONS(2689), + [sym__fenced_div_end] = ACTIONS(2689), + [sym_ref_id_specifier] = ACTIONS(2689), + [sym__code_span_start] = ACTIONS(2689), + [sym__html_comment] = ACTIONS(2689), + [sym__autolink] = ACTIONS(2689), + [sym__highlight_span_start] = ACTIONS(2689), + [sym__insert_span_start] = ACTIONS(2689), + [sym__delete_span_start] = ACTIONS(2689), + [sym__edit_comment_span_start] = ACTIONS(2689), + [sym__single_quote_span_open] = ACTIONS(2689), + [sym__double_quote_span_open] = ACTIONS(2689), + [sym__shortcode_open_escaped] = ACTIONS(2689), + [sym__shortcode_open] = ACTIONS(2689), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2689), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2689), + [sym__cite_author_in_text] = ACTIONS(2689), + [sym__cite_suppress_author] = ACTIONS(2689), + [sym__strikeout_open] = ACTIONS(2689), + [sym__subscript_open] = ACTIONS(2689), + [sym__superscript_open] = ACTIONS(2689), + [sym__inline_note_start_token] = ACTIONS(2689), + [sym__strong_emphasis_open_star] = ACTIONS(2689), + [sym__strong_emphasis_open_underscore] = ACTIONS(2689), + [sym__emphasis_open_star] = ACTIONS(2689), + [sym__emphasis_open_underscore] = ACTIONS(2689), + [sym_inline_note_reference] = ACTIONS(2689), + [sym_html_element] = ACTIONS(2689), + [sym__pandoc_line_break] = ACTIONS(2689), + }, + [STATE(266)] = { [anon_sym_COLON] = ACTIONS(2693), [sym_entity_reference] = ACTIONS(2693), [sym_numeric_character_reference] = ACTIONS(2693), @@ -46013,11 +48885,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2693), [aux_sym_pandoc_str_token1] = ACTIONS(2695), [anon_sym_PIPE] = ACTIONS(2693), - [aux_sym__prose_punctuation_token1] = ACTIONS(2695), + [sym__whitespace] = ACTIONS(2693), [sym__line_ending] = ACTIONS(2693), [sym__soft_line_ending] = ACTIONS(2693), [sym__block_close] = ACTIONS(2693), - [sym_block_continuation] = ACTIONS(2697), [sym__block_quote_start] = ACTIONS(2693), [sym_atx_h1_marker] = ACTIONS(2693), [sym_atx_h2_marker] = ACTIONS(2693), @@ -46071,7 +48942,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2693), [sym__pandoc_line_break] = ACTIONS(2693), }, - [STATE(245)] = { + [STATE(267)] = { + [ts_builtin_sym_end] = ACTIONS(2447), + [anon_sym_COLON] = ACTIONS(2447), + [sym_entity_reference] = ACTIONS(2447), + [sym_numeric_character_reference] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2447), + [anon_sym_BANG_LBRACK] = ACTIONS(2447), + [anon_sym_DOLLAR] = ACTIONS(2449), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [aux_sym_pandoc_str_token1] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2447), + [sym__whitespace] = ACTIONS(2447), + [sym__line_ending] = ACTIONS(2447), + [sym__soft_line_ending] = ACTIONS(2447), + [sym_block_continuation] = ACTIONS(2697), + [sym__block_quote_start] = ACTIONS(2447), + [sym_atx_h1_marker] = ACTIONS(2447), + [sym_atx_h2_marker] = ACTIONS(2447), + [sym_atx_h3_marker] = ACTIONS(2447), + [sym_atx_h4_marker] = ACTIONS(2447), + [sym_atx_h5_marker] = ACTIONS(2447), + [sym_atx_h6_marker] = ACTIONS(2447), + [sym__thematic_break] = ACTIONS(2447), + [sym__list_marker_minus] = ACTIONS(2447), + [sym__list_marker_plus] = ACTIONS(2447), + [sym__list_marker_star] = ACTIONS(2447), + [sym__list_marker_parenthesis] = ACTIONS(2447), + [sym__list_marker_dot] = ACTIONS(2447), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_example] = ACTIONS(2447), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2447), + [sym__fenced_code_block_start_backtick] = ACTIONS(2447), + [sym_minus_metadata] = ACTIONS(2447), + [sym__pipe_table_start] = ACTIONS(2447), + [sym__fenced_div_start] = ACTIONS(2447), + [sym_ref_id_specifier] = ACTIONS(2447), + [sym__code_span_start] = ACTIONS(2447), + [sym__html_comment] = ACTIONS(2447), + [sym__autolink] = ACTIONS(2447), + [sym__highlight_span_start] = ACTIONS(2447), + [sym__insert_span_start] = ACTIONS(2447), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2447), + [sym__single_quote_span_open] = ACTIONS(2447), + [sym__double_quote_span_open] = ACTIONS(2447), + [sym__shortcode_open_escaped] = ACTIONS(2447), + [sym__shortcode_open] = ACTIONS(2447), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2447), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2447), + [sym__cite_author_in_text] = ACTIONS(2447), + [sym__cite_suppress_author] = ACTIONS(2447), + [sym__strikeout_open] = ACTIONS(2447), + [sym__subscript_open] = ACTIONS(2447), + [sym__superscript_open] = ACTIONS(2447), + [sym__inline_note_start_token] = ACTIONS(2447), + [sym__strong_emphasis_open_star] = ACTIONS(2447), + [sym__strong_emphasis_open_underscore] = ACTIONS(2447), + [sym__emphasis_open_star] = ACTIONS(2447), + [sym__emphasis_open_underscore] = ACTIONS(2447), + [sym_inline_note_reference] = ACTIONS(2447), + [sym_html_element] = ACTIONS(2447), + [sym__pandoc_line_break] = ACTIONS(2447), + }, + [STATE(268)] = { + [anon_sym_COLON] = ACTIONS(2333), + [sym_entity_reference] = ACTIONS(2333), + [sym_numeric_character_reference] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_BANG_LBRACK] = ACTIONS(2333), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [aux_sym_pandoc_str_token1] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2333), + [sym__whitespace] = ACTIONS(2333), + [sym__line_ending] = ACTIONS(2333), + [sym__soft_line_ending] = ACTIONS(2333), + [sym__block_close] = ACTIONS(2333), + [sym__block_quote_start] = ACTIONS(2333), + [sym_atx_h1_marker] = ACTIONS(2333), + [sym_atx_h2_marker] = ACTIONS(2333), + [sym_atx_h3_marker] = ACTIONS(2333), + [sym_atx_h4_marker] = ACTIONS(2333), + [sym_atx_h5_marker] = ACTIONS(2333), + [sym_atx_h6_marker] = ACTIONS(2333), + [sym__thematic_break] = ACTIONS(2333), + [sym__list_marker_minus] = ACTIONS(2333), + [sym__list_marker_plus] = ACTIONS(2333), + [sym__list_marker_star] = ACTIONS(2333), + [sym__list_marker_parenthesis] = ACTIONS(2333), + [sym__list_marker_dot] = ACTIONS(2333), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_example] = ACTIONS(2333), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2333), + [sym__fenced_code_block_start_backtick] = ACTIONS(2333), + [sym_minus_metadata] = ACTIONS(2333), + [sym__pipe_table_start] = ACTIONS(2333), + [sym__fenced_div_start] = ACTIONS(2333), + [sym__fenced_div_end] = ACTIONS(2333), + [sym_ref_id_specifier] = ACTIONS(2333), + [sym__code_span_start] = ACTIONS(2333), + [sym__html_comment] = ACTIONS(2333), + [sym__autolink] = ACTIONS(2333), + [sym__highlight_span_start] = ACTIONS(2333), + [sym__insert_span_start] = ACTIONS(2333), + [sym__delete_span_start] = ACTIONS(2333), + [sym__edit_comment_span_start] = ACTIONS(2333), + [sym__single_quote_span_open] = ACTIONS(2333), + [sym__double_quote_span_open] = ACTIONS(2333), + [sym__shortcode_open_escaped] = ACTIONS(2333), + [sym__shortcode_open] = ACTIONS(2333), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2333), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2333), + [sym__cite_author_in_text] = ACTIONS(2333), + [sym__cite_suppress_author] = ACTIONS(2333), + [sym__strikeout_open] = ACTIONS(2333), + [sym__subscript_open] = ACTIONS(2333), + [sym__superscript_open] = ACTIONS(2333), + [sym__inline_note_start_token] = ACTIONS(2333), + [sym__strong_emphasis_open_star] = ACTIONS(2333), + [sym__strong_emphasis_open_underscore] = ACTIONS(2333), + [sym__emphasis_open_star] = ACTIONS(2333), + [sym__emphasis_open_underscore] = ACTIONS(2333), + [sym_inline_note_reference] = ACTIONS(2333), + [sym_html_element] = ACTIONS(2333), + [sym__pandoc_line_break] = ACTIONS(2333), + }, + [STATE(269)] = { [anon_sym_COLON] = ACTIONS(2699), [sym_entity_reference] = ACTIONS(2699), [sym_numeric_character_reference] = ACTIONS(2699), @@ -46082,11 +49089,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2699), [aux_sym_pandoc_str_token1] = ACTIONS(2701), [anon_sym_PIPE] = ACTIONS(2699), - [aux_sym__prose_punctuation_token1] = ACTIONS(2701), + [sym__whitespace] = ACTIONS(2699), [sym__line_ending] = ACTIONS(2699), [sym__soft_line_ending] = ACTIONS(2699), [sym__block_close] = ACTIONS(2699), - [sym_block_continuation] = ACTIONS(2703), [sym__block_quote_start] = ACTIONS(2699), [sym_atx_h1_marker] = ACTIONS(2699), [sym_atx_h2_marker] = ACTIONS(2699), @@ -46140,4973 +49146,4895 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2699), [sym__pandoc_line_break] = ACTIONS(2699), }, - [STATE(246)] = { - [anon_sym_COLON] = ACTIONS(2705), - [sym_entity_reference] = ACTIONS(2705), - [sym_numeric_character_reference] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_BANG_LBRACK] = ACTIONS(2705), - [anon_sym_DOLLAR] = ACTIONS(2707), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2705), - [aux_sym_pandoc_str_token1] = ACTIONS(2707), - [anon_sym_PIPE] = ACTIONS(2705), - [aux_sym__prose_punctuation_token1] = ACTIONS(2707), - [sym__line_ending] = ACTIONS(2705), - [sym__soft_line_ending] = ACTIONS(2705), - [sym__block_close] = ACTIONS(2705), - [sym_block_continuation] = ACTIONS(2709), - [sym__block_quote_start] = ACTIONS(2705), - [sym_atx_h1_marker] = ACTIONS(2705), - [sym_atx_h2_marker] = ACTIONS(2705), - [sym_atx_h3_marker] = ACTIONS(2705), - [sym_atx_h4_marker] = ACTIONS(2705), - [sym_atx_h5_marker] = ACTIONS(2705), - [sym_atx_h6_marker] = ACTIONS(2705), - [sym__thematic_break] = ACTIONS(2705), - [sym__list_marker_minus] = ACTIONS(2705), - [sym__list_marker_plus] = ACTIONS(2705), - [sym__list_marker_star] = ACTIONS(2705), - [sym__list_marker_parenthesis] = ACTIONS(2705), - [sym__list_marker_dot] = ACTIONS(2705), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_example] = ACTIONS(2705), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2705), - [sym__fenced_code_block_start_backtick] = ACTIONS(2705), - [sym_minus_metadata] = ACTIONS(2705), - [sym__pipe_table_start] = ACTIONS(2705), - [sym__fenced_div_start] = ACTIONS(2705), - [sym__fenced_div_end] = ACTIONS(2705), - [sym_ref_id_specifier] = ACTIONS(2705), - [sym__code_span_start] = ACTIONS(2705), - [sym__html_comment] = ACTIONS(2705), - [sym__autolink] = ACTIONS(2705), - [sym__highlight_span_start] = ACTIONS(2705), - [sym__insert_span_start] = ACTIONS(2705), - [sym__delete_span_start] = ACTIONS(2705), - [sym__edit_comment_span_start] = ACTIONS(2705), - [sym__single_quote_span_open] = ACTIONS(2705), - [sym__double_quote_span_open] = ACTIONS(2705), - [sym__shortcode_open_escaped] = ACTIONS(2705), - [sym__shortcode_open] = ACTIONS(2705), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2705), - [sym__cite_author_in_text] = ACTIONS(2705), - [sym__cite_suppress_author] = ACTIONS(2705), - [sym__strikeout_open] = ACTIONS(2705), - [sym__subscript_open] = ACTIONS(2705), - [sym__superscript_open] = ACTIONS(2705), - [sym__inline_note_start_token] = ACTIONS(2705), - [sym__strong_emphasis_open_star] = ACTIONS(2705), - [sym__strong_emphasis_open_underscore] = ACTIONS(2705), - [sym__emphasis_open_star] = ACTIONS(2705), - [sym__emphasis_open_underscore] = ACTIONS(2705), - [sym_inline_note_reference] = ACTIONS(2705), - [sym_html_element] = ACTIONS(2705), - [sym__pandoc_line_break] = ACTIONS(2705), + [STATE(270)] = { + [anon_sym_COLON] = ACTIONS(2703), + [sym_entity_reference] = ACTIONS(2703), + [sym_numeric_character_reference] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_BANG_LBRACK] = ACTIONS(2703), + [anon_sym_DOLLAR] = ACTIONS(2705), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [aux_sym_pandoc_str_token1] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2703), + [sym__whitespace] = ACTIONS(2703), + [sym__line_ending] = ACTIONS(2703), + [sym__soft_line_ending] = ACTIONS(2703), + [sym__block_close] = ACTIONS(2703), + [sym__block_quote_start] = ACTIONS(2703), + [sym_atx_h1_marker] = ACTIONS(2703), + [sym_atx_h2_marker] = ACTIONS(2703), + [sym_atx_h3_marker] = ACTIONS(2703), + [sym_atx_h4_marker] = ACTIONS(2703), + [sym_atx_h5_marker] = ACTIONS(2703), + [sym_atx_h6_marker] = ACTIONS(2703), + [sym__thematic_break] = ACTIONS(2703), + [sym__list_marker_minus] = ACTIONS(2703), + [sym__list_marker_plus] = ACTIONS(2703), + [sym__list_marker_star] = ACTIONS(2703), + [sym__list_marker_parenthesis] = ACTIONS(2703), + [sym__list_marker_dot] = ACTIONS(2703), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_example] = ACTIONS(2703), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2703), + [sym__fenced_code_block_start_backtick] = ACTIONS(2703), + [sym_minus_metadata] = ACTIONS(2703), + [sym__pipe_table_start] = ACTIONS(2703), + [sym__fenced_div_start] = ACTIONS(2703), + [sym__fenced_div_end] = ACTIONS(2703), + [sym_ref_id_specifier] = ACTIONS(2703), + [sym__code_span_start] = ACTIONS(2703), + [sym__html_comment] = ACTIONS(2703), + [sym__autolink] = ACTIONS(2703), + [sym__highlight_span_start] = ACTIONS(2703), + [sym__insert_span_start] = ACTIONS(2703), + [sym__delete_span_start] = ACTIONS(2703), + [sym__edit_comment_span_start] = ACTIONS(2703), + [sym__single_quote_span_open] = ACTIONS(2703), + [sym__double_quote_span_open] = ACTIONS(2703), + [sym__shortcode_open_escaped] = ACTIONS(2703), + [sym__shortcode_open] = ACTIONS(2703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2703), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2703), + [sym__cite_author_in_text] = ACTIONS(2703), + [sym__cite_suppress_author] = ACTIONS(2703), + [sym__strikeout_open] = ACTIONS(2703), + [sym__subscript_open] = ACTIONS(2703), + [sym__superscript_open] = ACTIONS(2703), + [sym__inline_note_start_token] = ACTIONS(2703), + [sym__strong_emphasis_open_star] = ACTIONS(2703), + [sym__strong_emphasis_open_underscore] = ACTIONS(2703), + [sym__emphasis_open_star] = ACTIONS(2703), + [sym__emphasis_open_underscore] = ACTIONS(2703), + [sym_inline_note_reference] = ACTIONS(2703), + [sym_html_element] = ACTIONS(2703), + [sym__pandoc_line_break] = ACTIONS(2703), }, - [STATE(247)] = { - [sym__inlines] = STATE(3505), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(726), - [sym__inline_whitespace] = STATE(726), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2711), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2713), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(271)] = { + [anon_sym_COLON] = ACTIONS(2707), + [sym_entity_reference] = ACTIONS(2707), + [sym_numeric_character_reference] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_BANG_LBRACK] = ACTIONS(2707), + [anon_sym_DOLLAR] = ACTIONS(2709), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2707), + [aux_sym_pandoc_str_token1] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2707), + [sym__whitespace] = ACTIONS(2707), + [sym__line_ending] = ACTIONS(2707), + [sym__soft_line_ending] = ACTIONS(2707), + [sym__block_close] = ACTIONS(2707), + [sym__block_quote_start] = ACTIONS(2707), + [sym_atx_h1_marker] = ACTIONS(2707), + [sym_atx_h2_marker] = ACTIONS(2707), + [sym_atx_h3_marker] = ACTIONS(2707), + [sym_atx_h4_marker] = ACTIONS(2707), + [sym_atx_h5_marker] = ACTIONS(2707), + [sym_atx_h6_marker] = ACTIONS(2707), + [sym__thematic_break] = ACTIONS(2707), + [sym__list_marker_minus] = ACTIONS(2707), + [sym__list_marker_plus] = ACTIONS(2707), + [sym__list_marker_star] = ACTIONS(2707), + [sym__list_marker_parenthesis] = ACTIONS(2707), + [sym__list_marker_dot] = ACTIONS(2707), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_example] = ACTIONS(2707), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2707), + [sym__fenced_code_block_start_backtick] = ACTIONS(2707), + [sym_minus_metadata] = ACTIONS(2707), + [sym__pipe_table_start] = ACTIONS(2707), + [sym__fenced_div_start] = ACTIONS(2707), + [sym__fenced_div_end] = ACTIONS(2707), + [sym_ref_id_specifier] = ACTIONS(2707), + [sym__code_span_start] = ACTIONS(2707), + [sym__html_comment] = ACTIONS(2707), + [sym__autolink] = ACTIONS(2707), + [sym__highlight_span_start] = ACTIONS(2707), + [sym__insert_span_start] = ACTIONS(2707), + [sym__delete_span_start] = ACTIONS(2707), + [sym__edit_comment_span_start] = ACTIONS(2707), + [sym__single_quote_span_open] = ACTIONS(2707), + [sym__double_quote_span_open] = ACTIONS(2707), + [sym__shortcode_open_escaped] = ACTIONS(2707), + [sym__shortcode_open] = ACTIONS(2707), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2707), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2707), + [sym__cite_author_in_text] = ACTIONS(2707), + [sym__cite_suppress_author] = ACTIONS(2707), + [sym__strikeout_open] = ACTIONS(2707), + [sym__subscript_open] = ACTIONS(2707), + [sym__superscript_open] = ACTIONS(2707), + [sym__inline_note_start_token] = ACTIONS(2707), + [sym__strong_emphasis_open_star] = ACTIONS(2707), + [sym__strong_emphasis_open_underscore] = ACTIONS(2707), + [sym__emphasis_open_star] = ACTIONS(2707), + [sym__emphasis_open_underscore] = ACTIONS(2707), + [sym_inline_note_reference] = ACTIONS(2707), + [sym_html_element] = ACTIONS(2707), + [sym__pandoc_line_break] = ACTIONS(2707), }, - [STATE(248)] = { - [sym__inlines] = STATE(3507), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(730), - [sym__inline_whitespace] = STATE(730), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2717), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(272)] = { + [anon_sym_COLON] = ACTIONS(2711), + [sym_entity_reference] = ACTIONS(2711), + [sym_numeric_character_reference] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_BANG_LBRACK] = ACTIONS(2711), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [aux_sym_pandoc_str_token1] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2711), + [sym__whitespace] = ACTIONS(2711), + [sym__line_ending] = ACTIONS(2711), + [sym__soft_line_ending] = ACTIONS(2711), + [sym__block_close] = ACTIONS(2711), + [sym__block_quote_start] = ACTIONS(2711), + [sym_atx_h1_marker] = ACTIONS(2711), + [sym_atx_h2_marker] = ACTIONS(2711), + [sym_atx_h3_marker] = ACTIONS(2711), + [sym_atx_h4_marker] = ACTIONS(2711), + [sym_atx_h5_marker] = ACTIONS(2711), + [sym_atx_h6_marker] = ACTIONS(2711), + [sym__thematic_break] = ACTIONS(2711), + [sym__list_marker_minus] = ACTIONS(2711), + [sym__list_marker_plus] = ACTIONS(2711), + [sym__list_marker_star] = ACTIONS(2711), + [sym__list_marker_parenthesis] = ACTIONS(2711), + [sym__list_marker_dot] = ACTIONS(2711), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_example] = ACTIONS(2711), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2711), + [sym__fenced_code_block_start_backtick] = ACTIONS(2711), + [sym_minus_metadata] = ACTIONS(2711), + [sym__pipe_table_start] = ACTIONS(2711), + [sym__fenced_div_start] = ACTIONS(2711), + [sym__fenced_div_end] = ACTIONS(2711), + [sym_ref_id_specifier] = ACTIONS(2711), + [sym__code_span_start] = ACTIONS(2711), + [sym__html_comment] = ACTIONS(2711), + [sym__autolink] = ACTIONS(2711), + [sym__highlight_span_start] = ACTIONS(2711), + [sym__insert_span_start] = ACTIONS(2711), + [sym__delete_span_start] = ACTIONS(2711), + [sym__edit_comment_span_start] = ACTIONS(2711), + [sym__single_quote_span_open] = ACTIONS(2711), + [sym__double_quote_span_open] = ACTIONS(2711), + [sym__shortcode_open_escaped] = ACTIONS(2711), + [sym__shortcode_open] = ACTIONS(2711), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2711), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2711), + [sym__cite_author_in_text] = ACTIONS(2711), + [sym__cite_suppress_author] = ACTIONS(2711), + [sym__strikeout_open] = ACTIONS(2711), + [sym__subscript_open] = ACTIONS(2711), + [sym__superscript_open] = ACTIONS(2711), + [sym__inline_note_start_token] = ACTIONS(2711), + [sym__strong_emphasis_open_star] = ACTIONS(2711), + [sym__strong_emphasis_open_underscore] = ACTIONS(2711), + [sym__emphasis_open_star] = ACTIONS(2711), + [sym__emphasis_open_underscore] = ACTIONS(2711), + [sym_inline_note_reference] = ACTIONS(2711), + [sym_html_element] = ACTIONS(2711), + [sym__pandoc_line_break] = ACTIONS(2711), }, - [STATE(249)] = { - [sym__inlines] = STATE(3509), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(688), - [sym__inline_whitespace] = STATE(688), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2719), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2721), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(273)] = { + [anon_sym_COLON] = ACTIONS(2715), + [sym_entity_reference] = ACTIONS(2715), + [sym_numeric_character_reference] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_BANG_LBRACK] = ACTIONS(2715), + [anon_sym_DOLLAR] = ACTIONS(2717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [aux_sym_pandoc_str_token1] = ACTIONS(2717), + [anon_sym_PIPE] = ACTIONS(2715), + [sym__whitespace] = ACTIONS(2715), + [sym__line_ending] = ACTIONS(2715), + [sym__soft_line_ending] = ACTIONS(2715), + [sym__block_close] = ACTIONS(2715), + [sym__block_quote_start] = ACTIONS(2715), + [sym_atx_h1_marker] = ACTIONS(2715), + [sym_atx_h2_marker] = ACTIONS(2715), + [sym_atx_h3_marker] = ACTIONS(2715), + [sym_atx_h4_marker] = ACTIONS(2715), + [sym_atx_h5_marker] = ACTIONS(2715), + [sym_atx_h6_marker] = ACTIONS(2715), + [sym__thematic_break] = ACTIONS(2715), + [sym__list_marker_minus] = ACTIONS(2715), + [sym__list_marker_plus] = ACTIONS(2715), + [sym__list_marker_star] = ACTIONS(2715), + [sym__list_marker_parenthesis] = ACTIONS(2715), + [sym__list_marker_dot] = ACTIONS(2715), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_example] = ACTIONS(2715), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2715), + [sym__fenced_code_block_start_backtick] = ACTIONS(2715), + [sym_minus_metadata] = ACTIONS(2715), + [sym__pipe_table_start] = ACTIONS(2715), + [sym__fenced_div_start] = ACTIONS(2715), + [sym__fenced_div_end] = ACTIONS(2715), + [sym_ref_id_specifier] = ACTIONS(2715), + [sym__code_span_start] = ACTIONS(2715), + [sym__html_comment] = ACTIONS(2715), + [sym__autolink] = ACTIONS(2715), + [sym__highlight_span_start] = ACTIONS(2715), + [sym__insert_span_start] = ACTIONS(2715), + [sym__delete_span_start] = ACTIONS(2715), + [sym__edit_comment_span_start] = ACTIONS(2715), + [sym__single_quote_span_open] = ACTIONS(2715), + [sym__double_quote_span_open] = ACTIONS(2715), + [sym__shortcode_open_escaped] = ACTIONS(2715), + [sym__shortcode_open] = ACTIONS(2715), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2715), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2715), + [sym__cite_author_in_text] = ACTIONS(2715), + [sym__cite_suppress_author] = ACTIONS(2715), + [sym__strikeout_open] = ACTIONS(2715), + [sym__subscript_open] = ACTIONS(2715), + [sym__superscript_open] = ACTIONS(2715), + [sym__inline_note_start_token] = ACTIONS(2715), + [sym__strong_emphasis_open_star] = ACTIONS(2715), + [sym__strong_emphasis_open_underscore] = ACTIONS(2715), + [sym__emphasis_open_star] = ACTIONS(2715), + [sym__emphasis_open_underscore] = ACTIONS(2715), + [sym_inline_note_reference] = ACTIONS(2715), + [sym_html_element] = ACTIONS(2715), + [sym__pandoc_line_break] = ACTIONS(2715), }, - [STATE(250)] = { - [sym__inlines] = STATE(3511), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(690), - [sym__inline_whitespace] = STATE(690), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), + [STATE(274)] = { + [anon_sym_COLON] = ACTIONS(2719), + [sym_entity_reference] = ACTIONS(2719), + [sym_numeric_character_reference] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_BANG_LBRACK] = ACTIONS(2719), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [aux_sym_pandoc_str_token1] = ACTIONS(2721), + [anon_sym_PIPE] = ACTIONS(2719), + [sym__whitespace] = ACTIONS(2719), + [sym__line_ending] = ACTIONS(2719), + [sym__soft_line_ending] = ACTIONS(2719), + [sym__block_close] = ACTIONS(2719), + [sym__block_quote_start] = ACTIONS(2719), + [sym_atx_h1_marker] = ACTIONS(2719), + [sym_atx_h2_marker] = ACTIONS(2719), + [sym_atx_h3_marker] = ACTIONS(2719), + [sym_atx_h4_marker] = ACTIONS(2719), + [sym_atx_h5_marker] = ACTIONS(2719), + [sym_atx_h6_marker] = ACTIONS(2719), + [sym__thematic_break] = ACTIONS(2719), + [sym__list_marker_minus] = ACTIONS(2719), + [sym__list_marker_plus] = ACTIONS(2719), + [sym__list_marker_star] = ACTIONS(2719), + [sym__list_marker_parenthesis] = ACTIONS(2719), + [sym__list_marker_dot] = ACTIONS(2719), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_example] = ACTIONS(2719), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2719), + [sym__fenced_code_block_start_backtick] = ACTIONS(2719), + [sym_minus_metadata] = ACTIONS(2719), + [sym__pipe_table_start] = ACTIONS(2719), + [sym__fenced_div_start] = ACTIONS(2719), + [sym__fenced_div_end] = ACTIONS(2719), + [sym_ref_id_specifier] = ACTIONS(2719), + [sym__code_span_start] = ACTIONS(2719), + [sym__html_comment] = ACTIONS(2719), + [sym__autolink] = ACTIONS(2719), + [sym__highlight_span_start] = ACTIONS(2719), + [sym__insert_span_start] = ACTIONS(2719), + [sym__delete_span_start] = ACTIONS(2719), + [sym__edit_comment_span_start] = ACTIONS(2719), + [sym__single_quote_span_open] = ACTIONS(2719), + [sym__double_quote_span_open] = ACTIONS(2719), + [sym__shortcode_open_escaped] = ACTIONS(2719), + [sym__shortcode_open] = ACTIONS(2719), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2719), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2719), + [sym__cite_author_in_text] = ACTIONS(2719), + [sym__cite_suppress_author] = ACTIONS(2719), + [sym__strikeout_open] = ACTIONS(2719), + [sym__subscript_open] = ACTIONS(2719), + [sym__superscript_open] = ACTIONS(2719), + [sym__inline_note_start_token] = ACTIONS(2719), + [sym__strong_emphasis_open_star] = ACTIONS(2719), + [sym__strong_emphasis_open_underscore] = ACTIONS(2719), + [sym__emphasis_open_star] = ACTIONS(2719), + [sym__emphasis_open_underscore] = ACTIONS(2719), + [sym_inline_note_reference] = ACTIONS(2719), + [sym_html_element] = ACTIONS(2719), + [sym__pandoc_line_break] = ACTIONS(2719), + }, + [STATE(275)] = { + [ts_builtin_sym_end] = ACTIONS(2413), + [anon_sym_COLON] = ACTIONS(2413), + [sym_entity_reference] = ACTIONS(2413), + [sym_numeric_character_reference] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_BANG_LBRACK] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2413), + [aux_sym_pandoc_str_token1] = ACTIONS(2415), + [anon_sym_PIPE] = ACTIONS(2413), + [sym__whitespace] = ACTIONS(2413), + [sym__line_ending] = ACTIONS(2413), + [sym__soft_line_ending] = ACTIONS(2413), + [sym_block_continuation] = ACTIONS(2723), + [sym__block_quote_start] = ACTIONS(2413), + [sym_atx_h1_marker] = ACTIONS(2413), + [sym_atx_h2_marker] = ACTIONS(2413), + [sym_atx_h3_marker] = ACTIONS(2413), + [sym_atx_h4_marker] = ACTIONS(2413), + [sym_atx_h5_marker] = ACTIONS(2413), + [sym_atx_h6_marker] = ACTIONS(2413), + [sym__thematic_break] = ACTIONS(2413), + [sym__list_marker_minus] = ACTIONS(2413), + [sym__list_marker_plus] = ACTIONS(2413), + [sym__list_marker_star] = ACTIONS(2413), + [sym__list_marker_parenthesis] = ACTIONS(2413), + [sym__list_marker_dot] = ACTIONS(2413), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_example] = ACTIONS(2413), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2413), + [sym__fenced_code_block_start_backtick] = ACTIONS(2413), + [sym_minus_metadata] = ACTIONS(2413), + [sym__pipe_table_start] = ACTIONS(2413), + [sym__fenced_div_start] = ACTIONS(2413), + [sym_ref_id_specifier] = ACTIONS(2413), + [sym__code_span_start] = ACTIONS(2413), + [sym__html_comment] = ACTIONS(2413), + [sym__autolink] = ACTIONS(2413), + [sym__highlight_span_start] = ACTIONS(2413), + [sym__insert_span_start] = ACTIONS(2413), + [sym__delete_span_start] = ACTIONS(2413), + [sym__edit_comment_span_start] = ACTIONS(2413), + [sym__single_quote_span_open] = ACTIONS(2413), + [sym__double_quote_span_open] = ACTIONS(2413), + [sym__shortcode_open_escaped] = ACTIONS(2413), + [sym__shortcode_open] = ACTIONS(2413), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2413), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2413), + [sym__cite_author_in_text] = ACTIONS(2413), + [sym__cite_suppress_author] = ACTIONS(2413), + [sym__strikeout_open] = ACTIONS(2413), + [sym__subscript_open] = ACTIONS(2413), + [sym__superscript_open] = ACTIONS(2413), + [sym__inline_note_start_token] = ACTIONS(2413), + [sym__strong_emphasis_open_star] = ACTIONS(2413), + [sym__strong_emphasis_open_underscore] = ACTIONS(2413), + [sym__emphasis_open_star] = ACTIONS(2413), + [sym__emphasis_open_underscore] = ACTIONS(2413), + [sym_inline_note_reference] = ACTIONS(2413), + [sym_html_element] = ACTIONS(2413), + [sym__pandoc_line_break] = ACTIONS(2413), + }, + [STATE(276)] = { + [anon_sym_COLON] = ACTIONS(2725), + [sym_entity_reference] = ACTIONS(2725), + [sym_numeric_character_reference] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_BANG_LBRACK] = ACTIONS(2725), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2725), + [aux_sym_pandoc_str_token1] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2725), [sym__whitespace] = ACTIONS(2725), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [sym__line_ending] = ACTIONS(2725), + [sym__soft_line_ending] = ACTIONS(2725), + [sym__block_close] = ACTIONS(2725), + [sym__block_quote_start] = ACTIONS(2725), + [sym_atx_h1_marker] = ACTIONS(2725), + [sym_atx_h2_marker] = ACTIONS(2725), + [sym_atx_h3_marker] = ACTIONS(2725), + [sym_atx_h4_marker] = ACTIONS(2725), + [sym_atx_h5_marker] = ACTIONS(2725), + [sym_atx_h6_marker] = ACTIONS(2725), + [sym__thematic_break] = ACTIONS(2725), + [sym__list_marker_minus] = ACTIONS(2725), + [sym__list_marker_plus] = ACTIONS(2725), + [sym__list_marker_star] = ACTIONS(2725), + [sym__list_marker_parenthesis] = ACTIONS(2725), + [sym__list_marker_dot] = ACTIONS(2725), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_example] = ACTIONS(2725), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2725), + [sym__fenced_code_block_start_backtick] = ACTIONS(2725), + [sym_minus_metadata] = ACTIONS(2725), + [sym__pipe_table_start] = ACTIONS(2725), + [sym__fenced_div_start] = ACTIONS(2725), + [sym__fenced_div_end] = ACTIONS(2725), + [sym_ref_id_specifier] = ACTIONS(2725), + [sym__code_span_start] = ACTIONS(2725), + [sym__html_comment] = ACTIONS(2725), + [sym__autolink] = ACTIONS(2725), + [sym__highlight_span_start] = ACTIONS(2725), + [sym__insert_span_start] = ACTIONS(2725), + [sym__delete_span_start] = ACTIONS(2725), + [sym__edit_comment_span_start] = ACTIONS(2725), + [sym__single_quote_span_open] = ACTIONS(2725), + [sym__double_quote_span_open] = ACTIONS(2725), + [sym__shortcode_open_escaped] = ACTIONS(2725), + [sym__shortcode_open] = ACTIONS(2725), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2725), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2725), + [sym__cite_author_in_text] = ACTIONS(2725), + [sym__cite_suppress_author] = ACTIONS(2725), + [sym__strikeout_open] = ACTIONS(2725), + [sym__subscript_open] = ACTIONS(2725), + [sym__superscript_open] = ACTIONS(2725), + [sym__inline_note_start_token] = ACTIONS(2725), + [sym__strong_emphasis_open_star] = ACTIONS(2725), + [sym__strong_emphasis_open_underscore] = ACTIONS(2725), + [sym__emphasis_open_star] = ACTIONS(2725), + [sym__emphasis_open_underscore] = ACTIONS(2725), + [sym_inline_note_reference] = ACTIONS(2725), + [sym_html_element] = ACTIONS(2725), + [sym__pandoc_line_break] = ACTIONS(2725), }, - [STATE(251)] = { - [sym__inlines] = STATE(3822), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(660), - [sym__inline_whitespace] = STATE(660), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2727), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2729), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(277)] = { + [ts_builtin_sym_end] = ACTIONS(2353), + [anon_sym_COLON] = ACTIONS(2353), + [sym_entity_reference] = ACTIONS(2353), + [sym_numeric_character_reference] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_BANG_LBRACK] = ACTIONS(2353), + [anon_sym_DOLLAR] = ACTIONS(2355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2353), + [aux_sym_pandoc_str_token1] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2353), + [sym__whitespace] = ACTIONS(2353), + [sym__line_ending] = ACTIONS(2353), + [sym__soft_line_ending] = ACTIONS(2353), + [sym_block_continuation] = ACTIONS(2729), + [sym__block_quote_start] = ACTIONS(2353), + [sym_atx_h1_marker] = ACTIONS(2353), + [sym_atx_h2_marker] = ACTIONS(2353), + [sym_atx_h3_marker] = ACTIONS(2353), + [sym_atx_h4_marker] = ACTIONS(2353), + [sym_atx_h5_marker] = ACTIONS(2353), + [sym_atx_h6_marker] = ACTIONS(2353), + [sym__thematic_break] = ACTIONS(2353), + [sym__list_marker_minus] = ACTIONS(2353), + [sym__list_marker_plus] = ACTIONS(2353), + [sym__list_marker_star] = ACTIONS(2353), + [sym__list_marker_parenthesis] = ACTIONS(2353), + [sym__list_marker_dot] = ACTIONS(2353), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2353), + [sym__list_marker_example] = ACTIONS(2353), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2353), + [sym__fenced_code_block_start_backtick] = ACTIONS(2353), + [sym_minus_metadata] = ACTIONS(2353), + [sym__pipe_table_start] = ACTIONS(2353), + [sym__fenced_div_start] = ACTIONS(2353), + [sym_ref_id_specifier] = ACTIONS(2353), + [sym__code_span_start] = ACTIONS(2353), + [sym__html_comment] = ACTIONS(2353), + [sym__autolink] = ACTIONS(2353), + [sym__highlight_span_start] = ACTIONS(2353), + [sym__insert_span_start] = ACTIONS(2353), + [sym__delete_span_start] = ACTIONS(2353), + [sym__edit_comment_span_start] = ACTIONS(2353), + [sym__single_quote_span_open] = ACTIONS(2353), + [sym__double_quote_span_open] = ACTIONS(2353), + [sym__shortcode_open_escaped] = ACTIONS(2353), + [sym__shortcode_open] = ACTIONS(2353), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2353), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2353), + [sym__cite_author_in_text] = ACTIONS(2353), + [sym__cite_suppress_author] = ACTIONS(2353), + [sym__strikeout_open] = ACTIONS(2353), + [sym__subscript_open] = ACTIONS(2353), + [sym__superscript_open] = ACTIONS(2353), + [sym__inline_note_start_token] = ACTIONS(2353), + [sym__strong_emphasis_open_star] = ACTIONS(2353), + [sym__strong_emphasis_open_underscore] = ACTIONS(2353), + [sym__emphasis_open_star] = ACTIONS(2353), + [sym__emphasis_open_underscore] = ACTIONS(2353), + [sym_inline_note_reference] = ACTIONS(2353), + [sym_html_element] = ACTIONS(2353), + [sym__pandoc_line_break] = ACTIONS(2353), }, - [STATE(252)] = { - [sym__inlines] = STATE(3824), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(669), - [sym__inline_whitespace] = STATE(669), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2733), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(278)] = { + [ts_builtin_sym_end] = ACTIONS(2359), + [anon_sym_COLON] = ACTIONS(2359), + [sym_entity_reference] = ACTIONS(2359), + [sym_numeric_character_reference] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_BANG_LBRACK] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2361), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [aux_sym_pandoc_str_token1] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2359), + [sym__whitespace] = ACTIONS(2359), + [sym__line_ending] = ACTIONS(2359), + [sym__soft_line_ending] = ACTIONS(2359), + [sym_block_continuation] = ACTIONS(2731), + [sym__block_quote_start] = ACTIONS(2359), + [sym_atx_h1_marker] = ACTIONS(2359), + [sym_atx_h2_marker] = ACTIONS(2359), + [sym_atx_h3_marker] = ACTIONS(2359), + [sym_atx_h4_marker] = ACTIONS(2359), + [sym_atx_h5_marker] = ACTIONS(2359), + [sym_atx_h6_marker] = ACTIONS(2359), + [sym__thematic_break] = ACTIONS(2359), + [sym__list_marker_minus] = ACTIONS(2359), + [sym__list_marker_plus] = ACTIONS(2359), + [sym__list_marker_star] = ACTIONS(2359), + [sym__list_marker_parenthesis] = ACTIONS(2359), + [sym__list_marker_dot] = ACTIONS(2359), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2359), + [sym__list_marker_example] = ACTIONS(2359), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2359), + [sym__fenced_code_block_start_backtick] = ACTIONS(2359), + [sym_minus_metadata] = ACTIONS(2359), + [sym__pipe_table_start] = ACTIONS(2359), + [sym__fenced_div_start] = ACTIONS(2359), + [sym_ref_id_specifier] = ACTIONS(2359), + [sym__code_span_start] = ACTIONS(2359), + [sym__html_comment] = ACTIONS(2359), + [sym__autolink] = ACTIONS(2359), + [sym__highlight_span_start] = ACTIONS(2359), + [sym__insert_span_start] = ACTIONS(2359), + [sym__delete_span_start] = ACTIONS(2359), + [sym__edit_comment_span_start] = ACTIONS(2359), + [sym__single_quote_span_open] = ACTIONS(2359), + [sym__double_quote_span_open] = ACTIONS(2359), + [sym__shortcode_open_escaped] = ACTIONS(2359), + [sym__shortcode_open] = ACTIONS(2359), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2359), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2359), + [sym__cite_author_in_text] = ACTIONS(2359), + [sym__cite_suppress_author] = ACTIONS(2359), + [sym__strikeout_open] = ACTIONS(2359), + [sym__subscript_open] = ACTIONS(2359), + [sym__superscript_open] = ACTIONS(2359), + [sym__inline_note_start_token] = ACTIONS(2359), + [sym__strong_emphasis_open_star] = ACTIONS(2359), + [sym__strong_emphasis_open_underscore] = ACTIONS(2359), + [sym__emphasis_open_star] = ACTIONS(2359), + [sym__emphasis_open_underscore] = ACTIONS(2359), + [sym_inline_note_reference] = ACTIONS(2359), + [sym_html_element] = ACTIONS(2359), + [sym__pandoc_line_break] = ACTIONS(2359), }, - [STATE(253)] = { - [sym__inlines] = STATE(3826), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(674), - [sym__inline_whitespace] = STATE(674), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2737), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(279)] = { + [ts_builtin_sym_end] = ACTIONS(2425), + [anon_sym_COLON] = ACTIONS(2425), + [sym_entity_reference] = ACTIONS(2425), + [sym_numeric_character_reference] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_BANG_LBRACK] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2425), + [aux_sym_pandoc_str_token1] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2425), + [sym__whitespace] = ACTIONS(2425), + [sym__line_ending] = ACTIONS(2425), + [sym__soft_line_ending] = ACTIONS(2425), + [sym_block_continuation] = ACTIONS(2733), + [sym__block_quote_start] = ACTIONS(2425), + [sym_atx_h1_marker] = ACTIONS(2425), + [sym_atx_h2_marker] = ACTIONS(2425), + [sym_atx_h3_marker] = ACTIONS(2425), + [sym_atx_h4_marker] = ACTIONS(2425), + [sym_atx_h5_marker] = ACTIONS(2425), + [sym_atx_h6_marker] = ACTIONS(2425), + [sym__thematic_break] = ACTIONS(2425), + [sym__list_marker_minus] = ACTIONS(2425), + [sym__list_marker_plus] = ACTIONS(2425), + [sym__list_marker_star] = ACTIONS(2425), + [sym__list_marker_parenthesis] = ACTIONS(2425), + [sym__list_marker_dot] = ACTIONS(2425), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2425), + [sym__list_marker_example] = ACTIONS(2425), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2425), + [sym__fenced_code_block_start_backtick] = ACTIONS(2425), + [sym_minus_metadata] = ACTIONS(2425), + [sym__pipe_table_start] = ACTIONS(2425), + [sym__fenced_div_start] = ACTIONS(2425), + [sym_ref_id_specifier] = ACTIONS(2425), + [sym__code_span_start] = ACTIONS(2425), + [sym__html_comment] = ACTIONS(2425), + [sym__autolink] = ACTIONS(2425), + [sym__highlight_span_start] = ACTIONS(2425), + [sym__insert_span_start] = ACTIONS(2425), + [sym__delete_span_start] = ACTIONS(2425), + [sym__edit_comment_span_start] = ACTIONS(2425), + [sym__single_quote_span_open] = ACTIONS(2425), + [sym__double_quote_span_open] = ACTIONS(2425), + [sym__shortcode_open_escaped] = ACTIONS(2425), + [sym__shortcode_open] = ACTIONS(2425), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2425), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2425), + [sym__cite_author_in_text] = ACTIONS(2425), + [sym__cite_suppress_author] = ACTIONS(2425), + [sym__strikeout_open] = ACTIONS(2425), + [sym__subscript_open] = ACTIONS(2425), + [sym__superscript_open] = ACTIONS(2425), + [sym__inline_note_start_token] = ACTIONS(2425), + [sym__strong_emphasis_open_star] = ACTIONS(2425), + [sym__strong_emphasis_open_underscore] = ACTIONS(2425), + [sym__emphasis_open_star] = ACTIONS(2425), + [sym__emphasis_open_underscore] = ACTIONS(2425), + [sym_inline_note_reference] = ACTIONS(2425), + [sym_html_element] = ACTIONS(2425), + [sym__pandoc_line_break] = ACTIONS(2425), }, - [STATE(254)] = { - [sym__inlines] = STATE(3830), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(675), - [sym__inline_whitespace] = STATE(675), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2741), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(280)] = { + [sym_pipe_table_cell] = STATE(2713), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym_pipe_table_row_repeat1] = STATE(232), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2735), + [sym__line_ending] = ACTIONS(2737), + [sym__eof] = ACTIONS(2737), + [sym__pipe_table_line_ending] = ACTIONS(2737), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pandoc_line_break] = ACTIONS(2011), }, - [STATE(255)] = { - [sym__atx_heading_content] = STATE(2851), - [sym__inlines] = STATE(2851), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(459), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(25), - [sym__eof] = ACTIONS(2743), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [STATE(281)] = { + [ts_builtin_sym_end] = ACTIONS(2327), + [anon_sym_COLON] = ACTIONS(2327), + [sym_entity_reference] = ACTIONS(2327), + [sym_numeric_character_reference] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2327), + [anon_sym_BANG_LBRACK] = ACTIONS(2327), + [anon_sym_DOLLAR] = ACTIONS(2329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [aux_sym_pandoc_str_token1] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2327), + [sym__whitespace] = ACTIONS(2327), + [sym__line_ending] = ACTIONS(2327), + [sym__soft_line_ending] = ACTIONS(2327), + [sym_block_continuation] = ACTIONS(2739), + [sym__block_quote_start] = ACTIONS(2327), + [sym_atx_h1_marker] = ACTIONS(2327), + [sym_atx_h2_marker] = ACTIONS(2327), + [sym_atx_h3_marker] = ACTIONS(2327), + [sym_atx_h4_marker] = ACTIONS(2327), + [sym_atx_h5_marker] = ACTIONS(2327), + [sym_atx_h6_marker] = ACTIONS(2327), + [sym__thematic_break] = ACTIONS(2327), + [sym__list_marker_minus] = ACTIONS(2327), + [sym__list_marker_plus] = ACTIONS(2327), + [sym__list_marker_star] = ACTIONS(2327), + [sym__list_marker_parenthesis] = ACTIONS(2327), + [sym__list_marker_dot] = ACTIONS(2327), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2327), + [sym__list_marker_example] = ACTIONS(2327), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2327), + [sym__fenced_code_block_start_backtick] = ACTIONS(2327), + [sym_minus_metadata] = ACTIONS(2327), + [sym__pipe_table_start] = ACTIONS(2327), + [sym__fenced_div_start] = ACTIONS(2327), + [sym_ref_id_specifier] = ACTIONS(2327), + [sym__code_span_start] = ACTIONS(2327), + [sym__html_comment] = ACTIONS(2327), + [sym__autolink] = ACTIONS(2327), + [sym__highlight_span_start] = ACTIONS(2327), + [sym__insert_span_start] = ACTIONS(2327), + [sym__delete_span_start] = ACTIONS(2327), + [sym__edit_comment_span_start] = ACTIONS(2327), + [sym__single_quote_span_open] = ACTIONS(2327), + [sym__double_quote_span_open] = ACTIONS(2327), + [sym__shortcode_open_escaped] = ACTIONS(2327), + [sym__shortcode_open] = ACTIONS(2327), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2327), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2327), + [sym__cite_author_in_text] = ACTIONS(2327), + [sym__cite_suppress_author] = ACTIONS(2327), + [sym__strikeout_open] = ACTIONS(2327), + [sym__subscript_open] = ACTIONS(2327), + [sym__superscript_open] = ACTIONS(2327), + [sym__inline_note_start_token] = ACTIONS(2327), + [sym__strong_emphasis_open_star] = ACTIONS(2327), + [sym__strong_emphasis_open_underscore] = ACTIONS(2327), + [sym__emphasis_open_star] = ACTIONS(2327), + [sym__emphasis_open_underscore] = ACTIONS(2327), + [sym_inline_note_reference] = ACTIONS(2327), + [sym_html_element] = ACTIONS(2327), + [sym__pandoc_line_break] = ACTIONS(2327), }, - [STATE(256)] = { - [sym__inlines] = STATE(3358), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(703), - [sym__inline_whitespace] = STATE(703), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2747), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(282)] = { + [ts_builtin_sym_end] = ACTIONS(2365), + [anon_sym_COLON] = ACTIONS(2365), + [sym_entity_reference] = ACTIONS(2365), + [sym_numeric_character_reference] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_BANG_LBRACK] = ACTIONS(2365), + [anon_sym_DOLLAR] = ACTIONS(2367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2365), + [aux_sym_pandoc_str_token1] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2365), + [sym__whitespace] = ACTIONS(2365), + [sym__line_ending] = ACTIONS(2365), + [sym__soft_line_ending] = ACTIONS(2365), + [sym_block_continuation] = ACTIONS(2741), + [sym__block_quote_start] = ACTIONS(2365), + [sym_atx_h1_marker] = ACTIONS(2365), + [sym_atx_h2_marker] = ACTIONS(2365), + [sym_atx_h3_marker] = ACTIONS(2365), + [sym_atx_h4_marker] = ACTIONS(2365), + [sym_atx_h5_marker] = ACTIONS(2365), + [sym_atx_h6_marker] = ACTIONS(2365), + [sym__thematic_break] = ACTIONS(2365), + [sym__list_marker_minus] = ACTIONS(2365), + [sym__list_marker_plus] = ACTIONS(2365), + [sym__list_marker_star] = ACTIONS(2365), + [sym__list_marker_parenthesis] = ACTIONS(2365), + [sym__list_marker_dot] = ACTIONS(2365), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2365), + [sym__list_marker_example] = ACTIONS(2365), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2365), + [sym__fenced_code_block_start_backtick] = ACTIONS(2365), + [sym_minus_metadata] = ACTIONS(2365), + [sym__pipe_table_start] = ACTIONS(2365), + [sym__fenced_div_start] = ACTIONS(2365), + [sym_ref_id_specifier] = ACTIONS(2365), + [sym__code_span_start] = ACTIONS(2365), + [sym__html_comment] = ACTIONS(2365), + [sym__autolink] = ACTIONS(2365), + [sym__highlight_span_start] = ACTIONS(2365), + [sym__insert_span_start] = ACTIONS(2365), + [sym__delete_span_start] = ACTIONS(2365), + [sym__edit_comment_span_start] = ACTIONS(2365), + [sym__single_quote_span_open] = ACTIONS(2365), + [sym__double_quote_span_open] = ACTIONS(2365), + [sym__shortcode_open_escaped] = ACTIONS(2365), + [sym__shortcode_open] = ACTIONS(2365), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2365), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2365), + [sym__cite_author_in_text] = ACTIONS(2365), + [sym__cite_suppress_author] = ACTIONS(2365), + [sym__strikeout_open] = ACTIONS(2365), + [sym__subscript_open] = ACTIONS(2365), + [sym__superscript_open] = ACTIONS(2365), + [sym__inline_note_start_token] = ACTIONS(2365), + [sym__strong_emphasis_open_star] = ACTIONS(2365), + [sym__strong_emphasis_open_underscore] = ACTIONS(2365), + [sym__emphasis_open_star] = ACTIONS(2365), + [sym__emphasis_open_underscore] = ACTIONS(2365), + [sym_inline_note_reference] = ACTIONS(2365), + [sym_html_element] = ACTIONS(2365), + [sym__pandoc_line_break] = ACTIONS(2365), }, - [STATE(257)] = { - [sym__inlines] = STATE(3360), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(704), - [sym__inline_whitespace] = STATE(704), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2751), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(283)] = { + [ts_builtin_sym_end] = ACTIONS(2371), + [anon_sym_COLON] = ACTIONS(2371), + [sym_entity_reference] = ACTIONS(2371), + [sym_numeric_character_reference] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_BANG_LBRACK] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [aux_sym_pandoc_str_token1] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2371), + [sym__whitespace] = ACTIONS(2371), + [sym__line_ending] = ACTIONS(2371), + [sym__soft_line_ending] = ACTIONS(2371), + [sym_block_continuation] = ACTIONS(2743), + [sym__block_quote_start] = ACTIONS(2371), + [sym_atx_h1_marker] = ACTIONS(2371), + [sym_atx_h2_marker] = ACTIONS(2371), + [sym_atx_h3_marker] = ACTIONS(2371), + [sym_atx_h4_marker] = ACTIONS(2371), + [sym_atx_h5_marker] = ACTIONS(2371), + [sym_atx_h6_marker] = ACTIONS(2371), + [sym__thematic_break] = ACTIONS(2371), + [sym__list_marker_minus] = ACTIONS(2371), + [sym__list_marker_plus] = ACTIONS(2371), + [sym__list_marker_star] = ACTIONS(2371), + [sym__list_marker_parenthesis] = ACTIONS(2371), + [sym__list_marker_dot] = ACTIONS(2371), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_example] = ACTIONS(2371), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2371), + [sym__fenced_code_block_start_backtick] = ACTIONS(2371), + [sym_minus_metadata] = ACTIONS(2371), + [sym__pipe_table_start] = ACTIONS(2371), + [sym__fenced_div_start] = ACTIONS(2371), + [sym_ref_id_specifier] = ACTIONS(2371), + [sym__code_span_start] = ACTIONS(2371), + [sym__html_comment] = ACTIONS(2371), + [sym__autolink] = ACTIONS(2371), + [sym__highlight_span_start] = ACTIONS(2371), + [sym__insert_span_start] = ACTIONS(2371), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2371), + [sym__single_quote_span_open] = ACTIONS(2371), + [sym__double_quote_span_open] = ACTIONS(2371), + [sym__shortcode_open_escaped] = ACTIONS(2371), + [sym__shortcode_open] = ACTIONS(2371), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2371), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2371), + [sym__cite_author_in_text] = ACTIONS(2371), + [sym__cite_suppress_author] = ACTIONS(2371), + [sym__strikeout_open] = ACTIONS(2371), + [sym__subscript_open] = ACTIONS(2371), + [sym__superscript_open] = ACTIONS(2371), + [sym__inline_note_start_token] = ACTIONS(2371), + [sym__strong_emphasis_open_star] = ACTIONS(2371), + [sym__strong_emphasis_open_underscore] = ACTIONS(2371), + [sym__emphasis_open_star] = ACTIONS(2371), + [sym__emphasis_open_underscore] = ACTIONS(2371), + [sym_inline_note_reference] = ACTIONS(2371), + [sym_html_element] = ACTIONS(2371), + [sym__pandoc_line_break] = ACTIONS(2371), }, - [STATE(258)] = { - [sym__inlines] = STATE(3458), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(705), - [sym__inline_whitespace] = STATE(705), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2755), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(284)] = { + [anon_sym_COLON] = ACTIONS(2745), + [sym_entity_reference] = ACTIONS(2745), + [sym_numeric_character_reference] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_BANG_LBRACK] = ACTIONS(2745), + [anon_sym_DOLLAR] = ACTIONS(2747), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [aux_sym_pandoc_str_token1] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2745), + [sym__whitespace] = ACTIONS(2745), + [sym__line_ending] = ACTIONS(2745), + [sym__soft_line_ending] = ACTIONS(2745), + [sym__block_close] = ACTIONS(2745), + [sym__block_quote_start] = ACTIONS(2745), + [sym_atx_h1_marker] = ACTIONS(2745), + [sym_atx_h2_marker] = ACTIONS(2745), + [sym_atx_h3_marker] = ACTIONS(2745), + [sym_atx_h4_marker] = ACTIONS(2745), + [sym_atx_h5_marker] = ACTIONS(2745), + [sym_atx_h6_marker] = ACTIONS(2745), + [sym__thematic_break] = ACTIONS(2745), + [sym__list_marker_minus] = ACTIONS(2745), + [sym__list_marker_plus] = ACTIONS(2745), + [sym__list_marker_star] = ACTIONS(2745), + [sym__list_marker_parenthesis] = ACTIONS(2745), + [sym__list_marker_dot] = ACTIONS(2745), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_example] = ACTIONS(2745), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2745), + [sym__fenced_code_block_start_backtick] = ACTIONS(2745), + [sym_minus_metadata] = ACTIONS(2745), + [sym__pipe_table_start] = ACTIONS(2745), + [sym__fenced_div_start] = ACTIONS(2745), + [sym__fenced_div_end] = ACTIONS(2745), + [sym_ref_id_specifier] = ACTIONS(2745), + [sym__code_span_start] = ACTIONS(2745), + [sym__html_comment] = ACTIONS(2745), + [sym__autolink] = ACTIONS(2745), + [sym__highlight_span_start] = ACTIONS(2745), + [sym__insert_span_start] = ACTIONS(2745), + [sym__delete_span_start] = ACTIONS(2745), + [sym__edit_comment_span_start] = ACTIONS(2745), + [sym__single_quote_span_open] = ACTIONS(2745), + [sym__double_quote_span_open] = ACTIONS(2745), + [sym__shortcode_open_escaped] = ACTIONS(2745), + [sym__shortcode_open] = ACTIONS(2745), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2745), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2745), + [sym__cite_author_in_text] = ACTIONS(2745), + [sym__cite_suppress_author] = ACTIONS(2745), + [sym__strikeout_open] = ACTIONS(2745), + [sym__subscript_open] = ACTIONS(2745), + [sym__superscript_open] = ACTIONS(2745), + [sym__inline_note_start_token] = ACTIONS(2745), + [sym__strong_emphasis_open_star] = ACTIONS(2745), + [sym__strong_emphasis_open_underscore] = ACTIONS(2745), + [sym__emphasis_open_star] = ACTIONS(2745), + [sym__emphasis_open_underscore] = ACTIONS(2745), + [sym_inline_note_reference] = ACTIONS(2745), + [sym_html_element] = ACTIONS(2745), + [sym__pandoc_line_break] = ACTIONS(2745), }, - [STATE(259)] = { - [sym__inlines] = STATE(3602), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(706), - [sym__inline_whitespace] = STATE(706), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2759), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(285)] = { + [anon_sym_COLON] = ACTIONS(2371), + [sym_entity_reference] = ACTIONS(2371), + [sym_numeric_character_reference] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_BANG_LBRACK] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [aux_sym_pandoc_str_token1] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2371), + [sym__whitespace] = ACTIONS(2371), + [sym__line_ending] = ACTIONS(2371), + [sym__soft_line_ending] = ACTIONS(2371), + [sym__block_close] = ACTIONS(2371), + [sym__block_quote_start] = ACTIONS(2371), + [sym_atx_h1_marker] = ACTIONS(2371), + [sym_atx_h2_marker] = ACTIONS(2371), + [sym_atx_h3_marker] = ACTIONS(2371), + [sym_atx_h4_marker] = ACTIONS(2371), + [sym_atx_h5_marker] = ACTIONS(2371), + [sym_atx_h6_marker] = ACTIONS(2371), + [sym__thematic_break] = ACTIONS(2371), + [sym__list_marker_minus] = ACTIONS(2371), + [sym__list_marker_plus] = ACTIONS(2371), + [sym__list_marker_star] = ACTIONS(2371), + [sym__list_marker_parenthesis] = ACTIONS(2371), + [sym__list_marker_dot] = ACTIONS(2371), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_example] = ACTIONS(2371), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2371), + [sym__fenced_code_block_start_backtick] = ACTIONS(2371), + [sym_minus_metadata] = ACTIONS(2371), + [sym__pipe_table_start] = ACTIONS(2371), + [sym__fenced_div_start] = ACTIONS(2371), + [sym__fenced_div_end] = ACTIONS(2371), + [sym_ref_id_specifier] = ACTIONS(2371), + [sym__code_span_start] = ACTIONS(2371), + [sym__html_comment] = ACTIONS(2371), + [sym__autolink] = ACTIONS(2371), + [sym__highlight_span_start] = ACTIONS(2371), + [sym__insert_span_start] = ACTIONS(2371), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2371), + [sym__single_quote_span_open] = ACTIONS(2371), + [sym__double_quote_span_open] = ACTIONS(2371), + [sym__shortcode_open_escaped] = ACTIONS(2371), + [sym__shortcode_open] = ACTIONS(2371), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2371), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2371), + [sym__cite_author_in_text] = ACTIONS(2371), + [sym__cite_suppress_author] = ACTIONS(2371), + [sym__strikeout_open] = ACTIONS(2371), + [sym__subscript_open] = ACTIONS(2371), + [sym__superscript_open] = ACTIONS(2371), + [sym__inline_note_start_token] = ACTIONS(2371), + [sym__strong_emphasis_open_star] = ACTIONS(2371), + [sym__strong_emphasis_open_underscore] = ACTIONS(2371), + [sym__emphasis_open_star] = ACTIONS(2371), + [sym__emphasis_open_underscore] = ACTIONS(2371), + [sym_inline_note_reference] = ACTIONS(2371), + [sym_html_element] = ACTIONS(2371), + [sym__pandoc_line_break] = ACTIONS(2371), }, - [STATE(260)] = { - [sym__inlines] = STATE(3537), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(699), - [sym__inline_whitespace] = STATE(699), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2763), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(286)] = { + [anon_sym_COLON] = ACTIONS(2749), + [sym_entity_reference] = ACTIONS(2749), + [sym_numeric_character_reference] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_BANG_LBRACK] = ACTIONS(2749), + [anon_sym_DOLLAR] = ACTIONS(2751), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2749), + [aux_sym_pandoc_str_token1] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2749), + [sym__whitespace] = ACTIONS(2749), + [sym__line_ending] = ACTIONS(2749), + [sym__soft_line_ending] = ACTIONS(2749), + [sym__block_close] = ACTIONS(2749), + [sym__block_quote_start] = ACTIONS(2749), + [sym_atx_h1_marker] = ACTIONS(2749), + [sym_atx_h2_marker] = ACTIONS(2749), + [sym_atx_h3_marker] = ACTIONS(2749), + [sym_atx_h4_marker] = ACTIONS(2749), + [sym_atx_h5_marker] = ACTIONS(2749), + [sym_atx_h6_marker] = ACTIONS(2749), + [sym__thematic_break] = ACTIONS(2749), + [sym__list_marker_minus] = ACTIONS(2749), + [sym__list_marker_plus] = ACTIONS(2749), + [sym__list_marker_star] = ACTIONS(2749), + [sym__list_marker_parenthesis] = ACTIONS(2749), + [sym__list_marker_dot] = ACTIONS(2749), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_example] = ACTIONS(2749), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2749), + [sym__fenced_code_block_start_backtick] = ACTIONS(2749), + [sym_minus_metadata] = ACTIONS(2749), + [sym__pipe_table_start] = ACTIONS(2749), + [sym__fenced_div_start] = ACTIONS(2749), + [sym__fenced_div_end] = ACTIONS(2749), + [sym_ref_id_specifier] = ACTIONS(2749), + [sym__code_span_start] = ACTIONS(2749), + [sym__html_comment] = ACTIONS(2749), + [sym__autolink] = ACTIONS(2749), + [sym__highlight_span_start] = ACTIONS(2749), + [sym__insert_span_start] = ACTIONS(2749), + [sym__delete_span_start] = ACTIONS(2749), + [sym__edit_comment_span_start] = ACTIONS(2749), + [sym__single_quote_span_open] = ACTIONS(2749), + [sym__double_quote_span_open] = ACTIONS(2749), + [sym__shortcode_open_escaped] = ACTIONS(2749), + [sym__shortcode_open] = ACTIONS(2749), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2749), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2749), + [sym__cite_author_in_text] = ACTIONS(2749), + [sym__cite_suppress_author] = ACTIONS(2749), + [sym__strikeout_open] = ACTIONS(2749), + [sym__subscript_open] = ACTIONS(2749), + [sym__superscript_open] = ACTIONS(2749), + [sym__inline_note_start_token] = ACTIONS(2749), + [sym__strong_emphasis_open_star] = ACTIONS(2749), + [sym__strong_emphasis_open_underscore] = ACTIONS(2749), + [sym__emphasis_open_star] = ACTIONS(2749), + [sym__emphasis_open_underscore] = ACTIONS(2749), + [sym_inline_note_reference] = ACTIONS(2749), + [sym_html_element] = ACTIONS(2749), + [sym__pandoc_line_break] = ACTIONS(2749), }, - [STATE(261)] = { - [sym__inlines] = STATE(3539), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(727), - [sym__inline_whitespace] = STATE(727), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2767), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(287)] = { + [anon_sym_COLON] = ACTIONS(2753), + [sym_entity_reference] = ACTIONS(2753), + [sym_numeric_character_reference] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_BANG_LBRACK] = ACTIONS(2753), + [anon_sym_DOLLAR] = ACTIONS(2755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2753), + [aux_sym_pandoc_str_token1] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2753), + [sym__whitespace] = ACTIONS(2753), + [sym__line_ending] = ACTIONS(2753), + [sym__soft_line_ending] = ACTIONS(2753), + [sym__block_close] = ACTIONS(2753), + [sym__block_quote_start] = ACTIONS(2753), + [sym_atx_h1_marker] = ACTIONS(2753), + [sym_atx_h2_marker] = ACTIONS(2753), + [sym_atx_h3_marker] = ACTIONS(2753), + [sym_atx_h4_marker] = ACTIONS(2753), + [sym_atx_h5_marker] = ACTIONS(2753), + [sym_atx_h6_marker] = ACTIONS(2753), + [sym__thematic_break] = ACTIONS(2753), + [sym__list_marker_minus] = ACTIONS(2753), + [sym__list_marker_plus] = ACTIONS(2753), + [sym__list_marker_star] = ACTIONS(2753), + [sym__list_marker_parenthesis] = ACTIONS(2753), + [sym__list_marker_dot] = ACTIONS(2753), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_example] = ACTIONS(2753), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2753), + [sym__fenced_code_block_start_backtick] = ACTIONS(2753), + [sym_minus_metadata] = ACTIONS(2753), + [sym__pipe_table_start] = ACTIONS(2753), + [sym__fenced_div_start] = ACTIONS(2753), + [sym__fenced_div_end] = ACTIONS(2753), + [sym_ref_id_specifier] = ACTIONS(2753), + [sym__code_span_start] = ACTIONS(2753), + [sym__html_comment] = ACTIONS(2753), + [sym__autolink] = ACTIONS(2753), + [sym__highlight_span_start] = ACTIONS(2753), + [sym__insert_span_start] = ACTIONS(2753), + [sym__delete_span_start] = ACTIONS(2753), + [sym__edit_comment_span_start] = ACTIONS(2753), + [sym__single_quote_span_open] = ACTIONS(2753), + [sym__double_quote_span_open] = ACTIONS(2753), + [sym__shortcode_open_escaped] = ACTIONS(2753), + [sym__shortcode_open] = ACTIONS(2753), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2753), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2753), + [sym__cite_author_in_text] = ACTIONS(2753), + [sym__cite_suppress_author] = ACTIONS(2753), + [sym__strikeout_open] = ACTIONS(2753), + [sym__subscript_open] = ACTIONS(2753), + [sym__superscript_open] = ACTIONS(2753), + [sym__inline_note_start_token] = ACTIONS(2753), + [sym__strong_emphasis_open_star] = ACTIONS(2753), + [sym__strong_emphasis_open_underscore] = ACTIONS(2753), + [sym__emphasis_open_star] = ACTIONS(2753), + [sym__emphasis_open_underscore] = ACTIONS(2753), + [sym_inline_note_reference] = ACTIONS(2753), + [sym_html_element] = ACTIONS(2753), + [sym__pandoc_line_break] = ACTIONS(2753), }, - [STATE(262)] = { - [sym__inlines] = STATE(3552), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(650), - [sym__inline_whitespace] = STATE(650), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2771), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(288)] = { + [anon_sym_COLON] = ACTIONS(2757), + [sym_entity_reference] = ACTIONS(2757), + [sym_numeric_character_reference] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_BANG_LBRACK] = ACTIONS(2757), + [anon_sym_DOLLAR] = ACTIONS(2759), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2757), + [aux_sym_pandoc_str_token1] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2757), + [sym__whitespace] = ACTIONS(2757), + [sym__line_ending] = ACTIONS(2757), + [sym__soft_line_ending] = ACTIONS(2757), + [sym__block_close] = ACTIONS(2757), + [sym__block_quote_start] = ACTIONS(2757), + [sym_atx_h1_marker] = ACTIONS(2757), + [sym_atx_h2_marker] = ACTIONS(2757), + [sym_atx_h3_marker] = ACTIONS(2757), + [sym_atx_h4_marker] = ACTIONS(2757), + [sym_atx_h5_marker] = ACTIONS(2757), + [sym_atx_h6_marker] = ACTIONS(2757), + [sym__thematic_break] = ACTIONS(2757), + [sym__list_marker_minus] = ACTIONS(2757), + [sym__list_marker_plus] = ACTIONS(2757), + [sym__list_marker_star] = ACTIONS(2757), + [sym__list_marker_parenthesis] = ACTIONS(2757), + [sym__list_marker_dot] = ACTIONS(2757), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_example] = ACTIONS(2757), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2757), + [sym__fenced_code_block_start_backtick] = ACTIONS(2757), + [sym_minus_metadata] = ACTIONS(2757), + [sym__pipe_table_start] = ACTIONS(2757), + [sym__fenced_div_start] = ACTIONS(2757), + [sym__fenced_div_end] = ACTIONS(2757), + [sym_ref_id_specifier] = ACTIONS(2757), + [sym__code_span_start] = ACTIONS(2757), + [sym__html_comment] = ACTIONS(2757), + [sym__autolink] = ACTIONS(2757), + [sym__highlight_span_start] = ACTIONS(2757), + [sym__insert_span_start] = ACTIONS(2757), + [sym__delete_span_start] = ACTIONS(2757), + [sym__edit_comment_span_start] = ACTIONS(2757), + [sym__single_quote_span_open] = ACTIONS(2757), + [sym__double_quote_span_open] = ACTIONS(2757), + [sym__shortcode_open_escaped] = ACTIONS(2757), + [sym__shortcode_open] = ACTIONS(2757), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2757), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2757), + [sym__cite_author_in_text] = ACTIONS(2757), + [sym__cite_suppress_author] = ACTIONS(2757), + [sym__strikeout_open] = ACTIONS(2757), + [sym__subscript_open] = ACTIONS(2757), + [sym__superscript_open] = ACTIONS(2757), + [sym__inline_note_start_token] = ACTIONS(2757), + [sym__strong_emphasis_open_star] = ACTIONS(2757), + [sym__strong_emphasis_open_underscore] = ACTIONS(2757), + [sym__emphasis_open_star] = ACTIONS(2757), + [sym__emphasis_open_underscore] = ACTIONS(2757), + [sym_inline_note_reference] = ACTIONS(2757), + [sym_html_element] = ACTIONS(2757), + [sym__pandoc_line_break] = ACTIONS(2757), }, - [STATE(263)] = { - [sym__inlines] = STATE(3555), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(651), - [sym__inline_whitespace] = STATE(651), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2775), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(289)] = { + [anon_sym_COLON] = ACTIONS(2377), + [sym_entity_reference] = ACTIONS(2377), + [sym_numeric_character_reference] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_BANG_LBRACK] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [aux_sym_pandoc_str_token1] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2377), + [sym__whitespace] = ACTIONS(2377), + [sym__line_ending] = ACTIONS(2377), + [sym__soft_line_ending] = ACTIONS(2377), + [sym__block_close] = ACTIONS(2377), + [sym__block_quote_start] = ACTIONS(2377), + [sym_atx_h1_marker] = ACTIONS(2377), + [sym_atx_h2_marker] = ACTIONS(2377), + [sym_atx_h3_marker] = ACTIONS(2377), + [sym_atx_h4_marker] = ACTIONS(2377), + [sym_atx_h5_marker] = ACTIONS(2377), + [sym_atx_h6_marker] = ACTIONS(2377), + [sym__thematic_break] = ACTIONS(2377), + [sym__list_marker_minus] = ACTIONS(2377), + [sym__list_marker_plus] = ACTIONS(2377), + [sym__list_marker_star] = ACTIONS(2377), + [sym__list_marker_parenthesis] = ACTIONS(2377), + [sym__list_marker_dot] = ACTIONS(2377), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_example] = ACTIONS(2377), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2377), + [sym__fenced_code_block_start_backtick] = ACTIONS(2377), + [sym_minus_metadata] = ACTIONS(2377), + [sym__pipe_table_start] = ACTIONS(2377), + [sym__fenced_div_start] = ACTIONS(2377), + [sym__fenced_div_end] = ACTIONS(2377), + [sym_ref_id_specifier] = ACTIONS(2377), + [sym__code_span_start] = ACTIONS(2377), + [sym__html_comment] = ACTIONS(2377), + [sym__autolink] = ACTIONS(2377), + [sym__highlight_span_start] = ACTIONS(2377), + [sym__insert_span_start] = ACTIONS(2377), + [sym__delete_span_start] = ACTIONS(2377), + [sym__edit_comment_span_start] = ACTIONS(2377), + [sym__single_quote_span_open] = ACTIONS(2377), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2377), + [sym__shortcode_open] = ACTIONS(2377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2377), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2377), + [sym__cite_author_in_text] = ACTIONS(2377), + [sym__cite_suppress_author] = ACTIONS(2377), + [sym__strikeout_open] = ACTIONS(2377), + [sym__subscript_open] = ACTIONS(2377), + [sym__superscript_open] = ACTIONS(2377), + [sym__inline_note_start_token] = ACTIONS(2377), + [sym__strong_emphasis_open_star] = ACTIONS(2377), + [sym__strong_emphasis_open_underscore] = ACTIONS(2377), + [sym__emphasis_open_star] = ACTIONS(2377), + [sym__emphasis_open_underscore] = ACTIONS(2377), + [sym_inline_note_reference] = ACTIONS(2377), + [sym_html_element] = ACTIONS(2377), + [sym__pandoc_line_break] = ACTIONS(2377), }, - [STATE(264)] = { - [sym__inlines] = STATE(3366), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(733), - [sym__inline_whitespace] = STATE(733), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2779), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(290)] = { + [anon_sym_COLON] = ACTIONS(2383), + [sym_entity_reference] = ACTIONS(2383), + [sym_numeric_character_reference] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_BANG_LBRACK] = ACTIONS(2383), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [aux_sym_pandoc_str_token1] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2383), + [sym__whitespace] = ACTIONS(2383), + [sym__line_ending] = ACTIONS(2383), + [sym__soft_line_ending] = ACTIONS(2383), + [sym__block_close] = ACTIONS(2383), + [sym__block_quote_start] = ACTIONS(2383), + [sym_atx_h1_marker] = ACTIONS(2383), + [sym_atx_h2_marker] = ACTIONS(2383), + [sym_atx_h3_marker] = ACTIONS(2383), + [sym_atx_h4_marker] = ACTIONS(2383), + [sym_atx_h5_marker] = ACTIONS(2383), + [sym_atx_h6_marker] = ACTIONS(2383), + [sym__thematic_break] = ACTIONS(2383), + [sym__list_marker_minus] = ACTIONS(2383), + [sym__list_marker_plus] = ACTIONS(2383), + [sym__list_marker_star] = ACTIONS(2383), + [sym__list_marker_parenthesis] = ACTIONS(2383), + [sym__list_marker_dot] = ACTIONS(2383), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_example] = ACTIONS(2383), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2383), + [sym__fenced_code_block_start_backtick] = ACTIONS(2383), + [sym_minus_metadata] = ACTIONS(2383), + [sym__pipe_table_start] = ACTIONS(2383), + [sym__fenced_div_start] = ACTIONS(2383), + [sym__fenced_div_end] = ACTIONS(2383), + [sym_ref_id_specifier] = ACTIONS(2383), + [sym__code_span_start] = ACTIONS(2383), + [sym__html_comment] = ACTIONS(2383), + [sym__autolink] = ACTIONS(2383), + [sym__highlight_span_start] = ACTIONS(2383), + [sym__insert_span_start] = ACTIONS(2383), + [sym__delete_span_start] = ACTIONS(2383), + [sym__edit_comment_span_start] = ACTIONS(2383), + [sym__single_quote_span_open] = ACTIONS(2383), + [sym__double_quote_span_open] = ACTIONS(2383), + [sym__shortcode_open_escaped] = ACTIONS(2383), + [sym__shortcode_open] = ACTIONS(2383), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2383), + [sym__cite_author_in_text] = ACTIONS(2383), + [sym__cite_suppress_author] = ACTIONS(2383), + [sym__strikeout_open] = ACTIONS(2383), + [sym__subscript_open] = ACTIONS(2383), + [sym__superscript_open] = ACTIONS(2383), + [sym__inline_note_start_token] = ACTIONS(2383), + [sym__strong_emphasis_open_star] = ACTIONS(2383), + [sym__strong_emphasis_open_underscore] = ACTIONS(2383), + [sym__emphasis_open_star] = ACTIONS(2383), + [sym__emphasis_open_underscore] = ACTIONS(2383), + [sym_inline_note_reference] = ACTIONS(2383), + [sym_html_element] = ACTIONS(2383), + [sym__pandoc_line_break] = ACTIONS(2383), }, - [STATE(265)] = { - [sym__inlines] = STATE(3403), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(734), - [sym__inline_whitespace] = STATE(734), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2783), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(291)] = { + [anon_sym_COLON] = ACTIONS(2389), + [sym_entity_reference] = ACTIONS(2389), + [sym_numeric_character_reference] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_BANG_LBRACK] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [aux_sym_pandoc_str_token1] = ACTIONS(2391), + [anon_sym_PIPE] = ACTIONS(2389), + [sym__whitespace] = ACTIONS(2389), + [sym__line_ending] = ACTIONS(2389), + [sym__soft_line_ending] = ACTIONS(2389), + [sym__block_close] = ACTIONS(2389), + [sym__block_quote_start] = ACTIONS(2389), + [sym_atx_h1_marker] = ACTIONS(2389), + [sym_atx_h2_marker] = ACTIONS(2389), + [sym_atx_h3_marker] = ACTIONS(2389), + [sym_atx_h4_marker] = ACTIONS(2389), + [sym_atx_h5_marker] = ACTIONS(2389), + [sym_atx_h6_marker] = ACTIONS(2389), + [sym__thematic_break] = ACTIONS(2389), + [sym__list_marker_minus] = ACTIONS(2389), + [sym__list_marker_plus] = ACTIONS(2389), + [sym__list_marker_star] = ACTIONS(2389), + [sym__list_marker_parenthesis] = ACTIONS(2389), + [sym__list_marker_dot] = ACTIONS(2389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_example] = ACTIONS(2389), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2389), + [sym__fenced_code_block_start_backtick] = ACTIONS(2389), + [sym_minus_metadata] = ACTIONS(2389), + [sym__pipe_table_start] = ACTIONS(2389), + [sym__fenced_div_start] = ACTIONS(2389), + [sym__fenced_div_end] = ACTIONS(2389), + [sym_ref_id_specifier] = ACTIONS(2389), + [sym__code_span_start] = ACTIONS(2389), + [sym__html_comment] = ACTIONS(2389), + [sym__autolink] = ACTIONS(2389), + [sym__highlight_span_start] = ACTIONS(2389), + [sym__insert_span_start] = ACTIONS(2389), + [sym__delete_span_start] = ACTIONS(2389), + [sym__edit_comment_span_start] = ACTIONS(2389), + [sym__single_quote_span_open] = ACTIONS(2389), + [sym__double_quote_span_open] = ACTIONS(2389), + [sym__shortcode_open_escaped] = ACTIONS(2389), + [sym__shortcode_open] = ACTIONS(2389), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2389), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2389), + [sym__cite_author_in_text] = ACTIONS(2389), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2389), + [sym__subscript_open] = ACTIONS(2389), + [sym__superscript_open] = ACTIONS(2389), + [sym__inline_note_start_token] = ACTIONS(2389), + [sym__strong_emphasis_open_star] = ACTIONS(2389), + [sym__strong_emphasis_open_underscore] = ACTIONS(2389), + [sym__emphasis_open_star] = ACTIONS(2389), + [sym__emphasis_open_underscore] = ACTIONS(2389), + [sym_inline_note_reference] = ACTIONS(2389), + [sym_html_element] = ACTIONS(2389), + [sym__pandoc_line_break] = ACTIONS(2389), }, - [STATE(266)] = { - [sym__inlines] = STATE(3427), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(739), - [sym__inline_whitespace] = STATE(739), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2787), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(292)] = { + [anon_sym_COLON] = ACTIONS(2395), + [sym_entity_reference] = ACTIONS(2395), + [sym_numeric_character_reference] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_BANG_LBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [aux_sym_pandoc_str_token1] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2395), + [sym__whitespace] = ACTIONS(2395), + [sym__line_ending] = ACTIONS(2395), + [sym__soft_line_ending] = ACTIONS(2395), + [sym__block_close] = ACTIONS(2395), + [sym__block_quote_start] = ACTIONS(2395), + [sym_atx_h1_marker] = ACTIONS(2395), + [sym_atx_h2_marker] = ACTIONS(2395), + [sym_atx_h3_marker] = ACTIONS(2395), + [sym_atx_h4_marker] = ACTIONS(2395), + [sym_atx_h5_marker] = ACTIONS(2395), + [sym_atx_h6_marker] = ACTIONS(2395), + [sym__thematic_break] = ACTIONS(2395), + [sym__list_marker_minus] = ACTIONS(2395), + [sym__list_marker_plus] = ACTIONS(2395), + [sym__list_marker_star] = ACTIONS(2395), + [sym__list_marker_parenthesis] = ACTIONS(2395), + [sym__list_marker_dot] = ACTIONS(2395), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_example] = ACTIONS(2395), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2395), + [sym__fenced_code_block_start_backtick] = ACTIONS(2395), + [sym_minus_metadata] = ACTIONS(2395), + [sym__pipe_table_start] = ACTIONS(2395), + [sym__fenced_div_start] = ACTIONS(2395), + [sym__fenced_div_end] = ACTIONS(2395), + [sym_ref_id_specifier] = ACTIONS(2395), + [sym__code_span_start] = ACTIONS(2395), + [sym__html_comment] = ACTIONS(2395), + [sym__autolink] = ACTIONS(2395), + [sym__highlight_span_start] = ACTIONS(2395), + [sym__insert_span_start] = ACTIONS(2395), + [sym__delete_span_start] = ACTIONS(2395), + [sym__edit_comment_span_start] = ACTIONS(2395), + [sym__single_quote_span_open] = ACTIONS(2395), + [sym__double_quote_span_open] = ACTIONS(2395), + [sym__shortcode_open_escaped] = ACTIONS(2395), + [sym__shortcode_open] = ACTIONS(2395), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2395), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2395), + [sym__cite_author_in_text] = ACTIONS(2395), + [sym__cite_suppress_author] = ACTIONS(2395), + [sym__strikeout_open] = ACTIONS(2395), + [sym__subscript_open] = ACTIONS(2395), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2395), + [sym__strong_emphasis_open_star] = ACTIONS(2395), + [sym__strong_emphasis_open_underscore] = ACTIONS(2395), + [sym__emphasis_open_star] = ACTIONS(2395), + [sym__emphasis_open_underscore] = ACTIONS(2395), + [sym_inline_note_reference] = ACTIONS(2395), + [sym_html_element] = ACTIONS(2395), + [sym__pandoc_line_break] = ACTIONS(2395), }, - [STATE(267)] = { - [sym__inlines] = STATE(3454), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(740), - [sym__inline_whitespace] = STATE(740), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2791), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(293)] = { + [anon_sym_COLON] = ACTIONS(2401), + [sym_entity_reference] = ACTIONS(2401), + [sym_numeric_character_reference] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_BANG_LBRACK] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [aux_sym_pandoc_str_token1] = ACTIONS(2403), + [anon_sym_PIPE] = ACTIONS(2401), + [sym__whitespace] = ACTIONS(2401), + [sym__line_ending] = ACTIONS(2401), + [sym__soft_line_ending] = ACTIONS(2401), + [sym__block_close] = ACTIONS(2401), + [sym__block_quote_start] = ACTIONS(2401), + [sym_atx_h1_marker] = ACTIONS(2401), + [sym_atx_h2_marker] = ACTIONS(2401), + [sym_atx_h3_marker] = ACTIONS(2401), + [sym_atx_h4_marker] = ACTIONS(2401), + [sym_atx_h5_marker] = ACTIONS(2401), + [sym_atx_h6_marker] = ACTIONS(2401), + [sym__thematic_break] = ACTIONS(2401), + [sym__list_marker_minus] = ACTIONS(2401), + [sym__list_marker_plus] = ACTIONS(2401), + [sym__list_marker_star] = ACTIONS(2401), + [sym__list_marker_parenthesis] = ACTIONS(2401), + [sym__list_marker_dot] = ACTIONS(2401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_example] = ACTIONS(2401), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2401), + [sym__fenced_code_block_start_backtick] = ACTIONS(2401), + [sym_minus_metadata] = ACTIONS(2401), + [sym__pipe_table_start] = ACTIONS(2401), + [sym__fenced_div_start] = ACTIONS(2401), + [sym__fenced_div_end] = ACTIONS(2401), + [sym_ref_id_specifier] = ACTIONS(2401), + [sym__code_span_start] = ACTIONS(2401), + [sym__html_comment] = ACTIONS(2401), + [sym__autolink] = ACTIONS(2401), + [sym__highlight_span_start] = ACTIONS(2401), + [sym__insert_span_start] = ACTIONS(2401), + [sym__delete_span_start] = ACTIONS(2401), + [sym__edit_comment_span_start] = ACTIONS(2401), + [sym__single_quote_span_open] = ACTIONS(2401), + [sym__double_quote_span_open] = ACTIONS(2401), + [sym__shortcode_open_escaped] = ACTIONS(2401), + [sym__shortcode_open] = ACTIONS(2401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2401), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2401), + [sym__cite_author_in_text] = ACTIONS(2401), + [sym__cite_suppress_author] = ACTIONS(2401), + [sym__strikeout_open] = ACTIONS(2401), + [sym__subscript_open] = ACTIONS(2401), + [sym__superscript_open] = ACTIONS(2401), + [sym__inline_note_start_token] = ACTIONS(2401), + [sym__strong_emphasis_open_star] = ACTIONS(2401), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2401), + [sym__emphasis_open_underscore] = ACTIONS(2401), + [sym_inline_note_reference] = ACTIONS(2401), + [sym_html_element] = ACTIONS(2401), + [sym__pandoc_line_break] = ACTIONS(2401), }, - [STATE(268)] = { - [sym__inlines] = STATE(3255), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(662), - [sym__inline_whitespace] = STATE(662), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2795), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(294)] = { + [anon_sym_COLON] = ACTIONS(2407), + [sym_entity_reference] = ACTIONS(2407), + [sym_numeric_character_reference] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_BANG_LBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [aux_sym_pandoc_str_token1] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2407), + [sym__whitespace] = ACTIONS(2407), + [sym__line_ending] = ACTIONS(2407), + [sym__soft_line_ending] = ACTIONS(2407), + [sym__block_close] = ACTIONS(2407), + [sym__block_quote_start] = ACTIONS(2407), + [sym_atx_h1_marker] = ACTIONS(2407), + [sym_atx_h2_marker] = ACTIONS(2407), + [sym_atx_h3_marker] = ACTIONS(2407), + [sym_atx_h4_marker] = ACTIONS(2407), + [sym_atx_h5_marker] = ACTIONS(2407), + [sym_atx_h6_marker] = ACTIONS(2407), + [sym__thematic_break] = ACTIONS(2407), + [sym__list_marker_minus] = ACTIONS(2407), + [sym__list_marker_plus] = ACTIONS(2407), + [sym__list_marker_star] = ACTIONS(2407), + [sym__list_marker_parenthesis] = ACTIONS(2407), + [sym__list_marker_dot] = ACTIONS(2407), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_example] = ACTIONS(2407), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2407), + [sym__fenced_code_block_start_backtick] = ACTIONS(2407), + [sym_minus_metadata] = ACTIONS(2407), + [sym__pipe_table_start] = ACTIONS(2407), + [sym__fenced_div_start] = ACTIONS(2407), + [sym__fenced_div_end] = ACTIONS(2407), + [sym_ref_id_specifier] = ACTIONS(2407), + [sym__code_span_start] = ACTIONS(2407), + [sym__html_comment] = ACTIONS(2407), + [sym__autolink] = ACTIONS(2407), + [sym__highlight_span_start] = ACTIONS(2407), + [sym__insert_span_start] = ACTIONS(2407), + [sym__delete_span_start] = ACTIONS(2407), + [sym__edit_comment_span_start] = ACTIONS(2407), + [sym__single_quote_span_open] = ACTIONS(2407), + [sym__double_quote_span_open] = ACTIONS(2407), + [sym__shortcode_open_escaped] = ACTIONS(2407), + [sym__shortcode_open] = ACTIONS(2407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2407), + [sym__cite_author_in_text] = ACTIONS(2407), + [sym__cite_suppress_author] = ACTIONS(2407), + [sym__strikeout_open] = ACTIONS(2407), + [sym__subscript_open] = ACTIONS(2407), + [sym__superscript_open] = ACTIONS(2407), + [sym__inline_note_start_token] = ACTIONS(2407), + [sym__strong_emphasis_open_star] = ACTIONS(2407), + [sym__strong_emphasis_open_underscore] = ACTIONS(2407), + [sym__emphasis_open_star] = ACTIONS(2407), + [sym__emphasis_open_underscore] = ACTIONS(2407), + [sym_inline_note_reference] = ACTIONS(2407), + [sym_html_element] = ACTIONS(2407), + [sym__pandoc_line_break] = ACTIONS(2407), }, - [STATE(269)] = { - [sym__inlines] = STATE(3270), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(663), - [sym__inline_whitespace] = STATE(663), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2799), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(295)] = { + [anon_sym_COLON] = ACTIONS(2761), + [sym_entity_reference] = ACTIONS(2761), + [sym_numeric_character_reference] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_BANG_LBRACK] = ACTIONS(2761), + [anon_sym_DOLLAR] = ACTIONS(2763), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2761), + [aux_sym_pandoc_str_token1] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(2761), + [sym__whitespace] = ACTIONS(2761), + [sym__line_ending] = ACTIONS(2761), + [sym__soft_line_ending] = ACTIONS(2761), + [sym__block_close] = ACTIONS(2761), + [sym__block_quote_start] = ACTIONS(2761), + [sym_atx_h1_marker] = ACTIONS(2761), + [sym_atx_h2_marker] = ACTIONS(2761), + [sym_atx_h3_marker] = ACTIONS(2761), + [sym_atx_h4_marker] = ACTIONS(2761), + [sym_atx_h5_marker] = ACTIONS(2761), + [sym_atx_h6_marker] = ACTIONS(2761), + [sym__thematic_break] = ACTIONS(2761), + [sym__list_marker_minus] = ACTIONS(2761), + [sym__list_marker_plus] = ACTIONS(2761), + [sym__list_marker_star] = ACTIONS(2761), + [sym__list_marker_parenthesis] = ACTIONS(2761), + [sym__list_marker_dot] = ACTIONS(2761), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_example] = ACTIONS(2761), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2761), + [sym__fenced_code_block_start_backtick] = ACTIONS(2761), + [sym_minus_metadata] = ACTIONS(2761), + [sym__pipe_table_start] = ACTIONS(2761), + [sym__fenced_div_start] = ACTIONS(2761), + [sym__fenced_div_end] = ACTIONS(2761), + [sym_ref_id_specifier] = ACTIONS(2761), + [sym__code_span_start] = ACTIONS(2761), + [sym__html_comment] = ACTIONS(2761), + [sym__autolink] = ACTIONS(2761), + [sym__highlight_span_start] = ACTIONS(2761), + [sym__insert_span_start] = ACTIONS(2761), + [sym__delete_span_start] = ACTIONS(2761), + [sym__edit_comment_span_start] = ACTIONS(2761), + [sym__single_quote_span_open] = ACTIONS(2761), + [sym__double_quote_span_open] = ACTIONS(2761), + [sym__shortcode_open_escaped] = ACTIONS(2761), + [sym__shortcode_open] = ACTIONS(2761), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2761), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2761), + [sym__cite_author_in_text] = ACTIONS(2761), + [sym__cite_suppress_author] = ACTIONS(2761), + [sym__strikeout_open] = ACTIONS(2761), + [sym__subscript_open] = ACTIONS(2761), + [sym__superscript_open] = ACTIONS(2761), + [sym__inline_note_start_token] = ACTIONS(2761), + [sym__strong_emphasis_open_star] = ACTIONS(2761), + [sym__strong_emphasis_open_underscore] = ACTIONS(2761), + [sym__emphasis_open_star] = ACTIONS(2761), + [sym__emphasis_open_underscore] = ACTIONS(2761), + [sym_inline_note_reference] = ACTIONS(2761), + [sym_html_element] = ACTIONS(2761), + [sym__pandoc_line_break] = ACTIONS(2761), }, - [STATE(270)] = { - [sym__inlines] = STATE(3273), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(664), - [sym__inline_whitespace] = STATE(664), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2803), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(296)] = { + [anon_sym_COLON] = ACTIONS(2765), + [sym_entity_reference] = ACTIONS(2765), + [sym_numeric_character_reference] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_BANG_LBRACK] = ACTIONS(2765), + [anon_sym_DOLLAR] = ACTIONS(2767), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2765), + [aux_sym_pandoc_str_token1] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2765), + [sym__whitespace] = ACTIONS(2765), + [sym__line_ending] = ACTIONS(2765), + [sym__soft_line_ending] = ACTIONS(2765), + [sym__block_close] = ACTIONS(2765), + [sym__block_quote_start] = ACTIONS(2765), + [sym_atx_h1_marker] = ACTIONS(2765), + [sym_atx_h2_marker] = ACTIONS(2765), + [sym_atx_h3_marker] = ACTIONS(2765), + [sym_atx_h4_marker] = ACTIONS(2765), + [sym_atx_h5_marker] = ACTIONS(2765), + [sym_atx_h6_marker] = ACTIONS(2765), + [sym__thematic_break] = ACTIONS(2765), + [sym__list_marker_minus] = ACTIONS(2765), + [sym__list_marker_plus] = ACTIONS(2765), + [sym__list_marker_star] = ACTIONS(2765), + [sym__list_marker_parenthesis] = ACTIONS(2765), + [sym__list_marker_dot] = ACTIONS(2765), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_example] = ACTIONS(2765), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2765), + [sym__fenced_code_block_start_backtick] = ACTIONS(2765), + [sym_minus_metadata] = ACTIONS(2765), + [sym__pipe_table_start] = ACTIONS(2765), + [sym__fenced_div_start] = ACTIONS(2765), + [sym__fenced_div_end] = ACTIONS(2765), + [sym_ref_id_specifier] = ACTIONS(2765), + [sym__code_span_start] = ACTIONS(2765), + [sym__html_comment] = ACTIONS(2765), + [sym__autolink] = ACTIONS(2765), + [sym__highlight_span_start] = ACTIONS(2765), + [sym__insert_span_start] = ACTIONS(2765), + [sym__delete_span_start] = ACTIONS(2765), + [sym__edit_comment_span_start] = ACTIONS(2765), + [sym__single_quote_span_open] = ACTIONS(2765), + [sym__double_quote_span_open] = ACTIONS(2765), + [sym__shortcode_open_escaped] = ACTIONS(2765), + [sym__shortcode_open] = ACTIONS(2765), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2765), + [sym__cite_author_in_text] = ACTIONS(2765), + [sym__cite_suppress_author] = ACTIONS(2765), + [sym__strikeout_open] = ACTIONS(2765), + [sym__subscript_open] = ACTIONS(2765), + [sym__superscript_open] = ACTIONS(2765), + [sym__inline_note_start_token] = ACTIONS(2765), + [sym__strong_emphasis_open_star] = ACTIONS(2765), + [sym__strong_emphasis_open_underscore] = ACTIONS(2765), + [sym__emphasis_open_star] = ACTIONS(2765), + [sym__emphasis_open_underscore] = ACTIONS(2765), + [sym_inline_note_reference] = ACTIONS(2765), + [sym_html_element] = ACTIONS(2765), + [sym__pandoc_line_break] = ACTIONS(2765), }, - [STATE(271)] = { - [sym__inlines] = STATE(3275), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(665), - [sym__inline_whitespace] = STATE(665), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2807), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(297)] = { + [anon_sym_COLON] = ACTIONS(2769), + [sym_entity_reference] = ACTIONS(2769), + [sym_numeric_character_reference] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_BANG_LBRACK] = ACTIONS(2769), + [anon_sym_DOLLAR] = ACTIONS(2771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2769), + [aux_sym_pandoc_str_token1] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2769), + [sym__whitespace] = ACTIONS(2769), + [sym__line_ending] = ACTIONS(2769), + [sym__soft_line_ending] = ACTIONS(2769), + [sym__block_close] = ACTIONS(2769), + [sym__block_quote_start] = ACTIONS(2769), + [sym_atx_h1_marker] = ACTIONS(2769), + [sym_atx_h2_marker] = ACTIONS(2769), + [sym_atx_h3_marker] = ACTIONS(2769), + [sym_atx_h4_marker] = ACTIONS(2769), + [sym_atx_h5_marker] = ACTIONS(2769), + [sym_atx_h6_marker] = ACTIONS(2769), + [sym__thematic_break] = ACTIONS(2769), + [sym__list_marker_minus] = ACTIONS(2769), + [sym__list_marker_plus] = ACTIONS(2769), + [sym__list_marker_star] = ACTIONS(2769), + [sym__list_marker_parenthesis] = ACTIONS(2769), + [sym__list_marker_dot] = ACTIONS(2769), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_example] = ACTIONS(2769), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2769), + [sym__fenced_code_block_start_backtick] = ACTIONS(2769), + [sym_minus_metadata] = ACTIONS(2769), + [sym__pipe_table_start] = ACTIONS(2769), + [sym__fenced_div_start] = ACTIONS(2769), + [sym__fenced_div_end] = ACTIONS(2769), + [sym_ref_id_specifier] = ACTIONS(2769), + [sym__code_span_start] = ACTIONS(2769), + [sym__html_comment] = ACTIONS(2769), + [sym__autolink] = ACTIONS(2769), + [sym__highlight_span_start] = ACTIONS(2769), + [sym__insert_span_start] = ACTIONS(2769), + [sym__delete_span_start] = ACTIONS(2769), + [sym__edit_comment_span_start] = ACTIONS(2769), + [sym__single_quote_span_open] = ACTIONS(2769), + [sym__double_quote_span_open] = ACTIONS(2769), + [sym__shortcode_open_escaped] = ACTIONS(2769), + [sym__shortcode_open] = ACTIONS(2769), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2769), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2769), + [sym__cite_author_in_text] = ACTIONS(2769), + [sym__cite_suppress_author] = ACTIONS(2769), + [sym__strikeout_open] = ACTIONS(2769), + [sym__subscript_open] = ACTIONS(2769), + [sym__superscript_open] = ACTIONS(2769), + [sym__inline_note_start_token] = ACTIONS(2769), + [sym__strong_emphasis_open_star] = ACTIONS(2769), + [sym__strong_emphasis_open_underscore] = ACTIONS(2769), + [sym__emphasis_open_star] = ACTIONS(2769), + [sym__emphasis_open_underscore] = ACTIONS(2769), + [sym_inline_note_reference] = ACTIONS(2769), + [sym_html_element] = ACTIONS(2769), + [sym__pandoc_line_break] = ACTIONS(2769), }, - [STATE(272)] = { - [sym__inlines] = STATE(3429), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(689), - [sym__inline_whitespace] = STATE(689), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2811), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(298)] = { + [anon_sym_COLON] = ACTIONS(2773), + [sym_entity_reference] = ACTIONS(2773), + [sym_numeric_character_reference] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_BANG_LBRACK] = ACTIONS(2773), + [anon_sym_DOLLAR] = ACTIONS(2775), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2773), + [aux_sym_pandoc_str_token1] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2773), + [sym__whitespace] = ACTIONS(2773), + [sym__line_ending] = ACTIONS(2773), + [sym__soft_line_ending] = ACTIONS(2773), + [sym__block_close] = ACTIONS(2773), + [sym__block_quote_start] = ACTIONS(2773), + [sym_atx_h1_marker] = ACTIONS(2773), + [sym_atx_h2_marker] = ACTIONS(2773), + [sym_atx_h3_marker] = ACTIONS(2773), + [sym_atx_h4_marker] = ACTIONS(2773), + [sym_atx_h5_marker] = ACTIONS(2773), + [sym_atx_h6_marker] = ACTIONS(2773), + [sym__thematic_break] = ACTIONS(2773), + [sym__list_marker_minus] = ACTIONS(2773), + [sym__list_marker_plus] = ACTIONS(2773), + [sym__list_marker_star] = ACTIONS(2773), + [sym__list_marker_parenthesis] = ACTIONS(2773), + [sym__list_marker_dot] = ACTIONS(2773), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_example] = ACTIONS(2773), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2773), + [sym__fenced_code_block_start_backtick] = ACTIONS(2773), + [sym_minus_metadata] = ACTIONS(2773), + [sym__pipe_table_start] = ACTIONS(2773), + [sym__fenced_div_start] = ACTIONS(2773), + [sym__fenced_div_end] = ACTIONS(2773), + [sym_ref_id_specifier] = ACTIONS(2773), + [sym__code_span_start] = ACTIONS(2773), + [sym__html_comment] = ACTIONS(2773), + [sym__autolink] = ACTIONS(2773), + [sym__highlight_span_start] = ACTIONS(2773), + [sym__insert_span_start] = ACTIONS(2773), + [sym__delete_span_start] = ACTIONS(2773), + [sym__edit_comment_span_start] = ACTIONS(2773), + [sym__single_quote_span_open] = ACTIONS(2773), + [sym__double_quote_span_open] = ACTIONS(2773), + [sym__shortcode_open_escaped] = ACTIONS(2773), + [sym__shortcode_open] = ACTIONS(2773), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2773), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2773), + [sym__cite_author_in_text] = ACTIONS(2773), + [sym__cite_suppress_author] = ACTIONS(2773), + [sym__strikeout_open] = ACTIONS(2773), + [sym__subscript_open] = ACTIONS(2773), + [sym__superscript_open] = ACTIONS(2773), + [sym__inline_note_start_token] = ACTIONS(2773), + [sym__strong_emphasis_open_star] = ACTIONS(2773), + [sym__strong_emphasis_open_underscore] = ACTIONS(2773), + [sym__emphasis_open_star] = ACTIONS(2773), + [sym__emphasis_open_underscore] = ACTIONS(2773), + [sym_inline_note_reference] = ACTIONS(2773), + [sym_html_element] = ACTIONS(2773), + [sym__pandoc_line_break] = ACTIONS(2773), }, - [STATE(273)] = { - [sym__inlines] = STATE(3431), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(693), - [sym__inline_whitespace] = STATE(693), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2815), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(299)] = { + [anon_sym_COLON] = ACTIONS(2777), + [sym_entity_reference] = ACTIONS(2777), + [sym_numeric_character_reference] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_BANG_LBRACK] = ACTIONS(2777), + [anon_sym_DOLLAR] = ACTIONS(2779), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2777), + [aux_sym_pandoc_str_token1] = ACTIONS(2779), + [anon_sym_PIPE] = ACTIONS(2777), + [sym__whitespace] = ACTIONS(2777), + [sym__line_ending] = ACTIONS(2777), + [sym__soft_line_ending] = ACTIONS(2777), + [sym__block_close] = ACTIONS(2777), + [sym__block_quote_start] = ACTIONS(2777), + [sym_atx_h1_marker] = ACTIONS(2777), + [sym_atx_h2_marker] = ACTIONS(2777), + [sym_atx_h3_marker] = ACTIONS(2777), + [sym_atx_h4_marker] = ACTIONS(2777), + [sym_atx_h5_marker] = ACTIONS(2777), + [sym_atx_h6_marker] = ACTIONS(2777), + [sym__thematic_break] = ACTIONS(2777), + [sym__list_marker_minus] = ACTIONS(2777), + [sym__list_marker_plus] = ACTIONS(2777), + [sym__list_marker_star] = ACTIONS(2777), + [sym__list_marker_parenthesis] = ACTIONS(2777), + [sym__list_marker_dot] = ACTIONS(2777), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_example] = ACTIONS(2777), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2777), + [sym__fenced_code_block_start_backtick] = ACTIONS(2777), + [sym_minus_metadata] = ACTIONS(2777), + [sym__pipe_table_start] = ACTIONS(2777), + [sym__fenced_div_start] = ACTIONS(2777), + [sym__fenced_div_end] = ACTIONS(2777), + [sym_ref_id_specifier] = ACTIONS(2777), + [sym__code_span_start] = ACTIONS(2777), + [sym__html_comment] = ACTIONS(2777), + [sym__autolink] = ACTIONS(2777), + [sym__highlight_span_start] = ACTIONS(2777), + [sym__insert_span_start] = ACTIONS(2777), + [sym__delete_span_start] = ACTIONS(2777), + [sym__edit_comment_span_start] = ACTIONS(2777), + [sym__single_quote_span_open] = ACTIONS(2777), + [sym__double_quote_span_open] = ACTIONS(2777), + [sym__shortcode_open_escaped] = ACTIONS(2777), + [sym__shortcode_open] = ACTIONS(2777), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2777), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2777), + [sym__cite_author_in_text] = ACTIONS(2777), + [sym__cite_suppress_author] = ACTIONS(2777), + [sym__strikeout_open] = ACTIONS(2777), + [sym__subscript_open] = ACTIONS(2777), + [sym__superscript_open] = ACTIONS(2777), + [sym__inline_note_start_token] = ACTIONS(2777), + [sym__strong_emphasis_open_star] = ACTIONS(2777), + [sym__strong_emphasis_open_underscore] = ACTIONS(2777), + [sym__emphasis_open_star] = ACTIONS(2777), + [sym__emphasis_open_underscore] = ACTIONS(2777), + [sym_inline_note_reference] = ACTIONS(2777), + [sym_html_element] = ACTIONS(2777), + [sym__pandoc_line_break] = ACTIONS(2777), }, - [STATE(274)] = { - [sym__inlines] = STATE(3433), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(696), - [sym__inline_whitespace] = STATE(696), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2819), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(300)] = { + [anon_sym_COLON] = ACTIONS(2781), + [sym_entity_reference] = ACTIONS(2781), + [sym_numeric_character_reference] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_BANG_LBRACK] = ACTIONS(2781), + [anon_sym_DOLLAR] = ACTIONS(2783), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2781), + [aux_sym_pandoc_str_token1] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(2781), + [sym__whitespace] = ACTIONS(2781), + [sym__line_ending] = ACTIONS(2781), + [sym__soft_line_ending] = ACTIONS(2781), + [sym__block_close] = ACTIONS(2781), + [sym__block_quote_start] = ACTIONS(2781), + [sym_atx_h1_marker] = ACTIONS(2781), + [sym_atx_h2_marker] = ACTIONS(2781), + [sym_atx_h3_marker] = ACTIONS(2781), + [sym_atx_h4_marker] = ACTIONS(2781), + [sym_atx_h5_marker] = ACTIONS(2781), + [sym_atx_h6_marker] = ACTIONS(2781), + [sym__thematic_break] = ACTIONS(2781), + [sym__list_marker_minus] = ACTIONS(2781), + [sym__list_marker_plus] = ACTIONS(2781), + [sym__list_marker_star] = ACTIONS(2781), + [sym__list_marker_parenthesis] = ACTIONS(2781), + [sym__list_marker_dot] = ACTIONS(2781), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_example] = ACTIONS(2781), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2781), + [sym__fenced_code_block_start_backtick] = ACTIONS(2781), + [sym_minus_metadata] = ACTIONS(2781), + [sym__pipe_table_start] = ACTIONS(2781), + [sym__fenced_div_start] = ACTIONS(2781), + [sym__fenced_div_end] = ACTIONS(2781), + [sym_ref_id_specifier] = ACTIONS(2781), + [sym__code_span_start] = ACTIONS(2781), + [sym__html_comment] = ACTIONS(2781), + [sym__autolink] = ACTIONS(2781), + [sym__highlight_span_start] = ACTIONS(2781), + [sym__insert_span_start] = ACTIONS(2781), + [sym__delete_span_start] = ACTIONS(2781), + [sym__edit_comment_span_start] = ACTIONS(2781), + [sym__single_quote_span_open] = ACTIONS(2781), + [sym__double_quote_span_open] = ACTIONS(2781), + [sym__shortcode_open_escaped] = ACTIONS(2781), + [sym__shortcode_open] = ACTIONS(2781), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2781), + [sym__cite_author_in_text] = ACTIONS(2781), + [sym__cite_suppress_author] = ACTIONS(2781), + [sym__strikeout_open] = ACTIONS(2781), + [sym__subscript_open] = ACTIONS(2781), + [sym__superscript_open] = ACTIONS(2781), + [sym__inline_note_start_token] = ACTIONS(2781), + [sym__strong_emphasis_open_star] = ACTIONS(2781), + [sym__strong_emphasis_open_underscore] = ACTIONS(2781), + [sym__emphasis_open_star] = ACTIONS(2781), + [sym__emphasis_open_underscore] = ACTIONS(2781), + [sym_inline_note_reference] = ACTIONS(2781), + [sym_html_element] = ACTIONS(2781), + [sym__pandoc_line_break] = ACTIONS(2781), }, - [STATE(275)] = { - [sym__inlines] = STATE(3435), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(702), - [sym__inline_whitespace] = STATE(702), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2821), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2823), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(301)] = { + [anon_sym_COLON] = ACTIONS(2785), + [sym_entity_reference] = ACTIONS(2785), + [sym_numeric_character_reference] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_BANG_LBRACK] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2785), + [aux_sym_pandoc_str_token1] = ACTIONS(2787), + [anon_sym_PIPE] = ACTIONS(2785), + [sym__whitespace] = ACTIONS(2785), + [sym__line_ending] = ACTIONS(2785), + [sym__soft_line_ending] = ACTIONS(2785), + [sym__block_close] = ACTIONS(2785), + [sym__block_quote_start] = ACTIONS(2785), + [sym_atx_h1_marker] = ACTIONS(2785), + [sym_atx_h2_marker] = ACTIONS(2785), + [sym_atx_h3_marker] = ACTIONS(2785), + [sym_atx_h4_marker] = ACTIONS(2785), + [sym_atx_h5_marker] = ACTIONS(2785), + [sym_atx_h6_marker] = ACTIONS(2785), + [sym__thematic_break] = ACTIONS(2785), + [sym__list_marker_minus] = ACTIONS(2785), + [sym__list_marker_plus] = ACTIONS(2785), + [sym__list_marker_star] = ACTIONS(2785), + [sym__list_marker_parenthesis] = ACTIONS(2785), + [sym__list_marker_dot] = ACTIONS(2785), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_example] = ACTIONS(2785), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2785), + [sym__fenced_code_block_start_backtick] = ACTIONS(2785), + [sym_minus_metadata] = ACTIONS(2785), + [sym__pipe_table_start] = ACTIONS(2785), + [sym__fenced_div_start] = ACTIONS(2785), + [sym__fenced_div_end] = ACTIONS(2785), + [sym_ref_id_specifier] = ACTIONS(2785), + [sym__code_span_start] = ACTIONS(2785), + [sym__html_comment] = ACTIONS(2785), + [sym__autolink] = ACTIONS(2785), + [sym__highlight_span_start] = ACTIONS(2785), + [sym__insert_span_start] = ACTIONS(2785), + [sym__delete_span_start] = ACTIONS(2785), + [sym__edit_comment_span_start] = ACTIONS(2785), + [sym__single_quote_span_open] = ACTIONS(2785), + [sym__double_quote_span_open] = ACTIONS(2785), + [sym__shortcode_open_escaped] = ACTIONS(2785), + [sym__shortcode_open] = ACTIONS(2785), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2785), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2785), + [sym__cite_author_in_text] = ACTIONS(2785), + [sym__cite_suppress_author] = ACTIONS(2785), + [sym__strikeout_open] = ACTIONS(2785), + [sym__subscript_open] = ACTIONS(2785), + [sym__superscript_open] = ACTIONS(2785), + [sym__inline_note_start_token] = ACTIONS(2785), + [sym__strong_emphasis_open_star] = ACTIONS(2785), + [sym__strong_emphasis_open_underscore] = ACTIONS(2785), + [sym__emphasis_open_star] = ACTIONS(2785), + [sym__emphasis_open_underscore] = ACTIONS(2785), + [sym_inline_note_reference] = ACTIONS(2785), + [sym_html_element] = ACTIONS(2785), + [sym__pandoc_line_break] = ACTIONS(2785), }, - [STATE(276)] = { - [sym__inlines] = STATE(3556), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(720), - [sym__inline_whitespace] = STATE(720), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2827), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(302)] = { + [anon_sym_COLON] = ACTIONS(2789), + [sym_entity_reference] = ACTIONS(2789), + [sym_numeric_character_reference] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_BANG_LBRACK] = ACTIONS(2789), + [anon_sym_DOLLAR] = ACTIONS(2791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2789), + [aux_sym_pandoc_str_token1] = ACTIONS(2791), + [anon_sym_PIPE] = ACTIONS(2789), + [sym__whitespace] = ACTIONS(2789), + [sym__line_ending] = ACTIONS(2789), + [sym__soft_line_ending] = ACTIONS(2789), + [sym__block_close] = ACTIONS(2789), + [sym__block_quote_start] = ACTIONS(2789), + [sym_atx_h1_marker] = ACTIONS(2789), + [sym_atx_h2_marker] = ACTIONS(2789), + [sym_atx_h3_marker] = ACTIONS(2789), + [sym_atx_h4_marker] = ACTIONS(2789), + [sym_atx_h5_marker] = ACTIONS(2789), + [sym_atx_h6_marker] = ACTIONS(2789), + [sym__thematic_break] = ACTIONS(2789), + [sym__list_marker_minus] = ACTIONS(2789), + [sym__list_marker_plus] = ACTIONS(2789), + [sym__list_marker_star] = ACTIONS(2789), + [sym__list_marker_parenthesis] = ACTIONS(2789), + [sym__list_marker_dot] = ACTIONS(2789), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_example] = ACTIONS(2789), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2789), + [sym__fenced_code_block_start_backtick] = ACTIONS(2789), + [sym_minus_metadata] = ACTIONS(2789), + [sym__pipe_table_start] = ACTIONS(2789), + [sym__fenced_div_start] = ACTIONS(2789), + [sym__fenced_div_end] = ACTIONS(2789), + [sym_ref_id_specifier] = ACTIONS(2789), + [sym__code_span_start] = ACTIONS(2789), + [sym__html_comment] = ACTIONS(2789), + [sym__autolink] = ACTIONS(2789), + [sym__highlight_span_start] = ACTIONS(2789), + [sym__insert_span_start] = ACTIONS(2789), + [sym__delete_span_start] = ACTIONS(2789), + [sym__edit_comment_span_start] = ACTIONS(2789), + [sym__single_quote_span_open] = ACTIONS(2789), + [sym__double_quote_span_open] = ACTIONS(2789), + [sym__shortcode_open_escaped] = ACTIONS(2789), + [sym__shortcode_open] = ACTIONS(2789), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2789), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2789), + [sym__cite_author_in_text] = ACTIONS(2789), + [sym__cite_suppress_author] = ACTIONS(2789), + [sym__strikeout_open] = ACTIONS(2789), + [sym__subscript_open] = ACTIONS(2789), + [sym__superscript_open] = ACTIONS(2789), + [sym__inline_note_start_token] = ACTIONS(2789), + [sym__strong_emphasis_open_star] = ACTIONS(2789), + [sym__strong_emphasis_open_underscore] = ACTIONS(2789), + [sym__emphasis_open_star] = ACTIONS(2789), + [sym__emphasis_open_underscore] = ACTIONS(2789), + [sym_inline_note_reference] = ACTIONS(2789), + [sym_html_element] = ACTIONS(2789), + [sym__pandoc_line_break] = ACTIONS(2789), }, - [STATE(277)] = { - [sym__inlines] = STATE(3561), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(721), - [sym__inline_whitespace] = STATE(721), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2831), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(303)] = { + [anon_sym_COLON] = ACTIONS(2793), + [sym_entity_reference] = ACTIONS(2793), + [sym_numeric_character_reference] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_BANG_LBRACK] = ACTIONS(2793), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2793), + [aux_sym_pandoc_str_token1] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2793), + [sym__whitespace] = ACTIONS(2793), + [sym__line_ending] = ACTIONS(2793), + [sym__soft_line_ending] = ACTIONS(2793), + [sym__block_close] = ACTIONS(2793), + [sym__block_quote_start] = ACTIONS(2793), + [sym_atx_h1_marker] = ACTIONS(2793), + [sym_atx_h2_marker] = ACTIONS(2793), + [sym_atx_h3_marker] = ACTIONS(2793), + [sym_atx_h4_marker] = ACTIONS(2793), + [sym_atx_h5_marker] = ACTIONS(2793), + [sym_atx_h6_marker] = ACTIONS(2793), + [sym__thematic_break] = ACTIONS(2793), + [sym__list_marker_minus] = ACTIONS(2793), + [sym__list_marker_plus] = ACTIONS(2793), + [sym__list_marker_star] = ACTIONS(2793), + [sym__list_marker_parenthesis] = ACTIONS(2793), + [sym__list_marker_dot] = ACTIONS(2793), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_example] = ACTIONS(2793), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2793), + [sym__fenced_code_block_start_backtick] = ACTIONS(2793), + [sym_minus_metadata] = ACTIONS(2793), + [sym__pipe_table_start] = ACTIONS(2793), + [sym__fenced_div_start] = ACTIONS(2793), + [sym__fenced_div_end] = ACTIONS(2793), + [sym_ref_id_specifier] = ACTIONS(2793), + [sym__code_span_start] = ACTIONS(2793), + [sym__html_comment] = ACTIONS(2793), + [sym__autolink] = ACTIONS(2793), + [sym__highlight_span_start] = ACTIONS(2793), + [sym__insert_span_start] = ACTIONS(2793), + [sym__delete_span_start] = ACTIONS(2793), + [sym__edit_comment_span_start] = ACTIONS(2793), + [sym__single_quote_span_open] = ACTIONS(2793), + [sym__double_quote_span_open] = ACTIONS(2793), + [sym__shortcode_open_escaped] = ACTIONS(2793), + [sym__shortcode_open] = ACTIONS(2793), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2793), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2793), + [sym__cite_author_in_text] = ACTIONS(2793), + [sym__cite_suppress_author] = ACTIONS(2793), + [sym__strikeout_open] = ACTIONS(2793), + [sym__subscript_open] = ACTIONS(2793), + [sym__superscript_open] = ACTIONS(2793), + [sym__inline_note_start_token] = ACTIONS(2793), + [sym__strong_emphasis_open_star] = ACTIONS(2793), + [sym__strong_emphasis_open_underscore] = ACTIONS(2793), + [sym__emphasis_open_star] = ACTIONS(2793), + [sym__emphasis_open_underscore] = ACTIONS(2793), + [sym_inline_note_reference] = ACTIONS(2793), + [sym_html_element] = ACTIONS(2793), + [sym__pandoc_line_break] = ACTIONS(2793), }, - [STATE(278)] = { - [sym__inlines] = STATE(3570), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(723), - [sym__inline_whitespace] = STATE(723), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2835), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(304)] = { + [anon_sym_COLON] = ACTIONS(2797), + [sym_entity_reference] = ACTIONS(2797), + [sym_numeric_character_reference] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_BANG_LBRACK] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2799), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2797), + [aux_sym_pandoc_str_token1] = ACTIONS(2799), + [anon_sym_PIPE] = ACTIONS(2797), + [sym__whitespace] = ACTIONS(2797), + [sym__line_ending] = ACTIONS(2797), + [sym__soft_line_ending] = ACTIONS(2797), + [sym__block_close] = ACTIONS(2797), + [sym__block_quote_start] = ACTIONS(2797), + [sym_atx_h1_marker] = ACTIONS(2797), + [sym_atx_h2_marker] = ACTIONS(2797), + [sym_atx_h3_marker] = ACTIONS(2797), + [sym_atx_h4_marker] = ACTIONS(2797), + [sym_atx_h5_marker] = ACTIONS(2797), + [sym_atx_h6_marker] = ACTIONS(2797), + [sym__thematic_break] = ACTIONS(2797), + [sym__list_marker_minus] = ACTIONS(2797), + [sym__list_marker_plus] = ACTIONS(2797), + [sym__list_marker_star] = ACTIONS(2797), + [sym__list_marker_parenthesis] = ACTIONS(2797), + [sym__list_marker_dot] = ACTIONS(2797), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_example] = ACTIONS(2797), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2797), + [sym__fenced_code_block_start_backtick] = ACTIONS(2797), + [sym_minus_metadata] = ACTIONS(2797), + [sym__pipe_table_start] = ACTIONS(2797), + [sym__fenced_div_start] = ACTIONS(2797), + [sym__fenced_div_end] = ACTIONS(2797), + [sym_ref_id_specifier] = ACTIONS(2797), + [sym__code_span_start] = ACTIONS(2797), + [sym__html_comment] = ACTIONS(2797), + [sym__autolink] = ACTIONS(2797), + [sym__highlight_span_start] = ACTIONS(2797), + [sym__insert_span_start] = ACTIONS(2797), + [sym__delete_span_start] = ACTIONS(2797), + [sym__edit_comment_span_start] = ACTIONS(2797), + [sym__single_quote_span_open] = ACTIONS(2797), + [sym__double_quote_span_open] = ACTIONS(2797), + [sym__shortcode_open_escaped] = ACTIONS(2797), + [sym__shortcode_open] = ACTIONS(2797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2797), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2797), + [sym__cite_author_in_text] = ACTIONS(2797), + [sym__cite_suppress_author] = ACTIONS(2797), + [sym__strikeout_open] = ACTIONS(2797), + [sym__subscript_open] = ACTIONS(2797), + [sym__superscript_open] = ACTIONS(2797), + [sym__inline_note_start_token] = ACTIONS(2797), + [sym__strong_emphasis_open_star] = ACTIONS(2797), + [sym__strong_emphasis_open_underscore] = ACTIONS(2797), + [sym__emphasis_open_star] = ACTIONS(2797), + [sym__emphasis_open_underscore] = ACTIONS(2797), + [sym_inline_note_reference] = ACTIONS(2797), + [sym_html_element] = ACTIONS(2797), + [sym__pandoc_line_break] = ACTIONS(2797), }, - [STATE(279)] = { - [sym__inlines] = STATE(3572), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(724), - [sym__inline_whitespace] = STATE(724), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2839), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(305)] = { + [anon_sym_COLON] = ACTIONS(2801), + [sym_entity_reference] = ACTIONS(2801), + [sym_numeric_character_reference] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_BANG_LBRACK] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2803), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2801), + [aux_sym_pandoc_str_token1] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(2801), + [sym__whitespace] = ACTIONS(2801), + [sym__line_ending] = ACTIONS(2801), + [sym__soft_line_ending] = ACTIONS(2801), + [sym__block_close] = ACTIONS(2801), + [sym__block_quote_start] = ACTIONS(2801), + [sym_atx_h1_marker] = ACTIONS(2801), + [sym_atx_h2_marker] = ACTIONS(2801), + [sym_atx_h3_marker] = ACTIONS(2801), + [sym_atx_h4_marker] = ACTIONS(2801), + [sym_atx_h5_marker] = ACTIONS(2801), + [sym_atx_h6_marker] = ACTIONS(2801), + [sym__thematic_break] = ACTIONS(2801), + [sym__list_marker_minus] = ACTIONS(2801), + [sym__list_marker_plus] = ACTIONS(2801), + [sym__list_marker_star] = ACTIONS(2801), + [sym__list_marker_parenthesis] = ACTIONS(2801), + [sym__list_marker_dot] = ACTIONS(2801), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_example] = ACTIONS(2801), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2801), + [sym__fenced_code_block_start_backtick] = ACTIONS(2801), + [sym_minus_metadata] = ACTIONS(2801), + [sym__pipe_table_start] = ACTIONS(2801), + [sym__fenced_div_start] = ACTIONS(2801), + [sym__fenced_div_end] = ACTIONS(2801), + [sym_ref_id_specifier] = ACTIONS(2801), + [sym__code_span_start] = ACTIONS(2801), + [sym__html_comment] = ACTIONS(2801), + [sym__autolink] = ACTIONS(2801), + [sym__highlight_span_start] = ACTIONS(2801), + [sym__insert_span_start] = ACTIONS(2801), + [sym__delete_span_start] = ACTIONS(2801), + [sym__edit_comment_span_start] = ACTIONS(2801), + [sym__single_quote_span_open] = ACTIONS(2801), + [sym__double_quote_span_open] = ACTIONS(2801), + [sym__shortcode_open_escaped] = ACTIONS(2801), + [sym__shortcode_open] = ACTIONS(2801), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2801), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2801), + [sym__cite_author_in_text] = ACTIONS(2801), + [sym__cite_suppress_author] = ACTIONS(2801), + [sym__strikeout_open] = ACTIONS(2801), + [sym__subscript_open] = ACTIONS(2801), + [sym__superscript_open] = ACTIONS(2801), + [sym__inline_note_start_token] = ACTIONS(2801), + [sym__strong_emphasis_open_star] = ACTIONS(2801), + [sym__strong_emphasis_open_underscore] = ACTIONS(2801), + [sym__emphasis_open_star] = ACTIONS(2801), + [sym__emphasis_open_underscore] = ACTIONS(2801), + [sym_inline_note_reference] = ACTIONS(2801), + [sym_html_element] = ACTIONS(2801), + [sym__pandoc_line_break] = ACTIONS(2801), }, - [STATE(280)] = { - [sym__inlines] = STATE(3731), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(732), - [sym__inline_whitespace] = STATE(732), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2843), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(306)] = { + [anon_sym_COLON] = ACTIONS(2805), + [sym_entity_reference] = ACTIONS(2805), + [sym_numeric_character_reference] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_BANG_LBRACK] = ACTIONS(2805), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2805), + [aux_sym_pandoc_str_token1] = ACTIONS(2807), + [anon_sym_PIPE] = ACTIONS(2805), + [sym__whitespace] = ACTIONS(2805), + [sym__line_ending] = ACTIONS(2805), + [sym__soft_line_ending] = ACTIONS(2805), + [sym__block_close] = ACTIONS(2805), + [sym__block_quote_start] = ACTIONS(2805), + [sym_atx_h1_marker] = ACTIONS(2805), + [sym_atx_h2_marker] = ACTIONS(2805), + [sym_atx_h3_marker] = ACTIONS(2805), + [sym_atx_h4_marker] = ACTIONS(2805), + [sym_atx_h5_marker] = ACTIONS(2805), + [sym_atx_h6_marker] = ACTIONS(2805), + [sym__thematic_break] = ACTIONS(2805), + [sym__list_marker_minus] = ACTIONS(2805), + [sym__list_marker_plus] = ACTIONS(2805), + [sym__list_marker_star] = ACTIONS(2805), + [sym__list_marker_parenthesis] = ACTIONS(2805), + [sym__list_marker_dot] = ACTIONS(2805), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_example] = ACTIONS(2805), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2805), + [sym__fenced_code_block_start_backtick] = ACTIONS(2805), + [sym_minus_metadata] = ACTIONS(2805), + [sym__pipe_table_start] = ACTIONS(2805), + [sym__fenced_div_start] = ACTIONS(2805), + [sym__fenced_div_end] = ACTIONS(2805), + [sym_ref_id_specifier] = ACTIONS(2805), + [sym__code_span_start] = ACTIONS(2805), + [sym__html_comment] = ACTIONS(2805), + [sym__autolink] = ACTIONS(2805), + [sym__highlight_span_start] = ACTIONS(2805), + [sym__insert_span_start] = ACTIONS(2805), + [sym__delete_span_start] = ACTIONS(2805), + [sym__edit_comment_span_start] = ACTIONS(2805), + [sym__single_quote_span_open] = ACTIONS(2805), + [sym__double_quote_span_open] = ACTIONS(2805), + [sym__shortcode_open_escaped] = ACTIONS(2805), + [sym__shortcode_open] = ACTIONS(2805), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2805), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2805), + [sym__cite_author_in_text] = ACTIONS(2805), + [sym__cite_suppress_author] = ACTIONS(2805), + [sym__strikeout_open] = ACTIONS(2805), + [sym__subscript_open] = ACTIONS(2805), + [sym__superscript_open] = ACTIONS(2805), + [sym__inline_note_start_token] = ACTIONS(2805), + [sym__strong_emphasis_open_star] = ACTIONS(2805), + [sym__strong_emphasis_open_underscore] = ACTIONS(2805), + [sym__emphasis_open_star] = ACTIONS(2805), + [sym__emphasis_open_underscore] = ACTIONS(2805), + [sym_inline_note_reference] = ACTIONS(2805), + [sym_html_element] = ACTIONS(2805), + [sym__pandoc_line_break] = ACTIONS(2805), }, - [STATE(281)] = { - [sym__inlines] = STATE(3739), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(745), - [sym__inline_whitespace] = STATE(745), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2847), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(307)] = { + [anon_sym_COLON] = ACTIONS(2809), + [sym_entity_reference] = ACTIONS(2809), + [sym_numeric_character_reference] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_BANG_LBRACK] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), + [aux_sym_pandoc_str_token1] = ACTIONS(2811), + [anon_sym_PIPE] = ACTIONS(2809), + [sym__whitespace] = ACTIONS(2809), + [sym__line_ending] = ACTIONS(2809), + [sym__soft_line_ending] = ACTIONS(2809), + [sym__block_close] = ACTIONS(2809), + [sym__block_quote_start] = ACTIONS(2809), + [sym_atx_h1_marker] = ACTIONS(2809), + [sym_atx_h2_marker] = ACTIONS(2809), + [sym_atx_h3_marker] = ACTIONS(2809), + [sym_atx_h4_marker] = ACTIONS(2809), + [sym_atx_h5_marker] = ACTIONS(2809), + [sym_atx_h6_marker] = ACTIONS(2809), + [sym__thematic_break] = ACTIONS(2809), + [sym__list_marker_minus] = ACTIONS(2809), + [sym__list_marker_plus] = ACTIONS(2809), + [sym__list_marker_star] = ACTIONS(2809), + [sym__list_marker_parenthesis] = ACTIONS(2809), + [sym__list_marker_dot] = ACTIONS(2809), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_example] = ACTIONS(2809), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2809), + [sym__fenced_code_block_start_backtick] = ACTIONS(2809), + [sym_minus_metadata] = ACTIONS(2809), + [sym__pipe_table_start] = ACTIONS(2809), + [sym__fenced_div_start] = ACTIONS(2809), + [sym__fenced_div_end] = ACTIONS(2809), + [sym_ref_id_specifier] = ACTIONS(2809), + [sym__code_span_start] = ACTIONS(2809), + [sym__html_comment] = ACTIONS(2809), + [sym__autolink] = ACTIONS(2809), + [sym__highlight_span_start] = ACTIONS(2809), + [sym__insert_span_start] = ACTIONS(2809), + [sym__delete_span_start] = ACTIONS(2809), + [sym__edit_comment_span_start] = ACTIONS(2809), + [sym__single_quote_span_open] = ACTIONS(2809), + [sym__double_quote_span_open] = ACTIONS(2809), + [sym__shortcode_open_escaped] = ACTIONS(2809), + [sym__shortcode_open] = ACTIONS(2809), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2809), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2809), + [sym__cite_author_in_text] = ACTIONS(2809), + [sym__cite_suppress_author] = ACTIONS(2809), + [sym__strikeout_open] = ACTIONS(2809), + [sym__subscript_open] = ACTIONS(2809), + [sym__superscript_open] = ACTIONS(2809), + [sym__inline_note_start_token] = ACTIONS(2809), + [sym__strong_emphasis_open_star] = ACTIONS(2809), + [sym__strong_emphasis_open_underscore] = ACTIONS(2809), + [sym__emphasis_open_star] = ACTIONS(2809), + [sym__emphasis_open_underscore] = ACTIONS(2809), + [sym_inline_note_reference] = ACTIONS(2809), + [sym_html_element] = ACTIONS(2809), + [sym__pandoc_line_break] = ACTIONS(2809), }, - [STATE(282)] = { - [sym__inlines] = STATE(3743), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(648), - [sym__inline_whitespace] = STATE(648), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2851), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(308)] = { + [anon_sym_COLON] = ACTIONS(2813), + [sym_entity_reference] = ACTIONS(2813), + [sym_numeric_character_reference] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_BANG_LBRACK] = ACTIONS(2813), + [anon_sym_DOLLAR] = ACTIONS(2815), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2813), + [aux_sym_pandoc_str_token1] = ACTIONS(2815), + [anon_sym_PIPE] = ACTIONS(2813), + [sym__whitespace] = ACTIONS(2813), + [sym__line_ending] = ACTIONS(2813), + [sym__soft_line_ending] = ACTIONS(2813), + [sym__block_close] = ACTIONS(2813), + [sym__block_quote_start] = ACTIONS(2813), + [sym_atx_h1_marker] = ACTIONS(2813), + [sym_atx_h2_marker] = ACTIONS(2813), + [sym_atx_h3_marker] = ACTIONS(2813), + [sym_atx_h4_marker] = ACTIONS(2813), + [sym_atx_h5_marker] = ACTIONS(2813), + [sym_atx_h6_marker] = ACTIONS(2813), + [sym__thematic_break] = ACTIONS(2813), + [sym__list_marker_minus] = ACTIONS(2813), + [sym__list_marker_plus] = ACTIONS(2813), + [sym__list_marker_star] = ACTIONS(2813), + [sym__list_marker_parenthesis] = ACTIONS(2813), + [sym__list_marker_dot] = ACTIONS(2813), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_example] = ACTIONS(2813), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2813), + [sym__fenced_code_block_start_backtick] = ACTIONS(2813), + [sym_minus_metadata] = ACTIONS(2813), + [sym__pipe_table_start] = ACTIONS(2813), + [sym__fenced_div_start] = ACTIONS(2813), + [sym__fenced_div_end] = ACTIONS(2813), + [sym_ref_id_specifier] = ACTIONS(2813), + [sym__code_span_start] = ACTIONS(2813), + [sym__html_comment] = ACTIONS(2813), + [sym__autolink] = ACTIONS(2813), + [sym__highlight_span_start] = ACTIONS(2813), + [sym__insert_span_start] = ACTIONS(2813), + [sym__delete_span_start] = ACTIONS(2813), + [sym__edit_comment_span_start] = ACTIONS(2813), + [sym__single_quote_span_open] = ACTIONS(2813), + [sym__double_quote_span_open] = ACTIONS(2813), + [sym__shortcode_open_escaped] = ACTIONS(2813), + [sym__shortcode_open] = ACTIONS(2813), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2813), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2813), + [sym__cite_author_in_text] = ACTIONS(2813), + [sym__cite_suppress_author] = ACTIONS(2813), + [sym__strikeout_open] = ACTIONS(2813), + [sym__subscript_open] = ACTIONS(2813), + [sym__superscript_open] = ACTIONS(2813), + [sym__inline_note_start_token] = ACTIONS(2813), + [sym__strong_emphasis_open_star] = ACTIONS(2813), + [sym__strong_emphasis_open_underscore] = ACTIONS(2813), + [sym__emphasis_open_star] = ACTIONS(2813), + [sym__emphasis_open_underscore] = ACTIONS(2813), + [sym_inline_note_reference] = ACTIONS(2813), + [sym_html_element] = ACTIONS(2813), + [sym__pandoc_line_break] = ACTIONS(2813), }, - [STATE(283)] = { - [sym__inlines] = STATE(3746), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(649), - [sym__inline_whitespace] = STATE(649), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2855), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(309)] = { + [anon_sym_COLON] = ACTIONS(2817), + [sym_entity_reference] = ACTIONS(2817), + [sym_numeric_character_reference] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_BANG_LBRACK] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2817), + [aux_sym_pandoc_str_token1] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2817), + [sym__whitespace] = ACTIONS(2817), + [sym__line_ending] = ACTIONS(2817), + [sym__soft_line_ending] = ACTIONS(2817), + [sym__block_close] = ACTIONS(2817), + [sym__block_quote_start] = ACTIONS(2817), + [sym_atx_h1_marker] = ACTIONS(2817), + [sym_atx_h2_marker] = ACTIONS(2817), + [sym_atx_h3_marker] = ACTIONS(2817), + [sym_atx_h4_marker] = ACTIONS(2817), + [sym_atx_h5_marker] = ACTIONS(2817), + [sym_atx_h6_marker] = ACTIONS(2817), + [sym__thematic_break] = ACTIONS(2817), + [sym__list_marker_minus] = ACTIONS(2817), + [sym__list_marker_plus] = ACTIONS(2817), + [sym__list_marker_star] = ACTIONS(2817), + [sym__list_marker_parenthesis] = ACTIONS(2817), + [sym__list_marker_dot] = ACTIONS(2817), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_example] = ACTIONS(2817), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2817), + [sym__fenced_code_block_start_backtick] = ACTIONS(2817), + [sym_minus_metadata] = ACTIONS(2817), + [sym__pipe_table_start] = ACTIONS(2817), + [sym__fenced_div_start] = ACTIONS(2817), + [sym__fenced_div_end] = ACTIONS(2817), + [sym_ref_id_specifier] = ACTIONS(2817), + [sym__code_span_start] = ACTIONS(2817), + [sym__html_comment] = ACTIONS(2817), + [sym__autolink] = ACTIONS(2817), + [sym__highlight_span_start] = ACTIONS(2817), + [sym__insert_span_start] = ACTIONS(2817), + [sym__delete_span_start] = ACTIONS(2817), + [sym__edit_comment_span_start] = ACTIONS(2817), + [sym__single_quote_span_open] = ACTIONS(2817), + [sym__double_quote_span_open] = ACTIONS(2817), + [sym__shortcode_open_escaped] = ACTIONS(2817), + [sym__shortcode_open] = ACTIONS(2817), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2817), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2817), + [sym__cite_author_in_text] = ACTIONS(2817), + [sym__cite_suppress_author] = ACTIONS(2817), + [sym__strikeout_open] = ACTIONS(2817), + [sym__subscript_open] = ACTIONS(2817), + [sym__superscript_open] = ACTIONS(2817), + [sym__inline_note_start_token] = ACTIONS(2817), + [sym__strong_emphasis_open_star] = ACTIONS(2817), + [sym__strong_emphasis_open_underscore] = ACTIONS(2817), + [sym__emphasis_open_star] = ACTIONS(2817), + [sym__emphasis_open_underscore] = ACTIONS(2817), + [sym_inline_note_reference] = ACTIONS(2817), + [sym_html_element] = ACTIONS(2817), + [sym__pandoc_line_break] = ACTIONS(2817), }, - [STATE(284)] = { - [sym__inlines] = STATE(3903), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(697), - [sym__inline_whitespace] = STATE(697), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2859), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(310)] = { + [anon_sym_COLON] = ACTIONS(2821), + [sym_entity_reference] = ACTIONS(2821), + [sym_numeric_character_reference] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_BANG_LBRACK] = ACTIONS(2821), + [anon_sym_DOLLAR] = ACTIONS(2823), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [aux_sym_pandoc_str_token1] = ACTIONS(2823), + [anon_sym_PIPE] = ACTIONS(2821), + [sym__whitespace] = ACTIONS(2821), + [sym__line_ending] = ACTIONS(2821), + [sym__soft_line_ending] = ACTIONS(2821), + [sym__block_close] = ACTIONS(2821), + [sym__block_quote_start] = ACTIONS(2821), + [sym_atx_h1_marker] = ACTIONS(2821), + [sym_atx_h2_marker] = ACTIONS(2821), + [sym_atx_h3_marker] = ACTIONS(2821), + [sym_atx_h4_marker] = ACTIONS(2821), + [sym_atx_h5_marker] = ACTIONS(2821), + [sym_atx_h6_marker] = ACTIONS(2821), + [sym__thematic_break] = ACTIONS(2821), + [sym__list_marker_minus] = ACTIONS(2821), + [sym__list_marker_plus] = ACTIONS(2821), + [sym__list_marker_star] = ACTIONS(2821), + [sym__list_marker_parenthesis] = ACTIONS(2821), + [sym__list_marker_dot] = ACTIONS(2821), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_example] = ACTIONS(2821), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2821), + [sym__fenced_code_block_start_backtick] = ACTIONS(2821), + [sym_minus_metadata] = ACTIONS(2821), + [sym__pipe_table_start] = ACTIONS(2821), + [sym__fenced_div_start] = ACTIONS(2821), + [sym__fenced_div_end] = ACTIONS(2821), + [sym_ref_id_specifier] = ACTIONS(2821), + [sym__code_span_start] = ACTIONS(2821), + [sym__html_comment] = ACTIONS(2821), + [sym__autolink] = ACTIONS(2821), + [sym__highlight_span_start] = ACTIONS(2821), + [sym__insert_span_start] = ACTIONS(2821), + [sym__delete_span_start] = ACTIONS(2821), + [sym__edit_comment_span_start] = ACTIONS(2821), + [sym__single_quote_span_open] = ACTIONS(2821), + [sym__double_quote_span_open] = ACTIONS(2821), + [sym__shortcode_open_escaped] = ACTIONS(2821), + [sym__shortcode_open] = ACTIONS(2821), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2821), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2821), + [sym__cite_author_in_text] = ACTIONS(2821), + [sym__cite_suppress_author] = ACTIONS(2821), + [sym__strikeout_open] = ACTIONS(2821), + [sym__subscript_open] = ACTIONS(2821), + [sym__superscript_open] = ACTIONS(2821), + [sym__inline_note_start_token] = ACTIONS(2821), + [sym__strong_emphasis_open_star] = ACTIONS(2821), + [sym__strong_emphasis_open_underscore] = ACTIONS(2821), + [sym__emphasis_open_star] = ACTIONS(2821), + [sym__emphasis_open_underscore] = ACTIONS(2821), + [sym_inline_note_reference] = ACTIONS(2821), + [sym_html_element] = ACTIONS(2821), + [sym__pandoc_line_break] = ACTIONS(2821), }, - [STATE(285)] = { - [sym__inlines] = STATE(3907), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(707), - [sym__inline_whitespace] = STATE(707), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2861), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2863), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(311)] = { + [anon_sym_COLON] = ACTIONS(2825), + [sym_entity_reference] = ACTIONS(2825), + [sym_numeric_character_reference] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_BANG_LBRACK] = ACTIONS(2825), + [anon_sym_DOLLAR] = ACTIONS(2827), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2825), + [aux_sym_pandoc_str_token1] = ACTIONS(2827), + [anon_sym_PIPE] = ACTIONS(2825), + [sym__whitespace] = ACTIONS(2825), + [sym__line_ending] = ACTIONS(2825), + [sym__soft_line_ending] = ACTIONS(2825), + [sym__block_close] = ACTIONS(2825), + [sym__block_quote_start] = ACTIONS(2825), + [sym_atx_h1_marker] = ACTIONS(2825), + [sym_atx_h2_marker] = ACTIONS(2825), + [sym_atx_h3_marker] = ACTIONS(2825), + [sym_atx_h4_marker] = ACTIONS(2825), + [sym_atx_h5_marker] = ACTIONS(2825), + [sym_atx_h6_marker] = ACTIONS(2825), + [sym__thematic_break] = ACTIONS(2825), + [sym__list_marker_minus] = ACTIONS(2825), + [sym__list_marker_plus] = ACTIONS(2825), + [sym__list_marker_star] = ACTIONS(2825), + [sym__list_marker_parenthesis] = ACTIONS(2825), + [sym__list_marker_dot] = ACTIONS(2825), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_example] = ACTIONS(2825), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2825), + [sym__fenced_code_block_start_backtick] = ACTIONS(2825), + [sym_minus_metadata] = ACTIONS(2825), + [sym__pipe_table_start] = ACTIONS(2825), + [sym__fenced_div_start] = ACTIONS(2825), + [sym__fenced_div_end] = ACTIONS(2825), + [sym_ref_id_specifier] = ACTIONS(2825), + [sym__code_span_start] = ACTIONS(2825), + [sym__html_comment] = ACTIONS(2825), + [sym__autolink] = ACTIONS(2825), + [sym__highlight_span_start] = ACTIONS(2825), + [sym__insert_span_start] = ACTIONS(2825), + [sym__delete_span_start] = ACTIONS(2825), + [sym__edit_comment_span_start] = ACTIONS(2825), + [sym__single_quote_span_open] = ACTIONS(2825), + [sym__double_quote_span_open] = ACTIONS(2825), + [sym__shortcode_open_escaped] = ACTIONS(2825), + [sym__shortcode_open] = ACTIONS(2825), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2825), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2825), + [sym__cite_author_in_text] = ACTIONS(2825), + [sym__cite_suppress_author] = ACTIONS(2825), + [sym__strikeout_open] = ACTIONS(2825), + [sym__subscript_open] = ACTIONS(2825), + [sym__superscript_open] = ACTIONS(2825), + [sym__inline_note_start_token] = ACTIONS(2825), + [sym__strong_emphasis_open_star] = ACTIONS(2825), + [sym__strong_emphasis_open_underscore] = ACTIONS(2825), + [sym__emphasis_open_star] = ACTIONS(2825), + [sym__emphasis_open_underscore] = ACTIONS(2825), + [sym_inline_note_reference] = ACTIONS(2825), + [sym_html_element] = ACTIONS(2825), + [sym__pandoc_line_break] = ACTIONS(2825), }, - [STATE(286)] = { - [sym__inlines] = STATE(3912), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(710), - [sym__inline_whitespace] = STATE(710), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2867), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(312)] = { + [anon_sym_COLON] = ACTIONS(2829), + [sym_entity_reference] = ACTIONS(2829), + [sym_numeric_character_reference] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_BANG_LBRACK] = ACTIONS(2829), + [anon_sym_DOLLAR] = ACTIONS(2831), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [aux_sym_pandoc_str_token1] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2829), + [sym__whitespace] = ACTIONS(2829), + [sym__line_ending] = ACTIONS(2829), + [sym__soft_line_ending] = ACTIONS(2829), + [sym__block_close] = ACTIONS(2829), + [sym__block_quote_start] = ACTIONS(2829), + [sym_atx_h1_marker] = ACTIONS(2829), + [sym_atx_h2_marker] = ACTIONS(2829), + [sym_atx_h3_marker] = ACTIONS(2829), + [sym_atx_h4_marker] = ACTIONS(2829), + [sym_atx_h5_marker] = ACTIONS(2829), + [sym_atx_h6_marker] = ACTIONS(2829), + [sym__thematic_break] = ACTIONS(2829), + [sym__list_marker_minus] = ACTIONS(2829), + [sym__list_marker_plus] = ACTIONS(2829), + [sym__list_marker_star] = ACTIONS(2829), + [sym__list_marker_parenthesis] = ACTIONS(2829), + [sym__list_marker_dot] = ACTIONS(2829), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_example] = ACTIONS(2829), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2829), + [sym__fenced_code_block_start_backtick] = ACTIONS(2829), + [sym_minus_metadata] = ACTIONS(2829), + [sym__pipe_table_start] = ACTIONS(2829), + [sym__fenced_div_start] = ACTIONS(2829), + [sym__fenced_div_end] = ACTIONS(2829), + [sym_ref_id_specifier] = ACTIONS(2829), + [sym__code_span_start] = ACTIONS(2829), + [sym__html_comment] = ACTIONS(2829), + [sym__autolink] = ACTIONS(2829), + [sym__highlight_span_start] = ACTIONS(2829), + [sym__insert_span_start] = ACTIONS(2829), + [sym__delete_span_start] = ACTIONS(2829), + [sym__edit_comment_span_start] = ACTIONS(2829), + [sym__single_quote_span_open] = ACTIONS(2829), + [sym__double_quote_span_open] = ACTIONS(2829), + [sym__shortcode_open_escaped] = ACTIONS(2829), + [sym__shortcode_open] = ACTIONS(2829), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2829), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2829), + [sym__cite_author_in_text] = ACTIONS(2829), + [sym__cite_suppress_author] = ACTIONS(2829), + [sym__strikeout_open] = ACTIONS(2829), + [sym__subscript_open] = ACTIONS(2829), + [sym__superscript_open] = ACTIONS(2829), + [sym__inline_note_start_token] = ACTIONS(2829), + [sym__strong_emphasis_open_star] = ACTIONS(2829), + [sym__strong_emphasis_open_underscore] = ACTIONS(2829), + [sym__emphasis_open_star] = ACTIONS(2829), + [sym__emphasis_open_underscore] = ACTIONS(2829), + [sym_inline_note_reference] = ACTIONS(2829), + [sym_html_element] = ACTIONS(2829), + [sym__pandoc_line_break] = ACTIONS(2829), }, - [STATE(287)] = { - [sym__inlines] = STATE(3926), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(716), - [sym__inline_whitespace] = STATE(716), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2871), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(313)] = { + [anon_sym_COLON] = ACTIONS(2833), + [sym_entity_reference] = ACTIONS(2833), + [sym_numeric_character_reference] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_BANG_LBRACK] = ACTIONS(2833), + [anon_sym_DOLLAR] = ACTIONS(2835), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [aux_sym_pandoc_str_token1] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [sym__whitespace] = ACTIONS(2833), + [sym__line_ending] = ACTIONS(2833), + [sym__soft_line_ending] = ACTIONS(2833), + [sym__block_close] = ACTIONS(2833), + [sym__block_quote_start] = ACTIONS(2833), + [sym_atx_h1_marker] = ACTIONS(2833), + [sym_atx_h2_marker] = ACTIONS(2833), + [sym_atx_h3_marker] = ACTIONS(2833), + [sym_atx_h4_marker] = ACTIONS(2833), + [sym_atx_h5_marker] = ACTIONS(2833), + [sym_atx_h6_marker] = ACTIONS(2833), + [sym__thematic_break] = ACTIONS(2833), + [sym__list_marker_minus] = ACTIONS(2833), + [sym__list_marker_plus] = ACTIONS(2833), + [sym__list_marker_star] = ACTIONS(2833), + [sym__list_marker_parenthesis] = ACTIONS(2833), + [sym__list_marker_dot] = ACTIONS(2833), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_example] = ACTIONS(2833), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2833), + [sym__fenced_code_block_start_backtick] = ACTIONS(2833), + [sym_minus_metadata] = ACTIONS(2833), + [sym__pipe_table_start] = ACTIONS(2833), + [sym__fenced_div_start] = ACTIONS(2833), + [sym__fenced_div_end] = ACTIONS(2833), + [sym_ref_id_specifier] = ACTIONS(2833), + [sym__code_span_start] = ACTIONS(2833), + [sym__html_comment] = ACTIONS(2833), + [sym__autolink] = ACTIONS(2833), + [sym__highlight_span_start] = ACTIONS(2833), + [sym__insert_span_start] = ACTIONS(2833), + [sym__delete_span_start] = ACTIONS(2833), + [sym__edit_comment_span_start] = ACTIONS(2833), + [sym__single_quote_span_open] = ACTIONS(2833), + [sym__double_quote_span_open] = ACTIONS(2833), + [sym__shortcode_open_escaped] = ACTIONS(2833), + [sym__shortcode_open] = ACTIONS(2833), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2833), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2833), + [sym__cite_author_in_text] = ACTIONS(2833), + [sym__cite_suppress_author] = ACTIONS(2833), + [sym__strikeout_open] = ACTIONS(2833), + [sym__subscript_open] = ACTIONS(2833), + [sym__superscript_open] = ACTIONS(2833), + [sym__inline_note_start_token] = ACTIONS(2833), + [sym__strong_emphasis_open_star] = ACTIONS(2833), + [sym__strong_emphasis_open_underscore] = ACTIONS(2833), + [sym__emphasis_open_star] = ACTIONS(2833), + [sym__emphasis_open_underscore] = ACTIONS(2833), + [sym_inline_note_reference] = ACTIONS(2833), + [sym_html_element] = ACTIONS(2833), + [sym__pandoc_line_break] = ACTIONS(2833), }, - [STATE(288)] = { - [sym__inlines] = STATE(3523), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(741), - [sym__inline_whitespace] = STATE(741), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2875), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(314)] = { + [anon_sym_COLON] = ACTIONS(2837), + [sym_entity_reference] = ACTIONS(2837), + [sym_numeric_character_reference] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_BANG_LBRACK] = ACTIONS(2837), + [anon_sym_DOLLAR] = ACTIONS(2839), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [aux_sym_pandoc_str_token1] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2837), + [sym__whitespace] = ACTIONS(2837), + [sym__line_ending] = ACTIONS(2837), + [sym__soft_line_ending] = ACTIONS(2837), + [sym__block_close] = ACTIONS(2837), + [sym__block_quote_start] = ACTIONS(2837), + [sym_atx_h1_marker] = ACTIONS(2837), + [sym_atx_h2_marker] = ACTIONS(2837), + [sym_atx_h3_marker] = ACTIONS(2837), + [sym_atx_h4_marker] = ACTIONS(2837), + [sym_atx_h5_marker] = ACTIONS(2837), + [sym_atx_h6_marker] = ACTIONS(2837), + [sym__thematic_break] = ACTIONS(2837), + [sym__list_marker_minus] = ACTIONS(2837), + [sym__list_marker_plus] = ACTIONS(2837), + [sym__list_marker_star] = ACTIONS(2837), + [sym__list_marker_parenthesis] = ACTIONS(2837), + [sym__list_marker_dot] = ACTIONS(2837), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_example] = ACTIONS(2837), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2837), + [sym__fenced_code_block_start_backtick] = ACTIONS(2837), + [sym_minus_metadata] = ACTIONS(2837), + [sym__pipe_table_start] = ACTIONS(2837), + [sym__fenced_div_start] = ACTIONS(2837), + [sym__fenced_div_end] = ACTIONS(2837), + [sym_ref_id_specifier] = ACTIONS(2837), + [sym__code_span_start] = ACTIONS(2837), + [sym__html_comment] = ACTIONS(2837), + [sym__autolink] = ACTIONS(2837), + [sym__highlight_span_start] = ACTIONS(2837), + [sym__insert_span_start] = ACTIONS(2837), + [sym__delete_span_start] = ACTIONS(2837), + [sym__edit_comment_span_start] = ACTIONS(2837), + [sym__single_quote_span_open] = ACTIONS(2837), + [sym__double_quote_span_open] = ACTIONS(2837), + [sym__shortcode_open_escaped] = ACTIONS(2837), + [sym__shortcode_open] = ACTIONS(2837), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2837), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2837), + [sym__cite_author_in_text] = ACTIONS(2837), + [sym__cite_suppress_author] = ACTIONS(2837), + [sym__strikeout_open] = ACTIONS(2837), + [sym__subscript_open] = ACTIONS(2837), + [sym__superscript_open] = ACTIONS(2837), + [sym__inline_note_start_token] = ACTIONS(2837), + [sym__strong_emphasis_open_star] = ACTIONS(2837), + [sym__strong_emphasis_open_underscore] = ACTIONS(2837), + [sym__emphasis_open_star] = ACTIONS(2837), + [sym__emphasis_open_underscore] = ACTIONS(2837), + [sym_inline_note_reference] = ACTIONS(2837), + [sym_html_element] = ACTIONS(2837), + [sym__pandoc_line_break] = ACTIONS(2837), }, - [STATE(289)] = { - [sym__inlines] = STATE(3533), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(742), - [sym__inline_whitespace] = STATE(742), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2879), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(315)] = { + [anon_sym_COLON] = ACTIONS(2841), + [sym_entity_reference] = ACTIONS(2841), + [sym_numeric_character_reference] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_BANG_LBRACK] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [aux_sym_pandoc_str_token1] = ACTIONS(2843), + [anon_sym_PIPE] = ACTIONS(2841), + [sym__whitespace] = ACTIONS(2841), + [sym__line_ending] = ACTIONS(2841), + [sym__soft_line_ending] = ACTIONS(2841), + [sym__block_close] = ACTIONS(2841), + [sym__block_quote_start] = ACTIONS(2841), + [sym_atx_h1_marker] = ACTIONS(2841), + [sym_atx_h2_marker] = ACTIONS(2841), + [sym_atx_h3_marker] = ACTIONS(2841), + [sym_atx_h4_marker] = ACTIONS(2841), + [sym_atx_h5_marker] = ACTIONS(2841), + [sym_atx_h6_marker] = ACTIONS(2841), + [sym__thematic_break] = ACTIONS(2841), + [sym__list_marker_minus] = ACTIONS(2841), + [sym__list_marker_plus] = ACTIONS(2841), + [sym__list_marker_star] = ACTIONS(2841), + [sym__list_marker_parenthesis] = ACTIONS(2841), + [sym__list_marker_dot] = ACTIONS(2841), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_example] = ACTIONS(2841), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2841), + [sym__fenced_code_block_start_backtick] = ACTIONS(2841), + [sym_minus_metadata] = ACTIONS(2841), + [sym__pipe_table_start] = ACTIONS(2841), + [sym__fenced_div_start] = ACTIONS(2841), + [sym__fenced_div_end] = ACTIONS(2841), + [sym_ref_id_specifier] = ACTIONS(2841), + [sym__code_span_start] = ACTIONS(2841), + [sym__html_comment] = ACTIONS(2841), + [sym__autolink] = ACTIONS(2841), + [sym__highlight_span_start] = ACTIONS(2841), + [sym__insert_span_start] = ACTIONS(2841), + [sym__delete_span_start] = ACTIONS(2841), + [sym__edit_comment_span_start] = ACTIONS(2841), + [sym__single_quote_span_open] = ACTIONS(2841), + [sym__double_quote_span_open] = ACTIONS(2841), + [sym__shortcode_open_escaped] = ACTIONS(2841), + [sym__shortcode_open] = ACTIONS(2841), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2841), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2841), + [sym__cite_author_in_text] = ACTIONS(2841), + [sym__cite_suppress_author] = ACTIONS(2841), + [sym__strikeout_open] = ACTIONS(2841), + [sym__subscript_open] = ACTIONS(2841), + [sym__superscript_open] = ACTIONS(2841), + [sym__inline_note_start_token] = ACTIONS(2841), + [sym__strong_emphasis_open_star] = ACTIONS(2841), + [sym__strong_emphasis_open_underscore] = ACTIONS(2841), + [sym__emphasis_open_star] = ACTIONS(2841), + [sym__emphasis_open_underscore] = ACTIONS(2841), + [sym_inline_note_reference] = ACTIONS(2841), + [sym_html_element] = ACTIONS(2841), + [sym__pandoc_line_break] = ACTIONS(2841), }, - [STATE(290)] = { - [sym__inlines] = STATE(3535), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(743), - [sym__inline_whitespace] = STATE(743), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2883), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(316)] = { + [anon_sym_COLON] = ACTIONS(2845), + [sym_entity_reference] = ACTIONS(2845), + [sym_numeric_character_reference] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_BANG_LBRACK] = ACTIONS(2845), + [anon_sym_DOLLAR] = ACTIONS(2847), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2845), + [aux_sym_pandoc_str_token1] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2845), + [sym__whitespace] = ACTIONS(2845), + [sym__line_ending] = ACTIONS(2845), + [sym__soft_line_ending] = ACTIONS(2845), + [sym__block_close] = ACTIONS(2845), + [sym__block_quote_start] = ACTIONS(2845), + [sym_atx_h1_marker] = ACTIONS(2845), + [sym_atx_h2_marker] = ACTIONS(2845), + [sym_atx_h3_marker] = ACTIONS(2845), + [sym_atx_h4_marker] = ACTIONS(2845), + [sym_atx_h5_marker] = ACTIONS(2845), + [sym_atx_h6_marker] = ACTIONS(2845), + [sym__thematic_break] = ACTIONS(2845), + [sym__list_marker_minus] = ACTIONS(2845), + [sym__list_marker_plus] = ACTIONS(2845), + [sym__list_marker_star] = ACTIONS(2845), + [sym__list_marker_parenthesis] = ACTIONS(2845), + [sym__list_marker_dot] = ACTIONS(2845), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_example] = ACTIONS(2845), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2845), + [sym__fenced_code_block_start_backtick] = ACTIONS(2845), + [sym_minus_metadata] = ACTIONS(2845), + [sym__pipe_table_start] = ACTIONS(2845), + [sym__fenced_div_start] = ACTIONS(2845), + [sym__fenced_div_end] = ACTIONS(2845), + [sym_ref_id_specifier] = ACTIONS(2845), + [sym__code_span_start] = ACTIONS(2845), + [sym__html_comment] = ACTIONS(2845), + [sym__autolink] = ACTIONS(2845), + [sym__highlight_span_start] = ACTIONS(2845), + [sym__insert_span_start] = ACTIONS(2845), + [sym__delete_span_start] = ACTIONS(2845), + [sym__edit_comment_span_start] = ACTIONS(2845), + [sym__single_quote_span_open] = ACTIONS(2845), + [sym__double_quote_span_open] = ACTIONS(2845), + [sym__shortcode_open_escaped] = ACTIONS(2845), + [sym__shortcode_open] = ACTIONS(2845), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2845), + [sym__cite_author_in_text] = ACTIONS(2845), + [sym__cite_suppress_author] = ACTIONS(2845), + [sym__strikeout_open] = ACTIONS(2845), + [sym__subscript_open] = ACTIONS(2845), + [sym__superscript_open] = ACTIONS(2845), + [sym__inline_note_start_token] = ACTIONS(2845), + [sym__strong_emphasis_open_star] = ACTIONS(2845), + [sym__strong_emphasis_open_underscore] = ACTIONS(2845), + [sym__emphasis_open_star] = ACTIONS(2845), + [sym__emphasis_open_underscore] = ACTIONS(2845), + [sym_inline_note_reference] = ACTIONS(2845), + [sym_html_element] = ACTIONS(2845), + [sym__pandoc_line_break] = ACTIONS(2845), }, - [STATE(291)] = { - [sym__inlines] = STATE(3541), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(744), - [sym__inline_whitespace] = STATE(744), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2887), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(317)] = { + [anon_sym_COLON] = ACTIONS(2849), + [sym_entity_reference] = ACTIONS(2849), + [sym_numeric_character_reference] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_BANG_LBRACK] = ACTIONS(2849), + [anon_sym_DOLLAR] = ACTIONS(2851), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [aux_sym_pandoc_str_token1] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2849), + [sym__whitespace] = ACTIONS(2849), + [sym__line_ending] = ACTIONS(2849), + [sym__soft_line_ending] = ACTIONS(2849), + [sym__block_close] = ACTIONS(2849), + [sym__block_quote_start] = ACTIONS(2849), + [sym_atx_h1_marker] = ACTIONS(2849), + [sym_atx_h2_marker] = ACTIONS(2849), + [sym_atx_h3_marker] = ACTIONS(2849), + [sym_atx_h4_marker] = ACTIONS(2849), + [sym_atx_h5_marker] = ACTIONS(2849), + [sym_atx_h6_marker] = ACTIONS(2849), + [sym__thematic_break] = ACTIONS(2849), + [sym__list_marker_minus] = ACTIONS(2849), + [sym__list_marker_plus] = ACTIONS(2849), + [sym__list_marker_star] = ACTIONS(2849), + [sym__list_marker_parenthesis] = ACTIONS(2849), + [sym__list_marker_dot] = ACTIONS(2849), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_example] = ACTIONS(2849), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2849), + [sym__fenced_code_block_start_backtick] = ACTIONS(2849), + [sym_minus_metadata] = ACTIONS(2849), + [sym__pipe_table_start] = ACTIONS(2849), + [sym__fenced_div_start] = ACTIONS(2849), + [sym__fenced_div_end] = ACTIONS(2849), + [sym_ref_id_specifier] = ACTIONS(2849), + [sym__code_span_start] = ACTIONS(2849), + [sym__html_comment] = ACTIONS(2849), + [sym__autolink] = ACTIONS(2849), + [sym__highlight_span_start] = ACTIONS(2849), + [sym__insert_span_start] = ACTIONS(2849), + [sym__delete_span_start] = ACTIONS(2849), + [sym__edit_comment_span_start] = ACTIONS(2849), + [sym__single_quote_span_open] = ACTIONS(2849), + [sym__double_quote_span_open] = ACTIONS(2849), + [sym__shortcode_open_escaped] = ACTIONS(2849), + [sym__shortcode_open] = ACTIONS(2849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2849), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2849), + [sym__cite_author_in_text] = ACTIONS(2849), + [sym__cite_suppress_author] = ACTIONS(2849), + [sym__strikeout_open] = ACTIONS(2849), + [sym__subscript_open] = ACTIONS(2849), + [sym__superscript_open] = ACTIONS(2849), + [sym__inline_note_start_token] = ACTIONS(2849), + [sym__strong_emphasis_open_star] = ACTIONS(2849), + [sym__strong_emphasis_open_underscore] = ACTIONS(2849), + [sym__emphasis_open_star] = ACTIONS(2849), + [sym__emphasis_open_underscore] = ACTIONS(2849), + [sym_inline_note_reference] = ACTIONS(2849), + [sym_html_element] = ACTIONS(2849), + [sym__pandoc_line_break] = ACTIONS(2849), }, - [STATE(292)] = { - [sym__inlines] = STATE(3758), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(656), - [sym__inline_whitespace] = STATE(656), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2891), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(318)] = { + [anon_sym_COLON] = ACTIONS(2853), + [sym_entity_reference] = ACTIONS(2853), + [sym_numeric_character_reference] = ACTIONS(2853), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_BANG_LBRACK] = ACTIONS(2853), + [anon_sym_DOLLAR] = ACTIONS(2855), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2853), + [aux_sym_pandoc_str_token1] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2853), + [sym__whitespace] = ACTIONS(2853), + [sym__line_ending] = ACTIONS(2853), + [sym__soft_line_ending] = ACTIONS(2853), + [sym__block_close] = ACTIONS(2853), + [sym__block_quote_start] = ACTIONS(2853), + [sym_atx_h1_marker] = ACTIONS(2853), + [sym_atx_h2_marker] = ACTIONS(2853), + [sym_atx_h3_marker] = ACTIONS(2853), + [sym_atx_h4_marker] = ACTIONS(2853), + [sym_atx_h5_marker] = ACTIONS(2853), + [sym_atx_h6_marker] = ACTIONS(2853), + [sym__thematic_break] = ACTIONS(2853), + [sym__list_marker_minus] = ACTIONS(2853), + [sym__list_marker_plus] = ACTIONS(2853), + [sym__list_marker_star] = ACTIONS(2853), + [sym__list_marker_parenthesis] = ACTIONS(2853), + [sym__list_marker_dot] = ACTIONS(2853), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_example] = ACTIONS(2853), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2853), + [sym__fenced_code_block_start_backtick] = ACTIONS(2853), + [sym_minus_metadata] = ACTIONS(2853), + [sym__pipe_table_start] = ACTIONS(2853), + [sym__fenced_div_start] = ACTIONS(2853), + [sym__fenced_div_end] = ACTIONS(2853), + [sym_ref_id_specifier] = ACTIONS(2853), + [sym__code_span_start] = ACTIONS(2853), + [sym__html_comment] = ACTIONS(2853), + [sym__autolink] = ACTIONS(2853), + [sym__highlight_span_start] = ACTIONS(2853), + [sym__insert_span_start] = ACTIONS(2853), + [sym__delete_span_start] = ACTIONS(2853), + [sym__edit_comment_span_start] = ACTIONS(2853), + [sym__single_quote_span_open] = ACTIONS(2853), + [sym__double_quote_span_open] = ACTIONS(2853), + [sym__shortcode_open_escaped] = ACTIONS(2853), + [sym__shortcode_open] = ACTIONS(2853), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2853), + [sym__cite_author_in_text] = ACTIONS(2853), + [sym__cite_suppress_author] = ACTIONS(2853), + [sym__strikeout_open] = ACTIONS(2853), + [sym__subscript_open] = ACTIONS(2853), + [sym__superscript_open] = ACTIONS(2853), + [sym__inline_note_start_token] = ACTIONS(2853), + [sym__strong_emphasis_open_star] = ACTIONS(2853), + [sym__strong_emphasis_open_underscore] = ACTIONS(2853), + [sym__emphasis_open_star] = ACTIONS(2853), + [sym__emphasis_open_underscore] = ACTIONS(2853), + [sym_inline_note_reference] = ACTIONS(2853), + [sym_html_element] = ACTIONS(2853), + [sym__pandoc_line_break] = ACTIONS(2853), }, - [STATE(293)] = { - [sym__inlines] = STATE(3761), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(657), - [sym__inline_whitespace] = STATE(657), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2895), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(319)] = { + [anon_sym_COLON] = ACTIONS(2857), + [sym_entity_reference] = ACTIONS(2857), + [sym_numeric_character_reference] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_BANG_LBRACK] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2859), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2857), + [aux_sym_pandoc_str_token1] = ACTIONS(2859), + [anon_sym_PIPE] = ACTIONS(2857), + [sym__whitespace] = ACTIONS(2857), + [sym__line_ending] = ACTIONS(2857), + [sym__soft_line_ending] = ACTIONS(2857), + [sym__block_close] = ACTIONS(2857), + [sym__block_quote_start] = ACTIONS(2857), + [sym_atx_h1_marker] = ACTIONS(2857), + [sym_atx_h2_marker] = ACTIONS(2857), + [sym_atx_h3_marker] = ACTIONS(2857), + [sym_atx_h4_marker] = ACTIONS(2857), + [sym_atx_h5_marker] = ACTIONS(2857), + [sym_atx_h6_marker] = ACTIONS(2857), + [sym__thematic_break] = ACTIONS(2857), + [sym__list_marker_minus] = ACTIONS(2857), + [sym__list_marker_plus] = ACTIONS(2857), + [sym__list_marker_star] = ACTIONS(2857), + [sym__list_marker_parenthesis] = ACTIONS(2857), + [sym__list_marker_dot] = ACTIONS(2857), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_example] = ACTIONS(2857), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2857), + [sym__fenced_code_block_start_backtick] = ACTIONS(2857), + [sym_minus_metadata] = ACTIONS(2857), + [sym__pipe_table_start] = ACTIONS(2857), + [sym__fenced_div_start] = ACTIONS(2857), + [sym__fenced_div_end] = ACTIONS(2857), + [sym_ref_id_specifier] = ACTIONS(2857), + [sym__code_span_start] = ACTIONS(2857), + [sym__html_comment] = ACTIONS(2857), + [sym__autolink] = ACTIONS(2857), + [sym__highlight_span_start] = ACTIONS(2857), + [sym__insert_span_start] = ACTIONS(2857), + [sym__delete_span_start] = ACTIONS(2857), + [sym__edit_comment_span_start] = ACTIONS(2857), + [sym__single_quote_span_open] = ACTIONS(2857), + [sym__double_quote_span_open] = ACTIONS(2857), + [sym__shortcode_open_escaped] = ACTIONS(2857), + [sym__shortcode_open] = ACTIONS(2857), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2857), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2857), + [sym__cite_author_in_text] = ACTIONS(2857), + [sym__cite_suppress_author] = ACTIONS(2857), + [sym__strikeout_open] = ACTIONS(2857), + [sym__subscript_open] = ACTIONS(2857), + [sym__superscript_open] = ACTIONS(2857), + [sym__inline_note_start_token] = ACTIONS(2857), + [sym__strong_emphasis_open_star] = ACTIONS(2857), + [sym__strong_emphasis_open_underscore] = ACTIONS(2857), + [sym__emphasis_open_star] = ACTIONS(2857), + [sym__emphasis_open_underscore] = ACTIONS(2857), + [sym_inline_note_reference] = ACTIONS(2857), + [sym_html_element] = ACTIONS(2857), + [sym__pandoc_line_break] = ACTIONS(2857), }, - [STATE(294)] = { - [sym__inlines] = STATE(3779), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(659), - [sym__inline_whitespace] = STATE(659), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2899), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(320)] = { + [anon_sym_COLON] = ACTIONS(2861), + [sym_entity_reference] = ACTIONS(2861), + [sym_numeric_character_reference] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_BANG_LBRACK] = ACTIONS(2861), + [anon_sym_DOLLAR] = ACTIONS(2863), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2861), + [aux_sym_pandoc_str_token1] = ACTIONS(2863), + [anon_sym_PIPE] = ACTIONS(2861), + [sym__whitespace] = ACTIONS(2861), + [sym__line_ending] = ACTIONS(2861), + [sym__soft_line_ending] = ACTIONS(2861), + [sym__block_close] = ACTIONS(2861), + [sym__block_quote_start] = ACTIONS(2861), + [sym_atx_h1_marker] = ACTIONS(2861), + [sym_atx_h2_marker] = ACTIONS(2861), + [sym_atx_h3_marker] = ACTIONS(2861), + [sym_atx_h4_marker] = ACTIONS(2861), + [sym_atx_h5_marker] = ACTIONS(2861), + [sym_atx_h6_marker] = ACTIONS(2861), + [sym__thematic_break] = ACTIONS(2861), + [sym__list_marker_minus] = ACTIONS(2861), + [sym__list_marker_plus] = ACTIONS(2861), + [sym__list_marker_star] = ACTIONS(2861), + [sym__list_marker_parenthesis] = ACTIONS(2861), + [sym__list_marker_dot] = ACTIONS(2861), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_example] = ACTIONS(2861), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2861), + [sym__fenced_code_block_start_backtick] = ACTIONS(2861), + [sym_minus_metadata] = ACTIONS(2861), + [sym__pipe_table_start] = ACTIONS(2861), + [sym__fenced_div_start] = ACTIONS(2861), + [sym__fenced_div_end] = ACTIONS(2861), + [sym_ref_id_specifier] = ACTIONS(2861), + [sym__code_span_start] = ACTIONS(2861), + [sym__html_comment] = ACTIONS(2861), + [sym__autolink] = ACTIONS(2861), + [sym__highlight_span_start] = ACTIONS(2861), + [sym__insert_span_start] = ACTIONS(2861), + [sym__delete_span_start] = ACTIONS(2861), + [sym__edit_comment_span_start] = ACTIONS(2861), + [sym__single_quote_span_open] = ACTIONS(2861), + [sym__double_quote_span_open] = ACTIONS(2861), + [sym__shortcode_open_escaped] = ACTIONS(2861), + [sym__shortcode_open] = ACTIONS(2861), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2861), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2861), + [sym__cite_author_in_text] = ACTIONS(2861), + [sym__cite_suppress_author] = ACTIONS(2861), + [sym__strikeout_open] = ACTIONS(2861), + [sym__subscript_open] = ACTIONS(2861), + [sym__superscript_open] = ACTIONS(2861), + [sym__inline_note_start_token] = ACTIONS(2861), + [sym__strong_emphasis_open_star] = ACTIONS(2861), + [sym__strong_emphasis_open_underscore] = ACTIONS(2861), + [sym__emphasis_open_star] = ACTIONS(2861), + [sym__emphasis_open_underscore] = ACTIONS(2861), + [sym_inline_note_reference] = ACTIONS(2861), + [sym_html_element] = ACTIONS(2861), + [sym__pandoc_line_break] = ACTIONS(2861), }, - [STATE(295)] = { - [sym__inlines] = STATE(3235), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(670), - [sym__inline_whitespace] = STATE(670), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2903), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(321)] = { + [anon_sym_COLON] = ACTIONS(2865), + [sym_entity_reference] = ACTIONS(2865), + [sym_numeric_character_reference] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_BANG_LBRACK] = ACTIONS(2865), + [anon_sym_DOLLAR] = ACTIONS(2867), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2865), + [aux_sym_pandoc_str_token1] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2865), + [sym__whitespace] = ACTIONS(2865), + [sym__line_ending] = ACTIONS(2865), + [sym__soft_line_ending] = ACTIONS(2865), + [sym__block_close] = ACTIONS(2865), + [sym__block_quote_start] = ACTIONS(2865), + [sym_atx_h1_marker] = ACTIONS(2865), + [sym_atx_h2_marker] = ACTIONS(2865), + [sym_atx_h3_marker] = ACTIONS(2865), + [sym_atx_h4_marker] = ACTIONS(2865), + [sym_atx_h5_marker] = ACTIONS(2865), + [sym_atx_h6_marker] = ACTIONS(2865), + [sym__thematic_break] = ACTIONS(2865), + [sym__list_marker_minus] = ACTIONS(2865), + [sym__list_marker_plus] = ACTIONS(2865), + [sym__list_marker_star] = ACTIONS(2865), + [sym__list_marker_parenthesis] = ACTIONS(2865), + [sym__list_marker_dot] = ACTIONS(2865), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_example] = ACTIONS(2865), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2865), + [sym__fenced_code_block_start_backtick] = ACTIONS(2865), + [sym_minus_metadata] = ACTIONS(2865), + [sym__pipe_table_start] = ACTIONS(2865), + [sym__fenced_div_start] = ACTIONS(2865), + [sym__fenced_div_end] = ACTIONS(2865), + [sym_ref_id_specifier] = ACTIONS(2865), + [sym__code_span_start] = ACTIONS(2865), + [sym__html_comment] = ACTIONS(2865), + [sym__autolink] = ACTIONS(2865), + [sym__highlight_span_start] = ACTIONS(2865), + [sym__insert_span_start] = ACTIONS(2865), + [sym__delete_span_start] = ACTIONS(2865), + [sym__edit_comment_span_start] = ACTIONS(2865), + [sym__single_quote_span_open] = ACTIONS(2865), + [sym__double_quote_span_open] = ACTIONS(2865), + [sym__shortcode_open_escaped] = ACTIONS(2865), + [sym__shortcode_open] = ACTIONS(2865), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2865), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2865), + [sym__cite_author_in_text] = ACTIONS(2865), + [sym__cite_suppress_author] = ACTIONS(2865), + [sym__strikeout_open] = ACTIONS(2865), + [sym__subscript_open] = ACTIONS(2865), + [sym__superscript_open] = ACTIONS(2865), + [sym__inline_note_start_token] = ACTIONS(2865), + [sym__strong_emphasis_open_star] = ACTIONS(2865), + [sym__strong_emphasis_open_underscore] = ACTIONS(2865), + [sym__emphasis_open_star] = ACTIONS(2865), + [sym__emphasis_open_underscore] = ACTIONS(2865), + [sym_inline_note_reference] = ACTIONS(2865), + [sym_html_element] = ACTIONS(2865), + [sym__pandoc_line_break] = ACTIONS(2865), }, - [STATE(296)] = { - [sym__inlines] = STATE(3237), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(671), - [sym__inline_whitespace] = STATE(671), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2907), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(322)] = { + [ts_builtin_sym_end] = ACTIONS(2377), + [anon_sym_COLON] = ACTIONS(2377), + [sym_entity_reference] = ACTIONS(2377), + [sym_numeric_character_reference] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_BANG_LBRACK] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [aux_sym_pandoc_str_token1] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2377), + [sym__whitespace] = ACTIONS(2377), + [sym__line_ending] = ACTIONS(2377), + [sym__soft_line_ending] = ACTIONS(2377), + [sym_block_continuation] = ACTIONS(2869), + [sym__block_quote_start] = ACTIONS(2377), + [sym_atx_h1_marker] = ACTIONS(2377), + [sym_atx_h2_marker] = ACTIONS(2377), + [sym_atx_h3_marker] = ACTIONS(2377), + [sym_atx_h4_marker] = ACTIONS(2377), + [sym_atx_h5_marker] = ACTIONS(2377), + [sym_atx_h6_marker] = ACTIONS(2377), + [sym__thematic_break] = ACTIONS(2377), + [sym__list_marker_minus] = ACTIONS(2377), + [sym__list_marker_plus] = ACTIONS(2377), + [sym__list_marker_star] = ACTIONS(2377), + [sym__list_marker_parenthesis] = ACTIONS(2377), + [sym__list_marker_dot] = ACTIONS(2377), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_example] = ACTIONS(2377), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2377), + [sym__fenced_code_block_start_backtick] = ACTIONS(2377), + [sym_minus_metadata] = ACTIONS(2377), + [sym__pipe_table_start] = ACTIONS(2377), + [sym__fenced_div_start] = ACTIONS(2377), + [sym_ref_id_specifier] = ACTIONS(2377), + [sym__code_span_start] = ACTIONS(2377), + [sym__html_comment] = ACTIONS(2377), + [sym__autolink] = ACTIONS(2377), + [sym__highlight_span_start] = ACTIONS(2377), + [sym__insert_span_start] = ACTIONS(2377), + [sym__delete_span_start] = ACTIONS(2377), + [sym__edit_comment_span_start] = ACTIONS(2377), + [sym__single_quote_span_open] = ACTIONS(2377), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2377), + [sym__shortcode_open] = ACTIONS(2377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2377), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2377), + [sym__cite_author_in_text] = ACTIONS(2377), + [sym__cite_suppress_author] = ACTIONS(2377), + [sym__strikeout_open] = ACTIONS(2377), + [sym__subscript_open] = ACTIONS(2377), + [sym__superscript_open] = ACTIONS(2377), + [sym__inline_note_start_token] = ACTIONS(2377), + [sym__strong_emphasis_open_star] = ACTIONS(2377), + [sym__strong_emphasis_open_underscore] = ACTIONS(2377), + [sym__emphasis_open_star] = ACTIONS(2377), + [sym__emphasis_open_underscore] = ACTIONS(2377), + [sym_inline_note_reference] = ACTIONS(2377), + [sym_html_element] = ACTIONS(2377), + [sym__pandoc_line_break] = ACTIONS(2377), }, - [STATE(297)] = { - [sym__inlines] = STATE(3239), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(672), - [sym__inline_whitespace] = STATE(672), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2911), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(323)] = { + [ts_builtin_sym_end] = ACTIONS(2383), + [anon_sym_COLON] = ACTIONS(2383), + [sym_entity_reference] = ACTIONS(2383), + [sym_numeric_character_reference] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_BANG_LBRACK] = ACTIONS(2383), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [aux_sym_pandoc_str_token1] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2383), + [sym__whitespace] = ACTIONS(2383), + [sym__line_ending] = ACTIONS(2383), + [sym__soft_line_ending] = ACTIONS(2383), + [sym_block_continuation] = ACTIONS(2871), + [sym__block_quote_start] = ACTIONS(2383), + [sym_atx_h1_marker] = ACTIONS(2383), + [sym_atx_h2_marker] = ACTIONS(2383), + [sym_atx_h3_marker] = ACTIONS(2383), + [sym_atx_h4_marker] = ACTIONS(2383), + [sym_atx_h5_marker] = ACTIONS(2383), + [sym_atx_h6_marker] = ACTIONS(2383), + [sym__thematic_break] = ACTIONS(2383), + [sym__list_marker_minus] = ACTIONS(2383), + [sym__list_marker_plus] = ACTIONS(2383), + [sym__list_marker_star] = ACTIONS(2383), + [sym__list_marker_parenthesis] = ACTIONS(2383), + [sym__list_marker_dot] = ACTIONS(2383), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_example] = ACTIONS(2383), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2383), + [sym__fenced_code_block_start_backtick] = ACTIONS(2383), + [sym_minus_metadata] = ACTIONS(2383), + [sym__pipe_table_start] = ACTIONS(2383), + [sym__fenced_div_start] = ACTIONS(2383), + [sym_ref_id_specifier] = ACTIONS(2383), + [sym__code_span_start] = ACTIONS(2383), + [sym__html_comment] = ACTIONS(2383), + [sym__autolink] = ACTIONS(2383), + [sym__highlight_span_start] = ACTIONS(2383), + [sym__insert_span_start] = ACTIONS(2383), + [sym__delete_span_start] = ACTIONS(2383), + [sym__edit_comment_span_start] = ACTIONS(2383), + [sym__single_quote_span_open] = ACTIONS(2383), + [sym__double_quote_span_open] = ACTIONS(2383), + [sym__shortcode_open_escaped] = ACTIONS(2383), + [sym__shortcode_open] = ACTIONS(2383), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2383), + [sym__cite_author_in_text] = ACTIONS(2383), + [sym__cite_suppress_author] = ACTIONS(2383), + [sym__strikeout_open] = ACTIONS(2383), + [sym__subscript_open] = ACTIONS(2383), + [sym__superscript_open] = ACTIONS(2383), + [sym__inline_note_start_token] = ACTIONS(2383), + [sym__strong_emphasis_open_star] = ACTIONS(2383), + [sym__strong_emphasis_open_underscore] = ACTIONS(2383), + [sym__emphasis_open_star] = ACTIONS(2383), + [sym__emphasis_open_underscore] = ACTIONS(2383), + [sym_inline_note_reference] = ACTIONS(2383), + [sym_html_element] = ACTIONS(2383), + [sym__pandoc_line_break] = ACTIONS(2383), }, - [STATE(298)] = { - [sym__inlines] = STATE(3241), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(673), - [sym__inline_whitespace] = STATE(673), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2915), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(324)] = { + [ts_builtin_sym_end] = ACTIONS(2389), + [anon_sym_COLON] = ACTIONS(2389), + [sym_entity_reference] = ACTIONS(2389), + [sym_numeric_character_reference] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_BANG_LBRACK] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [aux_sym_pandoc_str_token1] = ACTIONS(2391), + [anon_sym_PIPE] = ACTIONS(2389), + [sym__whitespace] = ACTIONS(2389), + [sym__line_ending] = ACTIONS(2389), + [sym__soft_line_ending] = ACTIONS(2389), + [sym_block_continuation] = ACTIONS(2873), + [sym__block_quote_start] = ACTIONS(2389), + [sym_atx_h1_marker] = ACTIONS(2389), + [sym_atx_h2_marker] = ACTIONS(2389), + [sym_atx_h3_marker] = ACTIONS(2389), + [sym_atx_h4_marker] = ACTIONS(2389), + [sym_atx_h5_marker] = ACTIONS(2389), + [sym_atx_h6_marker] = ACTIONS(2389), + [sym__thematic_break] = ACTIONS(2389), + [sym__list_marker_minus] = ACTIONS(2389), + [sym__list_marker_plus] = ACTIONS(2389), + [sym__list_marker_star] = ACTIONS(2389), + [sym__list_marker_parenthesis] = ACTIONS(2389), + [sym__list_marker_dot] = ACTIONS(2389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_example] = ACTIONS(2389), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2389), + [sym__fenced_code_block_start_backtick] = ACTIONS(2389), + [sym_minus_metadata] = ACTIONS(2389), + [sym__pipe_table_start] = ACTIONS(2389), + [sym__fenced_div_start] = ACTIONS(2389), + [sym_ref_id_specifier] = ACTIONS(2389), + [sym__code_span_start] = ACTIONS(2389), + [sym__html_comment] = ACTIONS(2389), + [sym__autolink] = ACTIONS(2389), + [sym__highlight_span_start] = ACTIONS(2389), + [sym__insert_span_start] = ACTIONS(2389), + [sym__delete_span_start] = ACTIONS(2389), + [sym__edit_comment_span_start] = ACTIONS(2389), + [sym__single_quote_span_open] = ACTIONS(2389), + [sym__double_quote_span_open] = ACTIONS(2389), + [sym__shortcode_open_escaped] = ACTIONS(2389), + [sym__shortcode_open] = ACTIONS(2389), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2389), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2389), + [sym__cite_author_in_text] = ACTIONS(2389), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2389), + [sym__subscript_open] = ACTIONS(2389), + [sym__superscript_open] = ACTIONS(2389), + [sym__inline_note_start_token] = ACTIONS(2389), + [sym__strong_emphasis_open_star] = ACTIONS(2389), + [sym__strong_emphasis_open_underscore] = ACTIONS(2389), + [sym__emphasis_open_star] = ACTIONS(2389), + [sym__emphasis_open_underscore] = ACTIONS(2389), + [sym_inline_note_reference] = ACTIONS(2389), + [sym_html_element] = ACTIONS(2389), + [sym__pandoc_line_break] = ACTIONS(2389), }, - [STATE(299)] = { - [sym__inlines] = STATE(3299), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(684), - [sym__inline_whitespace] = STATE(684), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2919), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(325)] = { + [ts_builtin_sym_end] = ACTIONS(2395), + [anon_sym_COLON] = ACTIONS(2395), + [sym_entity_reference] = ACTIONS(2395), + [sym_numeric_character_reference] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_BANG_LBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [aux_sym_pandoc_str_token1] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2395), + [sym__whitespace] = ACTIONS(2395), + [sym__line_ending] = ACTIONS(2395), + [sym__soft_line_ending] = ACTIONS(2395), + [sym_block_continuation] = ACTIONS(2875), + [sym__block_quote_start] = ACTIONS(2395), + [sym_atx_h1_marker] = ACTIONS(2395), + [sym_atx_h2_marker] = ACTIONS(2395), + [sym_atx_h3_marker] = ACTIONS(2395), + [sym_atx_h4_marker] = ACTIONS(2395), + [sym_atx_h5_marker] = ACTIONS(2395), + [sym_atx_h6_marker] = ACTIONS(2395), + [sym__thematic_break] = ACTIONS(2395), + [sym__list_marker_minus] = ACTIONS(2395), + [sym__list_marker_plus] = ACTIONS(2395), + [sym__list_marker_star] = ACTIONS(2395), + [sym__list_marker_parenthesis] = ACTIONS(2395), + [sym__list_marker_dot] = ACTIONS(2395), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_example] = ACTIONS(2395), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2395), + [sym__fenced_code_block_start_backtick] = ACTIONS(2395), + [sym_minus_metadata] = ACTIONS(2395), + [sym__pipe_table_start] = ACTIONS(2395), + [sym__fenced_div_start] = ACTIONS(2395), + [sym_ref_id_specifier] = ACTIONS(2395), + [sym__code_span_start] = ACTIONS(2395), + [sym__html_comment] = ACTIONS(2395), + [sym__autolink] = ACTIONS(2395), + [sym__highlight_span_start] = ACTIONS(2395), + [sym__insert_span_start] = ACTIONS(2395), + [sym__delete_span_start] = ACTIONS(2395), + [sym__edit_comment_span_start] = ACTIONS(2395), + [sym__single_quote_span_open] = ACTIONS(2395), + [sym__double_quote_span_open] = ACTIONS(2395), + [sym__shortcode_open_escaped] = ACTIONS(2395), + [sym__shortcode_open] = ACTIONS(2395), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2395), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2395), + [sym__cite_author_in_text] = ACTIONS(2395), + [sym__cite_suppress_author] = ACTIONS(2395), + [sym__strikeout_open] = ACTIONS(2395), + [sym__subscript_open] = ACTIONS(2395), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2395), + [sym__strong_emphasis_open_star] = ACTIONS(2395), + [sym__strong_emphasis_open_underscore] = ACTIONS(2395), + [sym__emphasis_open_star] = ACTIONS(2395), + [sym__emphasis_open_underscore] = ACTIONS(2395), + [sym_inline_note_reference] = ACTIONS(2395), + [sym_html_element] = ACTIONS(2395), + [sym__pandoc_line_break] = ACTIONS(2395), }, - [STATE(300)] = { - [sym__inlines] = STATE(3301), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(685), - [sym__inline_whitespace] = STATE(685), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2923), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(326)] = { + [ts_builtin_sym_end] = ACTIONS(2401), + [anon_sym_COLON] = ACTIONS(2401), + [sym_entity_reference] = ACTIONS(2401), + [sym_numeric_character_reference] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_BANG_LBRACK] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [aux_sym_pandoc_str_token1] = ACTIONS(2403), + [anon_sym_PIPE] = ACTIONS(2401), + [sym__whitespace] = ACTIONS(2401), + [sym__line_ending] = ACTIONS(2401), + [sym__soft_line_ending] = ACTIONS(2401), + [sym_block_continuation] = ACTIONS(2877), + [sym__block_quote_start] = ACTIONS(2401), + [sym_atx_h1_marker] = ACTIONS(2401), + [sym_atx_h2_marker] = ACTIONS(2401), + [sym_atx_h3_marker] = ACTIONS(2401), + [sym_atx_h4_marker] = ACTIONS(2401), + [sym_atx_h5_marker] = ACTIONS(2401), + [sym_atx_h6_marker] = ACTIONS(2401), + [sym__thematic_break] = ACTIONS(2401), + [sym__list_marker_minus] = ACTIONS(2401), + [sym__list_marker_plus] = ACTIONS(2401), + [sym__list_marker_star] = ACTIONS(2401), + [sym__list_marker_parenthesis] = ACTIONS(2401), + [sym__list_marker_dot] = ACTIONS(2401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_example] = ACTIONS(2401), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2401), + [sym__fenced_code_block_start_backtick] = ACTIONS(2401), + [sym_minus_metadata] = ACTIONS(2401), + [sym__pipe_table_start] = ACTIONS(2401), + [sym__fenced_div_start] = ACTIONS(2401), + [sym_ref_id_specifier] = ACTIONS(2401), + [sym__code_span_start] = ACTIONS(2401), + [sym__html_comment] = ACTIONS(2401), + [sym__autolink] = ACTIONS(2401), + [sym__highlight_span_start] = ACTIONS(2401), + [sym__insert_span_start] = ACTIONS(2401), + [sym__delete_span_start] = ACTIONS(2401), + [sym__edit_comment_span_start] = ACTIONS(2401), + [sym__single_quote_span_open] = ACTIONS(2401), + [sym__double_quote_span_open] = ACTIONS(2401), + [sym__shortcode_open_escaped] = ACTIONS(2401), + [sym__shortcode_open] = ACTIONS(2401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2401), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2401), + [sym__cite_author_in_text] = ACTIONS(2401), + [sym__cite_suppress_author] = ACTIONS(2401), + [sym__strikeout_open] = ACTIONS(2401), + [sym__subscript_open] = ACTIONS(2401), + [sym__superscript_open] = ACTIONS(2401), + [sym__inline_note_start_token] = ACTIONS(2401), + [sym__strong_emphasis_open_star] = ACTIONS(2401), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2401), + [sym__emphasis_open_underscore] = ACTIONS(2401), + [sym_inline_note_reference] = ACTIONS(2401), + [sym_html_element] = ACTIONS(2401), + [sym__pandoc_line_break] = ACTIONS(2401), }, - [STATE(301)] = { - [sym__inlines] = STATE(3303), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(686), - [sym__inline_whitespace] = STATE(686), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2927), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(327)] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2407), + [sym_entity_reference] = ACTIONS(2407), + [sym_numeric_character_reference] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_BANG_LBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [aux_sym_pandoc_str_token1] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2407), + [sym__whitespace] = ACTIONS(2407), + [sym__line_ending] = ACTIONS(2407), + [sym__soft_line_ending] = ACTIONS(2407), + [sym_block_continuation] = ACTIONS(2879), + [sym__block_quote_start] = ACTIONS(2407), + [sym_atx_h1_marker] = ACTIONS(2407), + [sym_atx_h2_marker] = ACTIONS(2407), + [sym_atx_h3_marker] = ACTIONS(2407), + [sym_atx_h4_marker] = ACTIONS(2407), + [sym_atx_h5_marker] = ACTIONS(2407), + [sym_atx_h6_marker] = ACTIONS(2407), + [sym__thematic_break] = ACTIONS(2407), + [sym__list_marker_minus] = ACTIONS(2407), + [sym__list_marker_plus] = ACTIONS(2407), + [sym__list_marker_star] = ACTIONS(2407), + [sym__list_marker_parenthesis] = ACTIONS(2407), + [sym__list_marker_dot] = ACTIONS(2407), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_example] = ACTIONS(2407), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2407), + [sym__fenced_code_block_start_backtick] = ACTIONS(2407), + [sym_minus_metadata] = ACTIONS(2407), + [sym__pipe_table_start] = ACTIONS(2407), + [sym__fenced_div_start] = ACTIONS(2407), + [sym_ref_id_specifier] = ACTIONS(2407), + [sym__code_span_start] = ACTIONS(2407), + [sym__html_comment] = ACTIONS(2407), + [sym__autolink] = ACTIONS(2407), + [sym__highlight_span_start] = ACTIONS(2407), + [sym__insert_span_start] = ACTIONS(2407), + [sym__delete_span_start] = ACTIONS(2407), + [sym__edit_comment_span_start] = ACTIONS(2407), + [sym__single_quote_span_open] = ACTIONS(2407), + [sym__double_quote_span_open] = ACTIONS(2407), + [sym__shortcode_open_escaped] = ACTIONS(2407), + [sym__shortcode_open] = ACTIONS(2407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2407), + [sym__cite_author_in_text] = ACTIONS(2407), + [sym__cite_suppress_author] = ACTIONS(2407), + [sym__strikeout_open] = ACTIONS(2407), + [sym__subscript_open] = ACTIONS(2407), + [sym__superscript_open] = ACTIONS(2407), + [sym__inline_note_start_token] = ACTIONS(2407), + [sym__strong_emphasis_open_star] = ACTIONS(2407), + [sym__strong_emphasis_open_underscore] = ACTIONS(2407), + [sym__emphasis_open_star] = ACTIONS(2407), + [sym__emphasis_open_underscore] = ACTIONS(2407), + [sym_inline_note_reference] = ACTIONS(2407), + [sym_html_element] = ACTIONS(2407), + [sym__pandoc_line_break] = ACTIONS(2407), }, - [STATE(302)] = { - [sym__inlines] = STATE(3305), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(647), - [sym__inline_whitespace] = STATE(647), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2931), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(328)] = { + [ts_builtin_sym_end] = ACTIONS(2419), + [anon_sym_COLON] = ACTIONS(2419), + [sym_entity_reference] = ACTIONS(2419), + [sym_numeric_character_reference] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_BANG_LBRACK] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [aux_sym_pandoc_str_token1] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(2419), + [sym__whitespace] = ACTIONS(2419), + [sym__line_ending] = ACTIONS(2419), + [sym__soft_line_ending] = ACTIONS(2419), + [sym_block_continuation] = ACTIONS(2881), + [sym__block_quote_start] = ACTIONS(2419), + [sym_atx_h1_marker] = ACTIONS(2419), + [sym_atx_h2_marker] = ACTIONS(2419), + [sym_atx_h3_marker] = ACTIONS(2419), + [sym_atx_h4_marker] = ACTIONS(2419), + [sym_atx_h5_marker] = ACTIONS(2419), + [sym_atx_h6_marker] = ACTIONS(2419), + [sym__thematic_break] = ACTIONS(2419), + [sym__list_marker_minus] = ACTIONS(2419), + [sym__list_marker_plus] = ACTIONS(2419), + [sym__list_marker_star] = ACTIONS(2419), + [sym__list_marker_parenthesis] = ACTIONS(2419), + [sym__list_marker_dot] = ACTIONS(2419), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_example] = ACTIONS(2419), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2419), + [sym__fenced_code_block_start_backtick] = ACTIONS(2419), + [sym_minus_metadata] = ACTIONS(2419), + [sym__pipe_table_start] = ACTIONS(2419), + [sym__fenced_div_start] = ACTIONS(2419), + [sym_ref_id_specifier] = ACTIONS(2419), + [sym__code_span_start] = ACTIONS(2419), + [sym__html_comment] = ACTIONS(2419), + [sym__autolink] = ACTIONS(2419), + [sym__highlight_span_start] = ACTIONS(2419), + [sym__insert_span_start] = ACTIONS(2419), + [sym__delete_span_start] = ACTIONS(2419), + [sym__edit_comment_span_start] = ACTIONS(2419), + [sym__single_quote_span_open] = ACTIONS(2419), + [sym__double_quote_span_open] = ACTIONS(2419), + [sym__shortcode_open_escaped] = ACTIONS(2419), + [sym__shortcode_open] = ACTIONS(2419), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2419), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2419), + [sym__cite_author_in_text] = ACTIONS(2419), + [sym__cite_suppress_author] = ACTIONS(2419), + [sym__strikeout_open] = ACTIONS(2419), + [sym__subscript_open] = ACTIONS(2419), + [sym__superscript_open] = ACTIONS(2419), + [sym__inline_note_start_token] = ACTIONS(2419), + [sym__strong_emphasis_open_star] = ACTIONS(2419), + [sym__strong_emphasis_open_underscore] = ACTIONS(2419), + [sym__emphasis_open_star] = ACTIONS(2419), + [sym__emphasis_open_underscore] = ACTIONS(2419), + [sym_inline_note_reference] = ACTIONS(2419), + [sym_html_element] = ACTIONS(2419), + [sym__pandoc_line_break] = ACTIONS(2419), }, - [STATE(303)] = { - [sym__atx_heading_content] = STATE(2971), - [sym__inlines] = STATE(2971), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(606), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(111), - [sym__eof] = ACTIONS(2933), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [STATE(329)] = { + [anon_sym_COLON] = ACTIONS(2413), + [sym_entity_reference] = ACTIONS(2413), + [sym_numeric_character_reference] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_BANG_LBRACK] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2413), + [aux_sym_pandoc_str_token1] = ACTIONS(2415), + [anon_sym_PIPE] = ACTIONS(2413), + [sym__whitespace] = ACTIONS(2413), + [sym__line_ending] = ACTIONS(2413), + [sym__soft_line_ending] = ACTIONS(2413), + [sym__block_close] = ACTIONS(2413), + [sym_block_continuation] = ACTIONS(2883), + [sym__block_quote_start] = ACTIONS(2413), + [sym_atx_h1_marker] = ACTIONS(2413), + [sym_atx_h2_marker] = ACTIONS(2413), + [sym_atx_h3_marker] = ACTIONS(2413), + [sym_atx_h4_marker] = ACTIONS(2413), + [sym_atx_h5_marker] = ACTIONS(2413), + [sym_atx_h6_marker] = ACTIONS(2413), + [sym__thematic_break] = ACTIONS(2413), + [sym__list_marker_minus] = ACTIONS(2413), + [sym__list_marker_plus] = ACTIONS(2413), + [sym__list_marker_star] = ACTIONS(2413), + [sym__list_marker_parenthesis] = ACTIONS(2413), + [sym__list_marker_dot] = ACTIONS(2413), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2413), + [sym__list_marker_example] = ACTIONS(2413), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2413), + [sym__fenced_code_block_start_backtick] = ACTIONS(2413), + [sym_minus_metadata] = ACTIONS(2413), + [sym__pipe_table_start] = ACTIONS(2413), + [sym__fenced_div_start] = ACTIONS(2413), + [sym_ref_id_specifier] = ACTIONS(2413), + [sym__code_span_start] = ACTIONS(2413), + [sym__html_comment] = ACTIONS(2413), + [sym__autolink] = ACTIONS(2413), + [sym__highlight_span_start] = ACTIONS(2413), + [sym__insert_span_start] = ACTIONS(2413), + [sym__delete_span_start] = ACTIONS(2413), + [sym__edit_comment_span_start] = ACTIONS(2413), + [sym__single_quote_span_open] = ACTIONS(2413), + [sym__double_quote_span_open] = ACTIONS(2413), + [sym__shortcode_open_escaped] = ACTIONS(2413), + [sym__shortcode_open] = ACTIONS(2413), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2413), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2413), + [sym__cite_author_in_text] = ACTIONS(2413), + [sym__cite_suppress_author] = ACTIONS(2413), + [sym__strikeout_open] = ACTIONS(2413), + [sym__subscript_open] = ACTIONS(2413), + [sym__superscript_open] = ACTIONS(2413), + [sym__inline_note_start_token] = ACTIONS(2413), + [sym__strong_emphasis_open_star] = ACTIONS(2413), + [sym__strong_emphasis_open_underscore] = ACTIONS(2413), + [sym__emphasis_open_star] = ACTIONS(2413), + [sym__emphasis_open_underscore] = ACTIONS(2413), + [sym_inline_note_reference] = ACTIONS(2413), + [sym_html_element] = ACTIONS(2413), + [sym__pandoc_line_break] = ACTIONS(2413), }, - [STATE(304)] = { - [sym__inlines] = STATE(3363), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(698), - [sym__inline_whitespace] = STATE(698), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2937), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(330)] = { + [anon_sym_COLON] = ACTIONS(2419), + [sym_entity_reference] = ACTIONS(2419), + [sym_numeric_character_reference] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_BANG_LBRACK] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [aux_sym_pandoc_str_token1] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(2419), + [sym__whitespace] = ACTIONS(2419), + [sym__line_ending] = ACTIONS(2419), + [sym__soft_line_ending] = ACTIONS(2419), + [sym__block_close] = ACTIONS(2419), + [sym_block_continuation] = ACTIONS(2885), + [sym__block_quote_start] = ACTIONS(2419), + [sym_atx_h1_marker] = ACTIONS(2419), + [sym_atx_h2_marker] = ACTIONS(2419), + [sym_atx_h3_marker] = ACTIONS(2419), + [sym_atx_h4_marker] = ACTIONS(2419), + [sym_atx_h5_marker] = ACTIONS(2419), + [sym_atx_h6_marker] = ACTIONS(2419), + [sym__thematic_break] = ACTIONS(2419), + [sym__list_marker_minus] = ACTIONS(2419), + [sym__list_marker_plus] = ACTIONS(2419), + [sym__list_marker_star] = ACTIONS(2419), + [sym__list_marker_parenthesis] = ACTIONS(2419), + [sym__list_marker_dot] = ACTIONS(2419), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2419), + [sym__list_marker_example] = ACTIONS(2419), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2419), + [sym__fenced_code_block_start_backtick] = ACTIONS(2419), + [sym_minus_metadata] = ACTIONS(2419), + [sym__pipe_table_start] = ACTIONS(2419), + [sym__fenced_div_start] = ACTIONS(2419), + [sym_ref_id_specifier] = ACTIONS(2419), + [sym__code_span_start] = ACTIONS(2419), + [sym__html_comment] = ACTIONS(2419), + [sym__autolink] = ACTIONS(2419), + [sym__highlight_span_start] = ACTIONS(2419), + [sym__insert_span_start] = ACTIONS(2419), + [sym__delete_span_start] = ACTIONS(2419), + [sym__edit_comment_span_start] = ACTIONS(2419), + [sym__single_quote_span_open] = ACTIONS(2419), + [sym__double_quote_span_open] = ACTIONS(2419), + [sym__shortcode_open_escaped] = ACTIONS(2419), + [sym__shortcode_open] = ACTIONS(2419), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2419), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2419), + [sym__cite_author_in_text] = ACTIONS(2419), + [sym__cite_suppress_author] = ACTIONS(2419), + [sym__strikeout_open] = ACTIONS(2419), + [sym__subscript_open] = ACTIONS(2419), + [sym__superscript_open] = ACTIONS(2419), + [sym__inline_note_start_token] = ACTIONS(2419), + [sym__strong_emphasis_open_star] = ACTIONS(2419), + [sym__strong_emphasis_open_underscore] = ACTIONS(2419), + [sym__emphasis_open_star] = ACTIONS(2419), + [sym__emphasis_open_underscore] = ACTIONS(2419), + [sym_inline_note_reference] = ACTIONS(2419), + [sym_html_element] = ACTIONS(2419), + [sym__pandoc_line_break] = ACTIONS(2419), }, - [STATE(305)] = { - [sym__inlines] = STATE(3365), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(747), - [sym__inline_whitespace] = STATE(747), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), + [STATE(331)] = { + [anon_sym_COLON] = ACTIONS(2447), + [sym_entity_reference] = ACTIONS(2447), + [sym_numeric_character_reference] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(2447), [anon_sym_BANG_LBRACK] = ACTIONS(2447), [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2941), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [aux_sym_pandoc_str_token1] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2447), + [sym__whitespace] = ACTIONS(2447), + [sym__line_ending] = ACTIONS(2447), + [sym__soft_line_ending] = ACTIONS(2447), + [sym__block_close] = ACTIONS(2447), + [sym_block_continuation] = ACTIONS(2887), + [sym__block_quote_start] = ACTIONS(2447), + [sym_atx_h1_marker] = ACTIONS(2447), + [sym_atx_h2_marker] = ACTIONS(2447), + [sym_atx_h3_marker] = ACTIONS(2447), + [sym_atx_h4_marker] = ACTIONS(2447), + [sym_atx_h5_marker] = ACTIONS(2447), + [sym_atx_h6_marker] = ACTIONS(2447), + [sym__thematic_break] = ACTIONS(2447), + [sym__list_marker_minus] = ACTIONS(2447), + [sym__list_marker_plus] = ACTIONS(2447), + [sym__list_marker_star] = ACTIONS(2447), + [sym__list_marker_parenthesis] = ACTIONS(2447), + [sym__list_marker_dot] = ACTIONS(2447), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2447), + [sym__list_marker_example] = ACTIONS(2447), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2447), + [sym__fenced_code_block_start_backtick] = ACTIONS(2447), + [sym_minus_metadata] = ACTIONS(2447), + [sym__pipe_table_start] = ACTIONS(2447), + [sym__fenced_div_start] = ACTIONS(2447), + [sym_ref_id_specifier] = ACTIONS(2447), + [sym__code_span_start] = ACTIONS(2447), + [sym__html_comment] = ACTIONS(2447), + [sym__autolink] = ACTIONS(2447), + [sym__highlight_span_start] = ACTIONS(2447), + [sym__insert_span_start] = ACTIONS(2447), + [sym__delete_span_start] = ACTIONS(2447), + [sym__edit_comment_span_start] = ACTIONS(2447), + [sym__single_quote_span_open] = ACTIONS(2447), + [sym__double_quote_span_open] = ACTIONS(2447), + [sym__shortcode_open_escaped] = ACTIONS(2447), + [sym__shortcode_open] = ACTIONS(2447), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2447), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2447), + [sym__cite_author_in_text] = ACTIONS(2447), + [sym__cite_suppress_author] = ACTIONS(2447), + [sym__strikeout_open] = ACTIONS(2447), + [sym__subscript_open] = ACTIONS(2447), + [sym__superscript_open] = ACTIONS(2447), + [sym__inline_note_start_token] = ACTIONS(2447), + [sym__strong_emphasis_open_star] = ACTIONS(2447), + [sym__strong_emphasis_open_underscore] = ACTIONS(2447), + [sym__emphasis_open_star] = ACTIONS(2447), + [sym__emphasis_open_underscore] = ACTIONS(2447), + [sym_inline_note_reference] = ACTIONS(2447), + [sym_html_element] = ACTIONS(2447), + [sym__pandoc_line_break] = ACTIONS(2447), }, - [STATE(306)] = { - [sym__inlines] = STATE(3367), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(700), - [sym__inline_whitespace] = STATE(700), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2945), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(332)] = { + [sym_pipe_table_cell] = STATE(2851), + [sym_pandoc_span] = STATE(565), + [sym_pandoc_image] = STATE(565), + [sym_pandoc_math] = STATE(565), + [sym_pandoc_display_math] = STATE(565), + [sym_pandoc_code_span] = STATE(565), + [sym_pandoc_single_quote] = STATE(565), + [sym_pandoc_double_quote] = STATE(565), + [sym_insert] = STATE(565), + [sym_delete] = STATE(565), + [sym_edit_comment] = STATE(565), + [sym_highlight] = STATE(565), + [sym__pandoc_attr_specifier] = STATE(565), + [sym__line_with_maybe_spaces] = STATE(2780), + [sym__inline_element] = STATE(565), + [sym_shortcode_escaped] = STATE(565), + [sym_shortcode] = STATE(565), + [sym_citation] = STATE(565), + [sym_inline_note] = STATE(565), + [sym_pandoc_superscript] = STATE(565), + [sym_pandoc_subscript] = STATE(565), + [sym_pandoc_strikeout] = STATE(565), + [sym_pandoc_emph] = STATE(565), + [sym_pandoc_strong] = STATE(565), + [sym_pandoc_str] = STATE(565), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(565), + [sym_entity_reference] = ACTIONS(2011), + [sym_numeric_character_reference] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_BANG_LBRACK] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2021), + [aux_sym_pandoc_str_token1] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [sym__whitespace] = ACTIONS(2493), + [sym__line_ending] = ACTIONS(2495), + [sym__eof] = ACTIONS(2495), + [sym__pipe_table_line_ending] = ACTIONS(2495), + [sym__code_span_start] = ACTIONS(2031), + [sym__html_comment] = ACTIONS(2011), + [sym__autolink] = ACTIONS(2011), + [sym__highlight_span_start] = ACTIONS(2033), + [sym__insert_span_start] = ACTIONS(2035), + [sym__delete_span_start] = ACTIONS(2037), + [sym__edit_comment_span_start] = ACTIONS(2039), + [sym__single_quote_span_open] = ACTIONS(2041), + [sym__double_quote_span_open] = ACTIONS(2043), + [sym__shortcode_open_escaped] = ACTIONS(2045), + [sym__shortcode_open] = ACTIONS(2047), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2049), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2051), + [sym__cite_author_in_text] = ACTIONS(2053), + [sym__cite_suppress_author] = ACTIONS(2055), + [sym__strikeout_open] = ACTIONS(2057), + [sym__subscript_open] = ACTIONS(2059), + [sym__superscript_open] = ACTIONS(2061), + [sym__inline_note_start_token] = ACTIONS(2063), + [sym__strong_emphasis_open_star] = ACTIONS(2065), + [sym__strong_emphasis_open_underscore] = ACTIONS(2067), + [sym__emphasis_open_star] = ACTIONS(2069), + [sym__emphasis_open_underscore] = ACTIONS(2071), + [sym_inline_note_reference] = ACTIONS(2011), + [sym_html_element] = ACTIONS(2011), + [sym__pipe_table_delimiter] = ACTIONS(2889), + [sym__pandoc_line_break] = ACTIONS(2011), }, - [STATE(307)] = { - [sym__inlines] = STATE(3369), - [sym_pandoc_span] = STATE(630), - [sym_pandoc_image] = STATE(630), - [sym_pandoc_math] = STATE(630), - [sym_pandoc_display_math] = STATE(630), - [sym_pandoc_code_span] = STATE(630), - [sym_pandoc_single_quote] = STATE(630), - [sym_pandoc_double_quote] = STATE(630), - [sym_insert] = STATE(630), - [sym_delete] = STATE(630), - [sym_edit_comment] = STATE(630), - [sym_highlight] = STATE(630), - [sym__pandoc_attr_specifier] = STATE(630), - [sym__line] = STATE(2664), - [sym__inline_element] = STATE(630), - [sym_shortcode_escaped] = STATE(630), - [sym_shortcode] = STATE(630), - [sym_citation] = STATE(630), - [sym_inline_note] = STATE(630), - [sym_pandoc_superscript] = STATE(630), - [sym_pandoc_subscript] = STATE(630), - [sym_pandoc_strikeout] = STATE(630), - [sym_pandoc_emph] = STATE(630), - [sym_pandoc_strong] = STATE(630), - [sym_pandoc_str] = STATE(630), - [sym__prose_punctuation] = STATE(630), - [sym__soft_line_break] = STATE(701), - [sym__inline_whitespace] = STATE(701), - [sym_entity_reference] = ACTIONS(2443), - [sym_numeric_character_reference] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2451), - [aux_sym_insert_token1] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2455), - [aux_sym_pandoc_str_token1] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2459), - [aux_sym__prose_punctuation_token1] = ACTIONS(2461), - [sym__whitespace] = ACTIONS(2949), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2467), - [sym__html_comment] = ACTIONS(2443), - [sym__autolink] = ACTIONS(2443), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2471), - [sym__delete_span_start] = ACTIONS(2473), - [sym__edit_comment_span_start] = ACTIONS(2475), - [sym__single_quote_span_open] = ACTIONS(2477), - [sym__double_quote_span_open] = ACTIONS(2479), - [sym__shortcode_open_escaped] = ACTIONS(2481), - [sym__shortcode_open] = ACTIONS(2483), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2485), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2487), - [sym__cite_author_in_text] = ACTIONS(2489), - [sym__cite_suppress_author] = ACTIONS(2491), - [sym__strikeout_open] = ACTIONS(2493), - [sym__subscript_open] = ACTIONS(2495), - [sym__superscript_open] = ACTIONS(2497), - [sym__inline_note_start_token] = ACTIONS(2499), - [sym__strong_emphasis_open_star] = ACTIONS(2501), - [sym__strong_emphasis_open_underscore] = ACTIONS(2503), - [sym__emphasis_open_star] = ACTIONS(2505), - [sym__emphasis_open_underscore] = ACTIONS(2507), - [sym_inline_note_reference] = ACTIONS(2443), - [sym_html_element] = ACTIONS(2443), - [sym__pandoc_line_break] = ACTIONS(2443), + [STATE(333)] = { + [ts_builtin_sym_end] = ACTIONS(2457), + [anon_sym_COLON] = ACTIONS(2457), + [sym_entity_reference] = ACTIONS(2457), + [sym_numeric_character_reference] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_BANG_LBRACK] = ACTIONS(2457), + [anon_sym_DOLLAR] = ACTIONS(2459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [aux_sym_pandoc_str_token1] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2457), + [sym__whitespace] = ACTIONS(2457), + [sym__line_ending] = ACTIONS(2457), + [sym__soft_line_ending] = ACTIONS(2457), + [sym_block_continuation] = ACTIONS(2891), + [sym__block_quote_start] = ACTIONS(2457), + [sym_atx_h1_marker] = ACTIONS(2457), + [sym_atx_h2_marker] = ACTIONS(2457), + [sym_atx_h3_marker] = ACTIONS(2457), + [sym_atx_h4_marker] = ACTIONS(2457), + [sym_atx_h5_marker] = ACTIONS(2457), + [sym_atx_h6_marker] = ACTIONS(2457), + [sym__thematic_break] = ACTIONS(2457), + [sym__list_marker_minus] = ACTIONS(2457), + [sym__list_marker_plus] = ACTIONS(2457), + [sym__list_marker_star] = ACTIONS(2457), + [sym__list_marker_parenthesis] = ACTIONS(2457), + [sym__list_marker_dot] = ACTIONS(2457), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2457), + [sym__list_marker_example] = ACTIONS(2457), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2457), + [sym__fenced_code_block_start_backtick] = ACTIONS(2457), + [sym_minus_metadata] = ACTIONS(2457), + [sym__pipe_table_start] = ACTIONS(2457), + [sym__fenced_div_start] = ACTIONS(2457), + [sym_ref_id_specifier] = ACTIONS(2457), + [sym__code_span_start] = ACTIONS(2457), + [sym__html_comment] = ACTIONS(2457), + [sym__autolink] = ACTIONS(2457), + [sym__highlight_span_start] = ACTIONS(2457), + [sym__insert_span_start] = ACTIONS(2457), + [sym__delete_span_start] = ACTIONS(2457), + [sym__edit_comment_span_start] = ACTIONS(2457), + [sym__single_quote_span_open] = ACTIONS(2457), + [sym__double_quote_span_open] = ACTIONS(2457), + [sym__shortcode_open_escaped] = ACTIONS(2457), + [sym__shortcode_open] = ACTIONS(2457), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2457), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2457), + [sym__cite_author_in_text] = ACTIONS(2457), + [sym__cite_suppress_author] = ACTIONS(2457), + [sym__strikeout_open] = ACTIONS(2457), + [sym__subscript_open] = ACTIONS(2457), + [sym__superscript_open] = ACTIONS(2457), + [sym__inline_note_start_token] = ACTIONS(2457), + [sym__strong_emphasis_open_star] = ACTIONS(2457), + [sym__strong_emphasis_open_underscore] = ACTIONS(2457), + [sym__emphasis_open_star] = ACTIONS(2457), + [sym__emphasis_open_underscore] = ACTIONS(2457), + [sym_inline_note_reference] = ACTIONS(2457), + [sym_html_element] = ACTIONS(2457), + [sym__pandoc_line_break] = ACTIONS(2457), }, - [STATE(308)] = { - [sym__atx_heading_content] = STATE(2977), - [sym__inlines] = STATE(2977), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(607), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(111), - [sym__eof] = ACTIONS(2951), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [STATE(334)] = { + [ts_builtin_sym_end] = ACTIONS(2785), + [anon_sym_COLON] = ACTIONS(2785), + [sym_entity_reference] = ACTIONS(2785), + [sym_numeric_character_reference] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_BANG_LBRACK] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2785), + [aux_sym_pandoc_str_token1] = ACTIONS(2787), + [anon_sym_PIPE] = ACTIONS(2785), + [sym__whitespace] = ACTIONS(2785), + [sym__line_ending] = ACTIONS(2785), + [sym__soft_line_ending] = ACTIONS(2785), + [sym__block_quote_start] = ACTIONS(2785), + [sym_atx_h1_marker] = ACTIONS(2785), + [sym_atx_h2_marker] = ACTIONS(2785), + [sym_atx_h3_marker] = ACTIONS(2785), + [sym_atx_h4_marker] = ACTIONS(2785), + [sym_atx_h5_marker] = ACTIONS(2785), + [sym_atx_h6_marker] = ACTIONS(2785), + [sym__thematic_break] = ACTIONS(2785), + [sym__list_marker_minus] = ACTIONS(2785), + [sym__list_marker_plus] = ACTIONS(2785), + [sym__list_marker_star] = ACTIONS(2785), + [sym__list_marker_parenthesis] = ACTIONS(2785), + [sym__list_marker_dot] = ACTIONS(2785), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_example] = ACTIONS(2785), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2785), + [sym__fenced_code_block_start_backtick] = ACTIONS(2785), + [sym_minus_metadata] = ACTIONS(2785), + [sym__pipe_table_start] = ACTIONS(2785), + [sym__fenced_div_start] = ACTIONS(2785), + [sym_ref_id_specifier] = ACTIONS(2785), + [sym__code_span_start] = ACTIONS(2785), + [sym__html_comment] = ACTIONS(2785), + [sym__autolink] = ACTIONS(2785), + [sym__highlight_span_start] = ACTIONS(2785), + [sym__insert_span_start] = ACTIONS(2785), + [sym__delete_span_start] = ACTIONS(2785), + [sym__edit_comment_span_start] = ACTIONS(2785), + [sym__single_quote_span_open] = ACTIONS(2785), + [sym__double_quote_span_open] = ACTIONS(2785), + [sym__shortcode_open_escaped] = ACTIONS(2785), + [sym__shortcode_open] = ACTIONS(2785), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2785), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2785), + [sym__cite_author_in_text] = ACTIONS(2785), + [sym__cite_suppress_author] = ACTIONS(2785), + [sym__strikeout_open] = ACTIONS(2785), + [sym__subscript_open] = ACTIONS(2785), + [sym__superscript_open] = ACTIONS(2785), + [sym__inline_note_start_token] = ACTIONS(2785), + [sym__strong_emphasis_open_star] = ACTIONS(2785), + [sym__strong_emphasis_open_underscore] = ACTIONS(2785), + [sym__emphasis_open_star] = ACTIONS(2785), + [sym__emphasis_open_underscore] = ACTIONS(2785), + [sym_inline_note_reference] = ACTIONS(2785), + [sym_html_element] = ACTIONS(2785), + [sym__pandoc_line_break] = ACTIONS(2785), }, - [STATE(309)] = { - [sym__atx_heading_content] = STATE(2985), - [sym__inlines] = STATE(2985), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(608), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(111), - [sym__eof] = ACTIONS(2953), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [STATE(335)] = { + [ts_builtin_sym_end] = ACTIONS(2865), + [anon_sym_COLON] = ACTIONS(2865), + [sym_entity_reference] = ACTIONS(2865), + [sym_numeric_character_reference] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_BANG_LBRACK] = ACTIONS(2865), + [anon_sym_DOLLAR] = ACTIONS(2867), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2865), + [aux_sym_pandoc_str_token1] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2865), + [sym__whitespace] = ACTIONS(2865), + [sym__line_ending] = ACTIONS(2865), + [sym__soft_line_ending] = ACTIONS(2865), + [sym__block_quote_start] = ACTIONS(2865), + [sym_atx_h1_marker] = ACTIONS(2865), + [sym_atx_h2_marker] = ACTIONS(2865), + [sym_atx_h3_marker] = ACTIONS(2865), + [sym_atx_h4_marker] = ACTIONS(2865), + [sym_atx_h5_marker] = ACTIONS(2865), + [sym_atx_h6_marker] = ACTIONS(2865), + [sym__thematic_break] = ACTIONS(2865), + [sym__list_marker_minus] = ACTIONS(2865), + [sym__list_marker_plus] = ACTIONS(2865), + [sym__list_marker_star] = ACTIONS(2865), + [sym__list_marker_parenthesis] = ACTIONS(2865), + [sym__list_marker_dot] = ACTIONS(2865), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_example] = ACTIONS(2865), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2865), + [sym__fenced_code_block_start_backtick] = ACTIONS(2865), + [sym_minus_metadata] = ACTIONS(2865), + [sym__pipe_table_start] = ACTIONS(2865), + [sym__fenced_div_start] = ACTIONS(2865), + [sym_ref_id_specifier] = ACTIONS(2865), + [sym__code_span_start] = ACTIONS(2865), + [sym__html_comment] = ACTIONS(2865), + [sym__autolink] = ACTIONS(2865), + [sym__highlight_span_start] = ACTIONS(2865), + [sym__insert_span_start] = ACTIONS(2865), + [sym__delete_span_start] = ACTIONS(2865), + [sym__edit_comment_span_start] = ACTIONS(2865), + [sym__single_quote_span_open] = ACTIONS(2865), + [sym__double_quote_span_open] = ACTIONS(2865), + [sym__shortcode_open_escaped] = ACTIONS(2865), + [sym__shortcode_open] = ACTIONS(2865), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2865), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2865), + [sym__cite_author_in_text] = ACTIONS(2865), + [sym__cite_suppress_author] = ACTIONS(2865), + [sym__strikeout_open] = ACTIONS(2865), + [sym__subscript_open] = ACTIONS(2865), + [sym__superscript_open] = ACTIONS(2865), + [sym__inline_note_start_token] = ACTIONS(2865), + [sym__strong_emphasis_open_star] = ACTIONS(2865), + [sym__strong_emphasis_open_underscore] = ACTIONS(2865), + [sym__emphasis_open_star] = ACTIONS(2865), + [sym__emphasis_open_underscore] = ACTIONS(2865), + [sym_inline_note_reference] = ACTIONS(2865), + [sym_html_element] = ACTIONS(2865), + [sym__pandoc_line_break] = ACTIONS(2865), }, - [STATE(310)] = { - [sym__atx_heading_content] = STATE(2987), - [sym__inlines] = STATE(2987), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(609), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(111), - [sym__eof] = ACTIONS(2955), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), - }, - [STATE(311)] = { - [sym__atx_heading_content] = STATE(3008), - [sym__inlines] = STATE(3008), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(611), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(111), - [sym__eof] = ACTIONS(2957), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), - }, - [STATE(312)] = { - [sym__atx_heading_content] = STATE(3018), - [sym__inlines] = STATE(3018), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(449), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(111), - [sym__eof] = ACTIONS(2959), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [STATE(336)] = { + [ts_builtin_sym_end] = ACTIONS(2699), + [anon_sym_COLON] = ACTIONS(2699), + [sym_entity_reference] = ACTIONS(2699), + [sym_numeric_character_reference] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_BANG_LBRACK] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2701), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2699), + [aux_sym_pandoc_str_token1] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2699), + [sym__whitespace] = ACTIONS(2699), + [sym__line_ending] = ACTIONS(2699), + [sym__soft_line_ending] = ACTIONS(2699), + [sym__block_quote_start] = ACTIONS(2699), + [sym_atx_h1_marker] = ACTIONS(2699), + [sym_atx_h2_marker] = ACTIONS(2699), + [sym_atx_h3_marker] = ACTIONS(2699), + [sym_atx_h4_marker] = ACTIONS(2699), + [sym_atx_h5_marker] = ACTIONS(2699), + [sym_atx_h6_marker] = ACTIONS(2699), + [sym__thematic_break] = ACTIONS(2699), + [sym__list_marker_minus] = ACTIONS(2699), + [sym__list_marker_plus] = ACTIONS(2699), + [sym__list_marker_star] = ACTIONS(2699), + [sym__list_marker_parenthesis] = ACTIONS(2699), + [sym__list_marker_dot] = ACTIONS(2699), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2699), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2699), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2699), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2699), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2699), + [sym__list_marker_example] = ACTIONS(2699), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2699), + [sym__fenced_code_block_start_backtick] = ACTIONS(2699), + [sym_minus_metadata] = ACTIONS(2699), + [sym__pipe_table_start] = ACTIONS(2699), + [sym__fenced_div_start] = ACTIONS(2699), + [sym_ref_id_specifier] = ACTIONS(2699), + [sym__code_span_start] = ACTIONS(2699), + [sym__html_comment] = ACTIONS(2699), + [sym__autolink] = ACTIONS(2699), + [sym__highlight_span_start] = ACTIONS(2699), + [sym__insert_span_start] = ACTIONS(2699), + [sym__delete_span_start] = ACTIONS(2699), + [sym__edit_comment_span_start] = ACTIONS(2699), + [sym__single_quote_span_open] = ACTIONS(2699), + [sym__double_quote_span_open] = ACTIONS(2699), + [sym__shortcode_open_escaped] = ACTIONS(2699), + [sym__shortcode_open] = ACTIONS(2699), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2699), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2699), + [sym__cite_author_in_text] = ACTIONS(2699), + [sym__cite_suppress_author] = ACTIONS(2699), + [sym__strikeout_open] = ACTIONS(2699), + [sym__subscript_open] = ACTIONS(2699), + [sym__superscript_open] = ACTIONS(2699), + [sym__inline_note_start_token] = ACTIONS(2699), + [sym__strong_emphasis_open_star] = ACTIONS(2699), + [sym__strong_emphasis_open_underscore] = ACTIONS(2699), + [sym__emphasis_open_star] = ACTIONS(2699), + [sym__emphasis_open_underscore] = ACTIONS(2699), + [sym_inline_note_reference] = ACTIONS(2699), + [sym_html_element] = ACTIONS(2699), + [sym__pandoc_line_break] = ACTIONS(2699), }, - [STATE(313)] = { - [sym__atx_heading_content] = STATE(2766), - [sym__inlines] = STATE(2766), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(460), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(25), - [sym__eof] = ACTIONS(2961), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [STATE(337)] = { + [ts_builtin_sym_end] = ACTIONS(2703), + [anon_sym_COLON] = ACTIONS(2703), + [sym_entity_reference] = ACTIONS(2703), + [sym_numeric_character_reference] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_BANG_LBRACK] = ACTIONS(2703), + [anon_sym_DOLLAR] = ACTIONS(2705), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [aux_sym_pandoc_str_token1] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2703), + [sym__whitespace] = ACTIONS(2703), + [sym__line_ending] = ACTIONS(2703), + [sym__soft_line_ending] = ACTIONS(2703), + [sym__block_quote_start] = ACTIONS(2703), + [sym_atx_h1_marker] = ACTIONS(2703), + [sym_atx_h2_marker] = ACTIONS(2703), + [sym_atx_h3_marker] = ACTIONS(2703), + [sym_atx_h4_marker] = ACTIONS(2703), + [sym_atx_h5_marker] = ACTIONS(2703), + [sym_atx_h6_marker] = ACTIONS(2703), + [sym__thematic_break] = ACTIONS(2703), + [sym__list_marker_minus] = ACTIONS(2703), + [sym__list_marker_plus] = ACTIONS(2703), + [sym__list_marker_star] = ACTIONS(2703), + [sym__list_marker_parenthesis] = ACTIONS(2703), + [sym__list_marker_dot] = ACTIONS(2703), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_example] = ACTIONS(2703), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2703), + [sym__fenced_code_block_start_backtick] = ACTIONS(2703), + [sym_minus_metadata] = ACTIONS(2703), + [sym__pipe_table_start] = ACTIONS(2703), + [sym__fenced_div_start] = ACTIONS(2703), + [sym_ref_id_specifier] = ACTIONS(2703), + [sym__code_span_start] = ACTIONS(2703), + [sym__html_comment] = ACTIONS(2703), + [sym__autolink] = ACTIONS(2703), + [sym__highlight_span_start] = ACTIONS(2703), + [sym__insert_span_start] = ACTIONS(2703), + [sym__delete_span_start] = ACTIONS(2703), + [sym__edit_comment_span_start] = ACTIONS(2703), + [sym__single_quote_span_open] = ACTIONS(2703), + [sym__double_quote_span_open] = ACTIONS(2703), + [sym__shortcode_open_escaped] = ACTIONS(2703), + [sym__shortcode_open] = ACTIONS(2703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2703), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2703), + [sym__cite_author_in_text] = ACTIONS(2703), + [sym__cite_suppress_author] = ACTIONS(2703), + [sym__strikeout_open] = ACTIONS(2703), + [sym__subscript_open] = ACTIONS(2703), + [sym__superscript_open] = ACTIONS(2703), + [sym__inline_note_start_token] = ACTIONS(2703), + [sym__strong_emphasis_open_star] = ACTIONS(2703), + [sym__strong_emphasis_open_underscore] = ACTIONS(2703), + [sym__emphasis_open_star] = ACTIONS(2703), + [sym__emphasis_open_underscore] = ACTIONS(2703), + [sym_inline_note_reference] = ACTIONS(2703), + [sym_html_element] = ACTIONS(2703), + [sym__pandoc_line_break] = ACTIONS(2703), }, - [STATE(314)] = { - [sym__atx_heading_content] = STATE(2776), - [sym__inlines] = STATE(2776), - [sym_pandoc_span] = STATE(591), - [sym_pandoc_image] = STATE(591), - [sym_pandoc_math] = STATE(591), - [sym_pandoc_display_math] = STATE(591), - [sym_pandoc_code_span] = STATE(591), - [sym_pandoc_single_quote] = STATE(591), - [sym_pandoc_double_quote] = STATE(591), - [sym_insert] = STATE(591), - [sym_delete] = STATE(591), - [sym_edit_comment] = STATE(591), - [sym_highlight] = STATE(591), - [sym__pandoc_attr_specifier] = STATE(591), - [sym__line] = STATE(2609), - [sym__inline_element] = STATE(591), - [sym_shortcode_escaped] = STATE(591), - [sym_shortcode] = STATE(591), - [sym_citation] = STATE(591), - [sym_inline_note] = STATE(591), - [sym_pandoc_superscript] = STATE(591), - [sym_pandoc_subscript] = STATE(591), - [sym_pandoc_strikeout] = STATE(591), - [sym_pandoc_emph] = STATE(591), - [sym_pandoc_strong] = STATE(591), - [sym_pandoc_str] = STATE(591), - [sym__prose_punctuation] = STATE(591), - [sym__newline] = STATE(461), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BANG_LBRACK] = ACTIONS(11), - [anon_sym_DOLLAR] = ACTIONS(13), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [aux_sym_pandoc_str_token1] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [sym__whitespace] = ACTIONS(2573), - [sym__line_ending] = ACTIONS(25), - [sym__eof] = ACTIONS(2963), - [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(69), - [sym__insert_span_start] = ACTIONS(71), - [sym__delete_span_start] = ACTIONS(73), - [sym__edit_comment_span_start] = ACTIONS(75), - [sym__single_quote_span_open] = ACTIONS(77), - [sym__double_quote_span_open] = ACTIONS(79), - [sym__shortcode_open_escaped] = ACTIONS(81), - [sym__shortcode_open] = ACTIONS(83), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), - [sym__cite_author_in_text] = ACTIONS(89), - [sym__cite_suppress_author] = ACTIONS(91), - [sym__strikeout_open] = ACTIONS(93), - [sym__subscript_open] = ACTIONS(95), - [sym__superscript_open] = ACTIONS(97), - [sym__inline_note_start_token] = ACTIONS(99), - [sym__strong_emphasis_open_star] = ACTIONS(101), - [sym__strong_emphasis_open_underscore] = ACTIONS(103), - [sym__emphasis_open_star] = ACTIONS(105), - [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - [sym__pandoc_line_break] = ACTIONS(7), + [STATE(338)] = { + [ts_builtin_sym_end] = ACTIONS(2707), + [anon_sym_COLON] = ACTIONS(2707), + [sym_entity_reference] = ACTIONS(2707), + [sym_numeric_character_reference] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_BANG_LBRACK] = ACTIONS(2707), + [anon_sym_DOLLAR] = ACTIONS(2709), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2707), + [aux_sym_pandoc_str_token1] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2707), + [sym__whitespace] = ACTIONS(2707), + [sym__line_ending] = ACTIONS(2707), + [sym__soft_line_ending] = ACTIONS(2707), + [sym__block_quote_start] = ACTIONS(2707), + [sym_atx_h1_marker] = ACTIONS(2707), + [sym_atx_h2_marker] = ACTIONS(2707), + [sym_atx_h3_marker] = ACTIONS(2707), + [sym_atx_h4_marker] = ACTIONS(2707), + [sym_atx_h5_marker] = ACTIONS(2707), + [sym_atx_h6_marker] = ACTIONS(2707), + [sym__thematic_break] = ACTIONS(2707), + [sym__list_marker_minus] = ACTIONS(2707), + [sym__list_marker_plus] = ACTIONS(2707), + [sym__list_marker_star] = ACTIONS(2707), + [sym__list_marker_parenthesis] = ACTIONS(2707), + [sym__list_marker_dot] = ACTIONS(2707), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_example] = ACTIONS(2707), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2707), + [sym__fenced_code_block_start_backtick] = ACTIONS(2707), + [sym_minus_metadata] = ACTIONS(2707), + [sym__pipe_table_start] = ACTIONS(2707), + [sym__fenced_div_start] = ACTIONS(2707), + [sym_ref_id_specifier] = ACTIONS(2707), + [sym__code_span_start] = ACTIONS(2707), + [sym__html_comment] = ACTIONS(2707), + [sym__autolink] = ACTIONS(2707), + [sym__highlight_span_start] = ACTIONS(2707), + [sym__insert_span_start] = ACTIONS(2707), + [sym__delete_span_start] = ACTIONS(2707), + [sym__edit_comment_span_start] = ACTIONS(2707), + [sym__single_quote_span_open] = ACTIONS(2707), + [sym__double_quote_span_open] = ACTIONS(2707), + [sym__shortcode_open_escaped] = ACTIONS(2707), + [sym__shortcode_open] = ACTIONS(2707), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2707), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2707), + [sym__cite_author_in_text] = ACTIONS(2707), + [sym__cite_suppress_author] = ACTIONS(2707), + [sym__strikeout_open] = ACTIONS(2707), + [sym__subscript_open] = ACTIONS(2707), + [sym__superscript_open] = ACTIONS(2707), + [sym__inline_note_start_token] = ACTIONS(2707), + [sym__strong_emphasis_open_star] = ACTIONS(2707), + [sym__strong_emphasis_open_underscore] = ACTIONS(2707), + [sym__emphasis_open_star] = ACTIONS(2707), + [sym__emphasis_open_underscore] = ACTIONS(2707), + [sym_inline_note_reference] = ACTIONS(2707), + [sym_html_element] = ACTIONS(2707), + [sym__pandoc_line_break] = ACTIONS(2707), }, - [STATE(315)] = { - [sym_pipe_table_row] = STATE(3104), - [sym_pipe_table_cell] = STATE(2853), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym_pipe_table_row_repeat1] = STATE(394), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(2527), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pipe_table_delimiter] = ACTIONS(2571), - [sym__pandoc_line_break] = ACTIONS(2509), + [STATE(339)] = { + [ts_builtin_sym_end] = ACTIONS(2711), + [anon_sym_COLON] = ACTIONS(2711), + [sym_entity_reference] = ACTIONS(2711), + [sym_numeric_character_reference] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_BANG_LBRACK] = ACTIONS(2711), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [aux_sym_pandoc_str_token1] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2711), + [sym__whitespace] = ACTIONS(2711), + [sym__line_ending] = ACTIONS(2711), + [sym__soft_line_ending] = ACTIONS(2711), + [sym__block_quote_start] = ACTIONS(2711), + [sym_atx_h1_marker] = ACTIONS(2711), + [sym_atx_h2_marker] = ACTIONS(2711), + [sym_atx_h3_marker] = ACTIONS(2711), + [sym_atx_h4_marker] = ACTIONS(2711), + [sym_atx_h5_marker] = ACTIONS(2711), + [sym_atx_h6_marker] = ACTIONS(2711), + [sym__thematic_break] = ACTIONS(2711), + [sym__list_marker_minus] = ACTIONS(2711), + [sym__list_marker_plus] = ACTIONS(2711), + [sym__list_marker_star] = ACTIONS(2711), + [sym__list_marker_parenthesis] = ACTIONS(2711), + [sym__list_marker_dot] = ACTIONS(2711), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_example] = ACTIONS(2711), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2711), + [sym__fenced_code_block_start_backtick] = ACTIONS(2711), + [sym_minus_metadata] = ACTIONS(2711), + [sym__pipe_table_start] = ACTIONS(2711), + [sym__fenced_div_start] = ACTIONS(2711), + [sym_ref_id_specifier] = ACTIONS(2711), + [sym__code_span_start] = ACTIONS(2711), + [sym__html_comment] = ACTIONS(2711), + [sym__autolink] = ACTIONS(2711), + [sym__highlight_span_start] = ACTIONS(2711), + [sym__insert_span_start] = ACTIONS(2711), + [sym__delete_span_start] = ACTIONS(2711), + [sym__edit_comment_span_start] = ACTIONS(2711), + [sym__single_quote_span_open] = ACTIONS(2711), + [sym__double_quote_span_open] = ACTIONS(2711), + [sym__shortcode_open_escaped] = ACTIONS(2711), + [sym__shortcode_open] = ACTIONS(2711), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2711), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2711), + [sym__cite_author_in_text] = ACTIONS(2711), + [sym__cite_suppress_author] = ACTIONS(2711), + [sym__strikeout_open] = ACTIONS(2711), + [sym__subscript_open] = ACTIONS(2711), + [sym__superscript_open] = ACTIONS(2711), + [sym__inline_note_start_token] = ACTIONS(2711), + [sym__strong_emphasis_open_star] = ACTIONS(2711), + [sym__strong_emphasis_open_underscore] = ACTIONS(2711), + [sym__emphasis_open_star] = ACTIONS(2711), + [sym__emphasis_open_underscore] = ACTIONS(2711), + [sym_inline_note_reference] = ACTIONS(2711), + [sym_html_element] = ACTIONS(2711), + [sym__pandoc_line_break] = ACTIONS(2711), }, - [STATE(316)] = { - [ts_builtin_sym_end] = ACTIONS(2633), - [anon_sym_COLON] = ACTIONS(2633), - [sym_entity_reference] = ACTIONS(2633), - [sym_numeric_character_reference] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_BANG_LBRACK] = ACTIONS(2633), - [anon_sym_DOLLAR] = ACTIONS(2635), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [aux_sym_pandoc_str_token1] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2633), - [aux_sym__prose_punctuation_token1] = ACTIONS(2635), - [sym__line_ending] = ACTIONS(2633), - [sym__soft_line_ending] = ACTIONS(2633), - [sym_block_continuation] = ACTIONS(2965), - [sym__block_quote_start] = ACTIONS(2633), - [sym_atx_h1_marker] = ACTIONS(2633), - [sym_atx_h2_marker] = ACTIONS(2633), - [sym_atx_h3_marker] = ACTIONS(2633), - [sym_atx_h4_marker] = ACTIONS(2633), - [sym_atx_h5_marker] = ACTIONS(2633), - [sym_atx_h6_marker] = ACTIONS(2633), - [sym__thematic_break] = ACTIONS(2633), - [sym__list_marker_minus] = ACTIONS(2633), - [sym__list_marker_plus] = ACTIONS(2633), - [sym__list_marker_star] = ACTIONS(2633), - [sym__list_marker_parenthesis] = ACTIONS(2633), - [sym__list_marker_dot] = ACTIONS(2633), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_example] = ACTIONS(2633), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2633), - [sym__fenced_code_block_start_backtick] = ACTIONS(2633), - [sym_minus_metadata] = ACTIONS(2633), - [sym__pipe_table_start] = ACTIONS(2633), - [sym__fenced_div_start] = ACTIONS(2633), - [sym_ref_id_specifier] = ACTIONS(2633), - [sym__code_span_start] = ACTIONS(2633), - [sym__html_comment] = ACTIONS(2633), - [sym__autolink] = ACTIONS(2633), - [sym__highlight_span_start] = ACTIONS(2633), - [sym__insert_span_start] = ACTIONS(2633), - [sym__delete_span_start] = ACTIONS(2633), - [sym__edit_comment_span_start] = ACTIONS(2633), - [sym__single_quote_span_open] = ACTIONS(2633), - [sym__double_quote_span_open] = ACTIONS(2633), - [sym__shortcode_open_escaped] = ACTIONS(2633), - [sym__shortcode_open] = ACTIONS(2633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2633), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2633), - [sym__cite_author_in_text] = ACTIONS(2633), - [sym__cite_suppress_author] = ACTIONS(2633), - [sym__strikeout_open] = ACTIONS(2633), - [sym__subscript_open] = ACTIONS(2633), - [sym__superscript_open] = ACTIONS(2633), - [sym__inline_note_start_token] = ACTIONS(2633), - [sym__strong_emphasis_open_star] = ACTIONS(2633), - [sym__strong_emphasis_open_underscore] = ACTIONS(2633), - [sym__emphasis_open_star] = ACTIONS(2633), - [sym__emphasis_open_underscore] = ACTIONS(2633), - [sym_inline_note_reference] = ACTIONS(2633), - [sym_html_element] = ACTIONS(2633), - [sym__pandoc_line_break] = ACTIONS(2633), + [STATE(340)] = { + [ts_builtin_sym_end] = ACTIONS(2715), + [anon_sym_COLON] = ACTIONS(2715), + [sym_entity_reference] = ACTIONS(2715), + [sym_numeric_character_reference] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_BANG_LBRACK] = ACTIONS(2715), + [anon_sym_DOLLAR] = ACTIONS(2717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [aux_sym_pandoc_str_token1] = ACTIONS(2717), + [anon_sym_PIPE] = ACTIONS(2715), + [sym__whitespace] = ACTIONS(2715), + [sym__line_ending] = ACTIONS(2715), + [sym__soft_line_ending] = ACTIONS(2715), + [sym__block_quote_start] = ACTIONS(2715), + [sym_atx_h1_marker] = ACTIONS(2715), + [sym_atx_h2_marker] = ACTIONS(2715), + [sym_atx_h3_marker] = ACTIONS(2715), + [sym_atx_h4_marker] = ACTIONS(2715), + [sym_atx_h5_marker] = ACTIONS(2715), + [sym_atx_h6_marker] = ACTIONS(2715), + [sym__thematic_break] = ACTIONS(2715), + [sym__list_marker_minus] = ACTIONS(2715), + [sym__list_marker_plus] = ACTIONS(2715), + [sym__list_marker_star] = ACTIONS(2715), + [sym__list_marker_parenthesis] = ACTIONS(2715), + [sym__list_marker_dot] = ACTIONS(2715), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_example] = ACTIONS(2715), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2715), + [sym__fenced_code_block_start_backtick] = ACTIONS(2715), + [sym_minus_metadata] = ACTIONS(2715), + [sym__pipe_table_start] = ACTIONS(2715), + [sym__fenced_div_start] = ACTIONS(2715), + [sym_ref_id_specifier] = ACTIONS(2715), + [sym__code_span_start] = ACTIONS(2715), + [sym__html_comment] = ACTIONS(2715), + [sym__autolink] = ACTIONS(2715), + [sym__highlight_span_start] = ACTIONS(2715), + [sym__insert_span_start] = ACTIONS(2715), + [sym__delete_span_start] = ACTIONS(2715), + [sym__edit_comment_span_start] = ACTIONS(2715), + [sym__single_quote_span_open] = ACTIONS(2715), + [sym__double_quote_span_open] = ACTIONS(2715), + [sym__shortcode_open_escaped] = ACTIONS(2715), + [sym__shortcode_open] = ACTIONS(2715), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2715), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2715), + [sym__cite_author_in_text] = ACTIONS(2715), + [sym__cite_suppress_author] = ACTIONS(2715), + [sym__strikeout_open] = ACTIONS(2715), + [sym__subscript_open] = ACTIONS(2715), + [sym__superscript_open] = ACTIONS(2715), + [sym__inline_note_start_token] = ACTIONS(2715), + [sym__strong_emphasis_open_star] = ACTIONS(2715), + [sym__strong_emphasis_open_underscore] = ACTIONS(2715), + [sym__emphasis_open_star] = ACTIONS(2715), + [sym__emphasis_open_underscore] = ACTIONS(2715), + [sym_inline_note_reference] = ACTIONS(2715), + [sym_html_element] = ACTIONS(2715), + [sym__pandoc_line_break] = ACTIONS(2715), }, - [STATE(317)] = { - [anon_sym_COLON] = ACTIONS(2615), - [sym_entity_reference] = ACTIONS(2615), - [sym_numeric_character_reference] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_BANG_LBRACK] = ACTIONS(2615), - [anon_sym_DOLLAR] = ACTIONS(2617), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [aux_sym_pandoc_str_token1] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2615), - [aux_sym__prose_punctuation_token1] = ACTIONS(2617), - [sym__line_ending] = ACTIONS(2615), - [sym__soft_line_ending] = ACTIONS(2615), - [sym__block_close] = ACTIONS(2615), - [sym_block_continuation] = ACTIONS(2967), - [sym__block_quote_start] = ACTIONS(2615), - [sym_atx_h1_marker] = ACTIONS(2615), - [sym_atx_h2_marker] = ACTIONS(2615), - [sym_atx_h3_marker] = ACTIONS(2615), - [sym_atx_h4_marker] = ACTIONS(2615), - [sym_atx_h5_marker] = ACTIONS(2615), - [sym_atx_h6_marker] = ACTIONS(2615), - [sym__thematic_break] = ACTIONS(2615), - [sym__list_marker_minus] = ACTIONS(2615), - [sym__list_marker_plus] = ACTIONS(2615), - [sym__list_marker_star] = ACTIONS(2615), - [sym__list_marker_parenthesis] = ACTIONS(2615), - [sym__list_marker_dot] = ACTIONS(2615), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_example] = ACTIONS(2615), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2615), - [sym__fenced_code_block_start_backtick] = ACTIONS(2615), - [sym_minus_metadata] = ACTIONS(2615), - [sym__pipe_table_start] = ACTIONS(2615), - [sym__fenced_div_start] = ACTIONS(2615), - [sym_ref_id_specifier] = ACTIONS(2615), - [sym__code_span_start] = ACTIONS(2615), - [sym__html_comment] = ACTIONS(2615), - [sym__autolink] = ACTIONS(2615), - [sym__highlight_span_start] = ACTIONS(2615), - [sym__insert_span_start] = ACTIONS(2615), - [sym__delete_span_start] = ACTIONS(2615), - [sym__edit_comment_span_start] = ACTIONS(2615), - [sym__single_quote_span_open] = ACTIONS(2615), - [sym__double_quote_span_open] = ACTIONS(2615), - [sym__shortcode_open_escaped] = ACTIONS(2615), - [sym__shortcode_open] = ACTIONS(2615), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2615), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2615), - [sym__cite_author_in_text] = ACTIONS(2615), - [sym__cite_suppress_author] = ACTIONS(2615), - [sym__strikeout_open] = ACTIONS(2615), - [sym__subscript_open] = ACTIONS(2615), - [sym__superscript_open] = ACTIONS(2615), - [sym__inline_note_start_token] = ACTIONS(2615), - [sym__strong_emphasis_open_star] = ACTIONS(2615), - [sym__strong_emphasis_open_underscore] = ACTIONS(2615), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2615), - [sym_inline_note_reference] = ACTIONS(2615), - [sym_html_element] = ACTIONS(2615), - [sym__pandoc_line_break] = ACTIONS(2615), + [STATE(341)] = { + [anon_sym_COLON] = ACTIONS(2677), + [sym_entity_reference] = ACTIONS(2677), + [sym_numeric_character_reference] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_BANG_LBRACK] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2677), + [aux_sym_pandoc_str_token1] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2677), + [sym__whitespace] = ACTIONS(2677), + [sym__line_ending] = ACTIONS(2677), + [sym__soft_line_ending] = ACTIONS(2677), + [sym__block_close] = ACTIONS(2677), + [sym__block_quote_start] = ACTIONS(2677), + [sym_atx_h1_marker] = ACTIONS(2677), + [sym_atx_h2_marker] = ACTIONS(2677), + [sym_atx_h3_marker] = ACTIONS(2677), + [sym_atx_h4_marker] = ACTIONS(2677), + [sym_atx_h5_marker] = ACTIONS(2677), + [sym_atx_h6_marker] = ACTIONS(2677), + [sym__thematic_break] = ACTIONS(2677), + [sym__list_marker_minus] = ACTIONS(2677), + [sym__list_marker_plus] = ACTIONS(2677), + [sym__list_marker_star] = ACTIONS(2677), + [sym__list_marker_parenthesis] = ACTIONS(2677), + [sym__list_marker_dot] = ACTIONS(2677), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_example] = ACTIONS(2677), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2677), + [sym__fenced_code_block_start_backtick] = ACTIONS(2677), + [sym_minus_metadata] = ACTIONS(2677), + [sym__pipe_table_start] = ACTIONS(2677), + [sym__fenced_div_start] = ACTIONS(2677), + [sym_ref_id_specifier] = ACTIONS(2677), + [sym__code_span_start] = ACTIONS(2677), + [sym__html_comment] = ACTIONS(2677), + [sym__autolink] = ACTIONS(2677), + [sym__highlight_span_start] = ACTIONS(2677), + [sym__insert_span_start] = ACTIONS(2677), + [sym__delete_span_start] = ACTIONS(2677), + [sym__edit_comment_span_start] = ACTIONS(2677), + [sym__single_quote_span_open] = ACTIONS(2677), + [sym__double_quote_span_open] = ACTIONS(2677), + [sym__shortcode_open_escaped] = ACTIONS(2677), + [sym__shortcode_open] = ACTIONS(2677), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2677), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2677), + [sym__cite_author_in_text] = ACTIONS(2677), + [sym__cite_suppress_author] = ACTIONS(2677), + [sym__strikeout_open] = ACTIONS(2677), + [sym__subscript_open] = ACTIONS(2677), + [sym__superscript_open] = ACTIONS(2677), + [sym__inline_note_start_token] = ACTIONS(2677), + [sym__strong_emphasis_open_star] = ACTIONS(2677), + [sym__strong_emphasis_open_underscore] = ACTIONS(2677), + [sym__emphasis_open_star] = ACTIONS(2677), + [sym__emphasis_open_underscore] = ACTIONS(2677), + [sym_inline_note_reference] = ACTIONS(2677), + [sym_html_element] = ACTIONS(2677), + [sym__pandoc_line_break] = ACTIONS(2677), }, - [STATE(318)] = { + [STATE(342)] = { [anon_sym_COLON] = ACTIONS(2693), [sym_entity_reference] = ACTIONS(2693), [sym_numeric_character_reference] = ACTIONS(2693), @@ -51117,7 +54045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2693), [aux_sym_pandoc_str_token1] = ACTIONS(2695), [anon_sym_PIPE] = ACTIONS(2693), - [aux_sym__prose_punctuation_token1] = ACTIONS(2695), + [sym__whitespace] = ACTIONS(2693), [sym__line_ending] = ACTIONS(2693), [sym__soft_line_ending] = ACTIONS(2693), [sym__block_close] = ACTIONS(2693), @@ -51145,7 +54073,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minus_metadata] = ACTIONS(2693), [sym__pipe_table_start] = ACTIONS(2693), [sym__fenced_div_start] = ACTIONS(2693), - [sym__fenced_div_end] = ACTIONS(2693), [sym_ref_id_specifier] = ACTIONS(2693), [sym__code_span_start] = ACTIONS(2693), [sym__html_comment] = ACTIONS(2693), @@ -51174,2863 +54101,543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2693), [sym__pandoc_line_break] = ACTIONS(2693), }, - [STATE(319)] = { - [anon_sym_COLON] = ACTIONS(2969), - [sym_entity_reference] = ACTIONS(2969), - [sym_numeric_character_reference] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_BANG_LBRACK] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(2971), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2969), - [aux_sym_pandoc_str_token1] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2969), - [aux_sym__prose_punctuation_token1] = ACTIONS(2971), - [sym__line_ending] = ACTIONS(2969), - [sym__soft_line_ending] = ACTIONS(2969), - [sym__block_close] = ACTIONS(2969), - [sym__block_quote_start] = ACTIONS(2969), - [sym_atx_h1_marker] = ACTIONS(2969), - [sym_atx_h2_marker] = ACTIONS(2969), - [sym_atx_h3_marker] = ACTIONS(2969), - [sym_atx_h4_marker] = ACTIONS(2969), - [sym_atx_h5_marker] = ACTIONS(2969), - [sym_atx_h6_marker] = ACTIONS(2969), - [sym__thematic_break] = ACTIONS(2969), - [sym__list_marker_minus] = ACTIONS(2969), - [sym__list_marker_plus] = ACTIONS(2969), - [sym__list_marker_star] = ACTIONS(2969), - [sym__list_marker_parenthesis] = ACTIONS(2969), - [sym__list_marker_dot] = ACTIONS(2969), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_example] = ACTIONS(2969), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2969), - [sym__fenced_code_block_start_backtick] = ACTIONS(2969), - [sym_minus_metadata] = ACTIONS(2969), - [sym__pipe_table_start] = ACTIONS(2969), - [sym__fenced_div_start] = ACTIONS(2969), - [sym__fenced_div_end] = ACTIONS(2969), - [sym_ref_id_specifier] = ACTIONS(2969), - [sym__code_span_start] = ACTIONS(2969), - [sym__html_comment] = ACTIONS(2969), - [sym__autolink] = ACTIONS(2969), - [sym__highlight_span_start] = ACTIONS(2969), - [sym__insert_span_start] = ACTIONS(2969), - [sym__delete_span_start] = ACTIONS(2969), - [sym__edit_comment_span_start] = ACTIONS(2969), - [sym__single_quote_span_open] = ACTIONS(2969), - [sym__double_quote_span_open] = ACTIONS(2969), - [sym__shortcode_open_escaped] = ACTIONS(2969), - [sym__shortcode_open] = ACTIONS(2969), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2969), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2969), - [sym__cite_author_in_text] = ACTIONS(2969), - [sym__cite_suppress_author] = ACTIONS(2969), - [sym__strikeout_open] = ACTIONS(2969), - [sym__subscript_open] = ACTIONS(2969), - [sym__superscript_open] = ACTIONS(2969), - [sym__inline_note_start_token] = ACTIONS(2969), - [sym__strong_emphasis_open_star] = ACTIONS(2969), - [sym__strong_emphasis_open_underscore] = ACTIONS(2969), - [sym__emphasis_open_star] = ACTIONS(2969), - [sym__emphasis_open_underscore] = ACTIONS(2969), - [sym_inline_note_reference] = ACTIONS(2969), - [sym_html_element] = ACTIONS(2969), - [sym__pandoc_line_break] = ACTIONS(2969), + [STATE(343)] = { + [anon_sym_COLON] = ACTIONS(2725), + [sym_entity_reference] = ACTIONS(2725), + [sym_numeric_character_reference] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_BANG_LBRACK] = ACTIONS(2725), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2725), + [aux_sym_pandoc_str_token1] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2725), + [sym__whitespace] = ACTIONS(2725), + [sym__line_ending] = ACTIONS(2725), + [sym__soft_line_ending] = ACTIONS(2725), + [sym__block_close] = ACTIONS(2725), + [sym__block_quote_start] = ACTIONS(2725), + [sym_atx_h1_marker] = ACTIONS(2725), + [sym_atx_h2_marker] = ACTIONS(2725), + [sym_atx_h3_marker] = ACTIONS(2725), + [sym_atx_h4_marker] = ACTIONS(2725), + [sym_atx_h5_marker] = ACTIONS(2725), + [sym_atx_h6_marker] = ACTIONS(2725), + [sym__thematic_break] = ACTIONS(2725), + [sym__list_marker_minus] = ACTIONS(2725), + [sym__list_marker_plus] = ACTIONS(2725), + [sym__list_marker_star] = ACTIONS(2725), + [sym__list_marker_parenthesis] = ACTIONS(2725), + [sym__list_marker_dot] = ACTIONS(2725), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_example] = ACTIONS(2725), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2725), + [sym__fenced_code_block_start_backtick] = ACTIONS(2725), + [sym_minus_metadata] = ACTIONS(2725), + [sym__pipe_table_start] = ACTIONS(2725), + [sym__fenced_div_start] = ACTIONS(2725), + [sym_ref_id_specifier] = ACTIONS(2725), + [sym__code_span_start] = ACTIONS(2725), + [sym__html_comment] = ACTIONS(2725), + [sym__autolink] = ACTIONS(2725), + [sym__highlight_span_start] = ACTIONS(2725), + [sym__insert_span_start] = ACTIONS(2725), + [sym__delete_span_start] = ACTIONS(2725), + [sym__edit_comment_span_start] = ACTIONS(2725), + [sym__single_quote_span_open] = ACTIONS(2725), + [sym__double_quote_span_open] = ACTIONS(2725), + [sym__shortcode_open_escaped] = ACTIONS(2725), + [sym__shortcode_open] = ACTIONS(2725), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2725), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2725), + [sym__cite_author_in_text] = ACTIONS(2725), + [sym__cite_suppress_author] = ACTIONS(2725), + [sym__strikeout_open] = ACTIONS(2725), + [sym__subscript_open] = ACTIONS(2725), + [sym__superscript_open] = ACTIONS(2725), + [sym__inline_note_start_token] = ACTIONS(2725), + [sym__strong_emphasis_open_star] = ACTIONS(2725), + [sym__strong_emphasis_open_underscore] = ACTIONS(2725), + [sym__emphasis_open_star] = ACTIONS(2725), + [sym__emphasis_open_underscore] = ACTIONS(2725), + [sym_inline_note_reference] = ACTIONS(2725), + [sym_html_element] = ACTIONS(2725), + [sym__pandoc_line_break] = ACTIONS(2725), }, - [STATE(320)] = { - [anon_sym_COLON] = ACTIONS(2973), - [sym_entity_reference] = ACTIONS(2973), - [sym_numeric_character_reference] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_BANG_LBRACK] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [aux_sym_pandoc_str_token1] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2973), - [aux_sym__prose_punctuation_token1] = ACTIONS(2975), - [sym__line_ending] = ACTIONS(2973), - [sym__soft_line_ending] = ACTIONS(2973), - [sym__block_close] = ACTIONS(2973), - [sym__block_quote_start] = ACTIONS(2973), - [sym_atx_h1_marker] = ACTIONS(2973), - [sym_atx_h2_marker] = ACTIONS(2973), - [sym_atx_h3_marker] = ACTIONS(2973), - [sym_atx_h4_marker] = ACTIONS(2973), - [sym_atx_h5_marker] = ACTIONS(2973), - [sym_atx_h6_marker] = ACTIONS(2973), - [sym__thematic_break] = ACTIONS(2973), - [sym__list_marker_minus] = ACTIONS(2973), - [sym__list_marker_plus] = ACTIONS(2973), - [sym__list_marker_star] = ACTIONS(2973), - [sym__list_marker_parenthesis] = ACTIONS(2973), - [sym__list_marker_dot] = ACTIONS(2973), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_example] = ACTIONS(2973), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2973), - [sym__fenced_code_block_start_backtick] = ACTIONS(2973), - [sym_minus_metadata] = ACTIONS(2973), - [sym__pipe_table_start] = ACTIONS(2973), - [sym__fenced_div_start] = ACTIONS(2973), - [sym__fenced_div_end] = ACTIONS(2973), - [sym_ref_id_specifier] = ACTIONS(2973), - [sym__code_span_start] = ACTIONS(2973), - [sym__html_comment] = ACTIONS(2973), - [sym__autolink] = ACTIONS(2973), - [sym__highlight_span_start] = ACTIONS(2973), - [sym__insert_span_start] = ACTIONS(2973), - [sym__delete_span_start] = ACTIONS(2973), - [sym__edit_comment_span_start] = ACTIONS(2973), - [sym__single_quote_span_open] = ACTIONS(2973), - [sym__double_quote_span_open] = ACTIONS(2973), - [sym__shortcode_open_escaped] = ACTIONS(2973), - [sym__shortcode_open] = ACTIONS(2973), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2973), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2973), - [sym__cite_author_in_text] = ACTIONS(2973), - [sym__cite_suppress_author] = ACTIONS(2973), - [sym__strikeout_open] = ACTIONS(2973), - [sym__subscript_open] = ACTIONS(2973), - [sym__superscript_open] = ACTIONS(2973), - [sym__inline_note_start_token] = ACTIONS(2973), - [sym__strong_emphasis_open_star] = ACTIONS(2973), - [sym__strong_emphasis_open_underscore] = ACTIONS(2973), - [sym__emphasis_open_star] = ACTIONS(2973), - [sym__emphasis_open_underscore] = ACTIONS(2973), - [sym_inline_note_reference] = ACTIONS(2973), - [sym_html_element] = ACTIONS(2973), - [sym__pandoc_line_break] = ACTIONS(2973), + [STATE(344)] = { + [sym_pipe_table_row] = STATE(3281), + [sym_pipe_table_cell] = STATE(3168), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line_with_maybe_spaces] = STATE(3087), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [aux_sym_pipe_table_row_repeat1] = STATE(551), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(641), + [sym_entity_reference] = ACTIONS(2893), + [sym_numeric_character_reference] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_BANG_LBRACK] = ACTIONS(2897), + [anon_sym_DOLLAR] = ACTIONS(2899), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [aux_sym_pandoc_str_token1] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2907), + [sym__whitespace] = ACTIONS(2909), + [sym__code_span_start] = ACTIONS(2911), + [sym__html_comment] = ACTIONS(2893), + [sym__autolink] = ACTIONS(2893), + [sym__highlight_span_start] = ACTIONS(2913), + [sym__insert_span_start] = ACTIONS(2915), + [sym__delete_span_start] = ACTIONS(2917), + [sym__edit_comment_span_start] = ACTIONS(2919), + [sym__single_quote_span_open] = ACTIONS(2921), + [sym__double_quote_span_open] = ACTIONS(2923), + [sym__shortcode_open_escaped] = ACTIONS(2925), + [sym__shortcode_open] = ACTIONS(2927), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2929), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2931), + [sym__cite_author_in_text] = ACTIONS(2933), + [sym__cite_suppress_author] = ACTIONS(2935), + [sym__strikeout_open] = ACTIONS(2937), + [sym__subscript_open] = ACTIONS(2939), + [sym__superscript_open] = ACTIONS(2941), + [sym__inline_note_start_token] = ACTIONS(2943), + [sym__strong_emphasis_open_star] = ACTIONS(2945), + [sym__strong_emphasis_open_underscore] = ACTIONS(2947), + [sym__emphasis_open_star] = ACTIONS(2949), + [sym__emphasis_open_underscore] = ACTIONS(2951), + [sym_inline_note_reference] = ACTIONS(2893), + [sym_html_element] = ACTIONS(2893), + [sym__pipe_table_delimiter] = ACTIONS(2953), + [sym__pandoc_line_break] = ACTIONS(2893), }, - [STATE(321)] = { - [anon_sym_COLON] = ACTIONS(2977), - [sym_entity_reference] = ACTIONS(2977), - [sym_numeric_character_reference] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_BANG_LBRACK] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(2979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [aux_sym_pandoc_str_token1] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2977), - [aux_sym__prose_punctuation_token1] = ACTIONS(2979), - [sym__line_ending] = ACTIONS(2977), - [sym__soft_line_ending] = ACTIONS(2977), - [sym__block_close] = ACTIONS(2977), - [sym__block_quote_start] = ACTIONS(2977), - [sym_atx_h1_marker] = ACTIONS(2977), - [sym_atx_h2_marker] = ACTIONS(2977), - [sym_atx_h3_marker] = ACTIONS(2977), - [sym_atx_h4_marker] = ACTIONS(2977), - [sym_atx_h5_marker] = ACTIONS(2977), - [sym_atx_h6_marker] = ACTIONS(2977), - [sym__thematic_break] = ACTIONS(2977), - [sym__list_marker_minus] = ACTIONS(2977), - [sym__list_marker_plus] = ACTIONS(2977), - [sym__list_marker_star] = ACTIONS(2977), - [sym__list_marker_parenthesis] = ACTIONS(2977), - [sym__list_marker_dot] = ACTIONS(2977), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_example] = ACTIONS(2977), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2977), - [sym__fenced_code_block_start_backtick] = ACTIONS(2977), - [sym_minus_metadata] = ACTIONS(2977), - [sym__pipe_table_start] = ACTIONS(2977), - [sym__fenced_div_start] = ACTIONS(2977), - [sym__fenced_div_end] = ACTIONS(2977), - [sym_ref_id_specifier] = ACTIONS(2977), + [STATE(345)] = { + [sym__inlines] = STATE(3680), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(710), + [sym__inline_whitespace] = STATE(710), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(2973), + [sym__soft_line_ending] = ACTIONS(2975), [sym__code_span_start] = ACTIONS(2977), - [sym__html_comment] = ACTIONS(2977), - [sym__autolink] = ACTIONS(2977), - [sym__highlight_span_start] = ACTIONS(2977), - [sym__insert_span_start] = ACTIONS(2977), - [sym__delete_span_start] = ACTIONS(2977), - [sym__edit_comment_span_start] = ACTIONS(2977), - [sym__single_quote_span_open] = ACTIONS(2977), - [sym__double_quote_span_open] = ACTIONS(2977), - [sym__shortcode_open_escaped] = ACTIONS(2977), - [sym__shortcode_open] = ACTIONS(2977), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2977), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2977), - [sym__cite_author_in_text] = ACTIONS(2977), - [sym__cite_suppress_author] = ACTIONS(2977), - [sym__strikeout_open] = ACTIONS(2977), - [sym__subscript_open] = ACTIONS(2977), - [sym__superscript_open] = ACTIONS(2977), - [sym__inline_note_start_token] = ACTIONS(2977), - [sym__strong_emphasis_open_star] = ACTIONS(2977), - [sym__strong_emphasis_open_underscore] = ACTIONS(2977), - [sym__emphasis_open_star] = ACTIONS(2977), - [sym__emphasis_open_underscore] = ACTIONS(2977), - [sym_inline_note_reference] = ACTIONS(2977), - [sym_html_element] = ACTIONS(2977), - [sym__pandoc_line_break] = ACTIONS(2977), - }, - [STATE(322)] = { - [anon_sym_COLON] = ACTIONS(2981), - [sym_entity_reference] = ACTIONS(2981), - [sym_numeric_character_reference] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_BANG_LBRACK] = ACTIONS(2981), - [anon_sym_DOLLAR] = ACTIONS(2983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [aux_sym_pandoc_str_token1] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2981), - [aux_sym__prose_punctuation_token1] = ACTIONS(2983), - [sym__line_ending] = ACTIONS(2981), - [sym__soft_line_ending] = ACTIONS(2981), - [sym__block_close] = ACTIONS(2981), - [sym__block_quote_start] = ACTIONS(2981), - [sym_atx_h1_marker] = ACTIONS(2981), - [sym_atx_h2_marker] = ACTIONS(2981), - [sym_atx_h3_marker] = ACTIONS(2981), - [sym_atx_h4_marker] = ACTIONS(2981), - [sym_atx_h5_marker] = ACTIONS(2981), - [sym_atx_h6_marker] = ACTIONS(2981), - [sym__thematic_break] = ACTIONS(2981), - [sym__list_marker_minus] = ACTIONS(2981), - [sym__list_marker_plus] = ACTIONS(2981), - [sym__list_marker_star] = ACTIONS(2981), - [sym__list_marker_parenthesis] = ACTIONS(2981), - [sym__list_marker_dot] = ACTIONS(2981), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_example] = ACTIONS(2981), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2981), - [sym__fenced_code_block_start_backtick] = ACTIONS(2981), - [sym_minus_metadata] = ACTIONS(2981), - [sym__pipe_table_start] = ACTIONS(2981), - [sym__fenced_div_start] = ACTIONS(2981), - [sym__fenced_div_end] = ACTIONS(2981), - [sym_ref_id_specifier] = ACTIONS(2981), - [sym__code_span_start] = ACTIONS(2981), - [sym__html_comment] = ACTIONS(2981), - [sym__autolink] = ACTIONS(2981), - [sym__highlight_span_start] = ACTIONS(2981), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), [sym__insert_span_start] = ACTIONS(2981), - [sym__delete_span_start] = ACTIONS(2981), - [sym__edit_comment_span_start] = ACTIONS(2981), - [sym__single_quote_span_open] = ACTIONS(2981), - [sym__double_quote_span_open] = ACTIONS(2981), - [sym__shortcode_open_escaped] = ACTIONS(2981), - [sym__shortcode_open] = ACTIONS(2981), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2981), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2981), - [sym__cite_author_in_text] = ACTIONS(2981), - [sym__cite_suppress_author] = ACTIONS(2981), - [sym__strikeout_open] = ACTIONS(2981), - [sym__subscript_open] = ACTIONS(2981), - [sym__superscript_open] = ACTIONS(2981), - [sym__inline_note_start_token] = ACTIONS(2981), - [sym__strong_emphasis_open_star] = ACTIONS(2981), - [sym__strong_emphasis_open_underscore] = ACTIONS(2981), - [sym__emphasis_open_star] = ACTIONS(2981), - [sym__emphasis_open_underscore] = ACTIONS(2981), - [sym_inline_note_reference] = ACTIONS(2981), - [sym_html_element] = ACTIONS(2981), - [sym__pandoc_line_break] = ACTIONS(2981), - }, - [STATE(323)] = { - [anon_sym_COLON] = ACTIONS(2985), - [sym_entity_reference] = ACTIONS(2985), - [sym_numeric_character_reference] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_BANG_LBRACK] = ACTIONS(2985), - [anon_sym_DOLLAR] = ACTIONS(2987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [aux_sym_pandoc_str_token1] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [aux_sym__prose_punctuation_token1] = ACTIONS(2987), - [sym__line_ending] = ACTIONS(2985), - [sym__soft_line_ending] = ACTIONS(2985), - [sym__block_close] = ACTIONS(2985), - [sym__block_quote_start] = ACTIONS(2985), - [sym_atx_h1_marker] = ACTIONS(2985), - [sym_atx_h2_marker] = ACTIONS(2985), - [sym_atx_h3_marker] = ACTIONS(2985), - [sym_atx_h4_marker] = ACTIONS(2985), - [sym_atx_h5_marker] = ACTIONS(2985), - [sym_atx_h6_marker] = ACTIONS(2985), - [sym__thematic_break] = ACTIONS(2985), - [sym__list_marker_minus] = ACTIONS(2985), - [sym__list_marker_plus] = ACTIONS(2985), - [sym__list_marker_star] = ACTIONS(2985), - [sym__list_marker_parenthesis] = ACTIONS(2985), - [sym__list_marker_dot] = ACTIONS(2985), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_example] = ACTIONS(2985), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2985), - [sym__fenced_code_block_start_backtick] = ACTIONS(2985), - [sym_minus_metadata] = ACTIONS(2985), - [sym__pipe_table_start] = ACTIONS(2985), - [sym__fenced_div_start] = ACTIONS(2985), - [sym__fenced_div_end] = ACTIONS(2985), - [sym_ref_id_specifier] = ACTIONS(2985), - [sym__code_span_start] = ACTIONS(2985), - [sym__html_comment] = ACTIONS(2985), - [sym__autolink] = ACTIONS(2985), - [sym__highlight_span_start] = ACTIONS(2985), - [sym__insert_span_start] = ACTIONS(2985), - [sym__delete_span_start] = ACTIONS(2985), + [sym__delete_span_start] = ACTIONS(2983), [sym__edit_comment_span_start] = ACTIONS(2985), - [sym__single_quote_span_open] = ACTIONS(2985), - [sym__double_quote_span_open] = ACTIONS(2985), - [sym__shortcode_open_escaped] = ACTIONS(2985), - [sym__shortcode_open] = ACTIONS(2985), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2985), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2985), - [sym__cite_author_in_text] = ACTIONS(2985), - [sym__cite_suppress_author] = ACTIONS(2985), - [sym__strikeout_open] = ACTIONS(2985), - [sym__subscript_open] = ACTIONS(2985), - [sym__superscript_open] = ACTIONS(2985), - [sym__inline_note_start_token] = ACTIONS(2985), - [sym__strong_emphasis_open_star] = ACTIONS(2985), - [sym__strong_emphasis_open_underscore] = ACTIONS(2985), - [sym__emphasis_open_star] = ACTIONS(2985), - [sym__emphasis_open_underscore] = ACTIONS(2985), - [sym_inline_note_reference] = ACTIONS(2985), - [sym_html_element] = ACTIONS(2985), - [sym__pandoc_line_break] = ACTIONS(2985), - }, - [STATE(324)] = { - [anon_sym_COLON] = ACTIONS(2989), - [sym_entity_reference] = ACTIONS(2989), - [sym_numeric_character_reference] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_BANG_LBRACK] = ACTIONS(2989), - [anon_sym_DOLLAR] = ACTIONS(2991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [aux_sym_pandoc_str_token1] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2989), - [aux_sym__prose_punctuation_token1] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(2989), - [sym__soft_line_ending] = ACTIONS(2989), - [sym__block_close] = ACTIONS(2989), - [sym__block_quote_start] = ACTIONS(2989), - [sym_atx_h1_marker] = ACTIONS(2989), - [sym_atx_h2_marker] = ACTIONS(2989), - [sym_atx_h3_marker] = ACTIONS(2989), - [sym_atx_h4_marker] = ACTIONS(2989), - [sym_atx_h5_marker] = ACTIONS(2989), - [sym_atx_h6_marker] = ACTIONS(2989), - [sym__thematic_break] = ACTIONS(2989), - [sym__list_marker_minus] = ACTIONS(2989), - [sym__list_marker_plus] = ACTIONS(2989), - [sym__list_marker_star] = ACTIONS(2989), - [sym__list_marker_parenthesis] = ACTIONS(2989), - [sym__list_marker_dot] = ACTIONS(2989), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_example] = ACTIONS(2989), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2989), - [sym__fenced_code_block_start_backtick] = ACTIONS(2989), - [sym_minus_metadata] = ACTIONS(2989), - [sym__pipe_table_start] = ACTIONS(2989), - [sym__fenced_div_start] = ACTIONS(2989), - [sym__fenced_div_end] = ACTIONS(2989), - [sym_ref_id_specifier] = ACTIONS(2989), - [sym__code_span_start] = ACTIONS(2989), - [sym__html_comment] = ACTIONS(2989), - [sym__autolink] = ACTIONS(2989), - [sym__highlight_span_start] = ACTIONS(2989), - [sym__insert_span_start] = ACTIONS(2989), - [sym__delete_span_start] = ACTIONS(2989), - [sym__edit_comment_span_start] = ACTIONS(2989), - [sym__single_quote_span_open] = ACTIONS(2989), + [sym__single_quote_span_open] = ACTIONS(2987), [sym__double_quote_span_open] = ACTIONS(2989), - [sym__shortcode_open_escaped] = ACTIONS(2989), - [sym__shortcode_open] = ACTIONS(2989), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2989), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2989), - [sym__cite_author_in_text] = ACTIONS(2989), - [sym__cite_suppress_author] = ACTIONS(2989), - [sym__strikeout_open] = ACTIONS(2989), - [sym__subscript_open] = ACTIONS(2989), - [sym__superscript_open] = ACTIONS(2989), - [sym__inline_note_start_token] = ACTIONS(2989), - [sym__strong_emphasis_open_star] = ACTIONS(2989), - [sym__strong_emphasis_open_underscore] = ACTIONS(2989), - [sym__emphasis_open_star] = ACTIONS(2989), - [sym__emphasis_open_underscore] = ACTIONS(2989), - [sym_inline_note_reference] = ACTIONS(2989), - [sym_html_element] = ACTIONS(2989), - [sym__pandoc_line_break] = ACTIONS(2989), - }, - [STATE(325)] = { - [anon_sym_COLON] = ACTIONS(2993), - [sym_entity_reference] = ACTIONS(2993), - [sym_numeric_character_reference] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_BANG_LBRACK] = ACTIONS(2993), - [anon_sym_DOLLAR] = ACTIONS(2995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [aux_sym_pandoc_str_token1] = ACTIONS(2995), - [anon_sym_PIPE] = ACTIONS(2993), - [aux_sym__prose_punctuation_token1] = ACTIONS(2995), - [sym__line_ending] = ACTIONS(2993), - [sym__soft_line_ending] = ACTIONS(2993), - [sym__block_close] = ACTIONS(2993), - [sym__block_quote_start] = ACTIONS(2993), - [sym_atx_h1_marker] = ACTIONS(2993), - [sym_atx_h2_marker] = ACTIONS(2993), - [sym_atx_h3_marker] = ACTIONS(2993), - [sym_atx_h4_marker] = ACTIONS(2993), - [sym_atx_h5_marker] = ACTIONS(2993), - [sym_atx_h6_marker] = ACTIONS(2993), - [sym__thematic_break] = ACTIONS(2993), - [sym__list_marker_minus] = ACTIONS(2993), - [sym__list_marker_plus] = ACTIONS(2993), - [sym__list_marker_star] = ACTIONS(2993), - [sym__list_marker_parenthesis] = ACTIONS(2993), - [sym__list_marker_dot] = ACTIONS(2993), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_example] = ACTIONS(2993), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2993), - [sym__fenced_code_block_start_backtick] = ACTIONS(2993), - [sym_minus_metadata] = ACTIONS(2993), - [sym__pipe_table_start] = ACTIONS(2993), - [sym__fenced_div_start] = ACTIONS(2993), - [sym__fenced_div_end] = ACTIONS(2993), - [sym_ref_id_specifier] = ACTIONS(2993), - [sym__code_span_start] = ACTIONS(2993), - [sym__html_comment] = ACTIONS(2993), - [sym__autolink] = ACTIONS(2993), - [sym__highlight_span_start] = ACTIONS(2993), - [sym__insert_span_start] = ACTIONS(2993), - [sym__delete_span_start] = ACTIONS(2993), - [sym__edit_comment_span_start] = ACTIONS(2993), - [sym__single_quote_span_open] = ACTIONS(2993), - [sym__double_quote_span_open] = ACTIONS(2993), - [sym__shortcode_open_escaped] = ACTIONS(2993), + [sym__shortcode_open_escaped] = ACTIONS(2991), [sym__shortcode_open] = ACTIONS(2993), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2993), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2993), - [sym__cite_author_in_text] = ACTIONS(2993), - [sym__cite_suppress_author] = ACTIONS(2993), - [sym__strikeout_open] = ACTIONS(2993), - [sym__subscript_open] = ACTIONS(2993), - [sym__superscript_open] = ACTIONS(2993), - [sym__inline_note_start_token] = ACTIONS(2993), - [sym__strong_emphasis_open_star] = ACTIONS(2993), - [sym__strong_emphasis_open_underscore] = ACTIONS(2993), - [sym__emphasis_open_star] = ACTIONS(2993), - [sym__emphasis_open_underscore] = ACTIONS(2993), - [sym_inline_note_reference] = ACTIONS(2993), - [sym_html_element] = ACTIONS(2993), - [sym__pandoc_line_break] = ACTIONS(2993), - }, - [STATE(326)] = { - [anon_sym_COLON] = ACTIONS(2997), - [sym_entity_reference] = ACTIONS(2997), - [sym_numeric_character_reference] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_BANG_LBRACK] = ACTIONS(2997), - [anon_sym_DOLLAR] = ACTIONS(2999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [aux_sym_pandoc_str_token1] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(2997), - [aux_sym__prose_punctuation_token1] = ACTIONS(2999), - [sym__line_ending] = ACTIONS(2997), - [sym__soft_line_ending] = ACTIONS(2997), - [sym__block_close] = ACTIONS(2997), - [sym__block_quote_start] = ACTIONS(2997), - [sym_atx_h1_marker] = ACTIONS(2997), - [sym_atx_h2_marker] = ACTIONS(2997), - [sym_atx_h3_marker] = ACTIONS(2997), - [sym_atx_h4_marker] = ACTIONS(2997), - [sym_atx_h5_marker] = ACTIONS(2997), - [sym_atx_h6_marker] = ACTIONS(2997), - [sym__thematic_break] = ACTIONS(2997), - [sym__list_marker_minus] = ACTIONS(2997), - [sym__list_marker_plus] = ACTIONS(2997), - [sym__list_marker_star] = ACTIONS(2997), - [sym__list_marker_parenthesis] = ACTIONS(2997), - [sym__list_marker_dot] = ACTIONS(2997), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_example] = ACTIONS(2997), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2997), - [sym__fenced_code_block_start_backtick] = ACTIONS(2997), - [sym_minus_metadata] = ACTIONS(2997), - [sym__pipe_table_start] = ACTIONS(2997), - [sym__fenced_div_start] = ACTIONS(2997), - [sym__fenced_div_end] = ACTIONS(2997), - [sym_ref_id_specifier] = ACTIONS(2997), - [sym__code_span_start] = ACTIONS(2997), - [sym__html_comment] = ACTIONS(2997), - [sym__autolink] = ACTIONS(2997), - [sym__highlight_span_start] = ACTIONS(2997), - [sym__insert_span_start] = ACTIONS(2997), - [sym__delete_span_start] = ACTIONS(2997), - [sym__edit_comment_span_start] = ACTIONS(2997), - [sym__single_quote_span_open] = ACTIONS(2997), - [sym__double_quote_span_open] = ACTIONS(2997), - [sym__shortcode_open_escaped] = ACTIONS(2997), - [sym__shortcode_open] = ACTIONS(2997), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), - [sym__cite_author_in_text] = ACTIONS(2997), - [sym__cite_suppress_author] = ACTIONS(2997), - [sym__strikeout_open] = ACTIONS(2997), - [sym__subscript_open] = ACTIONS(2997), - [sym__superscript_open] = ACTIONS(2997), - [sym__inline_note_start_token] = ACTIONS(2997), - [sym__strong_emphasis_open_star] = ACTIONS(2997), - [sym__strong_emphasis_open_underscore] = ACTIONS(2997), - [sym__emphasis_open_star] = ACTIONS(2997), - [sym__emphasis_open_underscore] = ACTIONS(2997), - [sym_inline_note_reference] = ACTIONS(2997), - [sym_html_element] = ACTIONS(2997), - [sym__pandoc_line_break] = ACTIONS(2997), - }, - [STATE(327)] = { - [anon_sym_COLON] = ACTIONS(3001), - [sym_entity_reference] = ACTIONS(3001), - [sym_numeric_character_reference] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_BANG_LBRACK] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [aux_sym_pandoc_str_token1] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3001), - [aux_sym__prose_punctuation_token1] = ACTIONS(3003), - [sym__line_ending] = ACTIONS(3001), - [sym__soft_line_ending] = ACTIONS(3001), - [sym__block_close] = ACTIONS(3001), - [sym__block_quote_start] = ACTIONS(3001), - [sym_atx_h1_marker] = ACTIONS(3001), - [sym_atx_h2_marker] = ACTIONS(3001), - [sym_atx_h3_marker] = ACTIONS(3001), - [sym_atx_h4_marker] = ACTIONS(3001), - [sym_atx_h5_marker] = ACTIONS(3001), - [sym_atx_h6_marker] = ACTIONS(3001), - [sym__thematic_break] = ACTIONS(3001), - [sym__list_marker_minus] = ACTIONS(3001), - [sym__list_marker_plus] = ACTIONS(3001), - [sym__list_marker_star] = ACTIONS(3001), - [sym__list_marker_parenthesis] = ACTIONS(3001), - [sym__list_marker_dot] = ACTIONS(3001), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_example] = ACTIONS(3001), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3001), - [sym__fenced_code_block_start_backtick] = ACTIONS(3001), - [sym_minus_metadata] = ACTIONS(3001), - [sym__pipe_table_start] = ACTIONS(3001), - [sym__fenced_div_start] = ACTIONS(3001), - [sym__fenced_div_end] = ACTIONS(3001), - [sym_ref_id_specifier] = ACTIONS(3001), - [sym__code_span_start] = ACTIONS(3001), - [sym__html_comment] = ACTIONS(3001), - [sym__autolink] = ACTIONS(3001), - [sym__highlight_span_start] = ACTIONS(3001), - [sym__insert_span_start] = ACTIONS(3001), - [sym__delete_span_start] = ACTIONS(3001), - [sym__edit_comment_span_start] = ACTIONS(3001), - [sym__single_quote_span_open] = ACTIONS(3001), - [sym__double_quote_span_open] = ACTIONS(3001), - [sym__shortcode_open_escaped] = ACTIONS(3001), - [sym__shortcode_open] = ACTIONS(3001), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3001), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3001), - [sym__cite_author_in_text] = ACTIONS(3001), + [sym__cite_author_in_text] = ACTIONS(2999), [sym__cite_suppress_author] = ACTIONS(3001), - [sym__strikeout_open] = ACTIONS(3001), - [sym__subscript_open] = ACTIONS(3001), - [sym__superscript_open] = ACTIONS(3001), - [sym__inline_note_start_token] = ACTIONS(3001), - [sym__strong_emphasis_open_star] = ACTIONS(3001), - [sym__strong_emphasis_open_underscore] = ACTIONS(3001), - [sym__emphasis_open_star] = ACTIONS(3001), - [sym__emphasis_open_underscore] = ACTIONS(3001), - [sym_inline_note_reference] = ACTIONS(3001), - [sym_html_element] = ACTIONS(3001), - [sym__pandoc_line_break] = ACTIONS(3001), - }, - [STATE(328)] = { - [anon_sym_COLON] = ACTIONS(3005), - [sym_entity_reference] = ACTIONS(3005), - [sym_numeric_character_reference] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_BANG_LBRACK] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [aux_sym_pandoc_str_token1] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3005), - [aux_sym__prose_punctuation_token1] = ACTIONS(3007), - [sym__line_ending] = ACTIONS(3005), - [sym__soft_line_ending] = ACTIONS(3005), - [sym__block_close] = ACTIONS(3005), - [sym__block_quote_start] = ACTIONS(3005), - [sym_atx_h1_marker] = ACTIONS(3005), - [sym_atx_h2_marker] = ACTIONS(3005), - [sym_atx_h3_marker] = ACTIONS(3005), - [sym_atx_h4_marker] = ACTIONS(3005), - [sym_atx_h5_marker] = ACTIONS(3005), - [sym_atx_h6_marker] = ACTIONS(3005), - [sym__thematic_break] = ACTIONS(3005), - [sym__list_marker_minus] = ACTIONS(3005), - [sym__list_marker_plus] = ACTIONS(3005), - [sym__list_marker_star] = ACTIONS(3005), - [sym__list_marker_parenthesis] = ACTIONS(3005), - [sym__list_marker_dot] = ACTIONS(3005), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_example] = ACTIONS(3005), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3005), - [sym__fenced_code_block_start_backtick] = ACTIONS(3005), - [sym_minus_metadata] = ACTIONS(3005), - [sym__pipe_table_start] = ACTIONS(3005), - [sym__fenced_div_start] = ACTIONS(3005), - [sym__fenced_div_end] = ACTIONS(3005), - [sym_ref_id_specifier] = ACTIONS(3005), - [sym__code_span_start] = ACTIONS(3005), - [sym__html_comment] = ACTIONS(3005), - [sym__autolink] = ACTIONS(3005), - [sym__highlight_span_start] = ACTIONS(3005), - [sym__insert_span_start] = ACTIONS(3005), - [sym__delete_span_start] = ACTIONS(3005), - [sym__edit_comment_span_start] = ACTIONS(3005), - [sym__single_quote_span_open] = ACTIONS(3005), - [sym__double_quote_span_open] = ACTIONS(3005), - [sym__shortcode_open_escaped] = ACTIONS(3005), - [sym__shortcode_open] = ACTIONS(3005), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3005), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3005), - [sym__cite_author_in_text] = ACTIONS(3005), - [sym__cite_suppress_author] = ACTIONS(3005), - [sym__strikeout_open] = ACTIONS(3005), + [sym__strikeout_open] = ACTIONS(3003), [sym__subscript_open] = ACTIONS(3005), - [sym__superscript_open] = ACTIONS(3005), - [sym__inline_note_start_token] = ACTIONS(3005), - [sym__strong_emphasis_open_star] = ACTIONS(3005), - [sym__strong_emphasis_open_underscore] = ACTIONS(3005), - [sym__emphasis_open_star] = ACTIONS(3005), - [sym__emphasis_open_underscore] = ACTIONS(3005), - [sym_inline_note_reference] = ACTIONS(3005), - [sym_html_element] = ACTIONS(3005), - [sym__pandoc_line_break] = ACTIONS(3005), - }, - [STATE(329)] = { - [anon_sym_COLON] = ACTIONS(3009), - [sym_entity_reference] = ACTIONS(3009), - [sym_numeric_character_reference] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3009), - [anon_sym_BANG_LBRACK] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3009), - [aux_sym_pandoc_str_token1] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3009), - [aux_sym__prose_punctuation_token1] = ACTIONS(3011), - [sym__line_ending] = ACTIONS(3009), - [sym__soft_line_ending] = ACTIONS(3009), - [sym__block_close] = ACTIONS(3009), - [sym__block_quote_start] = ACTIONS(3009), - [sym_atx_h1_marker] = ACTIONS(3009), - [sym_atx_h2_marker] = ACTIONS(3009), - [sym_atx_h3_marker] = ACTIONS(3009), - [sym_atx_h4_marker] = ACTIONS(3009), - [sym_atx_h5_marker] = ACTIONS(3009), - [sym_atx_h6_marker] = ACTIONS(3009), - [sym__thematic_break] = ACTIONS(3009), - [sym__list_marker_minus] = ACTIONS(3009), - [sym__list_marker_plus] = ACTIONS(3009), - [sym__list_marker_star] = ACTIONS(3009), - [sym__list_marker_parenthesis] = ACTIONS(3009), - [sym__list_marker_dot] = ACTIONS(3009), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_example] = ACTIONS(3009), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3009), - [sym__fenced_code_block_start_backtick] = ACTIONS(3009), - [sym_minus_metadata] = ACTIONS(3009), - [sym__pipe_table_start] = ACTIONS(3009), - [sym__fenced_div_start] = ACTIONS(3009), - [sym__fenced_div_end] = ACTIONS(3009), - [sym_ref_id_specifier] = ACTIONS(3009), - [sym__code_span_start] = ACTIONS(3009), - [sym__html_comment] = ACTIONS(3009), - [sym__autolink] = ACTIONS(3009), - [sym__highlight_span_start] = ACTIONS(3009), - [sym__insert_span_start] = ACTIONS(3009), - [sym__delete_span_start] = ACTIONS(3009), - [sym__edit_comment_span_start] = ACTIONS(3009), - [sym__single_quote_span_open] = ACTIONS(3009), - [sym__double_quote_span_open] = ACTIONS(3009), - [sym__shortcode_open_escaped] = ACTIONS(3009), - [sym__shortcode_open] = ACTIONS(3009), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3009), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3009), - [sym__cite_author_in_text] = ACTIONS(3009), - [sym__cite_suppress_author] = ACTIONS(3009), - [sym__strikeout_open] = ACTIONS(3009), - [sym__subscript_open] = ACTIONS(3009), - [sym__superscript_open] = ACTIONS(3009), + [sym__superscript_open] = ACTIONS(3007), [sym__inline_note_start_token] = ACTIONS(3009), - [sym__strong_emphasis_open_star] = ACTIONS(3009), - [sym__strong_emphasis_open_underscore] = ACTIONS(3009), - [sym__emphasis_open_star] = ACTIONS(3009), - [sym__emphasis_open_underscore] = ACTIONS(3009), - [sym_inline_note_reference] = ACTIONS(3009), - [sym_html_element] = ACTIONS(3009), - [sym__pandoc_line_break] = ACTIONS(3009), - }, - [STATE(330)] = { - [anon_sym_COLON] = ACTIONS(3013), - [sym_entity_reference] = ACTIONS(3013), - [sym_numeric_character_reference] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_BANG_LBRACK] = ACTIONS(3013), - [anon_sym_DOLLAR] = ACTIONS(3015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3013), - [aux_sym_pandoc_str_token1] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3013), - [aux_sym__prose_punctuation_token1] = ACTIONS(3015), - [sym__line_ending] = ACTIONS(3013), - [sym__soft_line_ending] = ACTIONS(3013), - [sym__block_close] = ACTIONS(3013), - [sym__block_quote_start] = ACTIONS(3013), - [sym_atx_h1_marker] = ACTIONS(3013), - [sym_atx_h2_marker] = ACTIONS(3013), - [sym_atx_h3_marker] = ACTIONS(3013), - [sym_atx_h4_marker] = ACTIONS(3013), - [sym_atx_h5_marker] = ACTIONS(3013), - [sym_atx_h6_marker] = ACTIONS(3013), - [sym__thematic_break] = ACTIONS(3013), - [sym__list_marker_minus] = ACTIONS(3013), - [sym__list_marker_plus] = ACTIONS(3013), - [sym__list_marker_star] = ACTIONS(3013), - [sym__list_marker_parenthesis] = ACTIONS(3013), - [sym__list_marker_dot] = ACTIONS(3013), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_example] = ACTIONS(3013), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3013), - [sym__fenced_code_block_start_backtick] = ACTIONS(3013), - [sym_minus_metadata] = ACTIONS(3013), - [sym__pipe_table_start] = ACTIONS(3013), - [sym__fenced_div_start] = ACTIONS(3013), - [sym__fenced_div_end] = ACTIONS(3013), - [sym_ref_id_specifier] = ACTIONS(3013), - [sym__code_span_start] = ACTIONS(3013), - [sym__html_comment] = ACTIONS(3013), - [sym__autolink] = ACTIONS(3013), - [sym__highlight_span_start] = ACTIONS(3013), - [sym__insert_span_start] = ACTIONS(3013), - [sym__delete_span_start] = ACTIONS(3013), - [sym__edit_comment_span_start] = ACTIONS(3013), - [sym__single_quote_span_open] = ACTIONS(3013), - [sym__double_quote_span_open] = ACTIONS(3013), - [sym__shortcode_open_escaped] = ACTIONS(3013), - [sym__shortcode_open] = ACTIONS(3013), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3013), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3013), - [sym__cite_author_in_text] = ACTIONS(3013), - [sym__cite_suppress_author] = ACTIONS(3013), - [sym__strikeout_open] = ACTIONS(3013), - [sym__subscript_open] = ACTIONS(3013), - [sym__superscript_open] = ACTIONS(3013), - [sym__inline_note_start_token] = ACTIONS(3013), - [sym__strong_emphasis_open_star] = ACTIONS(3013), + [sym__strong_emphasis_open_star] = ACTIONS(3011), [sym__strong_emphasis_open_underscore] = ACTIONS(3013), - [sym__emphasis_open_star] = ACTIONS(3013), - [sym__emphasis_open_underscore] = ACTIONS(3013), - [sym_inline_note_reference] = ACTIONS(3013), - [sym_html_element] = ACTIONS(3013), - [sym__pandoc_line_break] = ACTIONS(3013), - }, - [STATE(331)] = { - [anon_sym_COLON] = ACTIONS(3017), - [sym_entity_reference] = ACTIONS(3017), - [sym_numeric_character_reference] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_BANG_LBRACK] = ACTIONS(3017), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [aux_sym_pandoc_str_token1] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3017), - [aux_sym__prose_punctuation_token1] = ACTIONS(3019), - [sym__line_ending] = ACTIONS(3017), - [sym__soft_line_ending] = ACTIONS(3017), - [sym__block_close] = ACTIONS(3017), - [sym__block_quote_start] = ACTIONS(3017), - [sym_atx_h1_marker] = ACTIONS(3017), - [sym_atx_h2_marker] = ACTIONS(3017), - [sym_atx_h3_marker] = ACTIONS(3017), - [sym_atx_h4_marker] = ACTIONS(3017), - [sym_atx_h5_marker] = ACTIONS(3017), - [sym_atx_h6_marker] = ACTIONS(3017), - [sym__thematic_break] = ACTIONS(3017), - [sym__list_marker_minus] = ACTIONS(3017), - [sym__list_marker_plus] = ACTIONS(3017), - [sym__list_marker_star] = ACTIONS(3017), - [sym__list_marker_parenthesis] = ACTIONS(3017), - [sym__list_marker_dot] = ACTIONS(3017), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_example] = ACTIONS(3017), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3017), - [sym__fenced_code_block_start_backtick] = ACTIONS(3017), - [sym_minus_metadata] = ACTIONS(3017), - [sym__pipe_table_start] = ACTIONS(3017), - [sym__fenced_div_start] = ACTIONS(3017), - [sym__fenced_div_end] = ACTIONS(3017), - [sym_ref_id_specifier] = ACTIONS(3017), - [sym__code_span_start] = ACTIONS(3017), - [sym__html_comment] = ACTIONS(3017), - [sym__autolink] = ACTIONS(3017), - [sym__highlight_span_start] = ACTIONS(3017), - [sym__insert_span_start] = ACTIONS(3017), - [sym__delete_span_start] = ACTIONS(3017), - [sym__edit_comment_span_start] = ACTIONS(3017), - [sym__single_quote_span_open] = ACTIONS(3017), - [sym__double_quote_span_open] = ACTIONS(3017), - [sym__shortcode_open_escaped] = ACTIONS(3017), - [sym__shortcode_open] = ACTIONS(3017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3017), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3017), - [sym__cite_author_in_text] = ACTIONS(3017), - [sym__cite_suppress_author] = ACTIONS(3017), - [sym__strikeout_open] = ACTIONS(3017), - [sym__subscript_open] = ACTIONS(3017), - [sym__superscript_open] = ACTIONS(3017), - [sym__inline_note_start_token] = ACTIONS(3017), - [sym__strong_emphasis_open_star] = ACTIONS(3017), - [sym__strong_emphasis_open_underscore] = ACTIONS(3017), - [sym__emphasis_open_star] = ACTIONS(3017), + [sym__emphasis_open_star] = ACTIONS(3015), [sym__emphasis_open_underscore] = ACTIONS(3017), - [sym_inline_note_reference] = ACTIONS(3017), - [sym_html_element] = ACTIONS(3017), - [sym__pandoc_line_break] = ACTIONS(3017), - }, - [STATE(332)] = { - [anon_sym_COLON] = ACTIONS(3021), - [sym_entity_reference] = ACTIONS(3021), - [sym_numeric_character_reference] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_BANG_LBRACK] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3021), - [aux_sym_pandoc_str_token1] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3021), - [aux_sym__prose_punctuation_token1] = ACTIONS(3023), - [sym__line_ending] = ACTIONS(3021), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__block_close] = ACTIONS(3021), - [sym__block_quote_start] = ACTIONS(3021), - [sym_atx_h1_marker] = ACTIONS(3021), - [sym_atx_h2_marker] = ACTIONS(3021), - [sym_atx_h3_marker] = ACTIONS(3021), - [sym_atx_h4_marker] = ACTIONS(3021), - [sym_atx_h5_marker] = ACTIONS(3021), - [sym_atx_h6_marker] = ACTIONS(3021), - [sym__thematic_break] = ACTIONS(3021), - [sym__list_marker_minus] = ACTIONS(3021), - [sym__list_marker_plus] = ACTIONS(3021), - [sym__list_marker_star] = ACTIONS(3021), - [sym__list_marker_parenthesis] = ACTIONS(3021), - [sym__list_marker_dot] = ACTIONS(3021), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_example] = ACTIONS(3021), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3021), - [sym__fenced_code_block_start_backtick] = ACTIONS(3021), - [sym_minus_metadata] = ACTIONS(3021), - [sym__pipe_table_start] = ACTIONS(3021), - [sym__fenced_div_start] = ACTIONS(3021), - [sym__fenced_div_end] = ACTIONS(3021), - [sym_ref_id_specifier] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3021), - [sym__html_comment] = ACTIONS(3021), - [sym__autolink] = ACTIONS(3021), - [sym__highlight_span_start] = ACTIONS(3021), - [sym__insert_span_start] = ACTIONS(3021), - [sym__delete_span_start] = ACTIONS(3021), - [sym__edit_comment_span_start] = ACTIONS(3021), - [sym__single_quote_span_open] = ACTIONS(3021), - [sym__double_quote_span_open] = ACTIONS(3021), - [sym__shortcode_open_escaped] = ACTIONS(3021), - [sym__shortcode_open] = ACTIONS(3021), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3021), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3021), - [sym__cite_author_in_text] = ACTIONS(3021), - [sym__cite_suppress_author] = ACTIONS(3021), - [sym__strikeout_open] = ACTIONS(3021), - [sym__subscript_open] = ACTIONS(3021), - [sym__superscript_open] = ACTIONS(3021), - [sym__inline_note_start_token] = ACTIONS(3021), - [sym__strong_emphasis_open_star] = ACTIONS(3021), - [sym__strong_emphasis_open_underscore] = ACTIONS(3021), - [sym__emphasis_open_star] = ACTIONS(3021), - [sym__emphasis_open_underscore] = ACTIONS(3021), - [sym_inline_note_reference] = ACTIONS(3021), - [sym_html_element] = ACTIONS(3021), - [sym__pandoc_line_break] = ACTIONS(3021), - }, - [STATE(333)] = { - [anon_sym_COLON] = ACTIONS(3025), - [sym_entity_reference] = ACTIONS(3025), - [sym_numeric_character_reference] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3025), - [aux_sym_pandoc_str_token1] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3025), - [aux_sym__prose_punctuation_token1] = ACTIONS(3027), - [sym__line_ending] = ACTIONS(3025), - [sym__soft_line_ending] = ACTIONS(3025), - [sym__block_close] = ACTIONS(3025), - [sym__block_quote_start] = ACTIONS(3025), - [sym_atx_h1_marker] = ACTIONS(3025), - [sym_atx_h2_marker] = ACTIONS(3025), - [sym_atx_h3_marker] = ACTIONS(3025), - [sym_atx_h4_marker] = ACTIONS(3025), - [sym_atx_h5_marker] = ACTIONS(3025), - [sym_atx_h6_marker] = ACTIONS(3025), - [sym__thematic_break] = ACTIONS(3025), - [sym__list_marker_minus] = ACTIONS(3025), - [sym__list_marker_plus] = ACTIONS(3025), - [sym__list_marker_star] = ACTIONS(3025), - [sym__list_marker_parenthesis] = ACTIONS(3025), - [sym__list_marker_dot] = ACTIONS(3025), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_example] = ACTIONS(3025), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3025), - [sym__fenced_code_block_start_backtick] = ACTIONS(3025), - [sym_minus_metadata] = ACTIONS(3025), - [sym__pipe_table_start] = ACTIONS(3025), - [sym__fenced_div_start] = ACTIONS(3025), - [sym__fenced_div_end] = ACTIONS(3025), - [sym_ref_id_specifier] = ACTIONS(3025), - [sym__code_span_start] = ACTIONS(3025), - [sym__html_comment] = ACTIONS(3025), - [sym__autolink] = ACTIONS(3025), - [sym__highlight_span_start] = ACTIONS(3025), - [sym__insert_span_start] = ACTIONS(3025), - [sym__delete_span_start] = ACTIONS(3025), - [sym__edit_comment_span_start] = ACTIONS(3025), - [sym__single_quote_span_open] = ACTIONS(3025), - [sym__double_quote_span_open] = ACTIONS(3025), - [sym__shortcode_open_escaped] = ACTIONS(3025), - [sym__shortcode_open] = ACTIONS(3025), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3025), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3025), - [sym__cite_author_in_text] = ACTIONS(3025), - [sym__cite_suppress_author] = ACTIONS(3025), - [sym__strikeout_open] = ACTIONS(3025), - [sym__subscript_open] = ACTIONS(3025), - [sym__superscript_open] = ACTIONS(3025), - [sym__inline_note_start_token] = ACTIONS(3025), - [sym__strong_emphasis_open_star] = ACTIONS(3025), - [sym__strong_emphasis_open_underscore] = ACTIONS(3025), - [sym__emphasis_open_star] = ACTIONS(3025), - [sym__emphasis_open_underscore] = ACTIONS(3025), - [sym_inline_note_reference] = ACTIONS(3025), - [sym_html_element] = ACTIONS(3025), - [sym__pandoc_line_break] = ACTIONS(3025), - }, - [STATE(334)] = { - [anon_sym_COLON] = ACTIONS(3029), - [sym_entity_reference] = ACTIONS(3029), - [sym_numeric_character_reference] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_BANG_LBRACK] = ACTIONS(3029), - [anon_sym_DOLLAR] = ACTIONS(3031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [aux_sym_pandoc_str_token1] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3029), - [aux_sym__prose_punctuation_token1] = ACTIONS(3031), - [sym__line_ending] = ACTIONS(3029), - [sym__soft_line_ending] = ACTIONS(3029), - [sym__block_close] = ACTIONS(3029), - [sym__block_quote_start] = ACTIONS(3029), - [sym_atx_h1_marker] = ACTIONS(3029), - [sym_atx_h2_marker] = ACTIONS(3029), - [sym_atx_h3_marker] = ACTIONS(3029), - [sym_atx_h4_marker] = ACTIONS(3029), - [sym_atx_h5_marker] = ACTIONS(3029), - [sym_atx_h6_marker] = ACTIONS(3029), - [sym__thematic_break] = ACTIONS(3029), - [sym__list_marker_minus] = ACTIONS(3029), - [sym__list_marker_plus] = ACTIONS(3029), - [sym__list_marker_star] = ACTIONS(3029), - [sym__list_marker_parenthesis] = ACTIONS(3029), - [sym__list_marker_dot] = ACTIONS(3029), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_example] = ACTIONS(3029), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3029), - [sym__fenced_code_block_start_backtick] = ACTIONS(3029), - [sym_minus_metadata] = ACTIONS(3029), - [sym__pipe_table_start] = ACTIONS(3029), - [sym__fenced_div_start] = ACTIONS(3029), - [sym__fenced_div_end] = ACTIONS(3029), - [sym_ref_id_specifier] = ACTIONS(3029), - [sym__code_span_start] = ACTIONS(3029), - [sym__html_comment] = ACTIONS(3029), - [sym__autolink] = ACTIONS(3029), - [sym__highlight_span_start] = ACTIONS(3029), - [sym__insert_span_start] = ACTIONS(3029), - [sym__delete_span_start] = ACTIONS(3029), - [sym__edit_comment_span_start] = ACTIONS(3029), - [sym__single_quote_span_open] = ACTIONS(3029), - [sym__double_quote_span_open] = ACTIONS(3029), - [sym__shortcode_open_escaped] = ACTIONS(3029), - [sym__shortcode_open] = ACTIONS(3029), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3029), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3029), - [sym__cite_author_in_text] = ACTIONS(3029), - [sym__cite_suppress_author] = ACTIONS(3029), - [sym__strikeout_open] = ACTIONS(3029), - [sym__subscript_open] = ACTIONS(3029), - [sym__superscript_open] = ACTIONS(3029), - [sym__inline_note_start_token] = ACTIONS(3029), - [sym__strong_emphasis_open_star] = ACTIONS(3029), - [sym__strong_emphasis_open_underscore] = ACTIONS(3029), - [sym__emphasis_open_star] = ACTIONS(3029), - [sym__emphasis_open_underscore] = ACTIONS(3029), - [sym_inline_note_reference] = ACTIONS(3029), - [sym_html_element] = ACTIONS(3029), - [sym__pandoc_line_break] = ACTIONS(3029), - }, - [STATE(335)] = { - [anon_sym_COLON] = ACTIONS(3033), - [sym_entity_reference] = ACTIONS(3033), - [sym_numeric_character_reference] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_BANG_LBRACK] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3033), - [aux_sym_pandoc_str_token1] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3033), - [aux_sym__prose_punctuation_token1] = ACTIONS(3035), - [sym__line_ending] = ACTIONS(3033), - [sym__soft_line_ending] = ACTIONS(3033), - [sym__block_close] = ACTIONS(3033), - [sym__block_quote_start] = ACTIONS(3033), - [sym_atx_h1_marker] = ACTIONS(3033), - [sym_atx_h2_marker] = ACTIONS(3033), - [sym_atx_h3_marker] = ACTIONS(3033), - [sym_atx_h4_marker] = ACTIONS(3033), - [sym_atx_h5_marker] = ACTIONS(3033), - [sym_atx_h6_marker] = ACTIONS(3033), - [sym__thematic_break] = ACTIONS(3033), - [sym__list_marker_minus] = ACTIONS(3033), - [sym__list_marker_plus] = ACTIONS(3033), - [sym__list_marker_star] = ACTIONS(3033), - [sym__list_marker_parenthesis] = ACTIONS(3033), - [sym__list_marker_dot] = ACTIONS(3033), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_example] = ACTIONS(3033), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3033), - [sym__fenced_code_block_start_backtick] = ACTIONS(3033), - [sym_minus_metadata] = ACTIONS(3033), - [sym__pipe_table_start] = ACTIONS(3033), - [sym__fenced_div_start] = ACTIONS(3033), - [sym__fenced_div_end] = ACTIONS(3033), - [sym_ref_id_specifier] = ACTIONS(3033), - [sym__code_span_start] = ACTIONS(3033), - [sym__html_comment] = ACTIONS(3033), - [sym__autolink] = ACTIONS(3033), - [sym__highlight_span_start] = ACTIONS(3033), - [sym__insert_span_start] = ACTIONS(3033), - [sym__delete_span_start] = ACTIONS(3033), - [sym__edit_comment_span_start] = ACTIONS(3033), - [sym__single_quote_span_open] = ACTIONS(3033), - [sym__double_quote_span_open] = ACTIONS(3033), - [sym__shortcode_open_escaped] = ACTIONS(3033), - [sym__shortcode_open] = ACTIONS(3033), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), - [sym__cite_author_in_text] = ACTIONS(3033), - [sym__cite_suppress_author] = ACTIONS(3033), - [sym__strikeout_open] = ACTIONS(3033), - [sym__subscript_open] = ACTIONS(3033), - [sym__superscript_open] = ACTIONS(3033), - [sym__inline_note_start_token] = ACTIONS(3033), - [sym__strong_emphasis_open_star] = ACTIONS(3033), - [sym__strong_emphasis_open_underscore] = ACTIONS(3033), - [sym__emphasis_open_star] = ACTIONS(3033), - [sym__emphasis_open_underscore] = ACTIONS(3033), - [sym_inline_note_reference] = ACTIONS(3033), - [sym_html_element] = ACTIONS(3033), - [sym__pandoc_line_break] = ACTIONS(3033), - }, - [STATE(336)] = { - [anon_sym_COLON] = ACTIONS(3037), - [sym_entity_reference] = ACTIONS(3037), - [sym_numeric_character_reference] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_BANG_LBRACK] = ACTIONS(3037), - [anon_sym_DOLLAR] = ACTIONS(3039), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3037), - [aux_sym_pandoc_str_token1] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3037), - [aux_sym__prose_punctuation_token1] = ACTIONS(3039), - [sym__line_ending] = ACTIONS(3037), - [sym__soft_line_ending] = ACTIONS(3037), - [sym__block_close] = ACTIONS(3037), - [sym__block_quote_start] = ACTIONS(3037), - [sym_atx_h1_marker] = ACTIONS(3037), - [sym_atx_h2_marker] = ACTIONS(3037), - [sym_atx_h3_marker] = ACTIONS(3037), - [sym_atx_h4_marker] = ACTIONS(3037), - [sym_atx_h5_marker] = ACTIONS(3037), - [sym_atx_h6_marker] = ACTIONS(3037), - [sym__thematic_break] = ACTIONS(3037), - [sym__list_marker_minus] = ACTIONS(3037), - [sym__list_marker_plus] = ACTIONS(3037), - [sym__list_marker_star] = ACTIONS(3037), - [sym__list_marker_parenthesis] = ACTIONS(3037), - [sym__list_marker_dot] = ACTIONS(3037), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_example] = ACTIONS(3037), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3037), - [sym__fenced_code_block_start_backtick] = ACTIONS(3037), - [sym_minus_metadata] = ACTIONS(3037), - [sym__pipe_table_start] = ACTIONS(3037), - [sym__fenced_div_start] = ACTIONS(3037), - [sym__fenced_div_end] = ACTIONS(3037), - [sym_ref_id_specifier] = ACTIONS(3037), - [sym__code_span_start] = ACTIONS(3037), - [sym__html_comment] = ACTIONS(3037), - [sym__autolink] = ACTIONS(3037), - [sym__highlight_span_start] = ACTIONS(3037), - [sym__insert_span_start] = ACTIONS(3037), - [sym__delete_span_start] = ACTIONS(3037), - [sym__edit_comment_span_start] = ACTIONS(3037), - [sym__single_quote_span_open] = ACTIONS(3037), - [sym__double_quote_span_open] = ACTIONS(3037), - [sym__shortcode_open_escaped] = ACTIONS(3037), - [sym__shortcode_open] = ACTIONS(3037), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3037), - [sym__cite_author_in_text] = ACTIONS(3037), - [sym__cite_suppress_author] = ACTIONS(3037), - [sym__strikeout_open] = ACTIONS(3037), - [sym__subscript_open] = ACTIONS(3037), - [sym__superscript_open] = ACTIONS(3037), - [sym__inline_note_start_token] = ACTIONS(3037), - [sym__strong_emphasis_open_star] = ACTIONS(3037), - [sym__strong_emphasis_open_underscore] = ACTIONS(3037), - [sym__emphasis_open_star] = ACTIONS(3037), - [sym__emphasis_open_underscore] = ACTIONS(3037), - [sym_inline_note_reference] = ACTIONS(3037), - [sym_html_element] = ACTIONS(3037), - [sym__pandoc_line_break] = ACTIONS(3037), - }, - [STATE(337)] = { - [anon_sym_COLON] = ACTIONS(3041), - [sym_entity_reference] = ACTIONS(3041), - [sym_numeric_character_reference] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_BANG_LBRACK] = ACTIONS(3041), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [aux_sym_pandoc_str_token1] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3041), - [aux_sym__prose_punctuation_token1] = ACTIONS(3043), - [sym__line_ending] = ACTIONS(3041), - [sym__soft_line_ending] = ACTIONS(3041), - [sym__block_close] = ACTIONS(3041), - [sym__block_quote_start] = ACTIONS(3041), - [sym_atx_h1_marker] = ACTIONS(3041), - [sym_atx_h2_marker] = ACTIONS(3041), - [sym_atx_h3_marker] = ACTIONS(3041), - [sym_atx_h4_marker] = ACTIONS(3041), - [sym_atx_h5_marker] = ACTIONS(3041), - [sym_atx_h6_marker] = ACTIONS(3041), - [sym__thematic_break] = ACTIONS(3041), - [sym__list_marker_minus] = ACTIONS(3041), - [sym__list_marker_plus] = ACTIONS(3041), - [sym__list_marker_star] = ACTIONS(3041), - [sym__list_marker_parenthesis] = ACTIONS(3041), - [sym__list_marker_dot] = ACTIONS(3041), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_example] = ACTIONS(3041), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3041), - [sym__fenced_code_block_start_backtick] = ACTIONS(3041), - [sym_minus_metadata] = ACTIONS(3041), - [sym__pipe_table_start] = ACTIONS(3041), - [sym__fenced_div_start] = ACTIONS(3041), - [sym__fenced_div_end] = ACTIONS(3041), - [sym_ref_id_specifier] = ACTIONS(3041), - [sym__code_span_start] = ACTIONS(3041), - [sym__html_comment] = ACTIONS(3041), - [sym__autolink] = ACTIONS(3041), - [sym__highlight_span_start] = ACTIONS(3041), - [sym__insert_span_start] = ACTIONS(3041), - [sym__delete_span_start] = ACTIONS(3041), - [sym__edit_comment_span_start] = ACTIONS(3041), - [sym__single_quote_span_open] = ACTIONS(3041), - [sym__double_quote_span_open] = ACTIONS(3041), - [sym__shortcode_open_escaped] = ACTIONS(3041), - [sym__shortcode_open] = ACTIONS(3041), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3041), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3041), - [sym__cite_author_in_text] = ACTIONS(3041), - [sym__cite_suppress_author] = ACTIONS(3041), - [sym__strikeout_open] = ACTIONS(3041), - [sym__subscript_open] = ACTIONS(3041), - [sym__superscript_open] = ACTIONS(3041), - [sym__inline_note_start_token] = ACTIONS(3041), - [sym__strong_emphasis_open_star] = ACTIONS(3041), - [sym__strong_emphasis_open_underscore] = ACTIONS(3041), - [sym__emphasis_open_star] = ACTIONS(3041), - [sym__emphasis_open_underscore] = ACTIONS(3041), - [sym_inline_note_reference] = ACTIONS(3041), - [sym_html_element] = ACTIONS(3041), - [sym__pandoc_line_break] = ACTIONS(3041), - }, - [STATE(338)] = { - [anon_sym_COLON] = ACTIONS(3045), - [sym_entity_reference] = ACTIONS(3045), - [sym_numeric_character_reference] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_BANG_LBRACK] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [aux_sym_pandoc_str_token1] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3045), - [aux_sym__prose_punctuation_token1] = ACTIONS(3047), - [sym__line_ending] = ACTIONS(3045), - [sym__soft_line_ending] = ACTIONS(3045), - [sym__block_close] = ACTIONS(3045), - [sym__block_quote_start] = ACTIONS(3045), - [sym_atx_h1_marker] = ACTIONS(3045), - [sym_atx_h2_marker] = ACTIONS(3045), - [sym_atx_h3_marker] = ACTIONS(3045), - [sym_atx_h4_marker] = ACTIONS(3045), - [sym_atx_h5_marker] = ACTIONS(3045), - [sym_atx_h6_marker] = ACTIONS(3045), - [sym__thematic_break] = ACTIONS(3045), - [sym__list_marker_minus] = ACTIONS(3045), - [sym__list_marker_plus] = ACTIONS(3045), - [sym__list_marker_star] = ACTIONS(3045), - [sym__list_marker_parenthesis] = ACTIONS(3045), - [sym__list_marker_dot] = ACTIONS(3045), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_example] = ACTIONS(3045), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3045), - [sym__fenced_code_block_start_backtick] = ACTIONS(3045), - [sym_minus_metadata] = ACTIONS(3045), - [sym__pipe_table_start] = ACTIONS(3045), - [sym__fenced_div_start] = ACTIONS(3045), - [sym__fenced_div_end] = ACTIONS(3045), - [sym_ref_id_specifier] = ACTIONS(3045), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3045), - [sym__autolink] = ACTIONS(3045), - [sym__highlight_span_start] = ACTIONS(3045), - [sym__insert_span_start] = ACTIONS(3045), - [sym__delete_span_start] = ACTIONS(3045), - [sym__edit_comment_span_start] = ACTIONS(3045), - [sym__single_quote_span_open] = ACTIONS(3045), - [sym__double_quote_span_open] = ACTIONS(3045), - [sym__shortcode_open_escaped] = ACTIONS(3045), - [sym__shortcode_open] = ACTIONS(3045), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3045), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3045), - [sym__cite_author_in_text] = ACTIONS(3045), - [sym__cite_suppress_author] = ACTIONS(3045), - [sym__strikeout_open] = ACTIONS(3045), - [sym__subscript_open] = ACTIONS(3045), - [sym__superscript_open] = ACTIONS(3045), - [sym__inline_note_start_token] = ACTIONS(3045), - [sym__strong_emphasis_open_star] = ACTIONS(3045), - [sym__strong_emphasis_open_underscore] = ACTIONS(3045), - [sym__emphasis_open_star] = ACTIONS(3045), - [sym__emphasis_open_underscore] = ACTIONS(3045), - [sym_inline_note_reference] = ACTIONS(3045), - [sym_html_element] = ACTIONS(3045), - [sym__pandoc_line_break] = ACTIONS(3045), - }, - [STATE(339)] = { - [anon_sym_COLON] = ACTIONS(3049), - [sym_entity_reference] = ACTIONS(3049), - [sym_numeric_character_reference] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_BANG_LBRACK] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3051), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [aux_sym_pandoc_str_token1] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3049), - [aux_sym__prose_punctuation_token1] = ACTIONS(3051), - [sym__line_ending] = ACTIONS(3049), - [sym__soft_line_ending] = ACTIONS(3049), - [sym__block_close] = ACTIONS(3049), - [sym__block_quote_start] = ACTIONS(3049), - [sym_atx_h1_marker] = ACTIONS(3049), - [sym_atx_h2_marker] = ACTIONS(3049), - [sym_atx_h3_marker] = ACTIONS(3049), - [sym_atx_h4_marker] = ACTIONS(3049), - [sym_atx_h5_marker] = ACTIONS(3049), - [sym_atx_h6_marker] = ACTIONS(3049), - [sym__thematic_break] = ACTIONS(3049), - [sym__list_marker_minus] = ACTIONS(3049), - [sym__list_marker_plus] = ACTIONS(3049), - [sym__list_marker_star] = ACTIONS(3049), - [sym__list_marker_parenthesis] = ACTIONS(3049), - [sym__list_marker_dot] = ACTIONS(3049), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_example] = ACTIONS(3049), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3049), - [sym__fenced_code_block_start_backtick] = ACTIONS(3049), - [sym_minus_metadata] = ACTIONS(3049), - [sym__pipe_table_start] = ACTIONS(3049), - [sym__fenced_div_start] = ACTIONS(3049), - [sym__fenced_div_end] = ACTIONS(3049), - [sym_ref_id_specifier] = ACTIONS(3049), - [sym__code_span_start] = ACTIONS(3049), - [sym__html_comment] = ACTIONS(3049), - [sym__autolink] = ACTIONS(3049), - [sym__highlight_span_start] = ACTIONS(3049), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3049), - [sym__edit_comment_span_start] = ACTIONS(3049), - [sym__single_quote_span_open] = ACTIONS(3049), - [sym__double_quote_span_open] = ACTIONS(3049), - [sym__shortcode_open_escaped] = ACTIONS(3049), - [sym__shortcode_open] = ACTIONS(3049), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3049), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3049), - [sym__cite_author_in_text] = ACTIONS(3049), - [sym__cite_suppress_author] = ACTIONS(3049), - [sym__strikeout_open] = ACTIONS(3049), - [sym__subscript_open] = ACTIONS(3049), - [sym__superscript_open] = ACTIONS(3049), - [sym__inline_note_start_token] = ACTIONS(3049), - [sym__strong_emphasis_open_star] = ACTIONS(3049), - [sym__strong_emphasis_open_underscore] = ACTIONS(3049), - [sym__emphasis_open_star] = ACTIONS(3049), - [sym__emphasis_open_underscore] = ACTIONS(3049), - [sym_inline_note_reference] = ACTIONS(3049), - [sym_html_element] = ACTIONS(3049), - [sym__pandoc_line_break] = ACTIONS(3049), - }, - [STATE(340)] = { - [anon_sym_COLON] = ACTIONS(3053), - [sym_entity_reference] = ACTIONS(3053), - [sym_numeric_character_reference] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_BANG_LBRACK] = ACTIONS(3053), - [anon_sym_DOLLAR] = ACTIONS(3055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [aux_sym_pandoc_str_token1] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(3053), - [aux_sym__prose_punctuation_token1] = ACTIONS(3055), - [sym__line_ending] = ACTIONS(3053), - [sym__soft_line_ending] = ACTIONS(3053), - [sym__block_close] = ACTIONS(3053), - [sym__block_quote_start] = ACTIONS(3053), - [sym_atx_h1_marker] = ACTIONS(3053), - [sym_atx_h2_marker] = ACTIONS(3053), - [sym_atx_h3_marker] = ACTIONS(3053), - [sym_atx_h4_marker] = ACTIONS(3053), - [sym_atx_h5_marker] = ACTIONS(3053), - [sym_atx_h6_marker] = ACTIONS(3053), - [sym__thematic_break] = ACTIONS(3053), - [sym__list_marker_minus] = ACTIONS(3053), - [sym__list_marker_plus] = ACTIONS(3053), - [sym__list_marker_star] = ACTIONS(3053), - [sym__list_marker_parenthesis] = ACTIONS(3053), - [sym__list_marker_dot] = ACTIONS(3053), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_example] = ACTIONS(3053), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3053), - [sym__fenced_code_block_start_backtick] = ACTIONS(3053), - [sym_minus_metadata] = ACTIONS(3053), - [sym__pipe_table_start] = ACTIONS(3053), - [sym__fenced_div_start] = ACTIONS(3053), - [sym__fenced_div_end] = ACTIONS(3053), - [sym_ref_id_specifier] = ACTIONS(3053), - [sym__code_span_start] = ACTIONS(3053), - [sym__html_comment] = ACTIONS(3053), - [sym__autolink] = ACTIONS(3053), - [sym__highlight_span_start] = ACTIONS(3053), - [sym__insert_span_start] = ACTIONS(3053), - [sym__delete_span_start] = ACTIONS(3053), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3053), - [sym__double_quote_span_open] = ACTIONS(3053), - [sym__shortcode_open_escaped] = ACTIONS(3053), - [sym__shortcode_open] = ACTIONS(3053), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3053), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3053), - [sym__cite_author_in_text] = ACTIONS(3053), - [sym__cite_suppress_author] = ACTIONS(3053), - [sym__strikeout_open] = ACTIONS(3053), - [sym__subscript_open] = ACTIONS(3053), - [sym__superscript_open] = ACTIONS(3053), - [sym__inline_note_start_token] = ACTIONS(3053), - [sym__strong_emphasis_open_star] = ACTIONS(3053), - [sym__strong_emphasis_open_underscore] = ACTIONS(3053), - [sym__emphasis_open_star] = ACTIONS(3053), - [sym__emphasis_open_underscore] = ACTIONS(3053), - [sym_inline_note_reference] = ACTIONS(3053), - [sym_html_element] = ACTIONS(3053), - [sym__pandoc_line_break] = ACTIONS(3053), - }, - [STATE(341)] = { - [anon_sym_COLON] = ACTIONS(3057), - [sym_entity_reference] = ACTIONS(3057), - [sym_numeric_character_reference] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_BANG_LBRACK] = ACTIONS(3057), - [anon_sym_DOLLAR] = ACTIONS(3059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [aux_sym_pandoc_str_token1] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3057), - [aux_sym__prose_punctuation_token1] = ACTIONS(3059), - [sym__line_ending] = ACTIONS(3057), - [sym__soft_line_ending] = ACTIONS(3057), - [sym__block_close] = ACTIONS(3057), - [sym__block_quote_start] = ACTIONS(3057), - [sym_atx_h1_marker] = ACTIONS(3057), - [sym_atx_h2_marker] = ACTIONS(3057), - [sym_atx_h3_marker] = ACTIONS(3057), - [sym_atx_h4_marker] = ACTIONS(3057), - [sym_atx_h5_marker] = ACTIONS(3057), - [sym_atx_h6_marker] = ACTIONS(3057), - [sym__thematic_break] = ACTIONS(3057), - [sym__list_marker_minus] = ACTIONS(3057), - [sym__list_marker_plus] = ACTIONS(3057), - [sym__list_marker_star] = ACTIONS(3057), - [sym__list_marker_parenthesis] = ACTIONS(3057), - [sym__list_marker_dot] = ACTIONS(3057), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_example] = ACTIONS(3057), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3057), - [sym__fenced_code_block_start_backtick] = ACTIONS(3057), - [sym_minus_metadata] = ACTIONS(3057), - [sym__pipe_table_start] = ACTIONS(3057), - [sym__fenced_div_start] = ACTIONS(3057), - [sym__fenced_div_end] = ACTIONS(3057), - [sym_ref_id_specifier] = ACTIONS(3057), - [sym__code_span_start] = ACTIONS(3057), - [sym__html_comment] = ACTIONS(3057), - [sym__autolink] = ACTIONS(3057), - [sym__highlight_span_start] = ACTIONS(3057), - [sym__insert_span_start] = ACTIONS(3057), - [sym__delete_span_start] = ACTIONS(3057), - [sym__edit_comment_span_start] = ACTIONS(3057), - [sym__single_quote_span_open] = ACTIONS(3057), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3057), - [sym__shortcode_open] = ACTIONS(3057), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3057), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3057), - [sym__cite_author_in_text] = ACTIONS(3057), - [sym__cite_suppress_author] = ACTIONS(3057), - [sym__strikeout_open] = ACTIONS(3057), - [sym__subscript_open] = ACTIONS(3057), - [sym__superscript_open] = ACTIONS(3057), - [sym__inline_note_start_token] = ACTIONS(3057), - [sym__strong_emphasis_open_star] = ACTIONS(3057), - [sym__strong_emphasis_open_underscore] = ACTIONS(3057), - [sym__emphasis_open_star] = ACTIONS(3057), - [sym__emphasis_open_underscore] = ACTIONS(3057), - [sym_inline_note_reference] = ACTIONS(3057), - [sym_html_element] = ACTIONS(3057), - [sym__pandoc_line_break] = ACTIONS(3057), - }, - [STATE(342)] = { - [anon_sym_COLON] = ACTIONS(3061), - [sym_entity_reference] = ACTIONS(3061), - [sym_numeric_character_reference] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3061), - [anon_sym_BANG_LBRACK] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3063), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [aux_sym_pandoc_str_token1] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3061), - [aux_sym__prose_punctuation_token1] = ACTIONS(3063), - [sym__line_ending] = ACTIONS(3061), - [sym__soft_line_ending] = ACTIONS(3061), - [sym__block_close] = ACTIONS(3061), - [sym__block_quote_start] = ACTIONS(3061), - [sym_atx_h1_marker] = ACTIONS(3061), - [sym_atx_h2_marker] = ACTIONS(3061), - [sym_atx_h3_marker] = ACTIONS(3061), - [sym_atx_h4_marker] = ACTIONS(3061), - [sym_atx_h5_marker] = ACTIONS(3061), - [sym_atx_h6_marker] = ACTIONS(3061), - [sym__thematic_break] = ACTIONS(3061), - [sym__list_marker_minus] = ACTIONS(3061), - [sym__list_marker_plus] = ACTIONS(3061), - [sym__list_marker_star] = ACTIONS(3061), - [sym__list_marker_parenthesis] = ACTIONS(3061), - [sym__list_marker_dot] = ACTIONS(3061), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_example] = ACTIONS(3061), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3061), - [sym__fenced_code_block_start_backtick] = ACTIONS(3061), - [sym_minus_metadata] = ACTIONS(3061), - [sym__pipe_table_start] = ACTIONS(3061), - [sym__fenced_div_start] = ACTIONS(3061), - [sym__fenced_div_end] = ACTIONS(3061), - [sym_ref_id_specifier] = ACTIONS(3061), - [sym__code_span_start] = ACTIONS(3061), - [sym__html_comment] = ACTIONS(3061), - [sym__autolink] = ACTIONS(3061), - [sym__highlight_span_start] = ACTIONS(3061), - [sym__insert_span_start] = ACTIONS(3061), - [sym__delete_span_start] = ACTIONS(3061), - [sym__edit_comment_span_start] = ACTIONS(3061), - [sym__single_quote_span_open] = ACTIONS(3061), - [sym__double_quote_span_open] = ACTIONS(3061), - [sym__shortcode_open_escaped] = ACTIONS(3061), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3061), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3061), - [sym__cite_author_in_text] = ACTIONS(3061), - [sym__cite_suppress_author] = ACTIONS(3061), - [sym__strikeout_open] = ACTIONS(3061), - [sym__subscript_open] = ACTIONS(3061), - [sym__superscript_open] = ACTIONS(3061), - [sym__inline_note_start_token] = ACTIONS(3061), - [sym__strong_emphasis_open_star] = ACTIONS(3061), - [sym__strong_emphasis_open_underscore] = ACTIONS(3061), - [sym__emphasis_open_star] = ACTIONS(3061), - [sym__emphasis_open_underscore] = ACTIONS(3061), - [sym_inline_note_reference] = ACTIONS(3061), - [sym_html_element] = ACTIONS(3061), - [sym__pandoc_line_break] = ACTIONS(3061), - }, - [STATE(343)] = { - [anon_sym_COLON] = ACTIONS(3065), - [sym_entity_reference] = ACTIONS(3065), - [sym_numeric_character_reference] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_BANG_LBRACK] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3065), - [aux_sym_pandoc_str_token1] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3065), - [aux_sym__prose_punctuation_token1] = ACTIONS(3067), - [sym__line_ending] = ACTIONS(3065), - [sym__soft_line_ending] = ACTIONS(3065), - [sym__block_close] = ACTIONS(3065), - [sym__block_quote_start] = ACTIONS(3065), - [sym_atx_h1_marker] = ACTIONS(3065), - [sym_atx_h2_marker] = ACTIONS(3065), - [sym_atx_h3_marker] = ACTIONS(3065), - [sym_atx_h4_marker] = ACTIONS(3065), - [sym_atx_h5_marker] = ACTIONS(3065), - [sym_atx_h6_marker] = ACTIONS(3065), - [sym__thematic_break] = ACTIONS(3065), - [sym__list_marker_minus] = ACTIONS(3065), - [sym__list_marker_plus] = ACTIONS(3065), - [sym__list_marker_star] = ACTIONS(3065), - [sym__list_marker_parenthesis] = ACTIONS(3065), - [sym__list_marker_dot] = ACTIONS(3065), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_example] = ACTIONS(3065), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3065), - [sym__fenced_code_block_start_backtick] = ACTIONS(3065), - [sym_minus_metadata] = ACTIONS(3065), - [sym__pipe_table_start] = ACTIONS(3065), - [sym__fenced_div_start] = ACTIONS(3065), - [sym__fenced_div_end] = ACTIONS(3065), - [sym_ref_id_specifier] = ACTIONS(3065), - [sym__code_span_start] = ACTIONS(3065), - [sym__html_comment] = ACTIONS(3065), - [sym__autolink] = ACTIONS(3065), - [sym__highlight_span_start] = ACTIONS(3065), - [sym__insert_span_start] = ACTIONS(3065), - [sym__delete_span_start] = ACTIONS(3065), - [sym__edit_comment_span_start] = ACTIONS(3065), - [sym__single_quote_span_open] = ACTIONS(3065), - [sym__double_quote_span_open] = ACTIONS(3065), - [sym__shortcode_open_escaped] = ACTIONS(3065), - [sym__shortcode_open] = ACTIONS(3065), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3065), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3065), - [sym__cite_suppress_author] = ACTIONS(3065), - [sym__strikeout_open] = ACTIONS(3065), - [sym__subscript_open] = ACTIONS(3065), - [sym__superscript_open] = ACTIONS(3065), - [sym__inline_note_start_token] = ACTIONS(3065), - [sym__strong_emphasis_open_star] = ACTIONS(3065), - [sym__strong_emphasis_open_underscore] = ACTIONS(3065), - [sym__emphasis_open_star] = ACTIONS(3065), - [sym__emphasis_open_underscore] = ACTIONS(3065), - [sym_inline_note_reference] = ACTIONS(3065), - [sym_html_element] = ACTIONS(3065), - [sym__pandoc_line_break] = ACTIONS(3065), - }, - [STATE(344)] = { - [anon_sym_COLON] = ACTIONS(3069), - [sym_entity_reference] = ACTIONS(3069), - [sym_numeric_character_reference] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3069), - [anon_sym_BANG_LBRACK] = ACTIONS(3069), - [anon_sym_DOLLAR] = ACTIONS(3071), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3069), - [aux_sym_pandoc_str_token1] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3069), - [aux_sym__prose_punctuation_token1] = ACTIONS(3071), - [sym__line_ending] = ACTIONS(3069), - [sym__soft_line_ending] = ACTIONS(3069), - [sym_block_continuation] = ACTIONS(3069), - [sym__block_quote_start] = ACTIONS(3069), - [sym_atx_h1_marker] = ACTIONS(3069), - [sym_atx_h2_marker] = ACTIONS(3069), - [sym_atx_h3_marker] = ACTIONS(3069), - [sym_atx_h4_marker] = ACTIONS(3069), - [sym_atx_h5_marker] = ACTIONS(3069), - [sym_atx_h6_marker] = ACTIONS(3069), - [sym__thematic_break] = ACTIONS(3069), - [sym__list_marker_minus] = ACTIONS(3069), - [sym__list_marker_plus] = ACTIONS(3069), - [sym__list_marker_star] = ACTIONS(3069), - [sym__list_marker_parenthesis] = ACTIONS(3069), - [sym__list_marker_dot] = ACTIONS(3069), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3069), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3069), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3069), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3069), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3069), - [sym__list_marker_example] = ACTIONS(3069), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3069), - [sym__fenced_code_block_start_backtick] = ACTIONS(3069), - [sym__blank_line_start] = ACTIONS(3069), - [sym_minus_metadata] = ACTIONS(3069), - [sym__pipe_table_start] = ACTIONS(3069), - [sym__fenced_div_start] = ACTIONS(3069), - [sym_ref_id_specifier] = ACTIONS(3069), - [sym__code_span_start] = ACTIONS(3069), - [sym__html_comment] = ACTIONS(3069), - [sym__autolink] = ACTIONS(3069), - [sym__highlight_span_start] = ACTIONS(3069), - [sym__insert_span_start] = ACTIONS(3069), - [sym__delete_span_start] = ACTIONS(3069), - [sym__edit_comment_span_start] = ACTIONS(3069), - [sym__single_quote_span_open] = ACTIONS(3069), - [sym__double_quote_span_open] = ACTIONS(3069), - [sym__shortcode_open_escaped] = ACTIONS(3069), - [sym__shortcode_open] = ACTIONS(3069), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3069), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3069), - [sym__cite_author_in_text] = ACTIONS(3069), - [sym__cite_suppress_author] = ACTIONS(3069), - [sym__strikeout_open] = ACTIONS(3069), - [sym__subscript_open] = ACTIONS(3069), - [sym__superscript_open] = ACTIONS(3069), - [sym__inline_note_start_token] = ACTIONS(3069), - [sym__strong_emphasis_open_star] = ACTIONS(3069), - [sym__strong_emphasis_open_underscore] = ACTIONS(3069), - [sym__emphasis_open_star] = ACTIONS(3069), - [sym__emphasis_open_underscore] = ACTIONS(3069), - [sym_inline_note_reference] = ACTIONS(3069), - [sym_html_element] = ACTIONS(3069), - [sym__pandoc_line_break] = ACTIONS(3069), - }, - [STATE(345)] = { - [anon_sym_COLON] = ACTIONS(3073), - [sym_entity_reference] = ACTIONS(3073), - [sym_numeric_character_reference] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_BANG_LBRACK] = ACTIONS(3073), - [anon_sym_DOLLAR] = ACTIONS(3075), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3073), - [aux_sym_pandoc_str_token1] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3073), - [aux_sym__prose_punctuation_token1] = ACTIONS(3075), - [sym__line_ending] = ACTIONS(3073), - [sym__soft_line_ending] = ACTIONS(3073), - [sym__block_close] = ACTIONS(3073), - [sym__block_quote_start] = ACTIONS(3073), - [sym_atx_h1_marker] = ACTIONS(3073), - [sym_atx_h2_marker] = ACTIONS(3073), - [sym_atx_h3_marker] = ACTIONS(3073), - [sym_atx_h4_marker] = ACTIONS(3073), - [sym_atx_h5_marker] = ACTIONS(3073), - [sym_atx_h6_marker] = ACTIONS(3073), - [sym__thematic_break] = ACTIONS(3073), - [sym__list_marker_minus] = ACTIONS(3073), - [sym__list_marker_plus] = ACTIONS(3073), - [sym__list_marker_star] = ACTIONS(3073), - [sym__list_marker_parenthesis] = ACTIONS(3073), - [sym__list_marker_dot] = ACTIONS(3073), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_example] = ACTIONS(3073), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3073), - [sym__fenced_code_block_start_backtick] = ACTIONS(3073), - [sym_minus_metadata] = ACTIONS(3073), - [sym__pipe_table_start] = ACTIONS(3073), - [sym__fenced_div_start] = ACTIONS(3073), - [sym__fenced_div_end] = ACTIONS(3073), - [sym_ref_id_specifier] = ACTIONS(3073), - [sym__code_span_start] = ACTIONS(3073), - [sym__html_comment] = ACTIONS(3073), - [sym__autolink] = ACTIONS(3073), - [sym__highlight_span_start] = ACTIONS(3073), - [sym__insert_span_start] = ACTIONS(3073), - [sym__delete_span_start] = ACTIONS(3073), - [sym__edit_comment_span_start] = ACTIONS(3073), - [sym__single_quote_span_open] = ACTIONS(3073), - [sym__double_quote_span_open] = ACTIONS(3073), - [sym__shortcode_open_escaped] = ACTIONS(3073), - [sym__shortcode_open] = ACTIONS(3073), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3073), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3073), - [sym__cite_author_in_text] = ACTIONS(3073), - [sym__cite_suppress_author] = ACTIONS(3073), - [sym__strikeout_open] = ACTIONS(3073), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3073), - [sym__inline_note_start_token] = ACTIONS(3073), - [sym__strong_emphasis_open_star] = ACTIONS(3073), - [sym__strong_emphasis_open_underscore] = ACTIONS(3073), - [sym__emphasis_open_star] = ACTIONS(3073), - [sym__emphasis_open_underscore] = ACTIONS(3073), - [sym_inline_note_reference] = ACTIONS(3073), - [sym_html_element] = ACTIONS(3073), - [sym__pandoc_line_break] = ACTIONS(3073), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, [STATE(346)] = { - [anon_sym_COLON] = ACTIONS(3077), - [sym_entity_reference] = ACTIONS(3077), - [sym_numeric_character_reference] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_BANG_LBRACK] = ACTIONS(3077), - [anon_sym_DOLLAR] = ACTIONS(3079), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [aux_sym_pandoc_str_token1] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3077), - [aux_sym__prose_punctuation_token1] = ACTIONS(3079), - [sym__line_ending] = ACTIONS(3077), - [sym__soft_line_ending] = ACTIONS(3077), - [sym_block_continuation] = ACTIONS(3077), - [sym__block_quote_start] = ACTIONS(3077), - [sym_atx_h1_marker] = ACTIONS(3077), - [sym_atx_h2_marker] = ACTIONS(3077), - [sym_atx_h3_marker] = ACTIONS(3077), - [sym_atx_h4_marker] = ACTIONS(3077), - [sym_atx_h5_marker] = ACTIONS(3077), - [sym_atx_h6_marker] = ACTIONS(3077), - [sym__thematic_break] = ACTIONS(3077), - [sym__list_marker_minus] = ACTIONS(3077), - [sym__list_marker_plus] = ACTIONS(3077), - [sym__list_marker_star] = ACTIONS(3077), - [sym__list_marker_parenthesis] = ACTIONS(3077), - [sym__list_marker_dot] = ACTIONS(3077), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3077), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3077), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3077), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3077), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3077), - [sym__list_marker_example] = ACTIONS(3077), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3077), - [sym__fenced_code_block_start_backtick] = ACTIONS(3077), - [sym__blank_line_start] = ACTIONS(3077), - [sym_minus_metadata] = ACTIONS(3077), - [sym__pipe_table_start] = ACTIONS(3077), - [sym__fenced_div_start] = ACTIONS(3077), - [sym_ref_id_specifier] = ACTIONS(3077), - [sym__code_span_start] = ACTIONS(3077), - [sym__html_comment] = ACTIONS(3077), - [sym__autolink] = ACTIONS(3077), - [sym__highlight_span_start] = ACTIONS(3077), - [sym__insert_span_start] = ACTIONS(3077), - [sym__delete_span_start] = ACTIONS(3077), - [sym__edit_comment_span_start] = ACTIONS(3077), - [sym__single_quote_span_open] = ACTIONS(3077), - [sym__double_quote_span_open] = ACTIONS(3077), - [sym__shortcode_open_escaped] = ACTIONS(3077), - [sym__shortcode_open] = ACTIONS(3077), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3077), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3077), - [sym__cite_author_in_text] = ACTIONS(3077), - [sym__cite_suppress_author] = ACTIONS(3077), - [sym__strikeout_open] = ACTIONS(3077), - [sym__subscript_open] = ACTIONS(3077), - [sym__superscript_open] = ACTIONS(3077), - [sym__inline_note_start_token] = ACTIONS(3077), - [sym__strong_emphasis_open_star] = ACTIONS(3077), - [sym__strong_emphasis_open_underscore] = ACTIONS(3077), - [sym__emphasis_open_star] = ACTIONS(3077), - [sym__emphasis_open_underscore] = ACTIONS(3077), - [sym_inline_note_reference] = ACTIONS(3077), - [sym_html_element] = ACTIONS(3077), - [sym__pandoc_line_break] = ACTIONS(3077), + [sym__inlines] = STATE(3984), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(711), + [sym__inline_whitespace] = STATE(711), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3019), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3021), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, [STATE(347)] = { - [anon_sym_COLON] = ACTIONS(3081), - [sym_entity_reference] = ACTIONS(3081), - [sym_numeric_character_reference] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_BANG_LBRACK] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [aux_sym_pandoc_str_token1] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3081), - [aux_sym__prose_punctuation_token1] = ACTIONS(3083), - [sym__line_ending] = ACTIONS(3081), - [sym__soft_line_ending] = ACTIONS(3081), - [sym__block_close] = ACTIONS(3081), - [sym__block_quote_start] = ACTIONS(3081), - [sym_atx_h1_marker] = ACTIONS(3081), - [sym_atx_h2_marker] = ACTIONS(3081), - [sym_atx_h3_marker] = ACTIONS(3081), - [sym_atx_h4_marker] = ACTIONS(3081), - [sym_atx_h5_marker] = ACTIONS(3081), - [sym_atx_h6_marker] = ACTIONS(3081), - [sym__thematic_break] = ACTIONS(3081), - [sym__list_marker_minus] = ACTIONS(3081), - [sym__list_marker_plus] = ACTIONS(3081), - [sym__list_marker_star] = ACTIONS(3081), - [sym__list_marker_parenthesis] = ACTIONS(3081), - [sym__list_marker_dot] = ACTIONS(3081), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_example] = ACTIONS(3081), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3081), - [sym__fenced_code_block_start_backtick] = ACTIONS(3081), - [sym_minus_metadata] = ACTIONS(3081), - [sym__pipe_table_start] = ACTIONS(3081), - [sym__fenced_div_start] = ACTIONS(3081), - [sym__fenced_div_end] = ACTIONS(3081), - [sym_ref_id_specifier] = ACTIONS(3081), - [sym__code_span_start] = ACTIONS(3081), - [sym__html_comment] = ACTIONS(3081), - [sym__autolink] = ACTIONS(3081), - [sym__highlight_span_start] = ACTIONS(3081), - [sym__insert_span_start] = ACTIONS(3081), - [sym__delete_span_start] = ACTIONS(3081), - [sym__edit_comment_span_start] = ACTIONS(3081), - [sym__single_quote_span_open] = ACTIONS(3081), - [sym__double_quote_span_open] = ACTIONS(3081), - [sym__shortcode_open_escaped] = ACTIONS(3081), - [sym__shortcode_open] = ACTIONS(3081), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3081), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3081), - [sym__cite_author_in_text] = ACTIONS(3081), - [sym__cite_suppress_author] = ACTIONS(3081), - [sym__strikeout_open] = ACTIONS(3081), - [sym__subscript_open] = ACTIONS(3081), - [sym__superscript_open] = ACTIONS(3081), - [sym__inline_note_start_token] = ACTIONS(3081), - [sym__strong_emphasis_open_star] = ACTIONS(3081), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3081), - [sym__emphasis_open_underscore] = ACTIONS(3081), - [sym_inline_note_reference] = ACTIONS(3081), - [sym_html_element] = ACTIONS(3081), - [sym__pandoc_line_break] = ACTIONS(3081), + [sym__inlines] = STATE(4005), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(712), + [sym__inline_whitespace] = STATE(712), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3025), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, [STATE(348)] = { - [anon_sym_COLON] = ACTIONS(3085), - [sym_entity_reference] = ACTIONS(3085), - [sym_numeric_character_reference] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_BANG_LBRACK] = ACTIONS(3085), - [anon_sym_DOLLAR] = ACTIONS(3087), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [aux_sym_pandoc_str_token1] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3085), - [aux_sym__prose_punctuation_token1] = ACTIONS(3087), - [sym__line_ending] = ACTIONS(3085), - [sym__soft_line_ending] = ACTIONS(3085), - [sym_block_continuation] = ACTIONS(3085), - [sym__block_quote_start] = ACTIONS(3085), - [sym_atx_h1_marker] = ACTIONS(3085), - [sym_atx_h2_marker] = ACTIONS(3085), - [sym_atx_h3_marker] = ACTIONS(3085), - [sym_atx_h4_marker] = ACTIONS(3085), - [sym_atx_h5_marker] = ACTIONS(3085), - [sym_atx_h6_marker] = ACTIONS(3085), - [sym__thematic_break] = ACTIONS(3085), - [sym__list_marker_minus] = ACTIONS(3085), - [sym__list_marker_plus] = ACTIONS(3085), - [sym__list_marker_star] = ACTIONS(3085), - [sym__list_marker_parenthesis] = ACTIONS(3085), - [sym__list_marker_dot] = ACTIONS(3085), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3085), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3085), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3085), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3085), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3085), - [sym__list_marker_example] = ACTIONS(3085), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3085), - [sym__fenced_code_block_start_backtick] = ACTIONS(3085), - [sym__blank_line_start] = ACTIONS(3085), - [sym_minus_metadata] = ACTIONS(3085), - [sym__pipe_table_start] = ACTIONS(3085), - [sym__fenced_div_start] = ACTIONS(3085), - [sym_ref_id_specifier] = ACTIONS(3085), - [sym__code_span_start] = ACTIONS(3085), - [sym__html_comment] = ACTIONS(3085), - [sym__autolink] = ACTIONS(3085), - [sym__highlight_span_start] = ACTIONS(3085), - [sym__insert_span_start] = ACTIONS(3085), - [sym__delete_span_start] = ACTIONS(3085), - [sym__edit_comment_span_start] = ACTIONS(3085), - [sym__single_quote_span_open] = ACTIONS(3085), - [sym__double_quote_span_open] = ACTIONS(3085), - [sym__shortcode_open_escaped] = ACTIONS(3085), - [sym__shortcode_open] = ACTIONS(3085), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3085), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3085), - [sym__cite_author_in_text] = ACTIONS(3085), - [sym__cite_suppress_author] = ACTIONS(3085), - [sym__strikeout_open] = ACTIONS(3085), - [sym__subscript_open] = ACTIONS(3085), - [sym__superscript_open] = ACTIONS(3085), - [sym__inline_note_start_token] = ACTIONS(3085), - [sym__strong_emphasis_open_star] = ACTIONS(3085), - [sym__strong_emphasis_open_underscore] = ACTIONS(3085), - [sym__emphasis_open_star] = ACTIONS(3085), - [sym__emphasis_open_underscore] = ACTIONS(3085), - [sym_inline_note_reference] = ACTIONS(3085), - [sym_html_element] = ACTIONS(3085), - [sym__pandoc_line_break] = ACTIONS(3085), + [ts_builtin_sym_end] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(2719), + [sym_entity_reference] = ACTIONS(2719), + [sym_numeric_character_reference] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_BANG_LBRACK] = ACTIONS(2719), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [aux_sym_pandoc_str_token1] = ACTIONS(2721), + [anon_sym_PIPE] = ACTIONS(2719), + [sym__whitespace] = ACTIONS(2719), + [sym__line_ending] = ACTIONS(2719), + [sym__soft_line_ending] = ACTIONS(2719), + [sym__block_quote_start] = ACTIONS(2719), + [sym_atx_h1_marker] = ACTIONS(2719), + [sym_atx_h2_marker] = ACTIONS(2719), + [sym_atx_h3_marker] = ACTIONS(2719), + [sym_atx_h4_marker] = ACTIONS(2719), + [sym_atx_h5_marker] = ACTIONS(2719), + [sym_atx_h6_marker] = ACTIONS(2719), + [sym__thematic_break] = ACTIONS(2719), + [sym__list_marker_minus] = ACTIONS(2719), + [sym__list_marker_plus] = ACTIONS(2719), + [sym__list_marker_star] = ACTIONS(2719), + [sym__list_marker_parenthesis] = ACTIONS(2719), + [sym__list_marker_dot] = ACTIONS(2719), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_example] = ACTIONS(2719), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2719), + [sym__fenced_code_block_start_backtick] = ACTIONS(2719), + [sym_minus_metadata] = ACTIONS(2719), + [sym__pipe_table_start] = ACTIONS(2719), + [sym__fenced_div_start] = ACTIONS(2719), + [sym_ref_id_specifier] = ACTIONS(2719), + [sym__code_span_start] = ACTIONS(2719), + [sym__html_comment] = ACTIONS(2719), + [sym__autolink] = ACTIONS(2719), + [sym__highlight_span_start] = ACTIONS(2719), + [sym__insert_span_start] = ACTIONS(2719), + [sym__delete_span_start] = ACTIONS(2719), + [sym__edit_comment_span_start] = ACTIONS(2719), + [sym__single_quote_span_open] = ACTIONS(2719), + [sym__double_quote_span_open] = ACTIONS(2719), + [sym__shortcode_open_escaped] = ACTIONS(2719), + [sym__shortcode_open] = ACTIONS(2719), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2719), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2719), + [sym__cite_author_in_text] = ACTIONS(2719), + [sym__cite_suppress_author] = ACTIONS(2719), + [sym__strikeout_open] = ACTIONS(2719), + [sym__subscript_open] = ACTIONS(2719), + [sym__superscript_open] = ACTIONS(2719), + [sym__inline_note_start_token] = ACTIONS(2719), + [sym__strong_emphasis_open_star] = ACTIONS(2719), + [sym__strong_emphasis_open_underscore] = ACTIONS(2719), + [sym__emphasis_open_star] = ACTIONS(2719), + [sym__emphasis_open_underscore] = ACTIONS(2719), + [sym_inline_note_reference] = ACTIONS(2719), + [sym_html_element] = ACTIONS(2719), + [sym__pandoc_line_break] = ACTIONS(2719), }, [STATE(349)] = { - [anon_sym_COLON] = ACTIONS(3089), - [sym_entity_reference] = ACTIONS(3089), - [sym_numeric_character_reference] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_BANG_LBRACK] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [aux_sym_pandoc_str_token1] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3089), - [aux_sym__prose_punctuation_token1] = ACTIONS(3091), - [sym__line_ending] = ACTIONS(3089), - [sym__soft_line_ending] = ACTIONS(3089), - [sym_block_continuation] = ACTIONS(3089), - [sym__block_quote_start] = ACTIONS(3089), - [sym_atx_h1_marker] = ACTIONS(3089), - [sym_atx_h2_marker] = ACTIONS(3089), - [sym_atx_h3_marker] = ACTIONS(3089), - [sym_atx_h4_marker] = ACTIONS(3089), - [sym_atx_h5_marker] = ACTIONS(3089), - [sym_atx_h6_marker] = ACTIONS(3089), - [sym__thematic_break] = ACTIONS(3089), - [sym__list_marker_minus] = ACTIONS(3089), - [sym__list_marker_plus] = ACTIONS(3089), - [sym__list_marker_star] = ACTIONS(3089), - [sym__list_marker_parenthesis] = ACTIONS(3089), - [sym__list_marker_dot] = ACTIONS(3089), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3089), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3089), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3089), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3089), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3089), - [sym__list_marker_example] = ACTIONS(3089), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3089), - [sym__fenced_code_block_start_backtick] = ACTIONS(3089), - [sym__blank_line_start] = ACTIONS(3089), - [sym_minus_metadata] = ACTIONS(3089), - [sym__pipe_table_start] = ACTIONS(3089), - [sym__fenced_div_start] = ACTIONS(3089), - [sym_ref_id_specifier] = ACTIONS(3089), - [sym__code_span_start] = ACTIONS(3089), - [sym__html_comment] = ACTIONS(3089), - [sym__autolink] = ACTIONS(3089), - [sym__highlight_span_start] = ACTIONS(3089), - [sym__insert_span_start] = ACTIONS(3089), - [sym__delete_span_start] = ACTIONS(3089), - [sym__edit_comment_span_start] = ACTIONS(3089), - [sym__single_quote_span_open] = ACTIONS(3089), - [sym__double_quote_span_open] = ACTIONS(3089), - [sym__shortcode_open_escaped] = ACTIONS(3089), - [sym__shortcode_open] = ACTIONS(3089), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3089), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3089), - [sym__cite_author_in_text] = ACTIONS(3089), - [sym__cite_suppress_author] = ACTIONS(3089), - [sym__strikeout_open] = ACTIONS(3089), - [sym__subscript_open] = ACTIONS(3089), - [sym__superscript_open] = ACTIONS(3089), - [sym__inline_note_start_token] = ACTIONS(3089), - [sym__strong_emphasis_open_star] = ACTIONS(3089), - [sym__strong_emphasis_open_underscore] = ACTIONS(3089), - [sym__emphasis_open_star] = ACTIONS(3089), - [sym__emphasis_open_underscore] = ACTIONS(3089), - [sym_inline_note_reference] = ACTIONS(3089), - [sym_html_element] = ACTIONS(3089), - [sym__pandoc_line_break] = ACTIONS(3089), + [sym__inlines] = STATE(3595), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(713), + [sym__inline_whitespace] = STATE(713), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3029), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, [STATE(350)] = { - [sym__inlines] = STATE(2608), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(754), - [sym__inline_whitespace] = STATE(754), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3111), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), + [ts_builtin_sym_end] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(2463), + [sym_entity_reference] = ACTIONS(2463), + [sym_numeric_character_reference] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_BANG_LBRACK] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(2465), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [aux_sym_pandoc_str_token1] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2463), + [sym__whitespace] = ACTIONS(2463), + [sym__line_ending] = ACTIONS(2463), + [sym__soft_line_ending] = ACTIONS(2463), + [sym__block_quote_start] = ACTIONS(2463), + [sym_atx_h1_marker] = ACTIONS(2463), + [sym_atx_h2_marker] = ACTIONS(2463), + [sym_atx_h3_marker] = ACTIONS(2463), + [sym_atx_h4_marker] = ACTIONS(2463), + [sym_atx_h5_marker] = ACTIONS(2463), + [sym_atx_h6_marker] = ACTIONS(2463), + [sym__thematic_break] = ACTIONS(2463), + [sym__list_marker_minus] = ACTIONS(2463), + [sym__list_marker_plus] = ACTIONS(2463), + [sym__list_marker_star] = ACTIONS(2463), + [sym__list_marker_parenthesis] = ACTIONS(2463), + [sym__list_marker_dot] = ACTIONS(2463), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_example] = ACTIONS(2463), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2463), + [sym__fenced_code_block_start_backtick] = ACTIONS(2463), + [sym_minus_metadata] = ACTIONS(2463), + [sym__pipe_table_start] = ACTIONS(2463), + [sym__fenced_div_start] = ACTIONS(2463), + [sym_ref_id_specifier] = ACTIONS(2463), + [sym__code_span_start] = ACTIONS(2463), + [sym__html_comment] = ACTIONS(2463), + [sym__autolink] = ACTIONS(2463), + [sym__highlight_span_start] = ACTIONS(2463), + [sym__insert_span_start] = ACTIONS(2463), + [sym__delete_span_start] = ACTIONS(2463), + [sym__edit_comment_span_start] = ACTIONS(2463), + [sym__single_quote_span_open] = ACTIONS(2463), + [sym__double_quote_span_open] = ACTIONS(2463), + [sym__shortcode_open_escaped] = ACTIONS(2463), + [sym__shortcode_open] = ACTIONS(2463), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2463), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2463), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2463), + [sym__strikeout_open] = ACTIONS(2463), + [sym__subscript_open] = ACTIONS(2463), + [sym__superscript_open] = ACTIONS(2463), + [sym__inline_note_start_token] = ACTIONS(2463), + [sym__strong_emphasis_open_star] = ACTIONS(2463), + [sym__strong_emphasis_open_underscore] = ACTIONS(2463), + [sym__emphasis_open_star] = ACTIONS(2463), + [sym__emphasis_open_underscore] = ACTIONS(2463), + [sym_inline_note_reference] = ACTIONS(2463), + [sym_html_element] = ACTIONS(2463), + [sym__pandoc_line_break] = ACTIONS(2463), }, [STATE(351)] = { - [anon_sym_COLON] = ACTIONS(3155), - [sym_entity_reference] = ACTIONS(3155), - [sym_numeric_character_reference] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_BANG_LBRACK] = ACTIONS(3155), - [anon_sym_DOLLAR] = ACTIONS(3157), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [aux_sym_pandoc_str_token1] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3155), - [aux_sym__prose_punctuation_token1] = ACTIONS(3157), - [sym__line_ending] = ACTIONS(3155), - [sym__soft_line_ending] = ACTIONS(3155), - [sym__block_close] = ACTIONS(3155), - [sym__block_quote_start] = ACTIONS(3155), - [sym_atx_h1_marker] = ACTIONS(3155), - [sym_atx_h2_marker] = ACTIONS(3155), - [sym_atx_h3_marker] = ACTIONS(3155), - [sym_atx_h4_marker] = ACTIONS(3155), - [sym_atx_h5_marker] = ACTIONS(3155), - [sym_atx_h6_marker] = ACTIONS(3155), - [sym__thematic_break] = ACTIONS(3155), - [sym__list_marker_minus] = ACTIONS(3155), - [sym__list_marker_plus] = ACTIONS(3155), - [sym__list_marker_star] = ACTIONS(3155), - [sym__list_marker_parenthesis] = ACTIONS(3155), - [sym__list_marker_dot] = ACTIONS(3155), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_example] = ACTIONS(3155), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3155), - [sym__fenced_code_block_start_backtick] = ACTIONS(3155), - [sym_minus_metadata] = ACTIONS(3155), - [sym__pipe_table_start] = ACTIONS(3155), - [sym__fenced_div_start] = ACTIONS(3155), - [sym__fenced_div_end] = ACTIONS(3155), - [sym_ref_id_specifier] = ACTIONS(3155), - [sym__code_span_start] = ACTIONS(3155), - [sym__html_comment] = ACTIONS(3155), - [sym__autolink] = ACTIONS(3155), - [sym__highlight_span_start] = ACTIONS(3155), - [sym__insert_span_start] = ACTIONS(3155), - [sym__delete_span_start] = ACTIONS(3155), - [sym__edit_comment_span_start] = ACTIONS(3155), - [sym__single_quote_span_open] = ACTIONS(3155), - [sym__double_quote_span_open] = ACTIONS(3155), - [sym__shortcode_open_escaped] = ACTIONS(3155), - [sym__shortcode_open] = ACTIONS(3155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3155), - [sym__cite_author_in_text] = ACTIONS(3155), - [sym__cite_suppress_author] = ACTIONS(3155), - [sym__strikeout_open] = ACTIONS(3155), - [sym__subscript_open] = ACTIONS(3155), - [sym__superscript_open] = ACTIONS(3155), - [sym__inline_note_start_token] = ACTIONS(3155), - [sym__strong_emphasis_open_star] = ACTIONS(3155), - [sym__strong_emphasis_open_underscore] = ACTIONS(3155), - [sym__emphasis_open_star] = ACTIONS(3155), - [sym__emphasis_open_underscore] = ACTIONS(3155), - [sym_inline_note_reference] = ACTIONS(3155), - [sym_html_element] = ACTIONS(3155), - [sym__pandoc_line_break] = ACTIONS(3155), - }, - [STATE(352)] = { - [ts_builtin_sym_end] = ACTIONS(2663), - [anon_sym_COLON] = ACTIONS(2663), - [sym_entity_reference] = ACTIONS(2663), - [sym_numeric_character_reference] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_BANG_LBRACK] = ACTIONS(2663), - [anon_sym_DOLLAR] = ACTIONS(2665), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [aux_sym_pandoc_str_token1] = ACTIONS(2665), - [anon_sym_PIPE] = ACTIONS(2663), - [aux_sym__prose_punctuation_token1] = ACTIONS(2665), - [sym__line_ending] = ACTIONS(2663), - [sym__soft_line_ending] = ACTIONS(2663), - [sym_block_continuation] = ACTIONS(3159), - [sym__block_quote_start] = ACTIONS(2663), - [sym_atx_h1_marker] = ACTIONS(2663), - [sym_atx_h2_marker] = ACTIONS(2663), - [sym_atx_h3_marker] = ACTIONS(2663), - [sym_atx_h4_marker] = ACTIONS(2663), - [sym_atx_h5_marker] = ACTIONS(2663), - [sym_atx_h6_marker] = ACTIONS(2663), - [sym__thematic_break] = ACTIONS(2663), - [sym__list_marker_minus] = ACTIONS(2663), - [sym__list_marker_plus] = ACTIONS(2663), - [sym__list_marker_star] = ACTIONS(2663), - [sym__list_marker_parenthesis] = ACTIONS(2663), - [sym__list_marker_dot] = ACTIONS(2663), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_example] = ACTIONS(2663), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2663), - [sym__fenced_code_block_start_backtick] = ACTIONS(2663), - [sym_minus_metadata] = ACTIONS(2663), - [sym__pipe_table_start] = ACTIONS(2663), - [sym__fenced_div_start] = ACTIONS(2663), - [sym_ref_id_specifier] = ACTIONS(2663), - [sym__code_span_start] = ACTIONS(2663), - [sym__html_comment] = ACTIONS(2663), - [sym__autolink] = ACTIONS(2663), - [sym__highlight_span_start] = ACTIONS(2663), - [sym__insert_span_start] = ACTIONS(2663), - [sym__delete_span_start] = ACTIONS(2663), - [sym__edit_comment_span_start] = ACTIONS(2663), - [sym__single_quote_span_open] = ACTIONS(2663), - [sym__double_quote_span_open] = ACTIONS(2663), - [sym__shortcode_open_escaped] = ACTIONS(2663), - [sym__shortcode_open] = ACTIONS(2663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2663), - [sym__cite_author_in_text] = ACTIONS(2663), - [sym__cite_suppress_author] = ACTIONS(2663), - [sym__strikeout_open] = ACTIONS(2663), - [sym__subscript_open] = ACTIONS(2663), - [sym__superscript_open] = ACTIONS(2663), - [sym__inline_note_start_token] = ACTIONS(2663), - [sym__strong_emphasis_open_star] = ACTIONS(2663), - [sym__strong_emphasis_open_underscore] = ACTIONS(2663), - [sym__emphasis_open_star] = ACTIONS(2663), - [sym__emphasis_open_underscore] = ACTIONS(2663), - [sym_inline_note_reference] = ACTIONS(2663), - [sym_html_element] = ACTIONS(2663), - [sym__pandoc_line_break] = ACTIONS(2663), - }, - [STATE(353)] = { - [ts_builtin_sym_end] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2669), - [sym_entity_reference] = ACTIONS(2669), - [sym_numeric_character_reference] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_BANG_LBRACK] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [aux_sym_pandoc_str_token1] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2669), - [aux_sym__prose_punctuation_token1] = ACTIONS(2671), - [sym__line_ending] = ACTIONS(2669), - [sym__soft_line_ending] = ACTIONS(2669), - [sym_block_continuation] = ACTIONS(3161), - [sym__block_quote_start] = ACTIONS(2669), - [sym_atx_h1_marker] = ACTIONS(2669), - [sym_atx_h2_marker] = ACTIONS(2669), - [sym_atx_h3_marker] = ACTIONS(2669), - [sym_atx_h4_marker] = ACTIONS(2669), - [sym_atx_h5_marker] = ACTIONS(2669), - [sym_atx_h6_marker] = ACTIONS(2669), - [sym__thematic_break] = ACTIONS(2669), - [sym__list_marker_minus] = ACTIONS(2669), - [sym__list_marker_plus] = ACTIONS(2669), - [sym__list_marker_star] = ACTIONS(2669), - [sym__list_marker_parenthesis] = ACTIONS(2669), - [sym__list_marker_dot] = ACTIONS(2669), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_example] = ACTIONS(2669), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2669), - [sym__fenced_code_block_start_backtick] = ACTIONS(2669), - [sym_minus_metadata] = ACTIONS(2669), - [sym__pipe_table_start] = ACTIONS(2669), - [sym__fenced_div_start] = ACTIONS(2669), - [sym_ref_id_specifier] = ACTIONS(2669), - [sym__code_span_start] = ACTIONS(2669), - [sym__html_comment] = ACTIONS(2669), - [sym__autolink] = ACTIONS(2669), - [sym__highlight_span_start] = ACTIONS(2669), - [sym__insert_span_start] = ACTIONS(2669), - [sym__delete_span_start] = ACTIONS(2669), - [sym__edit_comment_span_start] = ACTIONS(2669), - [sym__single_quote_span_open] = ACTIONS(2669), - [sym__double_quote_span_open] = ACTIONS(2669), - [sym__shortcode_open_escaped] = ACTIONS(2669), - [sym__shortcode_open] = ACTIONS(2669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2669), - [sym__cite_author_in_text] = ACTIONS(2669), - [sym__cite_suppress_author] = ACTIONS(2669), - [sym__strikeout_open] = ACTIONS(2669), - [sym__subscript_open] = ACTIONS(2669), - [sym__superscript_open] = ACTIONS(2669), - [sym__inline_note_start_token] = ACTIONS(2669), - [sym__strong_emphasis_open_star] = ACTIONS(2669), - [sym__strong_emphasis_open_underscore] = ACTIONS(2669), - [sym__emphasis_open_star] = ACTIONS(2669), - [sym__emphasis_open_underscore] = ACTIONS(2669), - [sym_inline_note_reference] = ACTIONS(2669), - [sym_html_element] = ACTIONS(2669), - [sym__pandoc_line_break] = ACTIONS(2669), - }, - [STATE(354)] = { - [ts_builtin_sym_end] = ACTIONS(2675), - [anon_sym_COLON] = ACTIONS(2675), - [sym_entity_reference] = ACTIONS(2675), - [sym_numeric_character_reference] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_BANG_LBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [aux_sym_pandoc_str_token1] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2675), - [aux_sym__prose_punctuation_token1] = ACTIONS(2677), - [sym__line_ending] = ACTIONS(2675), - [sym__soft_line_ending] = ACTIONS(2675), - [sym_block_continuation] = ACTIONS(3163), - [sym__block_quote_start] = ACTIONS(2675), - [sym_atx_h1_marker] = ACTIONS(2675), - [sym_atx_h2_marker] = ACTIONS(2675), - [sym_atx_h3_marker] = ACTIONS(2675), - [sym_atx_h4_marker] = ACTIONS(2675), - [sym_atx_h5_marker] = ACTIONS(2675), - [sym_atx_h6_marker] = ACTIONS(2675), - [sym__thematic_break] = ACTIONS(2675), - [sym__list_marker_minus] = ACTIONS(2675), - [sym__list_marker_plus] = ACTIONS(2675), - [sym__list_marker_star] = ACTIONS(2675), - [sym__list_marker_parenthesis] = ACTIONS(2675), - [sym__list_marker_dot] = ACTIONS(2675), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_example] = ACTIONS(2675), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2675), - [sym__fenced_code_block_start_backtick] = ACTIONS(2675), - [sym_minus_metadata] = ACTIONS(2675), - [sym__pipe_table_start] = ACTIONS(2675), - [sym__fenced_div_start] = ACTIONS(2675), - [sym_ref_id_specifier] = ACTIONS(2675), - [sym__code_span_start] = ACTIONS(2675), - [sym__html_comment] = ACTIONS(2675), - [sym__autolink] = ACTIONS(2675), - [sym__highlight_span_start] = ACTIONS(2675), - [sym__insert_span_start] = ACTIONS(2675), - [sym__delete_span_start] = ACTIONS(2675), - [sym__edit_comment_span_start] = ACTIONS(2675), - [sym__single_quote_span_open] = ACTIONS(2675), - [sym__double_quote_span_open] = ACTIONS(2675), - [sym__shortcode_open_escaped] = ACTIONS(2675), - [sym__shortcode_open] = ACTIONS(2675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2675), - [sym__cite_author_in_text] = ACTIONS(2675), - [sym__cite_suppress_author] = ACTIONS(2675), - [sym__strikeout_open] = ACTIONS(2675), - [sym__subscript_open] = ACTIONS(2675), - [sym__superscript_open] = ACTIONS(2675), - [sym__inline_note_start_token] = ACTIONS(2675), - [sym__strong_emphasis_open_star] = ACTIONS(2675), - [sym__strong_emphasis_open_underscore] = ACTIONS(2675), - [sym__emphasis_open_star] = ACTIONS(2675), - [sym__emphasis_open_underscore] = ACTIONS(2675), - [sym_inline_note_reference] = ACTIONS(2675), - [sym_html_element] = ACTIONS(2675), - [sym__pandoc_line_break] = ACTIONS(2675), - }, - [STATE(355)] = { - [ts_builtin_sym_end] = ACTIONS(2681), - [anon_sym_COLON] = ACTIONS(2681), - [sym_entity_reference] = ACTIONS(2681), - [sym_numeric_character_reference] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_BANG_LBRACK] = ACTIONS(2681), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [aux_sym_pandoc_str_token1] = ACTIONS(2683), - [anon_sym_PIPE] = ACTIONS(2681), - [aux_sym__prose_punctuation_token1] = ACTIONS(2683), - [sym__line_ending] = ACTIONS(2681), - [sym__soft_line_ending] = ACTIONS(2681), - [sym_block_continuation] = ACTIONS(3165), - [sym__block_quote_start] = ACTIONS(2681), - [sym_atx_h1_marker] = ACTIONS(2681), - [sym_atx_h2_marker] = ACTIONS(2681), - [sym_atx_h3_marker] = ACTIONS(2681), - [sym_atx_h4_marker] = ACTIONS(2681), - [sym_atx_h5_marker] = ACTIONS(2681), - [sym_atx_h6_marker] = ACTIONS(2681), - [sym__thematic_break] = ACTIONS(2681), - [sym__list_marker_minus] = ACTIONS(2681), - [sym__list_marker_plus] = ACTIONS(2681), - [sym__list_marker_star] = ACTIONS(2681), - [sym__list_marker_parenthesis] = ACTIONS(2681), - [sym__list_marker_dot] = ACTIONS(2681), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_example] = ACTIONS(2681), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2681), - [sym__fenced_code_block_start_backtick] = ACTIONS(2681), - [sym_minus_metadata] = ACTIONS(2681), - [sym__pipe_table_start] = ACTIONS(2681), - [sym__fenced_div_start] = ACTIONS(2681), - [sym_ref_id_specifier] = ACTIONS(2681), - [sym__code_span_start] = ACTIONS(2681), - [sym__html_comment] = ACTIONS(2681), - [sym__autolink] = ACTIONS(2681), - [sym__highlight_span_start] = ACTIONS(2681), - [sym__insert_span_start] = ACTIONS(2681), - [sym__delete_span_start] = ACTIONS(2681), - [sym__edit_comment_span_start] = ACTIONS(2681), - [sym__single_quote_span_open] = ACTIONS(2681), - [sym__double_quote_span_open] = ACTIONS(2681), - [sym__shortcode_open_escaped] = ACTIONS(2681), - [sym__shortcode_open] = ACTIONS(2681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2681), - [sym__cite_author_in_text] = ACTIONS(2681), - [sym__cite_suppress_author] = ACTIONS(2681), - [sym__strikeout_open] = ACTIONS(2681), - [sym__subscript_open] = ACTIONS(2681), - [sym__superscript_open] = ACTIONS(2681), - [sym__inline_note_start_token] = ACTIONS(2681), - [sym__strong_emphasis_open_star] = ACTIONS(2681), - [sym__strong_emphasis_open_underscore] = ACTIONS(2681), - [sym__emphasis_open_star] = ACTIONS(2681), - [sym__emphasis_open_underscore] = ACTIONS(2681), - [sym_inline_note_reference] = ACTIONS(2681), - [sym_html_element] = ACTIONS(2681), - [sym__pandoc_line_break] = ACTIONS(2681), - }, - [STATE(356)] = { - [ts_builtin_sym_end] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [sym_entity_reference] = ACTIONS(2687), - [sym_numeric_character_reference] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_BANG_LBRACK] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [aux_sym_pandoc_str_token1] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2687), - [aux_sym__prose_punctuation_token1] = ACTIONS(2689), - [sym__line_ending] = ACTIONS(2687), - [sym__soft_line_ending] = ACTIONS(2687), - [sym_block_continuation] = ACTIONS(3167), - [sym__block_quote_start] = ACTIONS(2687), - [sym_atx_h1_marker] = ACTIONS(2687), - [sym_atx_h2_marker] = ACTIONS(2687), - [sym_atx_h3_marker] = ACTIONS(2687), - [sym_atx_h4_marker] = ACTIONS(2687), - [sym_atx_h5_marker] = ACTIONS(2687), - [sym_atx_h6_marker] = ACTIONS(2687), - [sym__thematic_break] = ACTIONS(2687), - [sym__list_marker_minus] = ACTIONS(2687), - [sym__list_marker_plus] = ACTIONS(2687), - [sym__list_marker_star] = ACTIONS(2687), - [sym__list_marker_parenthesis] = ACTIONS(2687), - [sym__list_marker_dot] = ACTIONS(2687), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_example] = ACTIONS(2687), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2687), - [sym__fenced_code_block_start_backtick] = ACTIONS(2687), - [sym_minus_metadata] = ACTIONS(2687), - [sym__pipe_table_start] = ACTIONS(2687), - [sym__fenced_div_start] = ACTIONS(2687), - [sym_ref_id_specifier] = ACTIONS(2687), - [sym__code_span_start] = ACTIONS(2687), - [sym__html_comment] = ACTIONS(2687), - [sym__autolink] = ACTIONS(2687), - [sym__highlight_span_start] = ACTIONS(2687), - [sym__insert_span_start] = ACTIONS(2687), - [sym__delete_span_start] = ACTIONS(2687), - [sym__edit_comment_span_start] = ACTIONS(2687), - [sym__single_quote_span_open] = ACTIONS(2687), - [sym__double_quote_span_open] = ACTIONS(2687), - [sym__shortcode_open_escaped] = ACTIONS(2687), - [sym__shortcode_open] = ACTIONS(2687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2687), - [sym__cite_author_in_text] = ACTIONS(2687), - [sym__cite_suppress_author] = ACTIONS(2687), - [sym__strikeout_open] = ACTIONS(2687), - [sym__subscript_open] = ACTIONS(2687), - [sym__superscript_open] = ACTIONS(2687), - [sym__inline_note_start_token] = ACTIONS(2687), - [sym__strong_emphasis_open_star] = ACTIONS(2687), - [sym__strong_emphasis_open_underscore] = ACTIONS(2687), - [sym__emphasis_open_star] = ACTIONS(2687), - [sym__emphasis_open_underscore] = ACTIONS(2687), - [sym_inline_note_reference] = ACTIONS(2687), - [sym_html_element] = ACTIONS(2687), - [sym__pandoc_line_break] = ACTIONS(2687), - }, - [STATE(357)] = { - [anon_sym_COLON] = ACTIONS(3169), - [sym_entity_reference] = ACTIONS(3169), - [sym_numeric_character_reference] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_BANG_LBRACK] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [aux_sym_pandoc_str_token1] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3169), - [aux_sym__prose_punctuation_token1] = ACTIONS(3171), - [sym__line_ending] = ACTIONS(3169), - [sym__soft_line_ending] = ACTIONS(3169), - [sym__block_close] = ACTIONS(3169), - [sym__block_quote_start] = ACTIONS(3169), - [sym_atx_h1_marker] = ACTIONS(3169), - [sym_atx_h2_marker] = ACTIONS(3169), - [sym_atx_h3_marker] = ACTIONS(3169), - [sym_atx_h4_marker] = ACTIONS(3169), - [sym_atx_h5_marker] = ACTIONS(3169), - [sym_atx_h6_marker] = ACTIONS(3169), - [sym__thematic_break] = ACTIONS(3169), - [sym__list_marker_minus] = ACTIONS(3169), - [sym__list_marker_plus] = ACTIONS(3169), - [sym__list_marker_star] = ACTIONS(3169), - [sym__list_marker_parenthesis] = ACTIONS(3169), - [sym__list_marker_dot] = ACTIONS(3169), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3169), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3169), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3169), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3169), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3169), - [sym__list_marker_example] = ACTIONS(3169), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3169), - [sym__fenced_code_block_start_backtick] = ACTIONS(3169), - [sym_minus_metadata] = ACTIONS(3169), - [sym__pipe_table_start] = ACTIONS(3169), - [sym__fenced_div_start] = ACTIONS(3169), - [sym__fenced_div_end] = ACTIONS(3169), - [sym_ref_id_specifier] = ACTIONS(3169), - [sym__code_span_start] = ACTIONS(3169), - [sym__html_comment] = ACTIONS(3169), - [sym__autolink] = ACTIONS(3169), - [sym__highlight_span_start] = ACTIONS(3169), - [sym__insert_span_start] = ACTIONS(3169), - [sym__delete_span_start] = ACTIONS(3169), - [sym__edit_comment_span_start] = ACTIONS(3169), - [sym__single_quote_span_open] = ACTIONS(3169), - [sym__double_quote_span_open] = ACTIONS(3169), - [sym__shortcode_open_escaped] = ACTIONS(3169), - [sym__shortcode_open] = ACTIONS(3169), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3169), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3169), - [sym__cite_author_in_text] = ACTIONS(3169), - [sym__cite_suppress_author] = ACTIONS(3169), - [sym__strikeout_open] = ACTIONS(3169), - [sym__subscript_open] = ACTIONS(3169), - [sym__superscript_open] = ACTIONS(3169), - [sym__inline_note_start_token] = ACTIONS(3169), - [sym__strong_emphasis_open_star] = ACTIONS(3169), - [sym__strong_emphasis_open_underscore] = ACTIONS(3169), - [sym__emphasis_open_star] = ACTIONS(3169), - [sym__emphasis_open_underscore] = ACTIONS(3169), - [sym_inline_note_reference] = ACTIONS(3169), - [sym_html_element] = ACTIONS(3169), - [sym__pandoc_line_break] = ACTIONS(3169), - }, - [STATE(358)] = { - [sym_pipe_table_cell] = STATE(2781), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(3173), - [sym__line_ending] = ACTIONS(2324), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pipe_table_delimiter] = ACTIONS(3175), - [sym__pandoc_line_break] = ACTIONS(2509), - }, - [STATE(359)] = { - [sym_pipe_table_cell] = STATE(2816), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym_pipe_table_row_repeat1] = STATE(366), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(3177), - [sym__line_ending] = ACTIONS(2330), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pandoc_line_break] = ACTIONS(2509), - }, - [STATE(360)] = { - [anon_sym_COLON] = ACTIONS(3179), - [sym_entity_reference] = ACTIONS(3179), - [sym_numeric_character_reference] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_BANG_LBRACK] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3181), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [aux_sym_pandoc_str_token1] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3179), - [aux_sym__prose_punctuation_token1] = ACTIONS(3181), - [sym__line_ending] = ACTIONS(3179), - [sym__soft_line_ending] = ACTIONS(3179), - [sym__block_close] = ACTIONS(3179), - [sym__block_quote_start] = ACTIONS(3179), - [sym_atx_h1_marker] = ACTIONS(3179), - [sym_atx_h2_marker] = ACTIONS(3179), - [sym_atx_h3_marker] = ACTIONS(3179), - [sym_atx_h4_marker] = ACTIONS(3179), - [sym_atx_h5_marker] = ACTIONS(3179), - [sym_atx_h6_marker] = ACTIONS(3179), - [sym__thematic_break] = ACTIONS(3179), - [sym__list_marker_minus] = ACTIONS(3179), - [sym__list_marker_plus] = ACTIONS(3179), - [sym__list_marker_star] = ACTIONS(3179), - [sym__list_marker_parenthesis] = ACTIONS(3179), - [sym__list_marker_dot] = ACTIONS(3179), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_example] = ACTIONS(3179), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3179), - [sym__fenced_code_block_start_backtick] = ACTIONS(3179), - [sym_minus_metadata] = ACTIONS(3179), - [sym__pipe_table_start] = ACTIONS(3179), - [sym__fenced_div_start] = ACTIONS(3179), - [sym__fenced_div_end] = ACTIONS(3179), - [sym_ref_id_specifier] = ACTIONS(3179), - [sym__code_span_start] = ACTIONS(3179), - [sym__html_comment] = ACTIONS(3179), - [sym__autolink] = ACTIONS(3179), - [sym__highlight_span_start] = ACTIONS(3179), - [sym__insert_span_start] = ACTIONS(3179), - [sym__delete_span_start] = ACTIONS(3179), - [sym__edit_comment_span_start] = ACTIONS(3179), - [sym__single_quote_span_open] = ACTIONS(3179), - [sym__double_quote_span_open] = ACTIONS(3179), - [sym__shortcode_open_escaped] = ACTIONS(3179), - [sym__shortcode_open] = ACTIONS(3179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3179), - [sym__cite_author_in_text] = ACTIONS(3179), - [sym__cite_suppress_author] = ACTIONS(3179), - [sym__strikeout_open] = ACTIONS(3179), - [sym__subscript_open] = ACTIONS(3179), - [sym__superscript_open] = ACTIONS(3179), - [sym__inline_note_start_token] = ACTIONS(3179), - [sym__strong_emphasis_open_star] = ACTIONS(3179), - [sym__strong_emphasis_open_underscore] = ACTIONS(3179), - [sym__emphasis_open_star] = ACTIONS(3179), - [sym__emphasis_open_underscore] = ACTIONS(3179), - [sym_inline_note_reference] = ACTIONS(3179), - [sym_html_element] = ACTIONS(3179), - [sym__pandoc_line_break] = ACTIONS(3179), - }, - [STATE(361)] = { [ts_builtin_sym_end] = ACTIONS(2693), [anon_sym_COLON] = ACTIONS(2693), [sym_entity_reference] = ACTIONS(2693), @@ -54042,10 +54649,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2693), [aux_sym_pandoc_str_token1] = ACTIONS(2695), [anon_sym_PIPE] = ACTIONS(2693), - [aux_sym__prose_punctuation_token1] = ACTIONS(2695), + [sym__whitespace] = ACTIONS(2693), [sym__line_ending] = ACTIONS(2693), [sym__soft_line_ending] = ACTIONS(2693), - [sym_block_continuation] = ACTIONS(3183), [sym__block_quote_start] = ACTIONS(2693), [sym_atx_h1_marker] = ACTIONS(2693), [sym_atx_h2_marker] = ACTIONS(2693), @@ -54098,1843 +54704,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2693), [sym__pandoc_line_break] = ACTIONS(2693), }, - [STATE(362)] = { - [sym_pipe_table_cell] = STATE(2813), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(3173), - [sym__line_ending] = ACTIONS(2435), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pipe_table_delimiter] = ACTIONS(3175), - [sym__pandoc_line_break] = ACTIONS(2509), - }, - [STATE(363)] = { - [ts_builtin_sym_end] = ACTIONS(2705), - [anon_sym_COLON] = ACTIONS(2705), - [sym_entity_reference] = ACTIONS(2705), - [sym_numeric_character_reference] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_BANG_LBRACK] = ACTIONS(2705), - [anon_sym_DOLLAR] = ACTIONS(2707), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2705), - [aux_sym_pandoc_str_token1] = ACTIONS(2707), - [anon_sym_PIPE] = ACTIONS(2705), - [aux_sym__prose_punctuation_token1] = ACTIONS(2707), - [sym__line_ending] = ACTIONS(2705), - [sym__soft_line_ending] = ACTIONS(2705), - [sym_block_continuation] = ACTIONS(3185), - [sym__block_quote_start] = ACTIONS(2705), - [sym_atx_h1_marker] = ACTIONS(2705), - [sym_atx_h2_marker] = ACTIONS(2705), - [sym_atx_h3_marker] = ACTIONS(2705), - [sym_atx_h4_marker] = ACTIONS(2705), - [sym_atx_h5_marker] = ACTIONS(2705), - [sym_atx_h6_marker] = ACTIONS(2705), - [sym__thematic_break] = ACTIONS(2705), - [sym__list_marker_minus] = ACTIONS(2705), - [sym__list_marker_plus] = ACTIONS(2705), - [sym__list_marker_star] = ACTIONS(2705), - [sym__list_marker_parenthesis] = ACTIONS(2705), - [sym__list_marker_dot] = ACTIONS(2705), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_example] = ACTIONS(2705), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2705), - [sym__fenced_code_block_start_backtick] = ACTIONS(2705), - [sym_minus_metadata] = ACTIONS(2705), - [sym__pipe_table_start] = ACTIONS(2705), - [sym__fenced_div_start] = ACTIONS(2705), - [sym_ref_id_specifier] = ACTIONS(2705), - [sym__code_span_start] = ACTIONS(2705), - [sym__html_comment] = ACTIONS(2705), - [sym__autolink] = ACTIONS(2705), - [sym__highlight_span_start] = ACTIONS(2705), - [sym__insert_span_start] = ACTIONS(2705), - [sym__delete_span_start] = ACTIONS(2705), - [sym__edit_comment_span_start] = ACTIONS(2705), - [sym__single_quote_span_open] = ACTIONS(2705), - [sym__double_quote_span_open] = ACTIONS(2705), - [sym__shortcode_open_escaped] = ACTIONS(2705), - [sym__shortcode_open] = ACTIONS(2705), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2705), - [sym__cite_author_in_text] = ACTIONS(2705), - [sym__cite_suppress_author] = ACTIONS(2705), - [sym__strikeout_open] = ACTIONS(2705), - [sym__subscript_open] = ACTIONS(2705), - [sym__superscript_open] = ACTIONS(2705), - [sym__inline_note_start_token] = ACTIONS(2705), - [sym__strong_emphasis_open_star] = ACTIONS(2705), - [sym__strong_emphasis_open_underscore] = ACTIONS(2705), - [sym__emphasis_open_star] = ACTIONS(2705), - [sym__emphasis_open_underscore] = ACTIONS(2705), - [sym_inline_note_reference] = ACTIONS(2705), - [sym_html_element] = ACTIONS(2705), - [sym__pandoc_line_break] = ACTIONS(2705), - }, - [STATE(364)] = { - [sym_pipe_table_cell] = STATE(2816), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym_pipe_table_row_repeat1] = STATE(407), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(3187), - [sym__line_ending] = ACTIONS(2334), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pandoc_line_break] = ACTIONS(2509), - }, - [STATE(365)] = { - [sym_pipe_table_cell] = STATE(2781), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(3173), - [sym__line_ending] = ACTIONS(2330), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pipe_table_delimiter] = ACTIONS(3175), - [sym__pandoc_line_break] = ACTIONS(2509), - }, - [STATE(366)] = { - [sym_pipe_table_cell] = STATE(3049), - [sym_pandoc_span] = STATE(746), - [sym_pandoc_image] = STATE(746), - [sym_pandoc_math] = STATE(746), - [sym_pandoc_display_math] = STATE(746), - [sym_pandoc_code_span] = STATE(746), - [sym_pandoc_single_quote] = STATE(746), - [sym_pandoc_double_quote] = STATE(746), - [sym_insert] = STATE(746), - [sym_delete] = STATE(746), - [sym_edit_comment] = STATE(746), - [sym_highlight] = STATE(746), - [sym__pandoc_attr_specifier] = STATE(746), - [sym__line_with_maybe_spaces] = STATE(3072), - [sym__inline_element] = STATE(746), - [sym_shortcode_escaped] = STATE(746), - [sym_shortcode] = STATE(746), - [sym_citation] = STATE(746), - [sym_inline_note] = STATE(746), - [sym_pandoc_superscript] = STATE(746), - [sym_pandoc_subscript] = STATE(746), - [sym_pandoc_strikeout] = STATE(746), - [sym_pandoc_emph] = STATE(746), - [sym_pandoc_strong] = STATE(746), - [sym_pandoc_str] = STATE(746), - [sym__prose_punctuation] = STATE(746), - [aux_sym_pipe_table_row_repeat1] = STATE(366), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(746), - [sym_entity_reference] = ACTIONS(2336), - [sym_numeric_character_reference] = ACTIONS(2336), - [anon_sym_LBRACK] = ACTIONS(2339), - [anon_sym_BANG_LBRACK] = ACTIONS(2342), - [anon_sym_DOLLAR] = ACTIONS(2345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2348), - [anon_sym_LBRACE] = ACTIONS(2351), - [aux_sym_pandoc_str_token1] = ACTIONS(2354), - [anon_sym_PIPE] = ACTIONS(2357), - [aux_sym__prose_punctuation_token1] = ACTIONS(2360), - [sym__whitespace] = ACTIONS(3189), - [sym__line_ending] = ACTIONS(2366), - [sym__code_span_start] = ACTIONS(2368), - [sym__html_comment] = ACTIONS(2336), - [sym__autolink] = ACTIONS(2336), - [sym__highlight_span_start] = ACTIONS(2371), - [sym__insert_span_start] = ACTIONS(2374), - [sym__delete_span_start] = ACTIONS(2377), - [sym__edit_comment_span_start] = ACTIONS(2380), - [sym__single_quote_span_open] = ACTIONS(2383), - [sym__double_quote_span_open] = ACTIONS(2386), - [sym__shortcode_open_escaped] = ACTIONS(2389), - [sym__shortcode_open] = ACTIONS(2392), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2395), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2398), - [sym__cite_author_in_text] = ACTIONS(2401), - [sym__cite_suppress_author] = ACTIONS(2404), - [sym__strikeout_open] = ACTIONS(2407), - [sym__subscript_open] = ACTIONS(2410), - [sym__superscript_open] = ACTIONS(2413), - [sym__inline_note_start_token] = ACTIONS(2416), - [sym__strong_emphasis_open_star] = ACTIONS(2419), - [sym__strong_emphasis_open_underscore] = ACTIONS(2422), - [sym__emphasis_open_star] = ACTIONS(2425), - [sym__emphasis_open_underscore] = ACTIONS(2428), - [sym_inline_note_reference] = ACTIONS(2336), - [sym_html_element] = ACTIONS(2336), - [sym__pandoc_line_break] = ACTIONS(2336), + [STATE(352)] = { + [ts_builtin_sym_end] = ACTIONS(2725), + [anon_sym_COLON] = ACTIONS(2725), + [sym_entity_reference] = ACTIONS(2725), + [sym_numeric_character_reference] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_BANG_LBRACK] = ACTIONS(2725), + [anon_sym_DOLLAR] = ACTIONS(2727), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2725), + [aux_sym_pandoc_str_token1] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2725), + [sym__whitespace] = ACTIONS(2725), + [sym__line_ending] = ACTIONS(2725), + [sym__soft_line_ending] = ACTIONS(2725), + [sym__block_quote_start] = ACTIONS(2725), + [sym_atx_h1_marker] = ACTIONS(2725), + [sym_atx_h2_marker] = ACTIONS(2725), + [sym_atx_h3_marker] = ACTIONS(2725), + [sym_atx_h4_marker] = ACTIONS(2725), + [sym_atx_h5_marker] = ACTIONS(2725), + [sym_atx_h6_marker] = ACTIONS(2725), + [sym__thematic_break] = ACTIONS(2725), + [sym__list_marker_minus] = ACTIONS(2725), + [sym__list_marker_plus] = ACTIONS(2725), + [sym__list_marker_star] = ACTIONS(2725), + [sym__list_marker_parenthesis] = ACTIONS(2725), + [sym__list_marker_dot] = ACTIONS(2725), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2725), + [sym__list_marker_example] = ACTIONS(2725), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2725), + [sym__fenced_code_block_start_backtick] = ACTIONS(2725), + [sym_minus_metadata] = ACTIONS(2725), + [sym__pipe_table_start] = ACTIONS(2725), + [sym__fenced_div_start] = ACTIONS(2725), + [sym_ref_id_specifier] = ACTIONS(2725), + [sym__code_span_start] = ACTIONS(2725), + [sym__html_comment] = ACTIONS(2725), + [sym__autolink] = ACTIONS(2725), + [sym__highlight_span_start] = ACTIONS(2725), + [sym__insert_span_start] = ACTIONS(2725), + [sym__delete_span_start] = ACTIONS(2725), + [sym__edit_comment_span_start] = ACTIONS(2725), + [sym__single_quote_span_open] = ACTIONS(2725), + [sym__double_quote_span_open] = ACTIONS(2725), + [sym__shortcode_open_escaped] = ACTIONS(2725), + [sym__shortcode_open] = ACTIONS(2725), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2725), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2725), + [sym__cite_author_in_text] = ACTIONS(2725), + [sym__cite_suppress_author] = ACTIONS(2725), + [sym__strikeout_open] = ACTIONS(2725), + [sym__subscript_open] = ACTIONS(2725), + [sym__superscript_open] = ACTIONS(2725), + [sym__inline_note_start_token] = ACTIONS(2725), + [sym__strong_emphasis_open_star] = ACTIONS(2725), + [sym__strong_emphasis_open_underscore] = ACTIONS(2725), + [sym__emphasis_open_star] = ACTIONS(2725), + [sym__emphasis_open_underscore] = ACTIONS(2725), + [sym_inline_note_reference] = ACTIONS(2725), + [sym_html_element] = ACTIONS(2725), + [sym__pandoc_line_break] = ACTIONS(2725), }, - [STATE(367)] = { - [ts_builtin_sym_end] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2607), - [sym_entity_reference] = ACTIONS(2607), - [sym_numeric_character_reference] = ACTIONS(2607), - [anon_sym_LBRACK] = ACTIONS(2607), - [anon_sym_BANG_LBRACK] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [aux_sym_pandoc_str_token1] = ACTIONS(2609), - [anon_sym_PIPE] = ACTIONS(2607), - [aux_sym__prose_punctuation_token1] = ACTIONS(2609), - [sym__line_ending] = ACTIONS(2607), - [sym__soft_line_ending] = ACTIONS(2607), - [sym_block_continuation] = ACTIONS(3192), - [sym__block_quote_start] = ACTIONS(2607), - [sym_atx_h1_marker] = ACTIONS(2607), - [sym_atx_h2_marker] = ACTIONS(2607), - [sym_atx_h3_marker] = ACTIONS(2607), - [sym_atx_h4_marker] = ACTIONS(2607), - [sym_atx_h5_marker] = ACTIONS(2607), - [sym_atx_h6_marker] = ACTIONS(2607), - [sym__thematic_break] = ACTIONS(2607), - [sym__list_marker_minus] = ACTIONS(2607), - [sym__list_marker_plus] = ACTIONS(2607), - [sym__list_marker_star] = ACTIONS(2607), - [sym__list_marker_parenthesis] = ACTIONS(2607), - [sym__list_marker_dot] = ACTIONS(2607), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_example] = ACTIONS(2607), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2607), - [sym__fenced_code_block_start_backtick] = ACTIONS(2607), - [sym_minus_metadata] = ACTIONS(2607), - [sym__pipe_table_start] = ACTIONS(2607), - [sym__fenced_div_start] = ACTIONS(2607), - [sym_ref_id_specifier] = ACTIONS(2607), - [sym__code_span_start] = ACTIONS(2607), - [sym__html_comment] = ACTIONS(2607), - [sym__autolink] = ACTIONS(2607), - [sym__highlight_span_start] = ACTIONS(2607), - [sym__insert_span_start] = ACTIONS(2607), - [sym__delete_span_start] = ACTIONS(2607), - [sym__edit_comment_span_start] = ACTIONS(2607), - [sym__single_quote_span_open] = ACTIONS(2607), - [sym__double_quote_span_open] = ACTIONS(2607), - [sym__shortcode_open_escaped] = ACTIONS(2607), - [sym__shortcode_open] = ACTIONS(2607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2607), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2607), - [sym__cite_author_in_text] = ACTIONS(2607), - [sym__cite_suppress_author] = ACTIONS(2607), - [sym__strikeout_open] = ACTIONS(2607), - [sym__subscript_open] = ACTIONS(2607), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2607), - [sym__strong_emphasis_open_star] = ACTIONS(2607), - [sym__strong_emphasis_open_underscore] = ACTIONS(2607), - [sym__emphasis_open_star] = ACTIONS(2607), - [sym__emphasis_open_underscore] = ACTIONS(2607), - [sym_inline_note_reference] = ACTIONS(2607), - [sym_html_element] = ACTIONS(2607), - [sym__pandoc_line_break] = ACTIONS(2607), - }, - [STATE(368)] = { - [anon_sym_COLON] = ACTIONS(3194), - [sym_entity_reference] = ACTIONS(3194), - [sym_numeric_character_reference] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_BANG_LBRACK] = ACTIONS(3194), - [anon_sym_DOLLAR] = ACTIONS(3196), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [aux_sym_pandoc_str_token1] = ACTIONS(3196), - [anon_sym_PIPE] = ACTIONS(3194), - [aux_sym__prose_punctuation_token1] = ACTIONS(3196), - [sym__line_ending] = ACTIONS(3194), - [sym__soft_line_ending] = ACTIONS(3194), - [sym_block_continuation] = ACTIONS(3194), - [sym__block_quote_start] = ACTIONS(3194), - [sym_atx_h1_marker] = ACTIONS(3194), - [sym_atx_h2_marker] = ACTIONS(3194), - [sym_atx_h3_marker] = ACTIONS(3194), - [sym_atx_h4_marker] = ACTIONS(3194), - [sym_atx_h5_marker] = ACTIONS(3194), - [sym_atx_h6_marker] = ACTIONS(3194), - [sym__thematic_break] = ACTIONS(3194), - [sym__list_marker_minus] = ACTIONS(3194), - [sym__list_marker_plus] = ACTIONS(3194), - [sym__list_marker_star] = ACTIONS(3194), - [sym__list_marker_parenthesis] = ACTIONS(3194), - [sym__list_marker_dot] = ACTIONS(3194), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3194), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3194), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3194), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3194), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3194), - [sym__list_marker_example] = ACTIONS(3194), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3194), - [sym__fenced_code_block_start_backtick] = ACTIONS(3194), - [sym__blank_line_start] = ACTIONS(3194), - [sym_minus_metadata] = ACTIONS(3194), - [sym__pipe_table_start] = ACTIONS(3194), - [sym__fenced_div_start] = ACTIONS(3194), - [sym_ref_id_specifier] = ACTIONS(3194), - [sym__code_span_start] = ACTIONS(3194), - [sym__html_comment] = ACTIONS(3194), - [sym__autolink] = ACTIONS(3194), - [sym__highlight_span_start] = ACTIONS(3194), - [sym__insert_span_start] = ACTIONS(3194), - [sym__delete_span_start] = ACTIONS(3194), - [sym__edit_comment_span_start] = ACTIONS(3194), - [sym__single_quote_span_open] = ACTIONS(3194), - [sym__double_quote_span_open] = ACTIONS(3194), - [sym__shortcode_open_escaped] = ACTIONS(3194), - [sym__shortcode_open] = ACTIONS(3194), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3194), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3194), - [sym__cite_author_in_text] = ACTIONS(3194), - [sym__cite_suppress_author] = ACTIONS(3194), - [sym__strikeout_open] = ACTIONS(3194), - [sym__subscript_open] = ACTIONS(3194), - [sym__superscript_open] = ACTIONS(3194), - [sym__inline_note_start_token] = ACTIONS(3194), - [sym__strong_emphasis_open_star] = ACTIONS(3194), - [sym__strong_emphasis_open_underscore] = ACTIONS(3194), - [sym__emphasis_open_star] = ACTIONS(3194), - [sym__emphasis_open_underscore] = ACTIONS(3194), - [sym_inline_note_reference] = ACTIONS(3194), - [sym_html_element] = ACTIONS(3194), - [sym__pandoc_line_break] = ACTIONS(3194), - }, - [STATE(369)] = { - [anon_sym_COLON] = ACTIONS(3198), - [sym_entity_reference] = ACTIONS(3198), - [sym_numeric_character_reference] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_BANG_LBRACK] = ACTIONS(3198), - [anon_sym_DOLLAR] = ACTIONS(3200), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [aux_sym_pandoc_str_token1] = ACTIONS(3200), - [anon_sym_PIPE] = ACTIONS(3198), - [aux_sym__prose_punctuation_token1] = ACTIONS(3200), - [sym__line_ending] = ACTIONS(3198), - [sym__soft_line_ending] = ACTIONS(3198), - [sym__block_close] = ACTIONS(3198), - [sym__block_quote_start] = ACTIONS(3198), - [sym_atx_h1_marker] = ACTIONS(3198), - [sym_atx_h2_marker] = ACTIONS(3198), - [sym_atx_h3_marker] = ACTIONS(3198), - [sym_atx_h4_marker] = ACTIONS(3198), - [sym_atx_h5_marker] = ACTIONS(3198), - [sym_atx_h6_marker] = ACTIONS(3198), - [sym__thematic_break] = ACTIONS(3198), - [sym__list_marker_minus] = ACTIONS(3198), - [sym__list_marker_plus] = ACTIONS(3198), - [sym__list_marker_star] = ACTIONS(3198), - [sym__list_marker_parenthesis] = ACTIONS(3198), - [sym__list_marker_dot] = ACTIONS(3198), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_example] = ACTIONS(3198), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3198), - [sym__fenced_code_block_start_backtick] = ACTIONS(3198), - [sym_minus_metadata] = ACTIONS(3198), - [sym__pipe_table_start] = ACTIONS(3198), - [sym__fenced_div_start] = ACTIONS(3198), - [sym__fenced_div_end] = ACTIONS(3198), - [sym_ref_id_specifier] = ACTIONS(3198), - [sym__code_span_start] = ACTIONS(3198), - [sym__html_comment] = ACTIONS(3198), - [sym__autolink] = ACTIONS(3198), - [sym__highlight_span_start] = ACTIONS(3198), - [sym__insert_span_start] = ACTIONS(3198), - [sym__delete_span_start] = ACTIONS(3198), - [sym__edit_comment_span_start] = ACTIONS(3198), - [sym__single_quote_span_open] = ACTIONS(3198), - [sym__double_quote_span_open] = ACTIONS(3198), - [sym__shortcode_open_escaped] = ACTIONS(3198), - [sym__shortcode_open] = ACTIONS(3198), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3198), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3198), - [sym__cite_author_in_text] = ACTIONS(3198), - [sym__cite_suppress_author] = ACTIONS(3198), - [sym__strikeout_open] = ACTIONS(3198), - [sym__subscript_open] = ACTIONS(3198), - [sym__superscript_open] = ACTIONS(3198), - [sym__inline_note_start_token] = ACTIONS(3198), - [sym__strong_emphasis_open_star] = ACTIONS(3198), - [sym__strong_emphasis_open_underscore] = ACTIONS(3198), - [sym__emphasis_open_star] = ACTIONS(3198), - [sym__emphasis_open_underscore] = ACTIONS(3198), - [sym_inline_note_reference] = ACTIONS(3198), - [sym_html_element] = ACTIONS(3198), - [sym__pandoc_line_break] = ACTIONS(3198), - }, - [STATE(370)] = { - [anon_sym_COLON] = ACTIONS(3202), - [sym_entity_reference] = ACTIONS(3202), - [sym_numeric_character_reference] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_BANG_LBRACK] = ACTIONS(3202), - [anon_sym_DOLLAR] = ACTIONS(3204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [aux_sym_pandoc_str_token1] = ACTIONS(3204), - [anon_sym_PIPE] = ACTIONS(3202), - [aux_sym__prose_punctuation_token1] = ACTIONS(3204), - [sym__line_ending] = ACTIONS(3202), - [sym__soft_line_ending] = ACTIONS(3202), - [sym__block_close] = ACTIONS(3202), - [sym__block_quote_start] = ACTIONS(3202), - [sym_atx_h1_marker] = ACTIONS(3202), - [sym_atx_h2_marker] = ACTIONS(3202), - [sym_atx_h3_marker] = ACTIONS(3202), - [sym_atx_h4_marker] = ACTIONS(3202), - [sym_atx_h5_marker] = ACTIONS(3202), - [sym_atx_h6_marker] = ACTIONS(3202), - [sym__thematic_break] = ACTIONS(3202), - [sym__list_marker_minus] = ACTIONS(3202), - [sym__list_marker_plus] = ACTIONS(3202), - [sym__list_marker_star] = ACTIONS(3202), - [sym__list_marker_parenthesis] = ACTIONS(3202), - [sym__list_marker_dot] = ACTIONS(3202), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_example] = ACTIONS(3202), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3202), - [sym__fenced_code_block_start_backtick] = ACTIONS(3202), - [sym_minus_metadata] = ACTIONS(3202), - [sym__pipe_table_start] = ACTIONS(3202), - [sym__fenced_div_start] = ACTIONS(3202), - [sym__fenced_div_end] = ACTIONS(3202), - [sym_ref_id_specifier] = ACTIONS(3202), - [sym__code_span_start] = ACTIONS(3202), - [sym__html_comment] = ACTIONS(3202), - [sym__autolink] = ACTIONS(3202), - [sym__highlight_span_start] = ACTIONS(3202), - [sym__insert_span_start] = ACTIONS(3202), - [sym__delete_span_start] = ACTIONS(3202), - [sym__edit_comment_span_start] = ACTIONS(3202), - [sym__single_quote_span_open] = ACTIONS(3202), - [sym__double_quote_span_open] = ACTIONS(3202), - [sym__shortcode_open_escaped] = ACTIONS(3202), - [sym__shortcode_open] = ACTIONS(3202), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3202), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3202), - [sym__cite_author_in_text] = ACTIONS(3202), - [sym__cite_suppress_author] = ACTIONS(3202), - [sym__strikeout_open] = ACTIONS(3202), - [sym__subscript_open] = ACTIONS(3202), - [sym__superscript_open] = ACTIONS(3202), - [sym__inline_note_start_token] = ACTIONS(3202), - [sym__strong_emphasis_open_star] = ACTIONS(3202), - [sym__strong_emphasis_open_underscore] = ACTIONS(3202), - [sym__emphasis_open_star] = ACTIONS(3202), - [sym__emphasis_open_underscore] = ACTIONS(3202), - [sym_inline_note_reference] = ACTIONS(3202), - [sym_html_element] = ACTIONS(3202), - [sym__pandoc_line_break] = ACTIONS(3202), - }, - [STATE(371)] = { - [anon_sym_COLON] = ACTIONS(3206), - [sym_entity_reference] = ACTIONS(3206), - [sym_numeric_character_reference] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_BANG_LBRACK] = ACTIONS(3206), - [anon_sym_DOLLAR] = ACTIONS(3208), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3206), - [aux_sym_pandoc_str_token1] = ACTIONS(3208), - [anon_sym_PIPE] = ACTIONS(3206), - [aux_sym__prose_punctuation_token1] = ACTIONS(3208), - [sym__line_ending] = ACTIONS(3206), - [sym__soft_line_ending] = ACTIONS(3206), - [sym__block_close] = ACTIONS(3206), - [sym__block_quote_start] = ACTIONS(3206), - [sym_atx_h1_marker] = ACTIONS(3206), - [sym_atx_h2_marker] = ACTIONS(3206), - [sym_atx_h3_marker] = ACTIONS(3206), - [sym_atx_h4_marker] = ACTIONS(3206), - [sym_atx_h5_marker] = ACTIONS(3206), - [sym_atx_h6_marker] = ACTIONS(3206), - [sym__thematic_break] = ACTIONS(3206), - [sym__list_marker_minus] = ACTIONS(3206), - [sym__list_marker_plus] = ACTIONS(3206), - [sym__list_marker_star] = ACTIONS(3206), - [sym__list_marker_parenthesis] = ACTIONS(3206), - [sym__list_marker_dot] = ACTIONS(3206), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_example] = ACTIONS(3206), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3206), - [sym__fenced_code_block_start_backtick] = ACTIONS(3206), - [sym_minus_metadata] = ACTIONS(3206), - [sym__pipe_table_start] = ACTIONS(3206), - [sym__fenced_div_start] = ACTIONS(3206), - [sym__fenced_div_end] = ACTIONS(3206), - [sym_ref_id_specifier] = ACTIONS(3206), - [sym__code_span_start] = ACTIONS(3206), - [sym__html_comment] = ACTIONS(3206), - [sym__autolink] = ACTIONS(3206), - [sym__highlight_span_start] = ACTIONS(3206), - [sym__insert_span_start] = ACTIONS(3206), - [sym__delete_span_start] = ACTIONS(3206), - [sym__edit_comment_span_start] = ACTIONS(3206), - [sym__single_quote_span_open] = ACTIONS(3206), - [sym__double_quote_span_open] = ACTIONS(3206), - [sym__shortcode_open_escaped] = ACTIONS(3206), - [sym__shortcode_open] = ACTIONS(3206), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3206), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3206), - [sym__cite_author_in_text] = ACTIONS(3206), - [sym__cite_suppress_author] = ACTIONS(3206), - [sym__strikeout_open] = ACTIONS(3206), - [sym__subscript_open] = ACTIONS(3206), - [sym__superscript_open] = ACTIONS(3206), - [sym__inline_note_start_token] = ACTIONS(3206), - [sym__strong_emphasis_open_star] = ACTIONS(3206), - [sym__strong_emphasis_open_underscore] = ACTIONS(3206), - [sym__emphasis_open_star] = ACTIONS(3206), - [sym__emphasis_open_underscore] = ACTIONS(3206), - [sym_inline_note_reference] = ACTIONS(3206), - [sym_html_element] = ACTIONS(3206), - [sym__pandoc_line_break] = ACTIONS(3206), - }, - [STATE(372)] = { - [anon_sym_COLON] = ACTIONS(3210), - [sym_entity_reference] = ACTIONS(3210), - [sym_numeric_character_reference] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_BANG_LBRACK] = ACTIONS(3210), - [anon_sym_DOLLAR] = ACTIONS(3212), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [aux_sym_pandoc_str_token1] = ACTIONS(3212), - [anon_sym_PIPE] = ACTIONS(3210), - [aux_sym__prose_punctuation_token1] = ACTIONS(3212), - [sym__line_ending] = ACTIONS(3210), - [sym__soft_line_ending] = ACTIONS(3210), - [sym__block_close] = ACTIONS(3210), - [sym__block_quote_start] = ACTIONS(3210), - [sym_atx_h1_marker] = ACTIONS(3210), - [sym_atx_h2_marker] = ACTIONS(3210), - [sym_atx_h3_marker] = ACTIONS(3210), - [sym_atx_h4_marker] = ACTIONS(3210), - [sym_atx_h5_marker] = ACTIONS(3210), - [sym_atx_h6_marker] = ACTIONS(3210), - [sym__thematic_break] = ACTIONS(3210), - [sym__list_marker_minus] = ACTIONS(3210), - [sym__list_marker_plus] = ACTIONS(3210), - [sym__list_marker_star] = ACTIONS(3210), - [sym__list_marker_parenthesis] = ACTIONS(3210), - [sym__list_marker_dot] = ACTIONS(3210), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_example] = ACTIONS(3210), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3210), - [sym__fenced_code_block_start_backtick] = ACTIONS(3210), - [sym_minus_metadata] = ACTIONS(3210), - [sym__pipe_table_start] = ACTIONS(3210), - [sym__fenced_div_start] = ACTIONS(3210), - [sym__fenced_div_end] = ACTIONS(3210), - [sym_ref_id_specifier] = ACTIONS(3210), - [sym__code_span_start] = ACTIONS(3210), - [sym__html_comment] = ACTIONS(3210), - [sym__autolink] = ACTIONS(3210), - [sym__highlight_span_start] = ACTIONS(3210), - [sym__insert_span_start] = ACTIONS(3210), - [sym__delete_span_start] = ACTIONS(3210), - [sym__edit_comment_span_start] = ACTIONS(3210), - [sym__single_quote_span_open] = ACTIONS(3210), - [sym__double_quote_span_open] = ACTIONS(3210), - [sym__shortcode_open_escaped] = ACTIONS(3210), - [sym__shortcode_open] = ACTIONS(3210), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3210), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3210), - [sym__cite_author_in_text] = ACTIONS(3210), - [sym__cite_suppress_author] = ACTIONS(3210), - [sym__strikeout_open] = ACTIONS(3210), - [sym__subscript_open] = ACTIONS(3210), - [sym__superscript_open] = ACTIONS(3210), - [sym__inline_note_start_token] = ACTIONS(3210), - [sym__strong_emphasis_open_star] = ACTIONS(3210), - [sym__strong_emphasis_open_underscore] = ACTIONS(3210), - [sym__emphasis_open_star] = ACTIONS(3210), - [sym__emphasis_open_underscore] = ACTIONS(3210), - [sym_inline_note_reference] = ACTIONS(3210), - [sym_html_element] = ACTIONS(3210), - [sym__pandoc_line_break] = ACTIONS(3210), - }, - [STATE(373)] = { - [anon_sym_COLON] = ACTIONS(3214), - [sym_entity_reference] = ACTIONS(3214), - [sym_numeric_character_reference] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_BANG_LBRACK] = ACTIONS(3214), - [anon_sym_DOLLAR] = ACTIONS(3216), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [aux_sym_pandoc_str_token1] = ACTIONS(3216), - [anon_sym_PIPE] = ACTIONS(3214), - [aux_sym__prose_punctuation_token1] = ACTIONS(3216), - [sym__line_ending] = ACTIONS(3214), - [sym__soft_line_ending] = ACTIONS(3214), - [sym__block_close] = ACTIONS(3214), - [sym__block_quote_start] = ACTIONS(3214), - [sym_atx_h1_marker] = ACTIONS(3214), - [sym_atx_h2_marker] = ACTIONS(3214), - [sym_atx_h3_marker] = ACTIONS(3214), - [sym_atx_h4_marker] = ACTIONS(3214), - [sym_atx_h5_marker] = ACTIONS(3214), - [sym_atx_h6_marker] = ACTIONS(3214), - [sym__thematic_break] = ACTIONS(3214), - [sym__list_marker_minus] = ACTIONS(3214), - [sym__list_marker_plus] = ACTIONS(3214), - [sym__list_marker_star] = ACTIONS(3214), - [sym__list_marker_parenthesis] = ACTIONS(3214), - [sym__list_marker_dot] = ACTIONS(3214), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_example] = ACTIONS(3214), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3214), - [sym__fenced_code_block_start_backtick] = ACTIONS(3214), - [sym_minus_metadata] = ACTIONS(3214), - [sym__pipe_table_start] = ACTIONS(3214), - [sym__fenced_div_start] = ACTIONS(3214), - [sym__fenced_div_end] = ACTIONS(3214), - [sym_ref_id_specifier] = ACTIONS(3214), - [sym__code_span_start] = ACTIONS(3214), - [sym__html_comment] = ACTIONS(3214), - [sym__autolink] = ACTIONS(3214), - [sym__highlight_span_start] = ACTIONS(3214), - [sym__insert_span_start] = ACTIONS(3214), - [sym__delete_span_start] = ACTIONS(3214), - [sym__edit_comment_span_start] = ACTIONS(3214), - [sym__single_quote_span_open] = ACTIONS(3214), - [sym__double_quote_span_open] = ACTIONS(3214), - [sym__shortcode_open_escaped] = ACTIONS(3214), - [sym__shortcode_open] = ACTIONS(3214), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3214), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3214), - [sym__cite_author_in_text] = ACTIONS(3214), - [sym__cite_suppress_author] = ACTIONS(3214), - [sym__strikeout_open] = ACTIONS(3214), - [sym__subscript_open] = ACTIONS(3214), - [sym__superscript_open] = ACTIONS(3214), - [sym__inline_note_start_token] = ACTIONS(3214), - [sym__strong_emphasis_open_star] = ACTIONS(3214), - [sym__strong_emphasis_open_underscore] = ACTIONS(3214), - [sym__emphasis_open_star] = ACTIONS(3214), - [sym__emphasis_open_underscore] = ACTIONS(3214), - [sym_inline_note_reference] = ACTIONS(3214), - [sym_html_element] = ACTIONS(3214), - [sym__pandoc_line_break] = ACTIONS(3214), - }, - [STATE(374)] = { - [anon_sym_COLON] = ACTIONS(3218), - [sym_entity_reference] = ACTIONS(3218), - [sym_numeric_character_reference] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_BANG_LBRACK] = ACTIONS(3218), - [anon_sym_DOLLAR] = ACTIONS(3220), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [aux_sym_pandoc_str_token1] = ACTIONS(3220), - [anon_sym_PIPE] = ACTIONS(3218), - [aux_sym__prose_punctuation_token1] = ACTIONS(3220), - [sym__line_ending] = ACTIONS(3218), - [sym__soft_line_ending] = ACTIONS(3218), - [sym__block_close] = ACTIONS(3218), - [sym__block_quote_start] = ACTIONS(3218), - [sym_atx_h1_marker] = ACTIONS(3218), - [sym_atx_h2_marker] = ACTIONS(3218), - [sym_atx_h3_marker] = ACTIONS(3218), - [sym_atx_h4_marker] = ACTIONS(3218), - [sym_atx_h5_marker] = ACTIONS(3218), - [sym_atx_h6_marker] = ACTIONS(3218), - [sym__thematic_break] = ACTIONS(3218), - [sym__list_marker_minus] = ACTIONS(3218), - [sym__list_marker_plus] = ACTIONS(3218), - [sym__list_marker_star] = ACTIONS(3218), - [sym__list_marker_parenthesis] = ACTIONS(3218), - [sym__list_marker_dot] = ACTIONS(3218), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_example] = ACTIONS(3218), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3218), - [sym__fenced_code_block_start_backtick] = ACTIONS(3218), - [sym_minus_metadata] = ACTIONS(3218), - [sym__pipe_table_start] = ACTIONS(3218), - [sym__fenced_div_start] = ACTIONS(3218), - [sym__fenced_div_end] = ACTIONS(3218), - [sym_ref_id_specifier] = ACTIONS(3218), - [sym__code_span_start] = ACTIONS(3218), - [sym__html_comment] = ACTIONS(3218), - [sym__autolink] = ACTIONS(3218), - [sym__highlight_span_start] = ACTIONS(3218), - [sym__insert_span_start] = ACTIONS(3218), - [sym__delete_span_start] = ACTIONS(3218), - [sym__edit_comment_span_start] = ACTIONS(3218), - [sym__single_quote_span_open] = ACTIONS(3218), - [sym__double_quote_span_open] = ACTIONS(3218), - [sym__shortcode_open_escaped] = ACTIONS(3218), - [sym__shortcode_open] = ACTIONS(3218), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3218), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3218), - [sym__cite_author_in_text] = ACTIONS(3218), - [sym__cite_suppress_author] = ACTIONS(3218), - [sym__strikeout_open] = ACTIONS(3218), - [sym__subscript_open] = ACTIONS(3218), - [sym__superscript_open] = ACTIONS(3218), - [sym__inline_note_start_token] = ACTIONS(3218), - [sym__strong_emphasis_open_star] = ACTIONS(3218), - [sym__strong_emphasis_open_underscore] = ACTIONS(3218), - [sym__emphasis_open_star] = ACTIONS(3218), - [sym__emphasis_open_underscore] = ACTIONS(3218), - [sym_inline_note_reference] = ACTIONS(3218), - [sym_html_element] = ACTIONS(3218), - [sym__pandoc_line_break] = ACTIONS(3218), - }, - [STATE(375)] = { - [anon_sym_COLON] = ACTIONS(3222), - [sym_entity_reference] = ACTIONS(3222), - [sym_numeric_character_reference] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_BANG_LBRACK] = ACTIONS(3222), - [anon_sym_DOLLAR] = ACTIONS(3224), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [aux_sym_pandoc_str_token1] = ACTIONS(3224), - [anon_sym_PIPE] = ACTIONS(3222), - [aux_sym__prose_punctuation_token1] = ACTIONS(3224), - [sym__line_ending] = ACTIONS(3222), - [sym__soft_line_ending] = ACTIONS(3222), - [sym__block_close] = ACTIONS(3222), - [sym__block_quote_start] = ACTIONS(3222), - [sym_atx_h1_marker] = ACTIONS(3222), - [sym_atx_h2_marker] = ACTIONS(3222), - [sym_atx_h3_marker] = ACTIONS(3222), - [sym_atx_h4_marker] = ACTIONS(3222), - [sym_atx_h5_marker] = ACTIONS(3222), - [sym_atx_h6_marker] = ACTIONS(3222), - [sym__thematic_break] = ACTIONS(3222), - [sym__list_marker_minus] = ACTIONS(3222), - [sym__list_marker_plus] = ACTIONS(3222), - [sym__list_marker_star] = ACTIONS(3222), - [sym__list_marker_parenthesis] = ACTIONS(3222), - [sym__list_marker_dot] = ACTIONS(3222), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_example] = ACTIONS(3222), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3222), - [sym__fenced_code_block_start_backtick] = ACTIONS(3222), - [sym_minus_metadata] = ACTIONS(3222), - [sym__pipe_table_start] = ACTIONS(3222), - [sym__fenced_div_start] = ACTIONS(3222), - [sym__fenced_div_end] = ACTIONS(3222), - [sym_ref_id_specifier] = ACTIONS(3222), - [sym__code_span_start] = ACTIONS(3222), - [sym__html_comment] = ACTIONS(3222), - [sym__autolink] = ACTIONS(3222), - [sym__highlight_span_start] = ACTIONS(3222), - [sym__insert_span_start] = ACTIONS(3222), - [sym__delete_span_start] = ACTIONS(3222), - [sym__edit_comment_span_start] = ACTIONS(3222), - [sym__single_quote_span_open] = ACTIONS(3222), - [sym__double_quote_span_open] = ACTIONS(3222), - [sym__shortcode_open_escaped] = ACTIONS(3222), - [sym__shortcode_open] = ACTIONS(3222), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3222), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3222), - [sym__cite_author_in_text] = ACTIONS(3222), - [sym__cite_suppress_author] = ACTIONS(3222), - [sym__strikeout_open] = ACTIONS(3222), - [sym__subscript_open] = ACTIONS(3222), - [sym__superscript_open] = ACTIONS(3222), - [sym__inline_note_start_token] = ACTIONS(3222), - [sym__strong_emphasis_open_star] = ACTIONS(3222), - [sym__strong_emphasis_open_underscore] = ACTIONS(3222), - [sym__emphasis_open_star] = ACTIONS(3222), - [sym__emphasis_open_underscore] = ACTIONS(3222), - [sym_inline_note_reference] = ACTIONS(3222), - [sym_html_element] = ACTIONS(3222), - [sym__pandoc_line_break] = ACTIONS(3222), - }, - [STATE(376)] = { - [sym_pandoc_span] = STATE(401), - [sym_pandoc_image] = STATE(401), - [sym_pandoc_math] = STATE(401), - [sym_pandoc_display_math] = STATE(401), - [sym_pandoc_code_span] = STATE(401), - [sym_pandoc_single_quote] = STATE(401), - [sym_pandoc_double_quote] = STATE(401), - [sym_insert] = STATE(401), - [sym_delete] = STATE(401), - [sym_edit_comment] = STATE(401), - [sym_highlight] = STATE(401), - [sym__pandoc_attr_specifier] = STATE(401), - [sym__inline_element] = STATE(401), - [sym_shortcode_escaped] = STATE(401), - [sym_shortcode] = STATE(401), - [sym_citation] = STATE(401), - [sym_inline_note] = STATE(401), - [sym_pandoc_superscript] = STATE(401), - [sym_pandoc_subscript] = STATE(401), - [sym_pandoc_strikeout] = STATE(401), - [sym_pandoc_emph] = STATE(401), - [sym_pandoc_strong] = STATE(401), - [sym_pandoc_str] = STATE(401), - [sym__prose_punctuation] = STATE(401), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(401), - [sym_entity_reference] = ACTIONS(3226), - [sym_numeric_character_reference] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(3228), - [sym__whitespace] = ACTIONS(2322), - [sym__line_ending] = ACTIONS(3230), - [sym__eof] = ACTIONS(3230), - [sym__pipe_table_line_ending] = ACTIONS(3230), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(3226), - [sym__autolink] = ACTIONS(3226), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(3226), - [sym_html_element] = ACTIONS(3226), - [sym__pipe_table_delimiter] = ACTIONS(3230), - [sym__pandoc_line_break] = ACTIONS(3226), - }, - [STATE(377)] = { - [anon_sym_COLON] = ACTIONS(3232), - [sym_entity_reference] = ACTIONS(3232), - [sym_numeric_character_reference] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_BANG_LBRACK] = ACTIONS(3232), - [anon_sym_DOLLAR] = ACTIONS(3234), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [aux_sym_pandoc_str_token1] = ACTIONS(3234), - [anon_sym_PIPE] = ACTIONS(3232), - [aux_sym__prose_punctuation_token1] = ACTIONS(3234), - [sym__line_ending] = ACTIONS(3232), - [sym__soft_line_ending] = ACTIONS(3232), - [sym__block_close] = ACTIONS(3232), - [sym__block_quote_start] = ACTIONS(3232), - [sym_atx_h1_marker] = ACTIONS(3232), - [sym_atx_h2_marker] = ACTIONS(3232), - [sym_atx_h3_marker] = ACTIONS(3232), - [sym_atx_h4_marker] = ACTIONS(3232), - [sym_atx_h5_marker] = ACTIONS(3232), - [sym_atx_h6_marker] = ACTIONS(3232), - [sym__thematic_break] = ACTIONS(3232), - [sym__list_marker_minus] = ACTIONS(3232), - [sym__list_marker_plus] = ACTIONS(3232), - [sym__list_marker_star] = ACTIONS(3232), - [sym__list_marker_parenthesis] = ACTIONS(3232), - [sym__list_marker_dot] = ACTIONS(3232), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_example] = ACTIONS(3232), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3232), - [sym__fenced_code_block_start_backtick] = ACTIONS(3232), - [sym_minus_metadata] = ACTIONS(3232), - [sym__pipe_table_start] = ACTIONS(3232), - [sym__fenced_div_start] = ACTIONS(3232), - [sym__fenced_div_end] = ACTIONS(3232), - [sym_ref_id_specifier] = ACTIONS(3232), - [sym__code_span_start] = ACTIONS(3232), - [sym__html_comment] = ACTIONS(3232), - [sym__autolink] = ACTIONS(3232), - [sym__highlight_span_start] = ACTIONS(3232), - [sym__insert_span_start] = ACTIONS(3232), - [sym__delete_span_start] = ACTIONS(3232), - [sym__edit_comment_span_start] = ACTIONS(3232), - [sym__single_quote_span_open] = ACTIONS(3232), - [sym__double_quote_span_open] = ACTIONS(3232), - [sym__shortcode_open_escaped] = ACTIONS(3232), - [sym__shortcode_open] = ACTIONS(3232), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3232), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3232), - [sym__cite_author_in_text] = ACTIONS(3232), - [sym__cite_suppress_author] = ACTIONS(3232), - [sym__strikeout_open] = ACTIONS(3232), - [sym__subscript_open] = ACTIONS(3232), - [sym__superscript_open] = ACTIONS(3232), - [sym__inline_note_start_token] = ACTIONS(3232), - [sym__strong_emphasis_open_star] = ACTIONS(3232), - [sym__strong_emphasis_open_underscore] = ACTIONS(3232), - [sym__emphasis_open_star] = ACTIONS(3232), - [sym__emphasis_open_underscore] = ACTIONS(3232), - [sym_inline_note_reference] = ACTIONS(3232), - [sym_html_element] = ACTIONS(3232), - [sym__pandoc_line_break] = ACTIONS(3232), - }, - [STATE(378)] = { - [ts_builtin_sym_end] = ACTIONS(2615), - [anon_sym_COLON] = ACTIONS(2615), - [sym_entity_reference] = ACTIONS(2615), - [sym_numeric_character_reference] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_BANG_LBRACK] = ACTIONS(2615), - [anon_sym_DOLLAR] = ACTIONS(2617), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [aux_sym_pandoc_str_token1] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2615), - [aux_sym__prose_punctuation_token1] = ACTIONS(2617), - [sym__line_ending] = ACTIONS(2615), - [sym__soft_line_ending] = ACTIONS(2615), - [sym_block_continuation] = ACTIONS(3236), - [sym__block_quote_start] = ACTIONS(2615), - [sym_atx_h1_marker] = ACTIONS(2615), - [sym_atx_h2_marker] = ACTIONS(2615), - [sym_atx_h3_marker] = ACTIONS(2615), - [sym_atx_h4_marker] = ACTIONS(2615), - [sym_atx_h5_marker] = ACTIONS(2615), - [sym_atx_h6_marker] = ACTIONS(2615), - [sym__thematic_break] = ACTIONS(2615), - [sym__list_marker_minus] = ACTIONS(2615), - [sym__list_marker_plus] = ACTIONS(2615), - [sym__list_marker_star] = ACTIONS(2615), - [sym__list_marker_parenthesis] = ACTIONS(2615), - [sym__list_marker_dot] = ACTIONS(2615), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_example] = ACTIONS(2615), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2615), - [sym__fenced_code_block_start_backtick] = ACTIONS(2615), - [sym_minus_metadata] = ACTIONS(2615), - [sym__pipe_table_start] = ACTIONS(2615), - [sym__fenced_div_start] = ACTIONS(2615), - [sym_ref_id_specifier] = ACTIONS(2615), - [sym__code_span_start] = ACTIONS(2615), - [sym__html_comment] = ACTIONS(2615), - [sym__autolink] = ACTIONS(2615), - [sym__highlight_span_start] = ACTIONS(2615), - [sym__insert_span_start] = ACTIONS(2615), - [sym__delete_span_start] = ACTIONS(2615), - [sym__edit_comment_span_start] = ACTIONS(2615), - [sym__single_quote_span_open] = ACTIONS(2615), - [sym__double_quote_span_open] = ACTIONS(2615), - [sym__shortcode_open_escaped] = ACTIONS(2615), - [sym__shortcode_open] = ACTIONS(2615), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2615), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2615), - [sym__cite_author_in_text] = ACTIONS(2615), - [sym__cite_suppress_author] = ACTIONS(2615), - [sym__strikeout_open] = ACTIONS(2615), - [sym__subscript_open] = ACTIONS(2615), - [sym__superscript_open] = ACTIONS(2615), - [sym__inline_note_start_token] = ACTIONS(2615), - [sym__strong_emphasis_open_star] = ACTIONS(2615), - [sym__strong_emphasis_open_underscore] = ACTIONS(2615), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2615), - [sym_inline_note_reference] = ACTIONS(2615), - [sym_html_element] = ACTIONS(2615), - [sym__pandoc_line_break] = ACTIONS(2615), - }, - [STATE(379)] = { - [anon_sym_COLON] = ACTIONS(3238), - [sym_entity_reference] = ACTIONS(3238), - [sym_numeric_character_reference] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_BANG_LBRACK] = ACTIONS(3238), - [anon_sym_DOLLAR] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3238), - [aux_sym_pandoc_str_token1] = ACTIONS(3240), - [anon_sym_PIPE] = ACTIONS(3238), - [aux_sym__prose_punctuation_token1] = ACTIONS(3240), - [sym__line_ending] = ACTIONS(3238), - [sym__soft_line_ending] = ACTIONS(3238), - [sym__block_close] = ACTIONS(3238), - [sym__block_quote_start] = ACTIONS(3238), - [sym_atx_h1_marker] = ACTIONS(3238), - [sym_atx_h2_marker] = ACTIONS(3238), - [sym_atx_h3_marker] = ACTIONS(3238), - [sym_atx_h4_marker] = ACTIONS(3238), - [sym_atx_h5_marker] = ACTIONS(3238), - [sym_atx_h6_marker] = ACTIONS(3238), - [sym__thematic_break] = ACTIONS(3238), - [sym__list_marker_minus] = ACTIONS(3238), - [sym__list_marker_plus] = ACTIONS(3238), - [sym__list_marker_star] = ACTIONS(3238), - [sym__list_marker_parenthesis] = ACTIONS(3238), - [sym__list_marker_dot] = ACTIONS(3238), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_example] = ACTIONS(3238), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3238), - [sym__fenced_code_block_start_backtick] = ACTIONS(3238), - [sym_minus_metadata] = ACTIONS(3238), - [sym__pipe_table_start] = ACTIONS(3238), - [sym__fenced_div_start] = ACTIONS(3238), - [sym__fenced_div_end] = ACTIONS(3238), - [sym_ref_id_specifier] = ACTIONS(3238), - [sym__code_span_start] = ACTIONS(3238), - [sym__html_comment] = ACTIONS(3238), - [sym__autolink] = ACTIONS(3238), - [sym__highlight_span_start] = ACTIONS(3238), - [sym__insert_span_start] = ACTIONS(3238), - [sym__delete_span_start] = ACTIONS(3238), - [sym__edit_comment_span_start] = ACTIONS(3238), - [sym__single_quote_span_open] = ACTIONS(3238), - [sym__double_quote_span_open] = ACTIONS(3238), - [sym__shortcode_open_escaped] = ACTIONS(3238), - [sym__shortcode_open] = ACTIONS(3238), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3238), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3238), - [sym__cite_author_in_text] = ACTIONS(3238), - [sym__cite_suppress_author] = ACTIONS(3238), - [sym__strikeout_open] = ACTIONS(3238), - [sym__subscript_open] = ACTIONS(3238), - [sym__superscript_open] = ACTIONS(3238), - [sym__inline_note_start_token] = ACTIONS(3238), - [sym__strong_emphasis_open_star] = ACTIONS(3238), - [sym__strong_emphasis_open_underscore] = ACTIONS(3238), - [sym__emphasis_open_star] = ACTIONS(3238), - [sym__emphasis_open_underscore] = ACTIONS(3238), - [sym_inline_note_reference] = ACTIONS(3238), - [sym_html_element] = ACTIONS(3238), - [sym__pandoc_line_break] = ACTIONS(3238), - }, - [STATE(380)] = { - [anon_sym_COLON] = ACTIONS(3242), - [sym_entity_reference] = ACTIONS(3242), - [sym_numeric_character_reference] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_BANG_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [aux_sym_pandoc_str_token1] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3242), - [aux_sym__prose_punctuation_token1] = ACTIONS(3244), - [sym__line_ending] = ACTIONS(3242), - [sym__soft_line_ending] = ACTIONS(3242), - [sym__block_close] = ACTIONS(3242), - [sym__block_quote_start] = ACTIONS(3242), - [sym_atx_h1_marker] = ACTIONS(3242), - [sym_atx_h2_marker] = ACTIONS(3242), - [sym_atx_h3_marker] = ACTIONS(3242), - [sym_atx_h4_marker] = ACTIONS(3242), - [sym_atx_h5_marker] = ACTIONS(3242), - [sym_atx_h6_marker] = ACTIONS(3242), - [sym__thematic_break] = ACTIONS(3242), - [sym__list_marker_minus] = ACTIONS(3242), - [sym__list_marker_plus] = ACTIONS(3242), - [sym__list_marker_star] = ACTIONS(3242), - [sym__list_marker_parenthesis] = ACTIONS(3242), - [sym__list_marker_dot] = ACTIONS(3242), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_example] = ACTIONS(3242), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3242), - [sym__fenced_code_block_start_backtick] = ACTIONS(3242), - [sym_minus_metadata] = ACTIONS(3242), - [sym__pipe_table_start] = ACTIONS(3242), - [sym__fenced_div_start] = ACTIONS(3242), - [sym__fenced_div_end] = ACTIONS(3242), - [sym_ref_id_specifier] = ACTIONS(3242), - [sym__code_span_start] = ACTIONS(3242), - [sym__html_comment] = ACTIONS(3242), - [sym__autolink] = ACTIONS(3242), - [sym__highlight_span_start] = ACTIONS(3242), - [sym__insert_span_start] = ACTIONS(3242), - [sym__delete_span_start] = ACTIONS(3242), - [sym__edit_comment_span_start] = ACTIONS(3242), - [sym__single_quote_span_open] = ACTIONS(3242), - [sym__double_quote_span_open] = ACTIONS(3242), - [sym__shortcode_open_escaped] = ACTIONS(3242), - [sym__shortcode_open] = ACTIONS(3242), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3242), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3242), - [sym__cite_author_in_text] = ACTIONS(3242), - [sym__cite_suppress_author] = ACTIONS(3242), - [sym__strikeout_open] = ACTIONS(3242), - [sym__subscript_open] = ACTIONS(3242), - [sym__superscript_open] = ACTIONS(3242), - [sym__inline_note_start_token] = ACTIONS(3242), - [sym__strong_emphasis_open_star] = ACTIONS(3242), - [sym__strong_emphasis_open_underscore] = ACTIONS(3242), - [sym__emphasis_open_star] = ACTIONS(3242), - [sym__emphasis_open_underscore] = ACTIONS(3242), - [sym_inline_note_reference] = ACTIONS(3242), - [sym_html_element] = ACTIONS(3242), - [sym__pandoc_line_break] = ACTIONS(3242), - }, - [STATE(381)] = { - [sym_pipe_table_cell] = STATE(2745), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(3173), - [sym__line_ending] = ACTIONS(2324), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pipe_table_delimiter] = ACTIONS(3246), - [sym__pandoc_line_break] = ACTIONS(2509), - }, - [STATE(382)] = { - [anon_sym_COLON] = ACTIONS(3248), - [sym_entity_reference] = ACTIONS(3248), - [sym_numeric_character_reference] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_BANG_LBRACK] = ACTIONS(3248), - [anon_sym_DOLLAR] = ACTIONS(3250), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [aux_sym_pandoc_str_token1] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3248), - [aux_sym__prose_punctuation_token1] = ACTIONS(3250), - [sym__line_ending] = ACTIONS(3248), - [sym__soft_line_ending] = ACTIONS(3248), - [sym__block_close] = ACTIONS(3248), - [sym__block_quote_start] = ACTIONS(3248), - [sym_atx_h1_marker] = ACTIONS(3248), - [sym_atx_h2_marker] = ACTIONS(3248), - [sym_atx_h3_marker] = ACTIONS(3248), - [sym_atx_h4_marker] = ACTIONS(3248), - [sym_atx_h5_marker] = ACTIONS(3248), - [sym_atx_h6_marker] = ACTIONS(3248), - [sym__thematic_break] = ACTIONS(3248), - [sym__list_marker_minus] = ACTIONS(3248), - [sym__list_marker_plus] = ACTIONS(3248), - [sym__list_marker_star] = ACTIONS(3248), - [sym__list_marker_parenthesis] = ACTIONS(3248), - [sym__list_marker_dot] = ACTIONS(3248), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_example] = ACTIONS(3248), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3248), - [sym__fenced_code_block_start_backtick] = ACTIONS(3248), - [sym_minus_metadata] = ACTIONS(3248), - [sym__pipe_table_start] = ACTIONS(3248), - [sym__fenced_div_start] = ACTIONS(3248), - [sym__fenced_div_end] = ACTIONS(3248), - [sym_ref_id_specifier] = ACTIONS(3248), - [sym__code_span_start] = ACTIONS(3248), - [sym__html_comment] = ACTIONS(3248), - [sym__autolink] = ACTIONS(3248), - [sym__highlight_span_start] = ACTIONS(3248), - [sym__insert_span_start] = ACTIONS(3248), - [sym__delete_span_start] = ACTIONS(3248), - [sym__edit_comment_span_start] = ACTIONS(3248), - [sym__single_quote_span_open] = ACTIONS(3248), - [sym__double_quote_span_open] = ACTIONS(3248), - [sym__shortcode_open_escaped] = ACTIONS(3248), - [sym__shortcode_open] = ACTIONS(3248), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3248), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3248), - [sym__cite_author_in_text] = ACTIONS(3248), - [sym__cite_suppress_author] = ACTIONS(3248), - [sym__strikeout_open] = ACTIONS(3248), - [sym__subscript_open] = ACTIONS(3248), - [sym__superscript_open] = ACTIONS(3248), - [sym__inline_note_start_token] = ACTIONS(3248), - [sym__strong_emphasis_open_star] = ACTIONS(3248), - [sym__strong_emphasis_open_underscore] = ACTIONS(3248), - [sym__emphasis_open_star] = ACTIONS(3248), - [sym__emphasis_open_underscore] = ACTIONS(3248), - [sym_inline_note_reference] = ACTIONS(3248), - [sym_html_element] = ACTIONS(3248), - [sym__pandoc_line_break] = ACTIONS(3248), - }, - [STATE(383)] = { - [anon_sym_COLON] = ACTIONS(3252), - [sym_entity_reference] = ACTIONS(3252), - [sym_numeric_character_reference] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_BANG_LBRACK] = ACTIONS(3252), - [anon_sym_DOLLAR] = ACTIONS(3254), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [aux_sym_pandoc_str_token1] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3252), - [aux_sym__prose_punctuation_token1] = ACTIONS(3254), - [sym__line_ending] = ACTIONS(3252), - [sym__soft_line_ending] = ACTIONS(3252), - [sym__block_close] = ACTIONS(3252), - [sym__block_quote_start] = ACTIONS(3252), - [sym_atx_h1_marker] = ACTIONS(3252), - [sym_atx_h2_marker] = ACTIONS(3252), - [sym_atx_h3_marker] = ACTIONS(3252), - [sym_atx_h4_marker] = ACTIONS(3252), - [sym_atx_h5_marker] = ACTIONS(3252), - [sym_atx_h6_marker] = ACTIONS(3252), - [sym__thematic_break] = ACTIONS(3252), - [sym__list_marker_minus] = ACTIONS(3252), - [sym__list_marker_plus] = ACTIONS(3252), - [sym__list_marker_star] = ACTIONS(3252), - [sym__list_marker_parenthesis] = ACTIONS(3252), - [sym__list_marker_dot] = ACTIONS(3252), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_example] = ACTIONS(3252), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3252), - [sym__fenced_code_block_start_backtick] = ACTIONS(3252), - [sym_minus_metadata] = ACTIONS(3252), - [sym__pipe_table_start] = ACTIONS(3252), - [sym__fenced_div_start] = ACTIONS(3252), - [sym__fenced_div_end] = ACTIONS(3252), - [sym_ref_id_specifier] = ACTIONS(3252), - [sym__code_span_start] = ACTIONS(3252), - [sym__html_comment] = ACTIONS(3252), - [sym__autolink] = ACTIONS(3252), - [sym__highlight_span_start] = ACTIONS(3252), - [sym__insert_span_start] = ACTIONS(3252), - [sym__delete_span_start] = ACTIONS(3252), - [sym__edit_comment_span_start] = ACTIONS(3252), - [sym__single_quote_span_open] = ACTIONS(3252), - [sym__double_quote_span_open] = ACTIONS(3252), - [sym__shortcode_open_escaped] = ACTIONS(3252), - [sym__shortcode_open] = ACTIONS(3252), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3252), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3252), - [sym__cite_author_in_text] = ACTIONS(3252), - [sym__cite_suppress_author] = ACTIONS(3252), - [sym__strikeout_open] = ACTIONS(3252), - [sym__subscript_open] = ACTIONS(3252), - [sym__superscript_open] = ACTIONS(3252), - [sym__inline_note_start_token] = ACTIONS(3252), - [sym__strong_emphasis_open_star] = ACTIONS(3252), - [sym__strong_emphasis_open_underscore] = ACTIONS(3252), - [sym__emphasis_open_star] = ACTIONS(3252), - [sym__emphasis_open_underscore] = ACTIONS(3252), - [sym_inline_note_reference] = ACTIONS(3252), - [sym_html_element] = ACTIONS(3252), - [sym__pandoc_line_break] = ACTIONS(3252), - }, - [STATE(384)] = { - [anon_sym_COLON] = ACTIONS(3256), - [sym_entity_reference] = ACTIONS(3256), - [sym_numeric_character_reference] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_BANG_LBRACK] = ACTIONS(3256), - [anon_sym_DOLLAR] = ACTIONS(3258), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3256), - [aux_sym_pandoc_str_token1] = ACTIONS(3258), - [anon_sym_PIPE] = ACTIONS(3256), - [aux_sym__prose_punctuation_token1] = ACTIONS(3258), - [sym__line_ending] = ACTIONS(3256), - [sym__soft_line_ending] = ACTIONS(3256), - [sym__block_close] = ACTIONS(3256), - [sym__block_quote_start] = ACTIONS(3256), - [sym_atx_h1_marker] = ACTIONS(3256), - [sym_atx_h2_marker] = ACTIONS(3256), - [sym_atx_h3_marker] = ACTIONS(3256), - [sym_atx_h4_marker] = ACTIONS(3256), - [sym_atx_h5_marker] = ACTIONS(3256), - [sym_atx_h6_marker] = ACTIONS(3256), - [sym__thematic_break] = ACTIONS(3256), - [sym__list_marker_minus] = ACTIONS(3256), - [sym__list_marker_plus] = ACTIONS(3256), - [sym__list_marker_star] = ACTIONS(3256), - [sym__list_marker_parenthesis] = ACTIONS(3256), - [sym__list_marker_dot] = ACTIONS(3256), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_example] = ACTIONS(3256), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3256), - [sym__fenced_code_block_start_backtick] = ACTIONS(3256), - [sym_minus_metadata] = ACTIONS(3256), - [sym__pipe_table_start] = ACTIONS(3256), - [sym__fenced_div_start] = ACTIONS(3256), - [sym__fenced_div_end] = ACTIONS(3256), - [sym_ref_id_specifier] = ACTIONS(3256), - [sym__code_span_start] = ACTIONS(3256), - [sym__html_comment] = ACTIONS(3256), - [sym__autolink] = ACTIONS(3256), - [sym__highlight_span_start] = ACTIONS(3256), - [sym__insert_span_start] = ACTIONS(3256), - [sym__delete_span_start] = ACTIONS(3256), - [sym__edit_comment_span_start] = ACTIONS(3256), - [sym__single_quote_span_open] = ACTIONS(3256), - [sym__double_quote_span_open] = ACTIONS(3256), - [sym__shortcode_open_escaped] = ACTIONS(3256), - [sym__shortcode_open] = ACTIONS(3256), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3256), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3256), - [sym__cite_author_in_text] = ACTIONS(3256), - [sym__cite_suppress_author] = ACTIONS(3256), - [sym__strikeout_open] = ACTIONS(3256), - [sym__subscript_open] = ACTIONS(3256), - [sym__superscript_open] = ACTIONS(3256), - [sym__inline_note_start_token] = ACTIONS(3256), - [sym__strong_emphasis_open_star] = ACTIONS(3256), - [sym__strong_emphasis_open_underscore] = ACTIONS(3256), - [sym__emphasis_open_star] = ACTIONS(3256), - [sym__emphasis_open_underscore] = ACTIONS(3256), - [sym_inline_note_reference] = ACTIONS(3256), - [sym_html_element] = ACTIONS(3256), - [sym__pandoc_line_break] = ACTIONS(3256), - }, - [STATE(385)] = { - [ts_builtin_sym_end] = ACTIONS(2621), - [anon_sym_COLON] = ACTIONS(2621), - [sym_entity_reference] = ACTIONS(2621), - [sym_numeric_character_reference] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_BANG_LBRACK] = ACTIONS(2621), - [anon_sym_DOLLAR] = ACTIONS(2623), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [aux_sym_pandoc_str_token1] = ACTIONS(2623), - [anon_sym_PIPE] = ACTIONS(2621), - [aux_sym__prose_punctuation_token1] = ACTIONS(2623), - [sym__line_ending] = ACTIONS(2621), - [sym__soft_line_ending] = ACTIONS(2621), - [sym_block_continuation] = ACTIONS(3260), - [sym__block_quote_start] = ACTIONS(2621), - [sym_atx_h1_marker] = ACTIONS(2621), - [sym_atx_h2_marker] = ACTIONS(2621), - [sym_atx_h3_marker] = ACTIONS(2621), - [sym_atx_h4_marker] = ACTIONS(2621), - [sym_atx_h5_marker] = ACTIONS(2621), - [sym_atx_h6_marker] = ACTIONS(2621), - [sym__thematic_break] = ACTIONS(2621), - [sym__list_marker_minus] = ACTIONS(2621), - [sym__list_marker_plus] = ACTIONS(2621), - [sym__list_marker_star] = ACTIONS(2621), - [sym__list_marker_parenthesis] = ACTIONS(2621), - [sym__list_marker_dot] = ACTIONS(2621), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_example] = ACTIONS(2621), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2621), - [sym__fenced_code_block_start_backtick] = ACTIONS(2621), - [sym_minus_metadata] = ACTIONS(2621), - [sym__pipe_table_start] = ACTIONS(2621), - [sym__fenced_div_start] = ACTIONS(2621), - [sym_ref_id_specifier] = ACTIONS(2621), - [sym__code_span_start] = ACTIONS(2621), - [sym__html_comment] = ACTIONS(2621), - [sym__autolink] = ACTIONS(2621), - [sym__highlight_span_start] = ACTIONS(2621), - [sym__insert_span_start] = ACTIONS(2621), - [sym__delete_span_start] = ACTIONS(2621), - [sym__edit_comment_span_start] = ACTIONS(2621), - [sym__single_quote_span_open] = ACTIONS(2621), - [sym__double_quote_span_open] = ACTIONS(2621), - [sym__shortcode_open_escaped] = ACTIONS(2621), - [sym__shortcode_open] = ACTIONS(2621), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2621), - [sym__cite_author_in_text] = ACTIONS(2621), - [sym__cite_suppress_author] = ACTIONS(2621), - [sym__strikeout_open] = ACTIONS(2621), - [sym__subscript_open] = ACTIONS(2621), - [sym__superscript_open] = ACTIONS(2621), - [sym__inline_note_start_token] = ACTIONS(2621), - [sym__strong_emphasis_open_star] = ACTIONS(2621), - [sym__strong_emphasis_open_underscore] = ACTIONS(2621), - [sym__emphasis_open_star] = ACTIONS(2621), - [sym__emphasis_open_underscore] = ACTIONS(2621), - [sym_inline_note_reference] = ACTIONS(2621), - [sym_html_element] = ACTIONS(2621), - [sym__pandoc_line_break] = ACTIONS(2621), - }, - [STATE(386)] = { - [ts_builtin_sym_end] = ACTIONS(2627), - [anon_sym_COLON] = ACTIONS(2627), - [sym_entity_reference] = ACTIONS(2627), - [sym_numeric_character_reference] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_BANG_LBRACK] = ACTIONS(2627), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2627), - [aux_sym_pandoc_str_token1] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2627), - [aux_sym__prose_punctuation_token1] = ACTIONS(2629), - [sym__line_ending] = ACTIONS(2627), - [sym__soft_line_ending] = ACTIONS(2627), - [sym_block_continuation] = ACTIONS(3262), - [sym__block_quote_start] = ACTIONS(2627), - [sym_atx_h1_marker] = ACTIONS(2627), - [sym_atx_h2_marker] = ACTIONS(2627), - [sym_atx_h3_marker] = ACTIONS(2627), - [sym_atx_h4_marker] = ACTIONS(2627), - [sym_atx_h5_marker] = ACTIONS(2627), - [sym_atx_h6_marker] = ACTIONS(2627), - [sym__thematic_break] = ACTIONS(2627), - [sym__list_marker_minus] = ACTIONS(2627), - [sym__list_marker_plus] = ACTIONS(2627), - [sym__list_marker_star] = ACTIONS(2627), - [sym__list_marker_parenthesis] = ACTIONS(2627), - [sym__list_marker_dot] = ACTIONS(2627), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_example] = ACTIONS(2627), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2627), - [sym__fenced_code_block_start_backtick] = ACTIONS(2627), - [sym_minus_metadata] = ACTIONS(2627), - [sym__pipe_table_start] = ACTIONS(2627), - [sym__fenced_div_start] = ACTIONS(2627), - [sym_ref_id_specifier] = ACTIONS(2627), - [sym__code_span_start] = ACTIONS(2627), - [sym__html_comment] = ACTIONS(2627), - [sym__autolink] = ACTIONS(2627), - [sym__highlight_span_start] = ACTIONS(2627), - [sym__insert_span_start] = ACTIONS(2627), - [sym__delete_span_start] = ACTIONS(2627), - [sym__edit_comment_span_start] = ACTIONS(2627), - [sym__single_quote_span_open] = ACTIONS(2627), - [sym__double_quote_span_open] = ACTIONS(2627), - [sym__shortcode_open_escaped] = ACTIONS(2627), - [sym__shortcode_open] = ACTIONS(2627), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2627), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2627), - [sym__cite_author_in_text] = ACTIONS(2627), - [sym__cite_suppress_author] = ACTIONS(2627), - [sym__strikeout_open] = ACTIONS(2627), - [sym__subscript_open] = ACTIONS(2627), - [sym__superscript_open] = ACTIONS(2627), - [sym__inline_note_start_token] = ACTIONS(2627), - [sym__strong_emphasis_open_star] = ACTIONS(2627), - [sym__strong_emphasis_open_underscore] = ACTIONS(2627), - [sym__emphasis_open_star] = ACTIONS(2627), - [sym__emphasis_open_underscore] = ACTIONS(2627), - [sym_inline_note_reference] = ACTIONS(2627), - [sym_html_element] = ACTIONS(2627), - [sym__pandoc_line_break] = ACTIONS(2627), - }, - [STATE(387)] = { - [anon_sym_COLON] = ACTIONS(3264), - [sym_entity_reference] = ACTIONS(3264), - [sym_numeric_character_reference] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_BANG_LBRACK] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3266), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3264), - [aux_sym_pandoc_str_token1] = ACTIONS(3266), - [anon_sym_PIPE] = ACTIONS(3264), - [aux_sym__prose_punctuation_token1] = ACTIONS(3266), - [sym__line_ending] = ACTIONS(3264), - [sym__soft_line_ending] = ACTIONS(3264), - [sym_block_continuation] = ACTIONS(3264), - [sym__block_quote_start] = ACTIONS(3264), - [sym_atx_h1_marker] = ACTIONS(3264), - [sym_atx_h2_marker] = ACTIONS(3264), - [sym_atx_h3_marker] = ACTIONS(3264), - [sym_atx_h4_marker] = ACTIONS(3264), - [sym_atx_h5_marker] = ACTIONS(3264), - [sym_atx_h6_marker] = ACTIONS(3264), - [sym__thematic_break] = ACTIONS(3264), - [sym__list_marker_minus] = ACTIONS(3264), - [sym__list_marker_plus] = ACTIONS(3264), - [sym__list_marker_star] = ACTIONS(3264), - [sym__list_marker_parenthesis] = ACTIONS(3264), - [sym__list_marker_dot] = ACTIONS(3264), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3264), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3264), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3264), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3264), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3264), - [sym__list_marker_example] = ACTIONS(3264), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3264), - [sym__fenced_code_block_start_backtick] = ACTIONS(3264), - [sym__blank_line_start] = ACTIONS(3264), - [sym_minus_metadata] = ACTIONS(3264), - [sym__pipe_table_start] = ACTIONS(3264), - [sym__fenced_div_start] = ACTIONS(3264), - [sym_ref_id_specifier] = ACTIONS(3264), - [sym__code_span_start] = ACTIONS(3264), - [sym__html_comment] = ACTIONS(3264), - [sym__autolink] = ACTIONS(3264), - [sym__highlight_span_start] = ACTIONS(3264), - [sym__insert_span_start] = ACTIONS(3264), - [sym__delete_span_start] = ACTIONS(3264), - [sym__edit_comment_span_start] = ACTIONS(3264), - [sym__single_quote_span_open] = ACTIONS(3264), - [sym__double_quote_span_open] = ACTIONS(3264), - [sym__shortcode_open_escaped] = ACTIONS(3264), - [sym__shortcode_open] = ACTIONS(3264), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3264), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3264), - [sym__cite_author_in_text] = ACTIONS(3264), - [sym__cite_suppress_author] = ACTIONS(3264), - [sym__strikeout_open] = ACTIONS(3264), - [sym__subscript_open] = ACTIONS(3264), - [sym__superscript_open] = ACTIONS(3264), - [sym__inline_note_start_token] = ACTIONS(3264), - [sym__strong_emphasis_open_star] = ACTIONS(3264), - [sym__strong_emphasis_open_underscore] = ACTIONS(3264), - [sym__emphasis_open_star] = ACTIONS(3264), - [sym__emphasis_open_underscore] = ACTIONS(3264), - [sym_inline_note_reference] = ACTIONS(3264), - [sym_html_element] = ACTIONS(3264), - [sym__pandoc_line_break] = ACTIONS(3264), + [STATE(353)] = { + [sym__atx_heading_content] = STATE(3114), + [sym__inlines] = STATE(3114), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(366), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(25), + [sym__eof] = ACTIONS(3033), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(388)] = { - [anon_sym_COLON] = ACTIONS(2687), - [sym_entity_reference] = ACTIONS(2687), - [sym_numeric_character_reference] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_BANG_LBRACK] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [aux_sym_pandoc_str_token1] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2687), - [aux_sym__prose_punctuation_token1] = ACTIONS(2689), - [sym__line_ending] = ACTIONS(2687), - [sym__soft_line_ending] = ACTIONS(2687), - [sym__block_close] = ACTIONS(2687), - [sym__block_quote_start] = ACTIONS(2687), - [sym_atx_h1_marker] = ACTIONS(2687), - [sym_atx_h2_marker] = ACTIONS(2687), - [sym_atx_h3_marker] = ACTIONS(2687), - [sym_atx_h4_marker] = ACTIONS(2687), - [sym_atx_h5_marker] = ACTIONS(2687), - [sym_atx_h6_marker] = ACTIONS(2687), - [sym__thematic_break] = ACTIONS(2687), - [sym__list_marker_minus] = ACTIONS(2687), - [sym__list_marker_plus] = ACTIONS(2687), - [sym__list_marker_star] = ACTIONS(2687), - [sym__list_marker_parenthesis] = ACTIONS(2687), - [sym__list_marker_dot] = ACTIONS(2687), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_example] = ACTIONS(2687), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2687), - [sym__fenced_code_block_start_backtick] = ACTIONS(2687), - [sym_minus_metadata] = ACTIONS(2687), - [sym__pipe_table_start] = ACTIONS(2687), - [sym__fenced_div_start] = ACTIONS(2687), - [sym__fenced_div_end] = ACTIONS(2687), - [sym_ref_id_specifier] = ACTIONS(2687), - [sym__code_span_start] = ACTIONS(2687), - [sym__html_comment] = ACTIONS(2687), - [sym__autolink] = ACTIONS(2687), - [sym__highlight_span_start] = ACTIONS(2687), - [sym__insert_span_start] = ACTIONS(2687), - [sym__delete_span_start] = ACTIONS(2687), - [sym__edit_comment_span_start] = ACTIONS(2687), - [sym__single_quote_span_open] = ACTIONS(2687), - [sym__double_quote_span_open] = ACTIONS(2687), - [sym__shortcode_open_escaped] = ACTIONS(2687), - [sym__shortcode_open] = ACTIONS(2687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2687), - [sym__cite_author_in_text] = ACTIONS(2687), - [sym__cite_suppress_author] = ACTIONS(2687), - [sym__strikeout_open] = ACTIONS(2687), - [sym__subscript_open] = ACTIONS(2687), - [sym__superscript_open] = ACTIONS(2687), - [sym__inline_note_start_token] = ACTIONS(2687), - [sym__strong_emphasis_open_star] = ACTIONS(2687), - [sym__strong_emphasis_open_underscore] = ACTIONS(2687), - [sym__emphasis_open_star] = ACTIONS(2687), - [sym__emphasis_open_underscore] = ACTIONS(2687), - [sym_inline_note_reference] = ACTIONS(2687), - [sym_html_element] = ACTIONS(2687), - [sym__pandoc_line_break] = ACTIONS(2687), + [STATE(354)] = { + [ts_builtin_sym_end] = ACTIONS(2631), + [anon_sym_COLON] = ACTIONS(2631), + [sym_entity_reference] = ACTIONS(2631), + [sym_numeric_character_reference] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_BANG_LBRACK] = ACTIONS(2631), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [aux_sym_pandoc_str_token1] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2631), + [sym__whitespace] = ACTIONS(2631), + [sym__line_ending] = ACTIONS(2631), + [sym__soft_line_ending] = ACTIONS(2631), + [sym__block_quote_start] = ACTIONS(2631), + [sym_atx_h1_marker] = ACTIONS(2631), + [sym_atx_h2_marker] = ACTIONS(2631), + [sym_atx_h3_marker] = ACTIONS(2631), + [sym_atx_h4_marker] = ACTIONS(2631), + [sym_atx_h5_marker] = ACTIONS(2631), + [sym_atx_h6_marker] = ACTIONS(2631), + [sym__thematic_break] = ACTIONS(2631), + [sym__list_marker_minus] = ACTIONS(2631), + [sym__list_marker_plus] = ACTIONS(2631), + [sym__list_marker_star] = ACTIONS(2631), + [sym__list_marker_parenthesis] = ACTIONS(2631), + [sym__list_marker_dot] = ACTIONS(2631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_example] = ACTIONS(2631), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2631), + [sym__fenced_code_block_start_backtick] = ACTIONS(2631), + [sym_minus_metadata] = ACTIONS(2631), + [sym__pipe_table_start] = ACTIONS(2631), + [sym__fenced_div_start] = ACTIONS(2631), + [sym_ref_id_specifier] = ACTIONS(2631), + [sym__code_span_start] = ACTIONS(2631), + [sym__html_comment] = ACTIONS(2631), + [sym__autolink] = ACTIONS(2631), + [sym__highlight_span_start] = ACTIONS(2631), + [sym__insert_span_start] = ACTIONS(2631), + [sym__delete_span_start] = ACTIONS(2631), + [sym__edit_comment_span_start] = ACTIONS(2631), + [sym__single_quote_span_open] = ACTIONS(2631), + [sym__double_quote_span_open] = ACTIONS(2631), + [sym__shortcode_open_escaped] = ACTIONS(2631), + [sym__shortcode_open] = ACTIONS(2631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2631), + [sym__cite_author_in_text] = ACTIONS(2631), + [sym__cite_suppress_author] = ACTIONS(2631), + [sym__strikeout_open] = ACTIONS(2631), + [sym__subscript_open] = ACTIONS(2631), + [sym__superscript_open] = ACTIONS(2631), + [sym__inline_note_start_token] = ACTIONS(2631), + [sym__strong_emphasis_open_star] = ACTIONS(2631), + [sym__strong_emphasis_open_underscore] = ACTIONS(2631), + [sym__emphasis_open_star] = ACTIONS(2631), + [sym__emphasis_open_underscore] = ACTIONS(2631), + [sym_inline_note_reference] = ACTIONS(2631), + [sym_html_element] = ACTIONS(2631), + [sym__pandoc_line_break] = ACTIONS(2631), }, - [STATE(389)] = { + [STATE(355)] = { [ts_builtin_sym_end] = ACTIONS(2645), [anon_sym_COLON] = ACTIONS(2645), [sym_entity_reference] = ACTIONS(2645), @@ -55946,10 +54917,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2645), [aux_sym_pandoc_str_token1] = ACTIONS(2647), [anon_sym_PIPE] = ACTIONS(2645), - [aux_sym__prose_punctuation_token1] = ACTIONS(2647), + [sym__whitespace] = ACTIONS(2645), [sym__line_ending] = ACTIONS(2645), [sym__soft_line_ending] = ACTIONS(2645), - [sym_block_continuation] = ACTIONS(3268), [sym__block_quote_start] = ACTIONS(2645), [sym_atx_h1_marker] = ACTIONS(2645), [sym_atx_h2_marker] = ACTIONS(2645), @@ -56002,1028 +54972,1012 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2645), [sym__pandoc_line_break] = ACTIONS(2645), }, - [STATE(390)] = { - [ts_builtin_sym_end] = ACTIONS(2651), - [anon_sym_COLON] = ACTIONS(2651), - [sym_entity_reference] = ACTIONS(2651), - [sym_numeric_character_reference] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_BANG_LBRACK] = ACTIONS(2651), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2651), - [aux_sym_pandoc_str_token1] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2651), - [aux_sym__prose_punctuation_token1] = ACTIONS(2653), - [sym__line_ending] = ACTIONS(2651), - [sym__soft_line_ending] = ACTIONS(2651), - [sym_block_continuation] = ACTIONS(3270), - [sym__block_quote_start] = ACTIONS(2651), - [sym_atx_h1_marker] = ACTIONS(2651), - [sym_atx_h2_marker] = ACTIONS(2651), - [sym_atx_h3_marker] = ACTIONS(2651), - [sym_atx_h4_marker] = ACTIONS(2651), - [sym_atx_h5_marker] = ACTIONS(2651), - [sym_atx_h6_marker] = ACTIONS(2651), - [sym__thematic_break] = ACTIONS(2651), - [sym__list_marker_minus] = ACTIONS(2651), - [sym__list_marker_plus] = ACTIONS(2651), - [sym__list_marker_star] = ACTIONS(2651), - [sym__list_marker_parenthesis] = ACTIONS(2651), - [sym__list_marker_dot] = ACTIONS(2651), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_example] = ACTIONS(2651), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2651), - [sym__fenced_code_block_start_backtick] = ACTIONS(2651), - [sym_minus_metadata] = ACTIONS(2651), - [sym__pipe_table_start] = ACTIONS(2651), - [sym__fenced_div_start] = ACTIONS(2651), - [sym_ref_id_specifier] = ACTIONS(2651), - [sym__code_span_start] = ACTIONS(2651), - [sym__html_comment] = ACTIONS(2651), - [sym__autolink] = ACTIONS(2651), - [sym__highlight_span_start] = ACTIONS(2651), - [sym__insert_span_start] = ACTIONS(2651), - [sym__delete_span_start] = ACTIONS(2651), - [sym__edit_comment_span_start] = ACTIONS(2651), - [sym__single_quote_span_open] = ACTIONS(2651), - [sym__double_quote_span_open] = ACTIONS(2651), - [sym__shortcode_open_escaped] = ACTIONS(2651), - [sym__shortcode_open] = ACTIONS(2651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2651), - [sym__cite_author_in_text] = ACTIONS(2651), - [sym__cite_suppress_author] = ACTIONS(2651), - [sym__strikeout_open] = ACTIONS(2651), - [sym__subscript_open] = ACTIONS(2651), - [sym__superscript_open] = ACTIONS(2651), - [sym__inline_note_start_token] = ACTIONS(2651), - [sym__strong_emphasis_open_star] = ACTIONS(2651), - [sym__strong_emphasis_open_underscore] = ACTIONS(2651), - [sym__emphasis_open_star] = ACTIONS(2651), - [sym__emphasis_open_underscore] = ACTIONS(2651), - [sym_inline_note_reference] = ACTIONS(2651), - [sym_html_element] = ACTIONS(2651), - [sym__pandoc_line_break] = ACTIONS(2651), + [STATE(356)] = { + [ts_builtin_sym_end] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(2641), + [sym_entity_reference] = ACTIONS(2641), + [sym_numeric_character_reference] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_BANG_LBRACK] = ACTIONS(2641), + [anon_sym_DOLLAR] = ACTIONS(2643), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [aux_sym_pandoc_str_token1] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2641), + [sym__whitespace] = ACTIONS(2641), + [sym__line_ending] = ACTIONS(2641), + [sym__soft_line_ending] = ACTIONS(2641), + [sym__block_quote_start] = ACTIONS(2641), + [sym_atx_h1_marker] = ACTIONS(2641), + [sym_atx_h2_marker] = ACTIONS(2641), + [sym_atx_h3_marker] = ACTIONS(2641), + [sym_atx_h4_marker] = ACTIONS(2641), + [sym_atx_h5_marker] = ACTIONS(2641), + [sym_atx_h6_marker] = ACTIONS(2641), + [sym__thematic_break] = ACTIONS(2641), + [sym__list_marker_minus] = ACTIONS(2641), + [sym__list_marker_plus] = ACTIONS(2641), + [sym__list_marker_star] = ACTIONS(2641), + [sym__list_marker_parenthesis] = ACTIONS(2641), + [sym__list_marker_dot] = ACTIONS(2641), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_example] = ACTIONS(2641), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2641), + [sym__fenced_code_block_start_backtick] = ACTIONS(2641), + [sym_minus_metadata] = ACTIONS(2641), + [sym__pipe_table_start] = ACTIONS(2641), + [sym__fenced_div_start] = ACTIONS(2641), + [sym_ref_id_specifier] = ACTIONS(2641), + [sym__code_span_start] = ACTIONS(2641), + [sym__html_comment] = ACTIONS(2641), + [sym__autolink] = ACTIONS(2641), + [sym__highlight_span_start] = ACTIONS(2641), + [sym__insert_span_start] = ACTIONS(2641), + [sym__delete_span_start] = ACTIONS(2641), + [sym__edit_comment_span_start] = ACTIONS(2641), + [sym__single_quote_span_open] = ACTIONS(2641), + [sym__double_quote_span_open] = ACTIONS(2641), + [sym__shortcode_open_escaped] = ACTIONS(2641), + [sym__shortcode_open] = ACTIONS(2641), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2641), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2641), + [sym__cite_author_in_text] = ACTIONS(2641), + [sym__cite_suppress_author] = ACTIONS(2641), + [sym__strikeout_open] = ACTIONS(2641), + [sym__subscript_open] = ACTIONS(2641), + [sym__superscript_open] = ACTIONS(2641), + [sym__inline_note_start_token] = ACTIONS(2641), + [sym__strong_emphasis_open_star] = ACTIONS(2641), + [sym__strong_emphasis_open_underscore] = ACTIONS(2641), + [sym__emphasis_open_star] = ACTIONS(2641), + [sym__emphasis_open_underscore] = ACTIONS(2641), + [sym_inline_note_reference] = ACTIONS(2641), + [sym_html_element] = ACTIONS(2641), + [sym__pandoc_line_break] = ACTIONS(2641), }, - [STATE(391)] = { - [anon_sym_COLON] = ACTIONS(2615), - [sym_entity_reference] = ACTIONS(2615), - [sym_numeric_character_reference] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_BANG_LBRACK] = ACTIONS(2615), - [anon_sym_DOLLAR] = ACTIONS(2617), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [aux_sym_pandoc_str_token1] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2615), - [aux_sym__prose_punctuation_token1] = ACTIONS(2617), - [sym__line_ending] = ACTIONS(2615), - [sym__soft_line_ending] = ACTIONS(2615), - [sym__block_close] = ACTIONS(2615), - [sym__block_quote_start] = ACTIONS(2615), - [sym_atx_h1_marker] = ACTIONS(2615), - [sym_atx_h2_marker] = ACTIONS(2615), - [sym_atx_h3_marker] = ACTIONS(2615), - [sym_atx_h4_marker] = ACTIONS(2615), - [sym_atx_h5_marker] = ACTIONS(2615), - [sym_atx_h6_marker] = ACTIONS(2615), - [sym__thematic_break] = ACTIONS(2615), - [sym__list_marker_minus] = ACTIONS(2615), - [sym__list_marker_plus] = ACTIONS(2615), - [sym__list_marker_star] = ACTIONS(2615), - [sym__list_marker_parenthesis] = ACTIONS(2615), - [sym__list_marker_dot] = ACTIONS(2615), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_example] = ACTIONS(2615), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2615), - [sym__fenced_code_block_start_backtick] = ACTIONS(2615), - [sym_minus_metadata] = ACTIONS(2615), - [sym__pipe_table_start] = ACTIONS(2615), - [sym__fenced_div_start] = ACTIONS(2615), - [sym__fenced_div_end] = ACTIONS(2615), - [sym_ref_id_specifier] = ACTIONS(2615), - [sym__code_span_start] = ACTIONS(2615), - [sym__html_comment] = ACTIONS(2615), - [sym__autolink] = ACTIONS(2615), - [sym__highlight_span_start] = ACTIONS(2615), - [sym__insert_span_start] = ACTIONS(2615), - [sym__delete_span_start] = ACTIONS(2615), - [sym__edit_comment_span_start] = ACTIONS(2615), - [sym__single_quote_span_open] = ACTIONS(2615), - [sym__double_quote_span_open] = ACTIONS(2615), - [sym__shortcode_open_escaped] = ACTIONS(2615), - [sym__shortcode_open] = ACTIONS(2615), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2615), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2615), - [sym__cite_author_in_text] = ACTIONS(2615), - [sym__cite_suppress_author] = ACTIONS(2615), - [sym__strikeout_open] = ACTIONS(2615), - [sym__subscript_open] = ACTIONS(2615), - [sym__superscript_open] = ACTIONS(2615), - [sym__inline_note_start_token] = ACTIONS(2615), - [sym__strong_emphasis_open_star] = ACTIONS(2615), - [sym__strong_emphasis_open_underscore] = ACTIONS(2615), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2615), - [sym_inline_note_reference] = ACTIONS(2615), - [sym_html_element] = ACTIONS(2615), - [sym__pandoc_line_break] = ACTIONS(2615), + [STATE(357)] = { + [ts_builtin_sym_end] = ACTIONS(2649), + [anon_sym_COLON] = ACTIONS(2649), + [sym_entity_reference] = ACTIONS(2649), + [sym_numeric_character_reference] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_BANG_LBRACK] = ACTIONS(2649), + [anon_sym_DOLLAR] = ACTIONS(2651), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [aux_sym_pandoc_str_token1] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2649), + [sym__whitespace] = ACTIONS(2649), + [sym__line_ending] = ACTIONS(2649), + [sym__soft_line_ending] = ACTIONS(2649), + [sym__block_quote_start] = ACTIONS(2649), + [sym_atx_h1_marker] = ACTIONS(2649), + [sym_atx_h2_marker] = ACTIONS(2649), + [sym_atx_h3_marker] = ACTIONS(2649), + [sym_atx_h4_marker] = ACTIONS(2649), + [sym_atx_h5_marker] = ACTIONS(2649), + [sym_atx_h6_marker] = ACTIONS(2649), + [sym__thematic_break] = ACTIONS(2649), + [sym__list_marker_minus] = ACTIONS(2649), + [sym__list_marker_plus] = ACTIONS(2649), + [sym__list_marker_star] = ACTIONS(2649), + [sym__list_marker_parenthesis] = ACTIONS(2649), + [sym__list_marker_dot] = ACTIONS(2649), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_example] = ACTIONS(2649), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2649), + [sym__fenced_code_block_start_backtick] = ACTIONS(2649), + [sym_minus_metadata] = ACTIONS(2649), + [sym__pipe_table_start] = ACTIONS(2649), + [sym__fenced_div_start] = ACTIONS(2649), + [sym_ref_id_specifier] = ACTIONS(2649), + [sym__code_span_start] = ACTIONS(2649), + [sym__html_comment] = ACTIONS(2649), + [sym__autolink] = ACTIONS(2649), + [sym__highlight_span_start] = ACTIONS(2649), + [sym__insert_span_start] = ACTIONS(2649), + [sym__delete_span_start] = ACTIONS(2649), + [sym__edit_comment_span_start] = ACTIONS(2649), + [sym__single_quote_span_open] = ACTIONS(2649), + [sym__double_quote_span_open] = ACTIONS(2649), + [sym__shortcode_open_escaped] = ACTIONS(2649), + [sym__shortcode_open] = ACTIONS(2649), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2649), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2649), + [sym__cite_author_in_text] = ACTIONS(2649), + [sym__cite_suppress_author] = ACTIONS(2649), + [sym__strikeout_open] = ACTIONS(2649), + [sym__subscript_open] = ACTIONS(2649), + [sym__superscript_open] = ACTIONS(2649), + [sym__inline_note_start_token] = ACTIONS(2649), + [sym__strong_emphasis_open_star] = ACTIONS(2649), + [sym__strong_emphasis_open_underscore] = ACTIONS(2649), + [sym__emphasis_open_star] = ACTIONS(2649), + [sym__emphasis_open_underscore] = ACTIONS(2649), + [sym_inline_note_reference] = ACTIONS(2649), + [sym_html_element] = ACTIONS(2649), + [sym__pandoc_line_break] = ACTIONS(2649), }, - [STATE(392)] = { - [anon_sym_COLON] = ACTIONS(2621), - [sym_entity_reference] = ACTIONS(2621), - [sym_numeric_character_reference] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_BANG_LBRACK] = ACTIONS(2621), - [anon_sym_DOLLAR] = ACTIONS(2623), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [aux_sym_pandoc_str_token1] = ACTIONS(2623), - [anon_sym_PIPE] = ACTIONS(2621), - [aux_sym__prose_punctuation_token1] = ACTIONS(2623), - [sym__line_ending] = ACTIONS(2621), - [sym__soft_line_ending] = ACTIONS(2621), - [sym__block_close] = ACTIONS(2621), - [sym_block_continuation] = ACTIONS(3272), - [sym__block_quote_start] = ACTIONS(2621), - [sym_atx_h1_marker] = ACTIONS(2621), - [sym_atx_h2_marker] = ACTIONS(2621), - [sym_atx_h3_marker] = ACTIONS(2621), - [sym_atx_h4_marker] = ACTIONS(2621), - [sym_atx_h5_marker] = ACTIONS(2621), - [sym_atx_h6_marker] = ACTIONS(2621), - [sym__thematic_break] = ACTIONS(2621), - [sym__list_marker_minus] = ACTIONS(2621), - [sym__list_marker_plus] = ACTIONS(2621), - [sym__list_marker_star] = ACTIONS(2621), - [sym__list_marker_parenthesis] = ACTIONS(2621), - [sym__list_marker_dot] = ACTIONS(2621), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2621), - [sym__list_marker_example] = ACTIONS(2621), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2621), - [sym__fenced_code_block_start_backtick] = ACTIONS(2621), - [sym_minus_metadata] = ACTIONS(2621), - [sym__pipe_table_start] = ACTIONS(2621), - [sym__fenced_div_start] = ACTIONS(2621), - [sym_ref_id_specifier] = ACTIONS(2621), - [sym__code_span_start] = ACTIONS(2621), - [sym__html_comment] = ACTIONS(2621), - [sym__autolink] = ACTIONS(2621), - [sym__highlight_span_start] = ACTIONS(2621), - [sym__insert_span_start] = ACTIONS(2621), - [sym__delete_span_start] = ACTIONS(2621), - [sym__edit_comment_span_start] = ACTIONS(2621), - [sym__single_quote_span_open] = ACTIONS(2621), - [sym__double_quote_span_open] = ACTIONS(2621), - [sym__shortcode_open_escaped] = ACTIONS(2621), - [sym__shortcode_open] = ACTIONS(2621), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2621), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2621), - [sym__cite_author_in_text] = ACTIONS(2621), - [sym__cite_suppress_author] = ACTIONS(2621), - [sym__strikeout_open] = ACTIONS(2621), - [sym__subscript_open] = ACTIONS(2621), - [sym__superscript_open] = ACTIONS(2621), - [sym__inline_note_start_token] = ACTIONS(2621), - [sym__strong_emphasis_open_star] = ACTIONS(2621), - [sym__strong_emphasis_open_underscore] = ACTIONS(2621), - [sym__emphasis_open_star] = ACTIONS(2621), - [sym__emphasis_open_underscore] = ACTIONS(2621), - [sym_inline_note_reference] = ACTIONS(2621), - [sym_html_element] = ACTIONS(2621), - [sym__pandoc_line_break] = ACTIONS(2621), + [STATE(358)] = { + [anon_sym_COLON] = ACTIONS(2673), + [sym_entity_reference] = ACTIONS(2673), + [sym_numeric_character_reference] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_BANG_LBRACK] = ACTIONS(2673), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2673), + [aux_sym_pandoc_str_token1] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2673), + [sym__whitespace] = ACTIONS(2673), + [sym__line_ending] = ACTIONS(2673), + [sym__soft_line_ending] = ACTIONS(2673), + [sym__block_close] = ACTIONS(2673), + [sym__block_quote_start] = ACTIONS(2673), + [sym_atx_h1_marker] = ACTIONS(2673), + [sym_atx_h2_marker] = ACTIONS(2673), + [sym_atx_h3_marker] = ACTIONS(2673), + [sym_atx_h4_marker] = ACTIONS(2673), + [sym_atx_h5_marker] = ACTIONS(2673), + [sym_atx_h6_marker] = ACTIONS(2673), + [sym__thematic_break] = ACTIONS(2673), + [sym__list_marker_minus] = ACTIONS(2673), + [sym__list_marker_plus] = ACTIONS(2673), + [sym__list_marker_star] = ACTIONS(2673), + [sym__list_marker_parenthesis] = ACTIONS(2673), + [sym__list_marker_dot] = ACTIONS(2673), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_example] = ACTIONS(2673), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2673), + [sym__fenced_code_block_start_backtick] = ACTIONS(2673), + [sym_minus_metadata] = ACTIONS(2673), + [sym__pipe_table_start] = ACTIONS(2673), + [sym__fenced_div_start] = ACTIONS(2673), + [sym_ref_id_specifier] = ACTIONS(2673), + [sym__code_span_start] = ACTIONS(2673), + [sym__html_comment] = ACTIONS(2673), + [sym__autolink] = ACTIONS(2673), + [sym__highlight_span_start] = ACTIONS(2673), + [sym__insert_span_start] = ACTIONS(2673), + [sym__delete_span_start] = ACTIONS(2673), + [sym__edit_comment_span_start] = ACTIONS(2673), + [sym__single_quote_span_open] = ACTIONS(2673), + [sym__double_quote_span_open] = ACTIONS(2673), + [sym__shortcode_open_escaped] = ACTIONS(2673), + [sym__shortcode_open] = ACTIONS(2673), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2673), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2673), + [sym__cite_author_in_text] = ACTIONS(2673), + [sym__cite_suppress_author] = ACTIONS(2673), + [sym__strikeout_open] = ACTIONS(2673), + [sym__subscript_open] = ACTIONS(2673), + [sym__superscript_open] = ACTIONS(2673), + [sym__inline_note_start_token] = ACTIONS(2673), + [sym__strong_emphasis_open_star] = ACTIONS(2673), + [sym__strong_emphasis_open_underscore] = ACTIONS(2673), + [sym__emphasis_open_star] = ACTIONS(2673), + [sym__emphasis_open_underscore] = ACTIONS(2673), + [sym_inline_note_reference] = ACTIONS(2673), + [sym_html_element] = ACTIONS(2673), + [sym__pandoc_line_break] = ACTIONS(2673), }, - [STATE(393)] = { - [anon_sym_COLON] = ACTIONS(3274), - [sym_entity_reference] = ACTIONS(3274), - [sym_numeric_character_reference] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_BANG_LBRACK] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [aux_sym_pandoc_str_token1] = ACTIONS(3276), - [anon_sym_PIPE] = ACTIONS(3274), - [aux_sym__prose_punctuation_token1] = ACTIONS(3276), - [sym__line_ending] = ACTIONS(3274), - [sym__soft_line_ending] = ACTIONS(3274), - [sym__block_close] = ACTIONS(3274), - [sym__block_quote_start] = ACTIONS(3274), - [sym_atx_h1_marker] = ACTIONS(3274), - [sym_atx_h2_marker] = ACTIONS(3274), - [sym_atx_h3_marker] = ACTIONS(3274), - [sym_atx_h4_marker] = ACTIONS(3274), - [sym_atx_h5_marker] = ACTIONS(3274), - [sym_atx_h6_marker] = ACTIONS(3274), - [sym__thematic_break] = ACTIONS(3274), - [sym__list_marker_minus] = ACTIONS(3274), - [sym__list_marker_plus] = ACTIONS(3274), - [sym__list_marker_star] = ACTIONS(3274), - [sym__list_marker_parenthesis] = ACTIONS(3274), - [sym__list_marker_dot] = ACTIONS(3274), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_example] = ACTIONS(3274), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3274), - [sym__fenced_code_block_start_backtick] = ACTIONS(3274), - [sym_minus_metadata] = ACTIONS(3274), - [sym__pipe_table_start] = ACTIONS(3274), - [sym__fenced_div_start] = ACTIONS(3274), - [sym__fenced_div_end] = ACTIONS(3274), - [sym_ref_id_specifier] = ACTIONS(3274), - [sym__code_span_start] = ACTIONS(3274), - [sym__html_comment] = ACTIONS(3274), - [sym__autolink] = ACTIONS(3274), - [sym__highlight_span_start] = ACTIONS(3274), - [sym__insert_span_start] = ACTIONS(3274), - [sym__delete_span_start] = ACTIONS(3274), - [sym__edit_comment_span_start] = ACTIONS(3274), - [sym__single_quote_span_open] = ACTIONS(3274), - [sym__double_quote_span_open] = ACTIONS(3274), - [sym__shortcode_open_escaped] = ACTIONS(3274), - [sym__shortcode_open] = ACTIONS(3274), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3274), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3274), - [sym__cite_author_in_text] = ACTIONS(3274), - [sym__cite_suppress_author] = ACTIONS(3274), - [sym__strikeout_open] = ACTIONS(3274), - [sym__subscript_open] = ACTIONS(3274), - [sym__superscript_open] = ACTIONS(3274), - [sym__inline_note_start_token] = ACTIONS(3274), - [sym__strong_emphasis_open_star] = ACTIONS(3274), - [sym__strong_emphasis_open_underscore] = ACTIONS(3274), - [sym__emphasis_open_star] = ACTIONS(3274), - [sym__emphasis_open_underscore] = ACTIONS(3274), - [sym_inline_note_reference] = ACTIONS(3274), - [sym_html_element] = ACTIONS(3274), - [sym__pandoc_line_break] = ACTIONS(3274), + [STATE(359)] = { + [anon_sym_COLON] = ACTIONS(2745), + [sym_entity_reference] = ACTIONS(2745), + [sym_numeric_character_reference] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_BANG_LBRACK] = ACTIONS(2745), + [anon_sym_DOLLAR] = ACTIONS(2747), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [aux_sym_pandoc_str_token1] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2745), + [sym__whitespace] = ACTIONS(2745), + [sym__line_ending] = ACTIONS(2745), + [sym__soft_line_ending] = ACTIONS(2745), + [sym__block_close] = ACTIONS(2745), + [sym__block_quote_start] = ACTIONS(2745), + [sym_atx_h1_marker] = ACTIONS(2745), + [sym_atx_h2_marker] = ACTIONS(2745), + [sym_atx_h3_marker] = ACTIONS(2745), + [sym_atx_h4_marker] = ACTIONS(2745), + [sym_atx_h5_marker] = ACTIONS(2745), + [sym_atx_h6_marker] = ACTIONS(2745), + [sym__thematic_break] = ACTIONS(2745), + [sym__list_marker_minus] = ACTIONS(2745), + [sym__list_marker_plus] = ACTIONS(2745), + [sym__list_marker_star] = ACTIONS(2745), + [sym__list_marker_parenthesis] = ACTIONS(2745), + [sym__list_marker_dot] = ACTIONS(2745), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_example] = ACTIONS(2745), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2745), + [sym__fenced_code_block_start_backtick] = ACTIONS(2745), + [sym_minus_metadata] = ACTIONS(2745), + [sym__pipe_table_start] = ACTIONS(2745), + [sym__fenced_div_start] = ACTIONS(2745), + [sym_ref_id_specifier] = ACTIONS(2745), + [sym__code_span_start] = ACTIONS(2745), + [sym__html_comment] = ACTIONS(2745), + [sym__autolink] = ACTIONS(2745), + [sym__highlight_span_start] = ACTIONS(2745), + [sym__insert_span_start] = ACTIONS(2745), + [sym__delete_span_start] = ACTIONS(2745), + [sym__edit_comment_span_start] = ACTIONS(2745), + [sym__single_quote_span_open] = ACTIONS(2745), + [sym__double_quote_span_open] = ACTIONS(2745), + [sym__shortcode_open_escaped] = ACTIONS(2745), + [sym__shortcode_open] = ACTIONS(2745), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2745), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2745), + [sym__cite_author_in_text] = ACTIONS(2745), + [sym__cite_suppress_author] = ACTIONS(2745), + [sym__strikeout_open] = ACTIONS(2745), + [sym__subscript_open] = ACTIONS(2745), + [sym__superscript_open] = ACTIONS(2745), + [sym__inline_note_start_token] = ACTIONS(2745), + [sym__strong_emphasis_open_star] = ACTIONS(2745), + [sym__strong_emphasis_open_underscore] = ACTIONS(2745), + [sym__emphasis_open_star] = ACTIONS(2745), + [sym__emphasis_open_underscore] = ACTIONS(2745), + [sym_inline_note_reference] = ACTIONS(2745), + [sym_html_element] = ACTIONS(2745), + [sym__pandoc_line_break] = ACTIONS(2745), }, - [STATE(394)] = { - [sym_pipe_table_cell] = STATE(3035), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym_pipe_table_row_repeat1] = STATE(366), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(3278), - [sym__line_ending] = ACTIONS(2439), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pandoc_line_break] = ACTIONS(2509), + [STATE(360)] = { + [anon_sym_COLON] = ACTIONS(2371), + [sym_entity_reference] = ACTIONS(2371), + [sym_numeric_character_reference] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_BANG_LBRACK] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [aux_sym_pandoc_str_token1] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2371), + [sym__whitespace] = ACTIONS(2371), + [sym__line_ending] = ACTIONS(2371), + [sym__soft_line_ending] = ACTIONS(2371), + [sym__block_close] = ACTIONS(2371), + [sym__block_quote_start] = ACTIONS(2371), + [sym_atx_h1_marker] = ACTIONS(2371), + [sym_atx_h2_marker] = ACTIONS(2371), + [sym_atx_h3_marker] = ACTIONS(2371), + [sym_atx_h4_marker] = ACTIONS(2371), + [sym_atx_h5_marker] = ACTIONS(2371), + [sym_atx_h6_marker] = ACTIONS(2371), + [sym__thematic_break] = ACTIONS(2371), + [sym__list_marker_minus] = ACTIONS(2371), + [sym__list_marker_plus] = ACTIONS(2371), + [sym__list_marker_star] = ACTIONS(2371), + [sym__list_marker_parenthesis] = ACTIONS(2371), + [sym__list_marker_dot] = ACTIONS(2371), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_example] = ACTIONS(2371), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2371), + [sym__fenced_code_block_start_backtick] = ACTIONS(2371), + [sym_minus_metadata] = ACTIONS(2371), + [sym__pipe_table_start] = ACTIONS(2371), + [sym__fenced_div_start] = ACTIONS(2371), + [sym_ref_id_specifier] = ACTIONS(2371), + [sym__code_span_start] = ACTIONS(2371), + [sym__html_comment] = ACTIONS(2371), + [sym__autolink] = ACTIONS(2371), + [sym__highlight_span_start] = ACTIONS(2371), + [sym__insert_span_start] = ACTIONS(2371), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2371), + [sym__single_quote_span_open] = ACTIONS(2371), + [sym__double_quote_span_open] = ACTIONS(2371), + [sym__shortcode_open_escaped] = ACTIONS(2371), + [sym__shortcode_open] = ACTIONS(2371), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2371), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2371), + [sym__cite_author_in_text] = ACTIONS(2371), + [sym__cite_suppress_author] = ACTIONS(2371), + [sym__strikeout_open] = ACTIONS(2371), + [sym__subscript_open] = ACTIONS(2371), + [sym__superscript_open] = ACTIONS(2371), + [sym__inline_note_start_token] = ACTIONS(2371), + [sym__strong_emphasis_open_star] = ACTIONS(2371), + [sym__strong_emphasis_open_underscore] = ACTIONS(2371), + [sym__emphasis_open_star] = ACTIONS(2371), + [sym__emphasis_open_underscore] = ACTIONS(2371), + [sym_inline_note_reference] = ACTIONS(2371), + [sym_html_element] = ACTIONS(2371), + [sym__pandoc_line_break] = ACTIONS(2371), }, - [STATE(395)] = { - [anon_sym_COLON] = ACTIONS(3280), - [sym_entity_reference] = ACTIONS(3280), - [sym_numeric_character_reference] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_BANG_LBRACK] = ACTIONS(3280), - [anon_sym_DOLLAR] = ACTIONS(3282), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3280), - [aux_sym_pandoc_str_token1] = ACTIONS(3282), - [anon_sym_PIPE] = ACTIONS(3280), - [aux_sym__prose_punctuation_token1] = ACTIONS(3282), - [sym__line_ending] = ACTIONS(3280), - [sym__soft_line_ending] = ACTIONS(3280), - [sym__block_close] = ACTIONS(3280), - [sym__block_quote_start] = ACTIONS(3280), - [sym_atx_h1_marker] = ACTIONS(3280), - [sym_atx_h2_marker] = ACTIONS(3280), - [sym_atx_h3_marker] = ACTIONS(3280), - [sym_atx_h4_marker] = ACTIONS(3280), - [sym_atx_h5_marker] = ACTIONS(3280), - [sym_atx_h6_marker] = ACTIONS(3280), - [sym__thematic_break] = ACTIONS(3280), - [sym__list_marker_minus] = ACTIONS(3280), - [sym__list_marker_plus] = ACTIONS(3280), - [sym__list_marker_star] = ACTIONS(3280), - [sym__list_marker_parenthesis] = ACTIONS(3280), - [sym__list_marker_dot] = ACTIONS(3280), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_example] = ACTIONS(3280), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3280), - [sym__fenced_code_block_start_backtick] = ACTIONS(3280), - [sym_minus_metadata] = ACTIONS(3280), - [sym__pipe_table_start] = ACTIONS(3280), - [sym__fenced_div_start] = ACTIONS(3280), - [sym__fenced_div_end] = ACTIONS(3280), - [sym_ref_id_specifier] = ACTIONS(3280), - [sym__code_span_start] = ACTIONS(3280), - [sym__html_comment] = ACTIONS(3280), - [sym__autolink] = ACTIONS(3280), - [sym__highlight_span_start] = ACTIONS(3280), - [sym__insert_span_start] = ACTIONS(3280), - [sym__delete_span_start] = ACTIONS(3280), - [sym__edit_comment_span_start] = ACTIONS(3280), - [sym__single_quote_span_open] = ACTIONS(3280), - [sym__double_quote_span_open] = ACTIONS(3280), - [sym__shortcode_open_escaped] = ACTIONS(3280), - [sym__shortcode_open] = ACTIONS(3280), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3280), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3280), - [sym__cite_author_in_text] = ACTIONS(3280), - [sym__cite_suppress_author] = ACTIONS(3280), - [sym__strikeout_open] = ACTIONS(3280), - [sym__subscript_open] = ACTIONS(3280), - [sym__superscript_open] = ACTIONS(3280), - [sym__inline_note_start_token] = ACTIONS(3280), - [sym__strong_emphasis_open_star] = ACTIONS(3280), - [sym__strong_emphasis_open_underscore] = ACTIONS(3280), - [sym__emphasis_open_star] = ACTIONS(3280), - [sym__emphasis_open_underscore] = ACTIONS(3280), - [sym_inline_note_reference] = ACTIONS(3280), - [sym_html_element] = ACTIONS(3280), - [sym__pandoc_line_break] = ACTIONS(3280), + [STATE(361)] = { + [anon_sym_COLON] = ACTIONS(2681), + [sym_entity_reference] = ACTIONS(2681), + [sym_numeric_character_reference] = ACTIONS(2681), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_BANG_LBRACK] = ACTIONS(2681), + [anon_sym_DOLLAR] = ACTIONS(2683), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2681), + [aux_sym_pandoc_str_token1] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2681), + [sym__whitespace] = ACTIONS(2681), + [sym__line_ending] = ACTIONS(2681), + [sym__soft_line_ending] = ACTIONS(2681), + [sym__block_close] = ACTIONS(2681), + [sym__block_quote_start] = ACTIONS(2681), + [sym_atx_h1_marker] = ACTIONS(2681), + [sym_atx_h2_marker] = ACTIONS(2681), + [sym_atx_h3_marker] = ACTIONS(2681), + [sym_atx_h4_marker] = ACTIONS(2681), + [sym_atx_h5_marker] = ACTIONS(2681), + [sym_atx_h6_marker] = ACTIONS(2681), + [sym__thematic_break] = ACTIONS(2681), + [sym__list_marker_minus] = ACTIONS(2681), + [sym__list_marker_plus] = ACTIONS(2681), + [sym__list_marker_star] = ACTIONS(2681), + [sym__list_marker_parenthesis] = ACTIONS(2681), + [sym__list_marker_dot] = ACTIONS(2681), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2681), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2681), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2681), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2681), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2681), + [sym__list_marker_example] = ACTIONS(2681), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2681), + [sym__fenced_code_block_start_backtick] = ACTIONS(2681), + [sym_minus_metadata] = ACTIONS(2681), + [sym__pipe_table_start] = ACTIONS(2681), + [sym__fenced_div_start] = ACTIONS(2681), + [sym_ref_id_specifier] = ACTIONS(2681), + [sym__code_span_start] = ACTIONS(2681), + [sym__html_comment] = ACTIONS(2681), + [sym__autolink] = ACTIONS(2681), + [sym__highlight_span_start] = ACTIONS(2681), + [sym__insert_span_start] = ACTIONS(2681), + [sym__delete_span_start] = ACTIONS(2681), + [sym__edit_comment_span_start] = ACTIONS(2681), + [sym__single_quote_span_open] = ACTIONS(2681), + [sym__double_quote_span_open] = ACTIONS(2681), + [sym__shortcode_open_escaped] = ACTIONS(2681), + [sym__shortcode_open] = ACTIONS(2681), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2681), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2681), + [sym__cite_author_in_text] = ACTIONS(2681), + [sym__cite_suppress_author] = ACTIONS(2681), + [sym__strikeout_open] = ACTIONS(2681), + [sym__subscript_open] = ACTIONS(2681), + [sym__superscript_open] = ACTIONS(2681), + [sym__inline_note_start_token] = ACTIONS(2681), + [sym__strong_emphasis_open_star] = ACTIONS(2681), + [sym__strong_emphasis_open_underscore] = ACTIONS(2681), + [sym__emphasis_open_star] = ACTIONS(2681), + [sym__emphasis_open_underscore] = ACTIONS(2681), + [sym_inline_note_reference] = ACTIONS(2681), + [sym_html_element] = ACTIONS(2681), + [sym__pandoc_line_break] = ACTIONS(2681), }, - [STATE(396)] = { - [anon_sym_COLON] = ACTIONS(3284), - [sym_entity_reference] = ACTIONS(3284), - [sym_numeric_character_reference] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_BANG_LBRACK] = ACTIONS(3284), - [anon_sym_DOLLAR] = ACTIONS(3286), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [aux_sym_pandoc_str_token1] = ACTIONS(3286), - [anon_sym_PIPE] = ACTIONS(3284), - [aux_sym__prose_punctuation_token1] = ACTIONS(3286), - [sym__line_ending] = ACTIONS(3284), - [sym__soft_line_ending] = ACTIONS(3284), - [sym__block_close] = ACTIONS(3284), - [sym__block_quote_start] = ACTIONS(3284), - [sym_atx_h1_marker] = ACTIONS(3284), - [sym_atx_h2_marker] = ACTIONS(3284), - [sym_atx_h3_marker] = ACTIONS(3284), - [sym_atx_h4_marker] = ACTIONS(3284), - [sym_atx_h5_marker] = ACTIONS(3284), - [sym_atx_h6_marker] = ACTIONS(3284), - [sym__thematic_break] = ACTIONS(3284), - [sym__list_marker_minus] = ACTIONS(3284), - [sym__list_marker_plus] = ACTIONS(3284), - [sym__list_marker_star] = ACTIONS(3284), - [sym__list_marker_parenthesis] = ACTIONS(3284), - [sym__list_marker_dot] = ACTIONS(3284), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_example] = ACTIONS(3284), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3284), - [sym__fenced_code_block_start_backtick] = ACTIONS(3284), - [sym_minus_metadata] = ACTIONS(3284), - [sym__pipe_table_start] = ACTIONS(3284), - [sym__fenced_div_start] = ACTIONS(3284), - [sym__fenced_div_end] = ACTIONS(3284), - [sym_ref_id_specifier] = ACTIONS(3284), - [sym__code_span_start] = ACTIONS(3284), - [sym__html_comment] = ACTIONS(3284), - [sym__autolink] = ACTIONS(3284), - [sym__highlight_span_start] = ACTIONS(3284), - [sym__insert_span_start] = ACTIONS(3284), - [sym__delete_span_start] = ACTIONS(3284), - [sym__edit_comment_span_start] = ACTIONS(3284), - [sym__single_quote_span_open] = ACTIONS(3284), - [sym__double_quote_span_open] = ACTIONS(3284), - [sym__shortcode_open_escaped] = ACTIONS(3284), - [sym__shortcode_open] = ACTIONS(3284), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3284), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3284), - [sym__cite_author_in_text] = ACTIONS(3284), - [sym__cite_suppress_author] = ACTIONS(3284), - [sym__strikeout_open] = ACTIONS(3284), - [sym__subscript_open] = ACTIONS(3284), - [sym__superscript_open] = ACTIONS(3284), - [sym__inline_note_start_token] = ACTIONS(3284), - [sym__strong_emphasis_open_star] = ACTIONS(3284), - [sym__strong_emphasis_open_underscore] = ACTIONS(3284), - [sym__emphasis_open_star] = ACTIONS(3284), - [sym__emphasis_open_underscore] = ACTIONS(3284), - [sym_inline_note_reference] = ACTIONS(3284), - [sym_html_element] = ACTIONS(3284), - [sym__pandoc_line_break] = ACTIONS(3284), + [STATE(362)] = { + [anon_sym_COLON] = ACTIONS(2749), + [sym_entity_reference] = ACTIONS(2749), + [sym_numeric_character_reference] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_BANG_LBRACK] = ACTIONS(2749), + [anon_sym_DOLLAR] = ACTIONS(2751), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2749), + [aux_sym_pandoc_str_token1] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2749), + [sym__whitespace] = ACTIONS(2749), + [sym__line_ending] = ACTIONS(2749), + [sym__soft_line_ending] = ACTIONS(2749), + [sym__block_close] = ACTIONS(2749), + [sym__block_quote_start] = ACTIONS(2749), + [sym_atx_h1_marker] = ACTIONS(2749), + [sym_atx_h2_marker] = ACTIONS(2749), + [sym_atx_h3_marker] = ACTIONS(2749), + [sym_atx_h4_marker] = ACTIONS(2749), + [sym_atx_h5_marker] = ACTIONS(2749), + [sym_atx_h6_marker] = ACTIONS(2749), + [sym__thematic_break] = ACTIONS(2749), + [sym__list_marker_minus] = ACTIONS(2749), + [sym__list_marker_plus] = ACTIONS(2749), + [sym__list_marker_star] = ACTIONS(2749), + [sym__list_marker_parenthesis] = ACTIONS(2749), + [sym__list_marker_dot] = ACTIONS(2749), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_example] = ACTIONS(2749), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2749), + [sym__fenced_code_block_start_backtick] = ACTIONS(2749), + [sym_minus_metadata] = ACTIONS(2749), + [sym__pipe_table_start] = ACTIONS(2749), + [sym__fenced_div_start] = ACTIONS(2749), + [sym_ref_id_specifier] = ACTIONS(2749), + [sym__code_span_start] = ACTIONS(2749), + [sym__html_comment] = ACTIONS(2749), + [sym__autolink] = ACTIONS(2749), + [sym__highlight_span_start] = ACTIONS(2749), + [sym__insert_span_start] = ACTIONS(2749), + [sym__delete_span_start] = ACTIONS(2749), + [sym__edit_comment_span_start] = ACTIONS(2749), + [sym__single_quote_span_open] = ACTIONS(2749), + [sym__double_quote_span_open] = ACTIONS(2749), + [sym__shortcode_open_escaped] = ACTIONS(2749), + [sym__shortcode_open] = ACTIONS(2749), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2749), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2749), + [sym__cite_author_in_text] = ACTIONS(2749), + [sym__cite_suppress_author] = ACTIONS(2749), + [sym__strikeout_open] = ACTIONS(2749), + [sym__subscript_open] = ACTIONS(2749), + [sym__superscript_open] = ACTIONS(2749), + [sym__inline_note_start_token] = ACTIONS(2749), + [sym__strong_emphasis_open_star] = ACTIONS(2749), + [sym__strong_emphasis_open_underscore] = ACTIONS(2749), + [sym__emphasis_open_star] = ACTIONS(2749), + [sym__emphasis_open_underscore] = ACTIONS(2749), + [sym_inline_note_reference] = ACTIONS(2749), + [sym_html_element] = ACTIONS(2749), + [sym__pandoc_line_break] = ACTIONS(2749), }, - [STATE(397)] = { - [anon_sym_COLON] = ACTIONS(3288), - [sym_entity_reference] = ACTIONS(3288), - [sym_numeric_character_reference] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_BANG_LBRACK] = ACTIONS(3288), - [anon_sym_DOLLAR] = ACTIONS(3290), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [aux_sym_pandoc_str_token1] = ACTIONS(3290), - [anon_sym_PIPE] = ACTIONS(3288), - [aux_sym__prose_punctuation_token1] = ACTIONS(3290), - [sym__line_ending] = ACTIONS(3288), - [sym__soft_line_ending] = ACTIONS(3288), - [sym__block_close] = ACTIONS(3288), - [sym__block_quote_start] = ACTIONS(3288), - [sym_atx_h1_marker] = ACTIONS(3288), - [sym_atx_h2_marker] = ACTIONS(3288), - [sym_atx_h3_marker] = ACTIONS(3288), - [sym_atx_h4_marker] = ACTIONS(3288), - [sym_atx_h5_marker] = ACTIONS(3288), - [sym_atx_h6_marker] = ACTIONS(3288), - [sym__thematic_break] = ACTIONS(3288), - [sym__list_marker_minus] = ACTIONS(3288), - [sym__list_marker_plus] = ACTIONS(3288), - [sym__list_marker_star] = ACTIONS(3288), - [sym__list_marker_parenthesis] = ACTIONS(3288), - [sym__list_marker_dot] = ACTIONS(3288), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_example] = ACTIONS(3288), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3288), - [sym__fenced_code_block_start_backtick] = ACTIONS(3288), - [sym_minus_metadata] = ACTIONS(3288), - [sym__pipe_table_start] = ACTIONS(3288), - [sym__fenced_div_start] = ACTIONS(3288), - [sym__fenced_div_end] = ACTIONS(3288), - [sym_ref_id_specifier] = ACTIONS(3288), - [sym__code_span_start] = ACTIONS(3288), - [sym__html_comment] = ACTIONS(3288), - [sym__autolink] = ACTIONS(3288), - [sym__highlight_span_start] = ACTIONS(3288), - [sym__insert_span_start] = ACTIONS(3288), - [sym__delete_span_start] = ACTIONS(3288), - [sym__edit_comment_span_start] = ACTIONS(3288), - [sym__single_quote_span_open] = ACTIONS(3288), - [sym__double_quote_span_open] = ACTIONS(3288), - [sym__shortcode_open_escaped] = ACTIONS(3288), - [sym__shortcode_open] = ACTIONS(3288), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3288), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3288), - [sym__cite_author_in_text] = ACTIONS(3288), - [sym__cite_suppress_author] = ACTIONS(3288), - [sym__strikeout_open] = ACTIONS(3288), - [sym__subscript_open] = ACTIONS(3288), - [sym__superscript_open] = ACTIONS(3288), - [sym__inline_note_start_token] = ACTIONS(3288), - [sym__strong_emphasis_open_star] = ACTIONS(3288), - [sym__strong_emphasis_open_underscore] = ACTIONS(3288), - [sym__emphasis_open_star] = ACTIONS(3288), - [sym__emphasis_open_underscore] = ACTIONS(3288), - [sym_inline_note_reference] = ACTIONS(3288), - [sym_html_element] = ACTIONS(3288), - [sym__pandoc_line_break] = ACTIONS(3288), + [STATE(363)] = { + [ts_builtin_sym_end] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2685), + [sym_entity_reference] = ACTIONS(2685), + [sym_numeric_character_reference] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_BANG_LBRACK] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [aux_sym_pandoc_str_token1] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2685), + [sym__whitespace] = ACTIONS(2685), + [sym__line_ending] = ACTIONS(2685), + [sym__soft_line_ending] = ACTIONS(2685), + [sym__block_quote_start] = ACTIONS(2685), + [sym_atx_h1_marker] = ACTIONS(2685), + [sym_atx_h2_marker] = ACTIONS(2685), + [sym_atx_h3_marker] = ACTIONS(2685), + [sym_atx_h4_marker] = ACTIONS(2685), + [sym_atx_h5_marker] = ACTIONS(2685), + [sym_atx_h6_marker] = ACTIONS(2685), + [sym__thematic_break] = ACTIONS(2685), + [sym__list_marker_minus] = ACTIONS(2685), + [sym__list_marker_plus] = ACTIONS(2685), + [sym__list_marker_star] = ACTIONS(2685), + [sym__list_marker_parenthesis] = ACTIONS(2685), + [sym__list_marker_dot] = ACTIONS(2685), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_example] = ACTIONS(2685), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2685), + [sym__fenced_code_block_start_backtick] = ACTIONS(2685), + [sym_minus_metadata] = ACTIONS(2685), + [sym__pipe_table_start] = ACTIONS(2685), + [sym__fenced_div_start] = ACTIONS(2685), + [sym_ref_id_specifier] = ACTIONS(2685), + [sym__code_span_start] = ACTIONS(2685), + [sym__html_comment] = ACTIONS(2685), + [sym__autolink] = ACTIONS(2685), + [sym__highlight_span_start] = ACTIONS(2685), + [sym__insert_span_start] = ACTIONS(2685), + [sym__delete_span_start] = ACTIONS(2685), + [sym__edit_comment_span_start] = ACTIONS(2685), + [sym__single_quote_span_open] = ACTIONS(2685), + [sym__double_quote_span_open] = ACTIONS(2685), + [sym__shortcode_open_escaped] = ACTIONS(2685), + [sym__shortcode_open] = ACTIONS(2685), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2685), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2685), + [sym__cite_author_in_text] = ACTIONS(2685), + [sym__cite_suppress_author] = ACTIONS(2685), + [sym__strikeout_open] = ACTIONS(2685), + [sym__subscript_open] = ACTIONS(2685), + [sym__superscript_open] = ACTIONS(2685), + [sym__inline_note_start_token] = ACTIONS(2685), + [sym__strong_emphasis_open_star] = ACTIONS(2685), + [sym__strong_emphasis_open_underscore] = ACTIONS(2685), + [sym__emphasis_open_star] = ACTIONS(2685), + [sym__emphasis_open_underscore] = ACTIONS(2685), + [sym_inline_note_reference] = ACTIONS(2685), + [sym_html_element] = ACTIONS(2685), + [sym__pandoc_line_break] = ACTIONS(2685), }, - [STATE(398)] = { - [anon_sym_COLON] = ACTIONS(3292), - [sym_entity_reference] = ACTIONS(3292), - [sym_numeric_character_reference] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_BANG_LBRACK] = ACTIONS(3292), - [anon_sym_DOLLAR] = ACTIONS(3294), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [aux_sym_pandoc_str_token1] = ACTIONS(3294), - [anon_sym_PIPE] = ACTIONS(3292), - [aux_sym__prose_punctuation_token1] = ACTIONS(3294), - [sym__line_ending] = ACTIONS(3292), - [sym__soft_line_ending] = ACTIONS(3292), - [sym__block_close] = ACTIONS(3292), - [sym__block_quote_start] = ACTIONS(3292), - [sym_atx_h1_marker] = ACTIONS(3292), - [sym_atx_h2_marker] = ACTIONS(3292), - [sym_atx_h3_marker] = ACTIONS(3292), - [sym_atx_h4_marker] = ACTIONS(3292), - [sym_atx_h5_marker] = ACTIONS(3292), - [sym_atx_h6_marker] = ACTIONS(3292), - [sym__thematic_break] = ACTIONS(3292), - [sym__list_marker_minus] = ACTIONS(3292), - [sym__list_marker_plus] = ACTIONS(3292), - [sym__list_marker_star] = ACTIONS(3292), - [sym__list_marker_parenthesis] = ACTIONS(3292), - [sym__list_marker_dot] = ACTIONS(3292), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_example] = ACTIONS(3292), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3292), - [sym__fenced_code_block_start_backtick] = ACTIONS(3292), - [sym_minus_metadata] = ACTIONS(3292), - [sym__pipe_table_start] = ACTIONS(3292), - [sym__fenced_div_start] = ACTIONS(3292), - [sym__fenced_div_end] = ACTIONS(3292), - [sym_ref_id_specifier] = ACTIONS(3292), - [sym__code_span_start] = ACTIONS(3292), - [sym__html_comment] = ACTIONS(3292), - [sym__autolink] = ACTIONS(3292), - [sym__highlight_span_start] = ACTIONS(3292), - [sym__insert_span_start] = ACTIONS(3292), - [sym__delete_span_start] = ACTIONS(3292), - [sym__edit_comment_span_start] = ACTIONS(3292), - [sym__single_quote_span_open] = ACTIONS(3292), - [sym__double_quote_span_open] = ACTIONS(3292), - [sym__shortcode_open_escaped] = ACTIONS(3292), - [sym__shortcode_open] = ACTIONS(3292), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3292), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3292), - [sym__cite_author_in_text] = ACTIONS(3292), - [sym__cite_suppress_author] = ACTIONS(3292), - [sym__strikeout_open] = ACTIONS(3292), - [sym__subscript_open] = ACTIONS(3292), - [sym__superscript_open] = ACTIONS(3292), - [sym__inline_note_start_token] = ACTIONS(3292), - [sym__strong_emphasis_open_star] = ACTIONS(3292), - [sym__strong_emphasis_open_underscore] = ACTIONS(3292), - [sym__emphasis_open_star] = ACTIONS(3292), - [sym__emphasis_open_underscore] = ACTIONS(3292), - [sym_inline_note_reference] = ACTIONS(3292), - [sym_html_element] = ACTIONS(3292), - [sym__pandoc_line_break] = ACTIONS(3292), + [STATE(364)] = { + [anon_sym_COLON] = ACTIONS(2333), + [sym_entity_reference] = ACTIONS(2333), + [sym_numeric_character_reference] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_BANG_LBRACK] = ACTIONS(2333), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [aux_sym_pandoc_str_token1] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2333), + [sym__whitespace] = ACTIONS(2333), + [sym__line_ending] = ACTIONS(2333), + [sym__soft_line_ending] = ACTIONS(2333), + [sym__block_close] = ACTIONS(2333), + [sym__block_quote_start] = ACTIONS(2333), + [sym_atx_h1_marker] = ACTIONS(2333), + [sym_atx_h2_marker] = ACTIONS(2333), + [sym_atx_h3_marker] = ACTIONS(2333), + [sym_atx_h4_marker] = ACTIONS(2333), + [sym_atx_h5_marker] = ACTIONS(2333), + [sym_atx_h6_marker] = ACTIONS(2333), + [sym__thematic_break] = ACTIONS(2333), + [sym__list_marker_minus] = ACTIONS(2333), + [sym__list_marker_plus] = ACTIONS(2333), + [sym__list_marker_star] = ACTIONS(2333), + [sym__list_marker_parenthesis] = ACTIONS(2333), + [sym__list_marker_dot] = ACTIONS(2333), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_example] = ACTIONS(2333), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2333), + [sym__fenced_code_block_start_backtick] = ACTIONS(2333), + [sym_minus_metadata] = ACTIONS(2333), + [sym__pipe_table_start] = ACTIONS(2333), + [sym__fenced_div_start] = ACTIONS(2333), + [sym_ref_id_specifier] = ACTIONS(2333), + [sym__code_span_start] = ACTIONS(2333), + [sym__html_comment] = ACTIONS(2333), + [sym__autolink] = ACTIONS(2333), + [sym__highlight_span_start] = ACTIONS(2333), + [sym__insert_span_start] = ACTIONS(2333), + [sym__delete_span_start] = ACTIONS(2333), + [sym__edit_comment_span_start] = ACTIONS(2333), + [sym__single_quote_span_open] = ACTIONS(2333), + [sym__double_quote_span_open] = ACTIONS(2333), + [sym__shortcode_open_escaped] = ACTIONS(2333), + [sym__shortcode_open] = ACTIONS(2333), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2333), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2333), + [sym__cite_author_in_text] = ACTIONS(2333), + [sym__cite_suppress_author] = ACTIONS(2333), + [sym__strikeout_open] = ACTIONS(2333), + [sym__subscript_open] = ACTIONS(2333), + [sym__superscript_open] = ACTIONS(2333), + [sym__inline_note_start_token] = ACTIONS(2333), + [sym__strong_emphasis_open_star] = ACTIONS(2333), + [sym__strong_emphasis_open_underscore] = ACTIONS(2333), + [sym__emphasis_open_star] = ACTIONS(2333), + [sym__emphasis_open_underscore] = ACTIONS(2333), + [sym_inline_note_reference] = ACTIONS(2333), + [sym_html_element] = ACTIONS(2333), + [sym__pandoc_line_break] = ACTIONS(2333), }, - [STATE(399)] = { - [anon_sym_COLON] = ACTIONS(3296), - [sym_entity_reference] = ACTIONS(3296), - [sym_numeric_character_reference] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_BANG_LBRACK] = ACTIONS(3296), - [anon_sym_DOLLAR] = ACTIONS(3298), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [aux_sym_pandoc_str_token1] = ACTIONS(3298), - [anon_sym_PIPE] = ACTIONS(3296), - [aux_sym__prose_punctuation_token1] = ACTIONS(3298), - [sym__line_ending] = ACTIONS(3296), - [sym__soft_line_ending] = ACTIONS(3296), - [sym__block_close] = ACTIONS(3296), - [sym__block_quote_start] = ACTIONS(3296), - [sym_atx_h1_marker] = ACTIONS(3296), - [sym_atx_h2_marker] = ACTIONS(3296), - [sym_atx_h3_marker] = ACTIONS(3296), - [sym_atx_h4_marker] = ACTIONS(3296), - [sym_atx_h5_marker] = ACTIONS(3296), - [sym_atx_h6_marker] = ACTIONS(3296), - [sym__thematic_break] = ACTIONS(3296), - [sym__list_marker_minus] = ACTIONS(3296), - [sym__list_marker_plus] = ACTIONS(3296), - [sym__list_marker_star] = ACTIONS(3296), - [sym__list_marker_parenthesis] = ACTIONS(3296), - [sym__list_marker_dot] = ACTIONS(3296), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_example] = ACTIONS(3296), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3296), - [sym__fenced_code_block_start_backtick] = ACTIONS(3296), - [sym_minus_metadata] = ACTIONS(3296), - [sym__pipe_table_start] = ACTIONS(3296), - [sym__fenced_div_start] = ACTIONS(3296), - [sym__fenced_div_end] = ACTIONS(3296), - [sym_ref_id_specifier] = ACTIONS(3296), - [sym__code_span_start] = ACTIONS(3296), - [sym__html_comment] = ACTIONS(3296), - [sym__autolink] = ACTIONS(3296), - [sym__highlight_span_start] = ACTIONS(3296), - [sym__insert_span_start] = ACTIONS(3296), - [sym__delete_span_start] = ACTIONS(3296), - [sym__edit_comment_span_start] = ACTIONS(3296), - [sym__single_quote_span_open] = ACTIONS(3296), - [sym__double_quote_span_open] = ACTIONS(3296), - [sym__shortcode_open_escaped] = ACTIONS(3296), - [sym__shortcode_open] = ACTIONS(3296), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3296), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3296), - [sym__cite_author_in_text] = ACTIONS(3296), - [sym__cite_suppress_author] = ACTIONS(3296), - [sym__strikeout_open] = ACTIONS(3296), - [sym__subscript_open] = ACTIONS(3296), - [sym__superscript_open] = ACTIONS(3296), - [sym__inline_note_start_token] = ACTIONS(3296), - [sym__strong_emphasis_open_star] = ACTIONS(3296), - [sym__strong_emphasis_open_underscore] = ACTIONS(3296), - [sym__emphasis_open_star] = ACTIONS(3296), - [sym__emphasis_open_underscore] = ACTIONS(3296), - [sym_inline_note_reference] = ACTIONS(3296), - [sym_html_element] = ACTIONS(3296), - [sym__pandoc_line_break] = ACTIONS(3296), + [STATE(365)] = { + [anon_sym_COLON] = ACTIONS(2685), + [sym_entity_reference] = ACTIONS(2685), + [sym_numeric_character_reference] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_BANG_LBRACK] = ACTIONS(2685), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [aux_sym_pandoc_str_token1] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2685), + [sym__whitespace] = ACTIONS(2685), + [sym__line_ending] = ACTIONS(2685), + [sym__soft_line_ending] = ACTIONS(2685), + [sym__block_close] = ACTIONS(2685), + [sym__block_quote_start] = ACTIONS(2685), + [sym_atx_h1_marker] = ACTIONS(2685), + [sym_atx_h2_marker] = ACTIONS(2685), + [sym_atx_h3_marker] = ACTIONS(2685), + [sym_atx_h4_marker] = ACTIONS(2685), + [sym_atx_h5_marker] = ACTIONS(2685), + [sym_atx_h6_marker] = ACTIONS(2685), + [sym__thematic_break] = ACTIONS(2685), + [sym__list_marker_minus] = ACTIONS(2685), + [sym__list_marker_plus] = ACTIONS(2685), + [sym__list_marker_star] = ACTIONS(2685), + [sym__list_marker_parenthesis] = ACTIONS(2685), + [sym__list_marker_dot] = ACTIONS(2685), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2685), + [sym__list_marker_example] = ACTIONS(2685), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2685), + [sym__fenced_code_block_start_backtick] = ACTIONS(2685), + [sym_minus_metadata] = ACTIONS(2685), + [sym__pipe_table_start] = ACTIONS(2685), + [sym__fenced_div_start] = ACTIONS(2685), + [sym_ref_id_specifier] = ACTIONS(2685), + [sym__code_span_start] = ACTIONS(2685), + [sym__html_comment] = ACTIONS(2685), + [sym__autolink] = ACTIONS(2685), + [sym__highlight_span_start] = ACTIONS(2685), + [sym__insert_span_start] = ACTIONS(2685), + [sym__delete_span_start] = ACTIONS(2685), + [sym__edit_comment_span_start] = ACTIONS(2685), + [sym__single_quote_span_open] = ACTIONS(2685), + [sym__double_quote_span_open] = ACTIONS(2685), + [sym__shortcode_open_escaped] = ACTIONS(2685), + [sym__shortcode_open] = ACTIONS(2685), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2685), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2685), + [sym__cite_author_in_text] = ACTIONS(2685), + [sym__cite_suppress_author] = ACTIONS(2685), + [sym__strikeout_open] = ACTIONS(2685), + [sym__subscript_open] = ACTIONS(2685), + [sym__superscript_open] = ACTIONS(2685), + [sym__inline_note_start_token] = ACTIONS(2685), + [sym__strong_emphasis_open_star] = ACTIONS(2685), + [sym__strong_emphasis_open_underscore] = ACTIONS(2685), + [sym__emphasis_open_star] = ACTIONS(2685), + [sym__emphasis_open_underscore] = ACTIONS(2685), + [sym_inline_note_reference] = ACTIONS(2685), + [sym_html_element] = ACTIONS(2685), + [sym__pandoc_line_break] = ACTIONS(2685), }, - [STATE(400)] = { - [anon_sym_COLON] = ACTIONS(3300), - [sym_entity_reference] = ACTIONS(3300), - [sym_numeric_character_reference] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_BANG_LBRACK] = ACTIONS(3300), - [anon_sym_DOLLAR] = ACTIONS(3302), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [aux_sym_pandoc_str_token1] = ACTIONS(3302), - [anon_sym_PIPE] = ACTIONS(3300), - [aux_sym__prose_punctuation_token1] = ACTIONS(3302), - [sym__line_ending] = ACTIONS(3300), - [sym__soft_line_ending] = ACTIONS(3300), - [sym__block_close] = ACTIONS(3300), - [sym__block_quote_start] = ACTIONS(3300), - [sym_atx_h1_marker] = ACTIONS(3300), - [sym_atx_h2_marker] = ACTIONS(3300), - [sym_atx_h3_marker] = ACTIONS(3300), - [sym_atx_h4_marker] = ACTIONS(3300), - [sym_atx_h5_marker] = ACTIONS(3300), - [sym_atx_h6_marker] = ACTIONS(3300), - [sym__thematic_break] = ACTIONS(3300), - [sym__list_marker_minus] = ACTIONS(3300), - [sym__list_marker_plus] = ACTIONS(3300), - [sym__list_marker_star] = ACTIONS(3300), - [sym__list_marker_parenthesis] = ACTIONS(3300), - [sym__list_marker_dot] = ACTIONS(3300), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_example] = ACTIONS(3300), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3300), - [sym__fenced_code_block_start_backtick] = ACTIONS(3300), - [sym_minus_metadata] = ACTIONS(3300), - [sym__pipe_table_start] = ACTIONS(3300), - [sym__fenced_div_start] = ACTIONS(3300), - [sym__fenced_div_end] = ACTIONS(3300), - [sym_ref_id_specifier] = ACTIONS(3300), - [sym__code_span_start] = ACTIONS(3300), - [sym__html_comment] = ACTIONS(3300), - [sym__autolink] = ACTIONS(3300), - [sym__highlight_span_start] = ACTIONS(3300), - [sym__insert_span_start] = ACTIONS(3300), - [sym__delete_span_start] = ACTIONS(3300), - [sym__edit_comment_span_start] = ACTIONS(3300), - [sym__single_quote_span_open] = ACTIONS(3300), - [sym__double_quote_span_open] = ACTIONS(3300), - [sym__shortcode_open_escaped] = ACTIONS(3300), - [sym__shortcode_open] = ACTIONS(3300), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3300), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3300), - [sym__cite_author_in_text] = ACTIONS(3300), - [sym__cite_suppress_author] = ACTIONS(3300), - [sym__strikeout_open] = ACTIONS(3300), - [sym__subscript_open] = ACTIONS(3300), - [sym__superscript_open] = ACTIONS(3300), - [sym__inline_note_start_token] = ACTIONS(3300), - [sym__strong_emphasis_open_star] = ACTIONS(3300), - [sym__strong_emphasis_open_underscore] = ACTIONS(3300), - [sym__emphasis_open_star] = ACTIONS(3300), - [sym__emphasis_open_underscore] = ACTIONS(3300), - [sym_inline_note_reference] = ACTIONS(3300), - [sym_html_element] = ACTIONS(3300), - [sym__pandoc_line_break] = ACTIONS(3300), + [STATE(366)] = { + [ts_builtin_sym_end] = ACTIONS(2653), + [anon_sym_COLON] = ACTIONS(2653), + [sym_entity_reference] = ACTIONS(2653), + [sym_numeric_character_reference] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_BANG_LBRACK] = ACTIONS(2653), + [anon_sym_DOLLAR] = ACTIONS(2655), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [aux_sym_pandoc_str_token1] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2653), + [sym__whitespace] = ACTIONS(2653), + [sym__line_ending] = ACTIONS(2653), + [sym__soft_line_ending] = ACTIONS(2653), + [sym__block_quote_start] = ACTIONS(2653), + [sym_atx_h1_marker] = ACTIONS(2653), + [sym_atx_h2_marker] = ACTIONS(2653), + [sym_atx_h3_marker] = ACTIONS(2653), + [sym_atx_h4_marker] = ACTIONS(2653), + [sym_atx_h5_marker] = ACTIONS(2653), + [sym_atx_h6_marker] = ACTIONS(2653), + [sym__thematic_break] = ACTIONS(2653), + [sym__list_marker_minus] = ACTIONS(2653), + [sym__list_marker_plus] = ACTIONS(2653), + [sym__list_marker_star] = ACTIONS(2653), + [sym__list_marker_parenthesis] = ACTIONS(2653), + [sym__list_marker_dot] = ACTIONS(2653), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_example] = ACTIONS(2653), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2653), + [sym__fenced_code_block_start_backtick] = ACTIONS(2653), + [sym_minus_metadata] = ACTIONS(2653), + [sym__pipe_table_start] = ACTIONS(2653), + [sym__fenced_div_start] = ACTIONS(2653), + [sym_ref_id_specifier] = ACTIONS(2653), + [sym__code_span_start] = ACTIONS(2653), + [sym__html_comment] = ACTIONS(2653), + [sym__autolink] = ACTIONS(2653), + [sym__highlight_span_start] = ACTIONS(2653), + [sym__insert_span_start] = ACTIONS(2653), + [sym__delete_span_start] = ACTIONS(2653), + [sym__edit_comment_span_start] = ACTIONS(2653), + [sym__single_quote_span_open] = ACTIONS(2653), + [sym__double_quote_span_open] = ACTIONS(2653), + [sym__shortcode_open_escaped] = ACTIONS(2653), + [sym__shortcode_open] = ACTIONS(2653), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2653), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2653), + [sym__cite_author_in_text] = ACTIONS(2653), + [sym__cite_suppress_author] = ACTIONS(2653), + [sym__strikeout_open] = ACTIONS(2653), + [sym__subscript_open] = ACTIONS(2653), + [sym__superscript_open] = ACTIONS(2653), + [sym__inline_note_start_token] = ACTIONS(2653), + [sym__strong_emphasis_open_star] = ACTIONS(2653), + [sym__strong_emphasis_open_underscore] = ACTIONS(2653), + [sym__emphasis_open_star] = ACTIONS(2653), + [sym__emphasis_open_underscore] = ACTIONS(2653), + [sym_inline_note_reference] = ACTIONS(2653), + [sym_html_element] = ACTIONS(2653), + [sym__pandoc_line_break] = ACTIONS(2653), }, - [STATE(401)] = { - [sym_pandoc_span] = STATE(401), - [sym_pandoc_image] = STATE(401), - [sym_pandoc_math] = STATE(401), - [sym_pandoc_display_math] = STATE(401), - [sym_pandoc_code_span] = STATE(401), - [sym_pandoc_single_quote] = STATE(401), - [sym_pandoc_double_quote] = STATE(401), - [sym_insert] = STATE(401), - [sym_delete] = STATE(401), - [sym_edit_comment] = STATE(401), - [sym_highlight] = STATE(401), - [sym__pandoc_attr_specifier] = STATE(401), - [sym__inline_element] = STATE(401), - [sym_shortcode_escaped] = STATE(401), - [sym_shortcode] = STATE(401), - [sym_citation] = STATE(401), - [sym_inline_note] = STATE(401), - [sym_pandoc_superscript] = STATE(401), - [sym_pandoc_subscript] = STATE(401), - [sym_pandoc_strikeout] = STATE(401), - [sym_pandoc_emph] = STATE(401), - [sym_pandoc_strong] = STATE(401), - [sym_pandoc_str] = STATE(401), - [sym__prose_punctuation] = STATE(401), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(401), - [sym_entity_reference] = ACTIONS(3304), - [sym_numeric_character_reference] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_BANG_LBRACK] = ACTIONS(3310), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3319), - [aux_sym_pandoc_str_token1] = ACTIONS(3322), - [anon_sym_PIPE] = ACTIONS(3325), - [aux_sym__prose_punctuation_token1] = ACTIONS(3328), - [sym__whitespace] = ACTIONS(3331), - [sym__line_ending] = ACTIONS(3334), - [sym__eof] = ACTIONS(3334), - [sym__pipe_table_line_ending] = ACTIONS(3334), - [sym__code_span_start] = ACTIONS(3336), - [sym__html_comment] = ACTIONS(3304), - [sym__autolink] = ACTIONS(3304), - [sym__highlight_span_start] = ACTIONS(3339), - [sym__insert_span_start] = ACTIONS(3342), - [sym__delete_span_start] = ACTIONS(3345), - [sym__edit_comment_span_start] = ACTIONS(3348), - [sym__single_quote_span_open] = ACTIONS(3351), - [sym__double_quote_span_open] = ACTIONS(3354), - [sym__shortcode_open_escaped] = ACTIONS(3357), - [sym__shortcode_open] = ACTIONS(3360), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3363), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3366), - [sym__cite_author_in_text] = ACTIONS(3369), - [sym__cite_suppress_author] = ACTIONS(3372), - [sym__strikeout_open] = ACTIONS(3375), - [sym__subscript_open] = ACTIONS(3378), - [sym__superscript_open] = ACTIONS(3381), - [sym__inline_note_start_token] = ACTIONS(3384), - [sym__strong_emphasis_open_star] = ACTIONS(3387), - [sym__strong_emphasis_open_underscore] = ACTIONS(3390), - [sym__emphasis_open_star] = ACTIONS(3393), - [sym__emphasis_open_underscore] = ACTIONS(3396), - [sym_inline_note_reference] = ACTIONS(3304), - [sym_html_element] = ACTIONS(3304), - [sym__pipe_table_delimiter] = ACTIONS(3334), - [sym__pandoc_line_break] = ACTIONS(3304), + [STATE(367)] = { + [anon_sym_COLON] = ACTIONS(2753), + [sym_entity_reference] = ACTIONS(2753), + [sym_numeric_character_reference] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_BANG_LBRACK] = ACTIONS(2753), + [anon_sym_DOLLAR] = ACTIONS(2755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2753), + [aux_sym_pandoc_str_token1] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2753), + [sym__whitespace] = ACTIONS(2753), + [sym__line_ending] = ACTIONS(2753), + [sym__soft_line_ending] = ACTIONS(2753), + [sym__block_close] = ACTIONS(2753), + [sym__block_quote_start] = ACTIONS(2753), + [sym_atx_h1_marker] = ACTIONS(2753), + [sym_atx_h2_marker] = ACTIONS(2753), + [sym_atx_h3_marker] = ACTIONS(2753), + [sym_atx_h4_marker] = ACTIONS(2753), + [sym_atx_h5_marker] = ACTIONS(2753), + [sym_atx_h6_marker] = ACTIONS(2753), + [sym__thematic_break] = ACTIONS(2753), + [sym__list_marker_minus] = ACTIONS(2753), + [sym__list_marker_plus] = ACTIONS(2753), + [sym__list_marker_star] = ACTIONS(2753), + [sym__list_marker_parenthesis] = ACTIONS(2753), + [sym__list_marker_dot] = ACTIONS(2753), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_example] = ACTIONS(2753), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2753), + [sym__fenced_code_block_start_backtick] = ACTIONS(2753), + [sym_minus_metadata] = ACTIONS(2753), + [sym__pipe_table_start] = ACTIONS(2753), + [sym__fenced_div_start] = ACTIONS(2753), + [sym_ref_id_specifier] = ACTIONS(2753), + [sym__code_span_start] = ACTIONS(2753), + [sym__html_comment] = ACTIONS(2753), + [sym__autolink] = ACTIONS(2753), + [sym__highlight_span_start] = ACTIONS(2753), + [sym__insert_span_start] = ACTIONS(2753), + [sym__delete_span_start] = ACTIONS(2753), + [sym__edit_comment_span_start] = ACTIONS(2753), + [sym__single_quote_span_open] = ACTIONS(2753), + [sym__double_quote_span_open] = ACTIONS(2753), + [sym__shortcode_open_escaped] = ACTIONS(2753), + [sym__shortcode_open] = ACTIONS(2753), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2753), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2753), + [sym__cite_author_in_text] = ACTIONS(2753), + [sym__cite_suppress_author] = ACTIONS(2753), + [sym__strikeout_open] = ACTIONS(2753), + [sym__subscript_open] = ACTIONS(2753), + [sym__superscript_open] = ACTIONS(2753), + [sym__inline_note_start_token] = ACTIONS(2753), + [sym__strong_emphasis_open_star] = ACTIONS(2753), + [sym__strong_emphasis_open_underscore] = ACTIONS(2753), + [sym__emphasis_open_star] = ACTIONS(2753), + [sym__emphasis_open_underscore] = ACTIONS(2753), + [sym_inline_note_reference] = ACTIONS(2753), + [sym_html_element] = ACTIONS(2753), + [sym__pandoc_line_break] = ACTIONS(2753), }, - [STATE(402)] = { - [anon_sym_COLON] = ACTIONS(3399), - [sym_entity_reference] = ACTIONS(3399), - [sym_numeric_character_reference] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_BANG_LBRACK] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [aux_sym_pandoc_str_token1] = ACTIONS(3401), - [anon_sym_PIPE] = ACTIONS(3399), - [aux_sym__prose_punctuation_token1] = ACTIONS(3401), - [sym__line_ending] = ACTIONS(3399), - [sym__soft_line_ending] = ACTIONS(3399), - [sym__block_close] = ACTIONS(3399), - [sym__block_quote_start] = ACTIONS(3399), - [sym_atx_h1_marker] = ACTIONS(3399), - [sym_atx_h2_marker] = ACTIONS(3399), - [sym_atx_h3_marker] = ACTIONS(3399), - [sym_atx_h4_marker] = ACTIONS(3399), - [sym_atx_h5_marker] = ACTIONS(3399), - [sym_atx_h6_marker] = ACTIONS(3399), - [sym__thematic_break] = ACTIONS(3399), - [sym__list_marker_minus] = ACTIONS(3399), - [sym__list_marker_plus] = ACTIONS(3399), - [sym__list_marker_star] = ACTIONS(3399), - [sym__list_marker_parenthesis] = ACTIONS(3399), - [sym__list_marker_dot] = ACTIONS(3399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_example] = ACTIONS(3399), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3399), - [sym__fenced_code_block_start_backtick] = ACTIONS(3399), - [sym_minus_metadata] = ACTIONS(3399), - [sym__pipe_table_start] = ACTIONS(3399), - [sym__fenced_div_start] = ACTIONS(3399), - [sym__fenced_div_end] = ACTIONS(3399), - [sym_ref_id_specifier] = ACTIONS(3399), - [sym__code_span_start] = ACTIONS(3399), - [sym__html_comment] = ACTIONS(3399), - [sym__autolink] = ACTIONS(3399), - [sym__highlight_span_start] = ACTIONS(3399), - [sym__insert_span_start] = ACTIONS(3399), - [sym__delete_span_start] = ACTIONS(3399), - [sym__edit_comment_span_start] = ACTIONS(3399), - [sym__single_quote_span_open] = ACTIONS(3399), - [sym__double_quote_span_open] = ACTIONS(3399), - [sym__shortcode_open_escaped] = ACTIONS(3399), - [sym__shortcode_open] = ACTIONS(3399), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3399), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3399), - [sym__cite_author_in_text] = ACTIONS(3399), - [sym__cite_suppress_author] = ACTIONS(3399), - [sym__strikeout_open] = ACTIONS(3399), - [sym__subscript_open] = ACTIONS(3399), - [sym__superscript_open] = ACTIONS(3399), - [sym__inline_note_start_token] = ACTIONS(3399), - [sym__strong_emphasis_open_star] = ACTIONS(3399), - [sym__strong_emphasis_open_underscore] = ACTIONS(3399), - [sym__emphasis_open_star] = ACTIONS(3399), - [sym__emphasis_open_underscore] = ACTIONS(3399), - [sym_inline_note_reference] = ACTIONS(3399), - [sym_html_element] = ACTIONS(3399), - [sym__pandoc_line_break] = ACTIONS(3399), + [STATE(368)] = { + [anon_sym_COLON] = ACTIONS(2757), + [sym_entity_reference] = ACTIONS(2757), + [sym_numeric_character_reference] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_BANG_LBRACK] = ACTIONS(2757), + [anon_sym_DOLLAR] = ACTIONS(2759), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2757), + [aux_sym_pandoc_str_token1] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2757), + [sym__whitespace] = ACTIONS(2757), + [sym__line_ending] = ACTIONS(2757), + [sym__soft_line_ending] = ACTIONS(2757), + [sym__block_close] = ACTIONS(2757), + [sym__block_quote_start] = ACTIONS(2757), + [sym_atx_h1_marker] = ACTIONS(2757), + [sym_atx_h2_marker] = ACTIONS(2757), + [sym_atx_h3_marker] = ACTIONS(2757), + [sym_atx_h4_marker] = ACTIONS(2757), + [sym_atx_h5_marker] = ACTIONS(2757), + [sym_atx_h6_marker] = ACTIONS(2757), + [sym__thematic_break] = ACTIONS(2757), + [sym__list_marker_minus] = ACTIONS(2757), + [sym__list_marker_plus] = ACTIONS(2757), + [sym__list_marker_star] = ACTIONS(2757), + [sym__list_marker_parenthesis] = ACTIONS(2757), + [sym__list_marker_dot] = ACTIONS(2757), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_example] = ACTIONS(2757), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2757), + [sym__fenced_code_block_start_backtick] = ACTIONS(2757), + [sym_minus_metadata] = ACTIONS(2757), + [sym__pipe_table_start] = ACTIONS(2757), + [sym__fenced_div_start] = ACTIONS(2757), + [sym_ref_id_specifier] = ACTIONS(2757), + [sym__code_span_start] = ACTIONS(2757), + [sym__html_comment] = ACTIONS(2757), + [sym__autolink] = ACTIONS(2757), + [sym__highlight_span_start] = ACTIONS(2757), + [sym__insert_span_start] = ACTIONS(2757), + [sym__delete_span_start] = ACTIONS(2757), + [sym__edit_comment_span_start] = ACTIONS(2757), + [sym__single_quote_span_open] = ACTIONS(2757), + [sym__double_quote_span_open] = ACTIONS(2757), + [sym__shortcode_open_escaped] = ACTIONS(2757), + [sym__shortcode_open] = ACTIONS(2757), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2757), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2757), + [sym__cite_author_in_text] = ACTIONS(2757), + [sym__cite_suppress_author] = ACTIONS(2757), + [sym__strikeout_open] = ACTIONS(2757), + [sym__subscript_open] = ACTIONS(2757), + [sym__superscript_open] = ACTIONS(2757), + [sym__inline_note_start_token] = ACTIONS(2757), + [sym__strong_emphasis_open_star] = ACTIONS(2757), + [sym__strong_emphasis_open_underscore] = ACTIONS(2757), + [sym__emphasis_open_star] = ACTIONS(2757), + [sym__emphasis_open_underscore] = ACTIONS(2757), + [sym_inline_note_reference] = ACTIONS(2757), + [sym_html_element] = ACTIONS(2757), + [sym__pandoc_line_break] = ACTIONS(2757), }, - [STATE(403)] = { - [ts_builtin_sym_end] = ACTIONS(2657), - [anon_sym_COLON] = ACTIONS(2657), - [sym_entity_reference] = ACTIONS(2657), - [sym_numeric_character_reference] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_BANG_LBRACK] = ACTIONS(2657), - [anon_sym_DOLLAR] = ACTIONS(2659), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [aux_sym_pandoc_str_token1] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2657), - [aux_sym__prose_punctuation_token1] = ACTIONS(2659), - [sym__line_ending] = ACTIONS(2657), - [sym__soft_line_ending] = ACTIONS(2657), - [sym_block_continuation] = ACTIONS(3403), - [sym__block_quote_start] = ACTIONS(2657), - [sym_atx_h1_marker] = ACTIONS(2657), - [sym_atx_h2_marker] = ACTIONS(2657), - [sym_atx_h3_marker] = ACTIONS(2657), - [sym_atx_h4_marker] = ACTIONS(2657), - [sym_atx_h5_marker] = ACTIONS(2657), - [sym_atx_h6_marker] = ACTIONS(2657), - [sym__thematic_break] = ACTIONS(2657), - [sym__list_marker_minus] = ACTIONS(2657), - [sym__list_marker_plus] = ACTIONS(2657), - [sym__list_marker_star] = ACTIONS(2657), - [sym__list_marker_parenthesis] = ACTIONS(2657), - [sym__list_marker_dot] = ACTIONS(2657), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_example] = ACTIONS(2657), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2657), - [sym__fenced_code_block_start_backtick] = ACTIONS(2657), - [sym_minus_metadata] = ACTIONS(2657), - [sym__pipe_table_start] = ACTIONS(2657), - [sym__fenced_div_start] = ACTIONS(2657), - [sym_ref_id_specifier] = ACTIONS(2657), - [sym__code_span_start] = ACTIONS(2657), - [sym__html_comment] = ACTIONS(2657), - [sym__autolink] = ACTIONS(2657), - [sym__highlight_span_start] = ACTIONS(2657), - [sym__insert_span_start] = ACTIONS(2657), - [sym__delete_span_start] = ACTIONS(2657), - [sym__edit_comment_span_start] = ACTIONS(2657), - [sym__single_quote_span_open] = ACTIONS(2657), - [sym__double_quote_span_open] = ACTIONS(2657), - [sym__shortcode_open_escaped] = ACTIONS(2657), - [sym__shortcode_open] = ACTIONS(2657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2657), - [sym__cite_author_in_text] = ACTIONS(2657), - [sym__cite_suppress_author] = ACTIONS(2657), - [sym__strikeout_open] = ACTIONS(2657), - [sym__subscript_open] = ACTIONS(2657), - [sym__superscript_open] = ACTIONS(2657), - [sym__inline_note_start_token] = ACTIONS(2657), - [sym__strong_emphasis_open_star] = ACTIONS(2657), - [sym__strong_emphasis_open_underscore] = ACTIONS(2657), - [sym__emphasis_open_star] = ACTIONS(2657), - [sym__emphasis_open_underscore] = ACTIONS(2657), - [sym_inline_note_reference] = ACTIONS(2657), - [sym_html_element] = ACTIONS(2657), - [sym__pandoc_line_break] = ACTIONS(2657), + [STATE(369)] = { + [sym__atx_heading_content] = STATE(3064), + [sym__inlines] = STATE(3064), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(355), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(25), + [sym__eof] = ACTIONS(3035), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(404)] = { - [sym_pipe_table_cell] = STATE(2943), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(3173), - [sym__line_ending] = ACTIONS(2433), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pipe_table_delimiter] = ACTIONS(3175), - [sym__pandoc_line_break] = ACTIONS(2509), + [STATE(370)] = { + [anon_sym_COLON] = ACTIONS(2377), + [sym_entity_reference] = ACTIONS(2377), + [sym_numeric_character_reference] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_BANG_LBRACK] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [aux_sym_pandoc_str_token1] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2377), + [sym__whitespace] = ACTIONS(2377), + [sym__line_ending] = ACTIONS(2377), + [sym__soft_line_ending] = ACTIONS(2377), + [sym__block_close] = ACTIONS(2377), + [sym__block_quote_start] = ACTIONS(2377), + [sym_atx_h1_marker] = ACTIONS(2377), + [sym_atx_h2_marker] = ACTIONS(2377), + [sym_atx_h3_marker] = ACTIONS(2377), + [sym_atx_h4_marker] = ACTIONS(2377), + [sym_atx_h5_marker] = ACTIONS(2377), + [sym_atx_h6_marker] = ACTIONS(2377), + [sym__thematic_break] = ACTIONS(2377), + [sym__list_marker_minus] = ACTIONS(2377), + [sym__list_marker_plus] = ACTIONS(2377), + [sym__list_marker_star] = ACTIONS(2377), + [sym__list_marker_parenthesis] = ACTIONS(2377), + [sym__list_marker_dot] = ACTIONS(2377), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_example] = ACTIONS(2377), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2377), + [sym__fenced_code_block_start_backtick] = ACTIONS(2377), + [sym_minus_metadata] = ACTIONS(2377), + [sym__pipe_table_start] = ACTIONS(2377), + [sym__fenced_div_start] = ACTIONS(2377), + [sym_ref_id_specifier] = ACTIONS(2377), + [sym__code_span_start] = ACTIONS(2377), + [sym__html_comment] = ACTIONS(2377), + [sym__autolink] = ACTIONS(2377), + [sym__highlight_span_start] = ACTIONS(2377), + [sym__insert_span_start] = ACTIONS(2377), + [sym__delete_span_start] = ACTIONS(2377), + [sym__edit_comment_span_start] = ACTIONS(2377), + [sym__single_quote_span_open] = ACTIONS(2377), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2377), + [sym__shortcode_open] = ACTIONS(2377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2377), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2377), + [sym__cite_author_in_text] = ACTIONS(2377), + [sym__cite_suppress_author] = ACTIONS(2377), + [sym__strikeout_open] = ACTIONS(2377), + [sym__subscript_open] = ACTIONS(2377), + [sym__superscript_open] = ACTIONS(2377), + [sym__inline_note_start_token] = ACTIONS(2377), + [sym__strong_emphasis_open_star] = ACTIONS(2377), + [sym__strong_emphasis_open_underscore] = ACTIONS(2377), + [sym__emphasis_open_star] = ACTIONS(2377), + [sym__emphasis_open_underscore] = ACTIONS(2377), + [sym_inline_note_reference] = ACTIONS(2377), + [sym_html_element] = ACTIONS(2377), + [sym__pandoc_line_break] = ACTIONS(2377), }, - [STATE(405)] = { - [ts_builtin_sym_end] = ACTIONS(2699), + [STATE(371)] = { [anon_sym_COLON] = ACTIONS(2699), [sym_entity_reference] = ACTIONS(2699), [sym_numeric_character_reference] = ACTIONS(2699), @@ -57034,10 +55988,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2699), [aux_sym_pandoc_str_token1] = ACTIONS(2701), [anon_sym_PIPE] = ACTIONS(2699), - [aux_sym__prose_punctuation_token1] = ACTIONS(2701), + [sym__whitespace] = ACTIONS(2699), [sym__line_ending] = ACTIONS(2699), [sym__soft_line_ending] = ACTIONS(2699), - [sym_block_continuation] = ACTIONS(3405), + [sym__block_close] = ACTIONS(2699), [sym__block_quote_start] = ACTIONS(2699), [sym_atx_h1_marker] = ACTIONS(2699), [sym_atx_h2_marker] = ACTIONS(2699), @@ -57090,551 +56044,1013 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2699), [sym__pandoc_line_break] = ACTIONS(2699), }, - [STATE(406)] = { - [sym_pipe_table_cell] = STATE(2943), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(3173), - [sym__line_ending] = ACTIONS(2324), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pipe_table_delimiter] = ACTIONS(3175), - [sym__pandoc_line_break] = ACTIONS(2509), + [STATE(372)] = { + [ts_builtin_sym_end] = ACTIONS(2745), + [anon_sym_COLON] = ACTIONS(2745), + [sym_entity_reference] = ACTIONS(2745), + [sym_numeric_character_reference] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_BANG_LBRACK] = ACTIONS(2745), + [anon_sym_DOLLAR] = ACTIONS(2747), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [aux_sym_pandoc_str_token1] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2745), + [sym__whitespace] = ACTIONS(2745), + [sym__line_ending] = ACTIONS(2745), + [sym__soft_line_ending] = ACTIONS(2745), + [sym__block_quote_start] = ACTIONS(2745), + [sym_atx_h1_marker] = ACTIONS(2745), + [sym_atx_h2_marker] = ACTIONS(2745), + [sym_atx_h3_marker] = ACTIONS(2745), + [sym_atx_h4_marker] = ACTIONS(2745), + [sym_atx_h5_marker] = ACTIONS(2745), + [sym_atx_h6_marker] = ACTIONS(2745), + [sym__thematic_break] = ACTIONS(2745), + [sym__list_marker_minus] = ACTIONS(2745), + [sym__list_marker_plus] = ACTIONS(2745), + [sym__list_marker_star] = ACTIONS(2745), + [sym__list_marker_parenthesis] = ACTIONS(2745), + [sym__list_marker_dot] = ACTIONS(2745), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2745), + [sym__list_marker_example] = ACTIONS(2745), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2745), + [sym__fenced_code_block_start_backtick] = ACTIONS(2745), + [sym_minus_metadata] = ACTIONS(2745), + [sym__pipe_table_start] = ACTIONS(2745), + [sym__fenced_div_start] = ACTIONS(2745), + [sym_ref_id_specifier] = ACTIONS(2745), + [sym__code_span_start] = ACTIONS(2745), + [sym__html_comment] = ACTIONS(2745), + [sym__autolink] = ACTIONS(2745), + [sym__highlight_span_start] = ACTIONS(2745), + [sym__insert_span_start] = ACTIONS(2745), + [sym__delete_span_start] = ACTIONS(2745), + [sym__edit_comment_span_start] = ACTIONS(2745), + [sym__single_quote_span_open] = ACTIONS(2745), + [sym__double_quote_span_open] = ACTIONS(2745), + [sym__shortcode_open_escaped] = ACTIONS(2745), + [sym__shortcode_open] = ACTIONS(2745), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2745), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2745), + [sym__cite_author_in_text] = ACTIONS(2745), + [sym__cite_suppress_author] = ACTIONS(2745), + [sym__strikeout_open] = ACTIONS(2745), + [sym__subscript_open] = ACTIONS(2745), + [sym__superscript_open] = ACTIONS(2745), + [sym__inline_note_start_token] = ACTIONS(2745), + [sym__strong_emphasis_open_star] = ACTIONS(2745), + [sym__strong_emphasis_open_underscore] = ACTIONS(2745), + [sym__emphasis_open_star] = ACTIONS(2745), + [sym__emphasis_open_underscore] = ACTIONS(2745), + [sym_inline_note_reference] = ACTIONS(2745), + [sym_html_element] = ACTIONS(2745), + [sym__pandoc_line_break] = ACTIONS(2745), }, - [STATE(407)] = { - [sym_pipe_table_cell] = STATE(2945), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym_pipe_table_row_repeat1] = STATE(366), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(3407), - [sym__line_ending] = ACTIONS(2433), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pandoc_line_break] = ACTIONS(2509), + [STATE(373)] = { + [ts_builtin_sym_end] = ACTIONS(2371), + [anon_sym_COLON] = ACTIONS(2371), + [sym_entity_reference] = ACTIONS(2371), + [sym_numeric_character_reference] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_BANG_LBRACK] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [aux_sym_pandoc_str_token1] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2371), + [sym__whitespace] = ACTIONS(2371), + [sym__line_ending] = ACTIONS(2371), + [sym__soft_line_ending] = ACTIONS(2371), + [sym__block_quote_start] = ACTIONS(2371), + [sym_atx_h1_marker] = ACTIONS(2371), + [sym_atx_h2_marker] = ACTIONS(2371), + [sym_atx_h3_marker] = ACTIONS(2371), + [sym_atx_h4_marker] = ACTIONS(2371), + [sym_atx_h5_marker] = ACTIONS(2371), + [sym_atx_h6_marker] = ACTIONS(2371), + [sym__thematic_break] = ACTIONS(2371), + [sym__list_marker_minus] = ACTIONS(2371), + [sym__list_marker_plus] = ACTIONS(2371), + [sym__list_marker_star] = ACTIONS(2371), + [sym__list_marker_parenthesis] = ACTIONS(2371), + [sym__list_marker_dot] = ACTIONS(2371), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2371), + [sym__list_marker_example] = ACTIONS(2371), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2371), + [sym__fenced_code_block_start_backtick] = ACTIONS(2371), + [sym_minus_metadata] = ACTIONS(2371), + [sym__pipe_table_start] = ACTIONS(2371), + [sym__fenced_div_start] = ACTIONS(2371), + [sym_ref_id_specifier] = ACTIONS(2371), + [sym__code_span_start] = ACTIONS(2371), + [sym__html_comment] = ACTIONS(2371), + [sym__autolink] = ACTIONS(2371), + [sym__highlight_span_start] = ACTIONS(2371), + [sym__insert_span_start] = ACTIONS(2371), + [sym__delete_span_start] = ACTIONS(2371), + [sym__edit_comment_span_start] = ACTIONS(2371), + [sym__single_quote_span_open] = ACTIONS(2371), + [sym__double_quote_span_open] = ACTIONS(2371), + [sym__shortcode_open_escaped] = ACTIONS(2371), + [sym__shortcode_open] = ACTIONS(2371), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2371), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2371), + [sym__cite_author_in_text] = ACTIONS(2371), + [sym__cite_suppress_author] = ACTIONS(2371), + [sym__strikeout_open] = ACTIONS(2371), + [sym__subscript_open] = ACTIONS(2371), + [sym__superscript_open] = ACTIONS(2371), + [sym__inline_note_start_token] = ACTIONS(2371), + [sym__strong_emphasis_open_star] = ACTIONS(2371), + [sym__strong_emphasis_open_underscore] = ACTIONS(2371), + [sym__emphasis_open_star] = ACTIONS(2371), + [sym__emphasis_open_underscore] = ACTIONS(2371), + [sym_inline_note_reference] = ACTIONS(2371), + [sym_html_element] = ACTIONS(2371), + [sym__pandoc_line_break] = ACTIONS(2371), }, - [STATE(408)] = { - [anon_sym_COLON] = ACTIONS(2627), - [sym_entity_reference] = ACTIONS(2627), - [sym_numeric_character_reference] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2627), - [anon_sym_BANG_LBRACK] = ACTIONS(2627), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2627), - [aux_sym_pandoc_str_token1] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2627), - [aux_sym__prose_punctuation_token1] = ACTIONS(2629), - [sym__line_ending] = ACTIONS(2627), - [sym__soft_line_ending] = ACTIONS(2627), - [sym__block_close] = ACTIONS(2627), - [sym_block_continuation] = ACTIONS(3409), - [sym__block_quote_start] = ACTIONS(2627), - [sym_atx_h1_marker] = ACTIONS(2627), - [sym_atx_h2_marker] = ACTIONS(2627), - [sym_atx_h3_marker] = ACTIONS(2627), - [sym_atx_h4_marker] = ACTIONS(2627), - [sym_atx_h5_marker] = ACTIONS(2627), - [sym_atx_h6_marker] = ACTIONS(2627), - [sym__thematic_break] = ACTIONS(2627), - [sym__list_marker_minus] = ACTIONS(2627), - [sym__list_marker_plus] = ACTIONS(2627), - [sym__list_marker_star] = ACTIONS(2627), - [sym__list_marker_parenthesis] = ACTIONS(2627), - [sym__list_marker_dot] = ACTIONS(2627), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2627), - [sym__list_marker_example] = ACTIONS(2627), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2627), - [sym__fenced_code_block_start_backtick] = ACTIONS(2627), - [sym_minus_metadata] = ACTIONS(2627), - [sym__pipe_table_start] = ACTIONS(2627), - [sym__fenced_div_start] = ACTIONS(2627), - [sym_ref_id_specifier] = ACTIONS(2627), - [sym__code_span_start] = ACTIONS(2627), - [sym__html_comment] = ACTIONS(2627), - [sym__autolink] = ACTIONS(2627), - [sym__highlight_span_start] = ACTIONS(2627), - [sym__insert_span_start] = ACTIONS(2627), - [sym__delete_span_start] = ACTIONS(2627), - [sym__edit_comment_span_start] = ACTIONS(2627), - [sym__single_quote_span_open] = ACTIONS(2627), - [sym__double_quote_span_open] = ACTIONS(2627), - [sym__shortcode_open_escaped] = ACTIONS(2627), - [sym__shortcode_open] = ACTIONS(2627), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2627), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2627), - [sym__cite_author_in_text] = ACTIONS(2627), - [sym__cite_suppress_author] = ACTIONS(2627), - [sym__strikeout_open] = ACTIONS(2627), - [sym__subscript_open] = ACTIONS(2627), - [sym__superscript_open] = ACTIONS(2627), - [sym__inline_note_start_token] = ACTIONS(2627), - [sym__strong_emphasis_open_star] = ACTIONS(2627), - [sym__strong_emphasis_open_underscore] = ACTIONS(2627), - [sym__emphasis_open_star] = ACTIONS(2627), - [sym__emphasis_open_underscore] = ACTIONS(2627), - [sym_inline_note_reference] = ACTIONS(2627), - [sym_html_element] = ACTIONS(2627), - [sym__pandoc_line_break] = ACTIONS(2627), + [STATE(374)] = { + [anon_sym_COLON] = ACTIONS(2383), + [sym_entity_reference] = ACTIONS(2383), + [sym_numeric_character_reference] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_BANG_LBRACK] = ACTIONS(2383), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [aux_sym_pandoc_str_token1] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2383), + [sym__whitespace] = ACTIONS(2383), + [sym__line_ending] = ACTIONS(2383), + [sym__soft_line_ending] = ACTIONS(2383), + [sym__block_close] = ACTIONS(2383), + [sym__block_quote_start] = ACTIONS(2383), + [sym_atx_h1_marker] = ACTIONS(2383), + [sym_atx_h2_marker] = ACTIONS(2383), + [sym_atx_h3_marker] = ACTIONS(2383), + [sym_atx_h4_marker] = ACTIONS(2383), + [sym_atx_h5_marker] = ACTIONS(2383), + [sym_atx_h6_marker] = ACTIONS(2383), + [sym__thematic_break] = ACTIONS(2383), + [sym__list_marker_minus] = ACTIONS(2383), + [sym__list_marker_plus] = ACTIONS(2383), + [sym__list_marker_star] = ACTIONS(2383), + [sym__list_marker_parenthesis] = ACTIONS(2383), + [sym__list_marker_dot] = ACTIONS(2383), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_example] = ACTIONS(2383), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2383), + [sym__fenced_code_block_start_backtick] = ACTIONS(2383), + [sym_minus_metadata] = ACTIONS(2383), + [sym__pipe_table_start] = ACTIONS(2383), + [sym__fenced_div_start] = ACTIONS(2383), + [sym_ref_id_specifier] = ACTIONS(2383), + [sym__code_span_start] = ACTIONS(2383), + [sym__html_comment] = ACTIONS(2383), + [sym__autolink] = ACTIONS(2383), + [sym__highlight_span_start] = ACTIONS(2383), + [sym__insert_span_start] = ACTIONS(2383), + [sym__delete_span_start] = ACTIONS(2383), + [sym__edit_comment_span_start] = ACTIONS(2383), + [sym__single_quote_span_open] = ACTIONS(2383), + [sym__double_quote_span_open] = ACTIONS(2383), + [sym__shortcode_open_escaped] = ACTIONS(2383), + [sym__shortcode_open] = ACTIONS(2383), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2383), + [sym__cite_author_in_text] = ACTIONS(2383), + [sym__cite_suppress_author] = ACTIONS(2383), + [sym__strikeout_open] = ACTIONS(2383), + [sym__subscript_open] = ACTIONS(2383), + [sym__superscript_open] = ACTIONS(2383), + [sym__inline_note_start_token] = ACTIONS(2383), + [sym__strong_emphasis_open_star] = ACTIONS(2383), + [sym__strong_emphasis_open_underscore] = ACTIONS(2383), + [sym__emphasis_open_star] = ACTIONS(2383), + [sym__emphasis_open_underscore] = ACTIONS(2383), + [sym_inline_note_reference] = ACTIONS(2383), + [sym_html_element] = ACTIONS(2383), + [sym__pandoc_line_break] = ACTIONS(2383), }, - [STATE(409)] = { - [anon_sym_COLON] = ACTIONS(2633), - [sym_entity_reference] = ACTIONS(2633), - [sym_numeric_character_reference] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_BANG_LBRACK] = ACTIONS(2633), - [anon_sym_DOLLAR] = ACTIONS(2635), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [aux_sym_pandoc_str_token1] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2633), - [aux_sym__prose_punctuation_token1] = ACTIONS(2635), - [sym__line_ending] = ACTIONS(2633), - [sym__soft_line_ending] = ACTIONS(2633), - [sym__block_close] = ACTIONS(2633), - [sym_block_continuation] = ACTIONS(3411), - [sym__block_quote_start] = ACTIONS(2633), - [sym_atx_h1_marker] = ACTIONS(2633), - [sym_atx_h2_marker] = ACTIONS(2633), - [sym_atx_h3_marker] = ACTIONS(2633), - [sym_atx_h4_marker] = ACTIONS(2633), - [sym_atx_h5_marker] = ACTIONS(2633), - [sym_atx_h6_marker] = ACTIONS(2633), - [sym__thematic_break] = ACTIONS(2633), - [sym__list_marker_minus] = ACTIONS(2633), - [sym__list_marker_plus] = ACTIONS(2633), - [sym__list_marker_star] = ACTIONS(2633), - [sym__list_marker_parenthesis] = ACTIONS(2633), - [sym__list_marker_dot] = ACTIONS(2633), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2633), - [sym__list_marker_example] = ACTIONS(2633), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2633), - [sym__fenced_code_block_start_backtick] = ACTIONS(2633), - [sym_minus_metadata] = ACTIONS(2633), - [sym__pipe_table_start] = ACTIONS(2633), - [sym__fenced_div_start] = ACTIONS(2633), - [sym_ref_id_specifier] = ACTIONS(2633), - [sym__code_span_start] = ACTIONS(2633), - [sym__html_comment] = ACTIONS(2633), - [sym__autolink] = ACTIONS(2633), - [sym__highlight_span_start] = ACTIONS(2633), - [sym__insert_span_start] = ACTIONS(2633), - [sym__delete_span_start] = ACTIONS(2633), - [sym__edit_comment_span_start] = ACTIONS(2633), - [sym__single_quote_span_open] = ACTIONS(2633), - [sym__double_quote_span_open] = ACTIONS(2633), - [sym__shortcode_open_escaped] = ACTIONS(2633), - [sym__shortcode_open] = ACTIONS(2633), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2633), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2633), - [sym__cite_author_in_text] = ACTIONS(2633), - [sym__cite_suppress_author] = ACTIONS(2633), - [sym__strikeout_open] = ACTIONS(2633), - [sym__subscript_open] = ACTIONS(2633), - [sym__superscript_open] = ACTIONS(2633), - [sym__inline_note_start_token] = ACTIONS(2633), - [sym__strong_emphasis_open_star] = ACTIONS(2633), - [sym__strong_emphasis_open_underscore] = ACTIONS(2633), - [sym__emphasis_open_star] = ACTIONS(2633), - [sym__emphasis_open_underscore] = ACTIONS(2633), - [sym_inline_note_reference] = ACTIONS(2633), - [sym_html_element] = ACTIONS(2633), - [sym__pandoc_line_break] = ACTIONS(2633), + [STATE(375)] = { + [anon_sym_COLON] = ACTIONS(2703), + [sym_entity_reference] = ACTIONS(2703), + [sym_numeric_character_reference] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_BANG_LBRACK] = ACTIONS(2703), + [anon_sym_DOLLAR] = ACTIONS(2705), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [aux_sym_pandoc_str_token1] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2703), + [sym__whitespace] = ACTIONS(2703), + [sym__line_ending] = ACTIONS(2703), + [sym__soft_line_ending] = ACTIONS(2703), + [sym__block_close] = ACTIONS(2703), + [sym__block_quote_start] = ACTIONS(2703), + [sym_atx_h1_marker] = ACTIONS(2703), + [sym_atx_h2_marker] = ACTIONS(2703), + [sym_atx_h3_marker] = ACTIONS(2703), + [sym_atx_h4_marker] = ACTIONS(2703), + [sym_atx_h5_marker] = ACTIONS(2703), + [sym_atx_h6_marker] = ACTIONS(2703), + [sym__thematic_break] = ACTIONS(2703), + [sym__list_marker_minus] = ACTIONS(2703), + [sym__list_marker_plus] = ACTIONS(2703), + [sym__list_marker_star] = ACTIONS(2703), + [sym__list_marker_parenthesis] = ACTIONS(2703), + [sym__list_marker_dot] = ACTIONS(2703), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2703), + [sym__list_marker_example] = ACTIONS(2703), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2703), + [sym__fenced_code_block_start_backtick] = ACTIONS(2703), + [sym_minus_metadata] = ACTIONS(2703), + [sym__pipe_table_start] = ACTIONS(2703), + [sym__fenced_div_start] = ACTIONS(2703), + [sym_ref_id_specifier] = ACTIONS(2703), + [sym__code_span_start] = ACTIONS(2703), + [sym__html_comment] = ACTIONS(2703), + [sym__autolink] = ACTIONS(2703), + [sym__highlight_span_start] = ACTIONS(2703), + [sym__insert_span_start] = ACTIONS(2703), + [sym__delete_span_start] = ACTIONS(2703), + [sym__edit_comment_span_start] = ACTIONS(2703), + [sym__single_quote_span_open] = ACTIONS(2703), + [sym__double_quote_span_open] = ACTIONS(2703), + [sym__shortcode_open_escaped] = ACTIONS(2703), + [sym__shortcode_open] = ACTIONS(2703), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2703), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2703), + [sym__cite_author_in_text] = ACTIONS(2703), + [sym__cite_suppress_author] = ACTIONS(2703), + [sym__strikeout_open] = ACTIONS(2703), + [sym__subscript_open] = ACTIONS(2703), + [sym__superscript_open] = ACTIONS(2703), + [sym__inline_note_start_token] = ACTIONS(2703), + [sym__strong_emphasis_open_star] = ACTIONS(2703), + [sym__strong_emphasis_open_underscore] = ACTIONS(2703), + [sym__emphasis_open_star] = ACTIONS(2703), + [sym__emphasis_open_underscore] = ACTIONS(2703), + [sym_inline_note_reference] = ACTIONS(2703), + [sym_html_element] = ACTIONS(2703), + [sym__pandoc_line_break] = ACTIONS(2703), }, - [STATE(410)] = { - [anon_sym_COLON] = ACTIONS(2639), - [sym_entity_reference] = ACTIONS(2639), - [sym_numeric_character_reference] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_BANG_LBRACK] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2641), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2639), - [aux_sym_pandoc_str_token1] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2639), - [aux_sym__prose_punctuation_token1] = ACTIONS(2641), - [sym__line_ending] = ACTIONS(2639), - [sym__soft_line_ending] = ACTIONS(2639), - [sym__block_close] = ACTIONS(2639), - [sym_block_continuation] = ACTIONS(3413), - [sym__block_quote_start] = ACTIONS(2639), - [sym_atx_h1_marker] = ACTIONS(2639), - [sym_atx_h2_marker] = ACTIONS(2639), - [sym_atx_h3_marker] = ACTIONS(2639), - [sym_atx_h4_marker] = ACTIONS(2639), - [sym_atx_h5_marker] = ACTIONS(2639), - [sym_atx_h6_marker] = ACTIONS(2639), - [sym__thematic_break] = ACTIONS(2639), - [sym__list_marker_minus] = ACTIONS(2639), - [sym__list_marker_plus] = ACTIONS(2639), - [sym__list_marker_star] = ACTIONS(2639), - [sym__list_marker_parenthesis] = ACTIONS(2639), - [sym__list_marker_dot] = ACTIONS(2639), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_example] = ACTIONS(2639), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2639), - [sym__fenced_code_block_start_backtick] = ACTIONS(2639), - [sym_minus_metadata] = ACTIONS(2639), - [sym__pipe_table_start] = ACTIONS(2639), - [sym__fenced_div_start] = ACTIONS(2639), - [sym_ref_id_specifier] = ACTIONS(2639), - [sym__code_span_start] = ACTIONS(2639), - [sym__html_comment] = ACTIONS(2639), - [sym__autolink] = ACTIONS(2639), - [sym__highlight_span_start] = ACTIONS(2639), - [sym__insert_span_start] = ACTIONS(2639), - [sym__delete_span_start] = ACTIONS(2639), - [sym__edit_comment_span_start] = ACTIONS(2639), - [sym__single_quote_span_open] = ACTIONS(2639), - [sym__double_quote_span_open] = ACTIONS(2639), - [sym__shortcode_open_escaped] = ACTIONS(2639), - [sym__shortcode_open] = ACTIONS(2639), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2639), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2639), - [sym__cite_author_in_text] = ACTIONS(2639), - [sym__cite_suppress_author] = ACTIONS(2639), - [sym__strikeout_open] = ACTIONS(2639), - [sym__subscript_open] = ACTIONS(2639), - [sym__superscript_open] = ACTIONS(2639), - [sym__inline_note_start_token] = ACTIONS(2639), - [sym__strong_emphasis_open_star] = ACTIONS(2639), - [sym__strong_emphasis_open_underscore] = ACTIONS(2639), - [sym__emphasis_open_star] = ACTIONS(2639), - [sym__emphasis_open_underscore] = ACTIONS(2639), - [sym_inline_note_reference] = ACTIONS(2639), - [sym_html_element] = ACTIONS(2639), - [sym__pandoc_line_break] = ACTIONS(2639), + [STATE(376)] = { + [anon_sym_COLON] = ACTIONS(2389), + [sym_entity_reference] = ACTIONS(2389), + [sym_numeric_character_reference] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_BANG_LBRACK] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [aux_sym_pandoc_str_token1] = ACTIONS(2391), + [anon_sym_PIPE] = ACTIONS(2389), + [sym__whitespace] = ACTIONS(2389), + [sym__line_ending] = ACTIONS(2389), + [sym__soft_line_ending] = ACTIONS(2389), + [sym__block_close] = ACTIONS(2389), + [sym__block_quote_start] = ACTIONS(2389), + [sym_atx_h1_marker] = ACTIONS(2389), + [sym_atx_h2_marker] = ACTIONS(2389), + [sym_atx_h3_marker] = ACTIONS(2389), + [sym_atx_h4_marker] = ACTIONS(2389), + [sym_atx_h5_marker] = ACTIONS(2389), + [sym_atx_h6_marker] = ACTIONS(2389), + [sym__thematic_break] = ACTIONS(2389), + [sym__list_marker_minus] = ACTIONS(2389), + [sym__list_marker_plus] = ACTIONS(2389), + [sym__list_marker_star] = ACTIONS(2389), + [sym__list_marker_parenthesis] = ACTIONS(2389), + [sym__list_marker_dot] = ACTIONS(2389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_example] = ACTIONS(2389), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2389), + [sym__fenced_code_block_start_backtick] = ACTIONS(2389), + [sym_minus_metadata] = ACTIONS(2389), + [sym__pipe_table_start] = ACTIONS(2389), + [sym__fenced_div_start] = ACTIONS(2389), + [sym_ref_id_specifier] = ACTIONS(2389), + [sym__code_span_start] = ACTIONS(2389), + [sym__html_comment] = ACTIONS(2389), + [sym__autolink] = ACTIONS(2389), + [sym__highlight_span_start] = ACTIONS(2389), + [sym__insert_span_start] = ACTIONS(2389), + [sym__delete_span_start] = ACTIONS(2389), + [sym__edit_comment_span_start] = ACTIONS(2389), + [sym__single_quote_span_open] = ACTIONS(2389), + [sym__double_quote_span_open] = ACTIONS(2389), + [sym__shortcode_open_escaped] = ACTIONS(2389), + [sym__shortcode_open] = ACTIONS(2389), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2389), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2389), + [sym__cite_author_in_text] = ACTIONS(2389), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2389), + [sym__subscript_open] = ACTIONS(2389), + [sym__superscript_open] = ACTIONS(2389), + [sym__inline_note_start_token] = ACTIONS(2389), + [sym__strong_emphasis_open_star] = ACTIONS(2389), + [sym__strong_emphasis_open_underscore] = ACTIONS(2389), + [sym__emphasis_open_star] = ACTIONS(2389), + [sym__emphasis_open_underscore] = ACTIONS(2389), + [sym_inline_note_reference] = ACTIONS(2389), + [sym_html_element] = ACTIONS(2389), + [sym__pandoc_line_break] = ACTIONS(2389), }, - [STATE(411)] = { - [anon_sym_COLON] = ACTIONS(2699), - [sym_entity_reference] = ACTIONS(2699), - [sym_numeric_character_reference] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_BANG_LBRACK] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2699), - [aux_sym_pandoc_str_token1] = ACTIONS(2701), - [anon_sym_PIPE] = ACTIONS(2699), - [aux_sym__prose_punctuation_token1] = ACTIONS(2701), - [sym__line_ending] = ACTIONS(2699), - [sym__soft_line_ending] = ACTIONS(2699), - [sym__block_close] = ACTIONS(2699), - [sym_block_continuation] = ACTIONS(3415), - [sym__block_quote_start] = ACTIONS(2699), - [sym_atx_h1_marker] = ACTIONS(2699), - [sym_atx_h2_marker] = ACTIONS(2699), - [sym_atx_h3_marker] = ACTIONS(2699), - [sym_atx_h4_marker] = ACTIONS(2699), - [sym_atx_h5_marker] = ACTIONS(2699), - [sym_atx_h6_marker] = ACTIONS(2699), - [sym__thematic_break] = ACTIONS(2699), - [sym__list_marker_minus] = ACTIONS(2699), - [sym__list_marker_plus] = ACTIONS(2699), - [sym__list_marker_star] = ACTIONS(2699), - [sym__list_marker_parenthesis] = ACTIONS(2699), - [sym__list_marker_dot] = ACTIONS(2699), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2699), - [sym__list_marker_example] = ACTIONS(2699), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2699), - [sym__fenced_code_block_start_backtick] = ACTIONS(2699), - [sym_minus_metadata] = ACTIONS(2699), - [sym__pipe_table_start] = ACTIONS(2699), - [sym__fenced_div_start] = ACTIONS(2699), - [sym_ref_id_specifier] = ACTIONS(2699), - [sym__code_span_start] = ACTIONS(2699), - [sym__html_comment] = ACTIONS(2699), - [sym__autolink] = ACTIONS(2699), - [sym__highlight_span_start] = ACTIONS(2699), - [sym__insert_span_start] = ACTIONS(2699), - [sym__delete_span_start] = ACTIONS(2699), - [sym__edit_comment_span_start] = ACTIONS(2699), - [sym__single_quote_span_open] = ACTIONS(2699), - [sym__double_quote_span_open] = ACTIONS(2699), - [sym__shortcode_open_escaped] = ACTIONS(2699), - [sym__shortcode_open] = ACTIONS(2699), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2699), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2699), - [sym__cite_author_in_text] = ACTIONS(2699), - [sym__cite_suppress_author] = ACTIONS(2699), - [sym__strikeout_open] = ACTIONS(2699), - [sym__subscript_open] = ACTIONS(2699), - [sym__superscript_open] = ACTIONS(2699), - [sym__inline_note_start_token] = ACTIONS(2699), - [sym__strong_emphasis_open_star] = ACTIONS(2699), - [sym__strong_emphasis_open_underscore] = ACTIONS(2699), - [sym__emphasis_open_star] = ACTIONS(2699), - [sym__emphasis_open_underscore] = ACTIONS(2699), - [sym_inline_note_reference] = ACTIONS(2699), - [sym_html_element] = ACTIONS(2699), - [sym__pandoc_line_break] = ACTIONS(2699), + [STATE(377)] = { + [ts_builtin_sym_end] = ACTIONS(2749), + [anon_sym_COLON] = ACTIONS(2749), + [sym_entity_reference] = ACTIONS(2749), + [sym_numeric_character_reference] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_BANG_LBRACK] = ACTIONS(2749), + [anon_sym_DOLLAR] = ACTIONS(2751), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2749), + [aux_sym_pandoc_str_token1] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2749), + [sym__whitespace] = ACTIONS(2749), + [sym__line_ending] = ACTIONS(2749), + [sym__soft_line_ending] = ACTIONS(2749), + [sym__block_quote_start] = ACTIONS(2749), + [sym_atx_h1_marker] = ACTIONS(2749), + [sym_atx_h2_marker] = ACTIONS(2749), + [sym_atx_h3_marker] = ACTIONS(2749), + [sym_atx_h4_marker] = ACTIONS(2749), + [sym_atx_h5_marker] = ACTIONS(2749), + [sym_atx_h6_marker] = ACTIONS(2749), + [sym__thematic_break] = ACTIONS(2749), + [sym__list_marker_minus] = ACTIONS(2749), + [sym__list_marker_plus] = ACTIONS(2749), + [sym__list_marker_star] = ACTIONS(2749), + [sym__list_marker_parenthesis] = ACTIONS(2749), + [sym__list_marker_dot] = ACTIONS(2749), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2749), + [sym__list_marker_example] = ACTIONS(2749), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2749), + [sym__fenced_code_block_start_backtick] = ACTIONS(2749), + [sym_minus_metadata] = ACTIONS(2749), + [sym__pipe_table_start] = ACTIONS(2749), + [sym__fenced_div_start] = ACTIONS(2749), + [sym_ref_id_specifier] = ACTIONS(2749), + [sym__code_span_start] = ACTIONS(2749), + [sym__html_comment] = ACTIONS(2749), + [sym__autolink] = ACTIONS(2749), + [sym__highlight_span_start] = ACTIONS(2749), + [sym__insert_span_start] = ACTIONS(2749), + [sym__delete_span_start] = ACTIONS(2749), + [sym__edit_comment_span_start] = ACTIONS(2749), + [sym__single_quote_span_open] = ACTIONS(2749), + [sym__double_quote_span_open] = ACTIONS(2749), + [sym__shortcode_open_escaped] = ACTIONS(2749), + [sym__shortcode_open] = ACTIONS(2749), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2749), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2749), + [sym__cite_author_in_text] = ACTIONS(2749), + [sym__cite_suppress_author] = ACTIONS(2749), + [sym__strikeout_open] = ACTIONS(2749), + [sym__subscript_open] = ACTIONS(2749), + [sym__superscript_open] = ACTIONS(2749), + [sym__inline_note_start_token] = ACTIONS(2749), + [sym__strong_emphasis_open_star] = ACTIONS(2749), + [sym__strong_emphasis_open_underscore] = ACTIONS(2749), + [sym__emphasis_open_star] = ACTIONS(2749), + [sym__emphasis_open_underscore] = ACTIONS(2749), + [sym_inline_note_reference] = ACTIONS(2749), + [sym_html_element] = ACTIONS(2749), + [sym__pandoc_line_break] = ACTIONS(2749), }, - [STATE(412)] = { - [anon_sym_COLON] = ACTIONS(2645), - [sym_entity_reference] = ACTIONS(2645), - [sym_numeric_character_reference] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_BANG_LBRACK] = ACTIONS(2645), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [aux_sym_pandoc_str_token1] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2645), - [aux_sym__prose_punctuation_token1] = ACTIONS(2647), - [sym__line_ending] = ACTIONS(2645), - [sym__soft_line_ending] = ACTIONS(2645), - [sym__block_close] = ACTIONS(2645), - [sym_block_continuation] = ACTIONS(3417), - [sym__block_quote_start] = ACTIONS(2645), - [sym_atx_h1_marker] = ACTIONS(2645), - [sym_atx_h2_marker] = ACTIONS(2645), - [sym_atx_h3_marker] = ACTIONS(2645), - [sym_atx_h4_marker] = ACTIONS(2645), - [sym_atx_h5_marker] = ACTIONS(2645), - [sym_atx_h6_marker] = ACTIONS(2645), - [sym__thematic_break] = ACTIONS(2645), - [sym__list_marker_minus] = ACTIONS(2645), - [sym__list_marker_plus] = ACTIONS(2645), - [sym__list_marker_star] = ACTIONS(2645), - [sym__list_marker_parenthesis] = ACTIONS(2645), - [sym__list_marker_dot] = ACTIONS(2645), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2645), - [sym__list_marker_example] = ACTIONS(2645), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2645), - [sym__fenced_code_block_start_backtick] = ACTIONS(2645), - [sym_minus_metadata] = ACTIONS(2645), - [sym__pipe_table_start] = ACTIONS(2645), - [sym__fenced_div_start] = ACTIONS(2645), - [sym_ref_id_specifier] = ACTIONS(2645), - [sym__code_span_start] = ACTIONS(2645), - [sym__html_comment] = ACTIONS(2645), - [sym__autolink] = ACTIONS(2645), - [sym__highlight_span_start] = ACTIONS(2645), - [sym__insert_span_start] = ACTIONS(2645), - [sym__delete_span_start] = ACTIONS(2645), - [sym__edit_comment_span_start] = ACTIONS(2645), - [sym__single_quote_span_open] = ACTIONS(2645), - [sym__double_quote_span_open] = ACTIONS(2645), - [sym__shortcode_open_escaped] = ACTIONS(2645), - [sym__shortcode_open] = ACTIONS(2645), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2645), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2645), - [sym__cite_author_in_text] = ACTIONS(2645), - [sym__cite_suppress_author] = ACTIONS(2645), - [sym__strikeout_open] = ACTIONS(2645), - [sym__subscript_open] = ACTIONS(2645), - [sym__superscript_open] = ACTIONS(2645), - [sym__inline_note_start_token] = ACTIONS(2645), - [sym__strong_emphasis_open_star] = ACTIONS(2645), - [sym__strong_emphasis_open_underscore] = ACTIONS(2645), - [sym__emphasis_open_star] = ACTIONS(2645), - [sym__emphasis_open_underscore] = ACTIONS(2645), - [sym_inline_note_reference] = ACTIONS(2645), - [sym_html_element] = ACTIONS(2645), - [sym__pandoc_line_break] = ACTIONS(2645), + [STATE(378)] = { + [anon_sym_COLON] = ACTIONS(2707), + [sym_entity_reference] = ACTIONS(2707), + [sym_numeric_character_reference] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_BANG_LBRACK] = ACTIONS(2707), + [anon_sym_DOLLAR] = ACTIONS(2709), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2707), + [aux_sym_pandoc_str_token1] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2707), + [sym__whitespace] = ACTIONS(2707), + [sym__line_ending] = ACTIONS(2707), + [sym__soft_line_ending] = ACTIONS(2707), + [sym__block_close] = ACTIONS(2707), + [sym__block_quote_start] = ACTIONS(2707), + [sym_atx_h1_marker] = ACTIONS(2707), + [sym_atx_h2_marker] = ACTIONS(2707), + [sym_atx_h3_marker] = ACTIONS(2707), + [sym_atx_h4_marker] = ACTIONS(2707), + [sym_atx_h5_marker] = ACTIONS(2707), + [sym_atx_h6_marker] = ACTIONS(2707), + [sym__thematic_break] = ACTIONS(2707), + [sym__list_marker_minus] = ACTIONS(2707), + [sym__list_marker_plus] = ACTIONS(2707), + [sym__list_marker_star] = ACTIONS(2707), + [sym__list_marker_parenthesis] = ACTIONS(2707), + [sym__list_marker_dot] = ACTIONS(2707), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2707), + [sym__list_marker_example] = ACTIONS(2707), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2707), + [sym__fenced_code_block_start_backtick] = ACTIONS(2707), + [sym_minus_metadata] = ACTIONS(2707), + [sym__pipe_table_start] = ACTIONS(2707), + [sym__fenced_div_start] = ACTIONS(2707), + [sym_ref_id_specifier] = ACTIONS(2707), + [sym__code_span_start] = ACTIONS(2707), + [sym__html_comment] = ACTIONS(2707), + [sym__autolink] = ACTIONS(2707), + [sym__highlight_span_start] = ACTIONS(2707), + [sym__insert_span_start] = ACTIONS(2707), + [sym__delete_span_start] = ACTIONS(2707), + [sym__edit_comment_span_start] = ACTIONS(2707), + [sym__single_quote_span_open] = ACTIONS(2707), + [sym__double_quote_span_open] = ACTIONS(2707), + [sym__shortcode_open_escaped] = ACTIONS(2707), + [sym__shortcode_open] = ACTIONS(2707), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2707), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2707), + [sym__cite_author_in_text] = ACTIONS(2707), + [sym__cite_suppress_author] = ACTIONS(2707), + [sym__strikeout_open] = ACTIONS(2707), + [sym__subscript_open] = ACTIONS(2707), + [sym__superscript_open] = ACTIONS(2707), + [sym__inline_note_start_token] = ACTIONS(2707), + [sym__strong_emphasis_open_star] = ACTIONS(2707), + [sym__strong_emphasis_open_underscore] = ACTIONS(2707), + [sym__emphasis_open_star] = ACTIONS(2707), + [sym__emphasis_open_underscore] = ACTIONS(2707), + [sym_inline_note_reference] = ACTIONS(2707), + [sym_html_element] = ACTIONS(2707), + [sym__pandoc_line_break] = ACTIONS(2707), }, - [STATE(413)] = { - [anon_sym_COLON] = ACTIONS(2651), - [sym_entity_reference] = ACTIONS(2651), - [sym_numeric_character_reference] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_BANG_LBRACK] = ACTIONS(2651), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2651), - [aux_sym_pandoc_str_token1] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2651), - [aux_sym__prose_punctuation_token1] = ACTIONS(2653), - [sym__line_ending] = ACTIONS(2651), - [sym__soft_line_ending] = ACTIONS(2651), - [sym__block_close] = ACTIONS(2651), - [sym_block_continuation] = ACTIONS(3419), - [sym__block_quote_start] = ACTIONS(2651), - [sym_atx_h1_marker] = ACTIONS(2651), - [sym_atx_h2_marker] = ACTIONS(2651), - [sym_atx_h3_marker] = ACTIONS(2651), - [sym_atx_h4_marker] = ACTIONS(2651), - [sym_atx_h5_marker] = ACTIONS(2651), - [sym_atx_h6_marker] = ACTIONS(2651), - [sym__thematic_break] = ACTIONS(2651), - [sym__list_marker_minus] = ACTIONS(2651), - [sym__list_marker_plus] = ACTIONS(2651), - [sym__list_marker_star] = ACTIONS(2651), - [sym__list_marker_parenthesis] = ACTIONS(2651), - [sym__list_marker_dot] = ACTIONS(2651), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2651), - [sym__list_marker_example] = ACTIONS(2651), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2651), - [sym__fenced_code_block_start_backtick] = ACTIONS(2651), - [sym_minus_metadata] = ACTIONS(2651), - [sym__pipe_table_start] = ACTIONS(2651), - [sym__fenced_div_start] = ACTIONS(2651), - [sym_ref_id_specifier] = ACTIONS(2651), - [sym__code_span_start] = ACTIONS(2651), - [sym__html_comment] = ACTIONS(2651), - [sym__autolink] = ACTIONS(2651), - [sym__highlight_span_start] = ACTIONS(2651), - [sym__insert_span_start] = ACTIONS(2651), - [sym__delete_span_start] = ACTIONS(2651), - [sym__edit_comment_span_start] = ACTIONS(2651), - [sym__single_quote_span_open] = ACTIONS(2651), - [sym__double_quote_span_open] = ACTIONS(2651), - [sym__shortcode_open_escaped] = ACTIONS(2651), - [sym__shortcode_open] = ACTIONS(2651), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2651), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2651), - [sym__cite_author_in_text] = ACTIONS(2651), - [sym__cite_suppress_author] = ACTIONS(2651), - [sym__strikeout_open] = ACTIONS(2651), - [sym__subscript_open] = ACTIONS(2651), - [sym__superscript_open] = ACTIONS(2651), - [sym__inline_note_start_token] = ACTIONS(2651), - [sym__strong_emphasis_open_star] = ACTIONS(2651), - [sym__strong_emphasis_open_underscore] = ACTIONS(2651), - [sym__emphasis_open_star] = ACTIONS(2651), - [sym__emphasis_open_underscore] = ACTIONS(2651), - [sym_inline_note_reference] = ACTIONS(2651), - [sym_html_element] = ACTIONS(2651), - [sym__pandoc_line_break] = ACTIONS(2651), + [STATE(379)] = { + [anon_sym_COLON] = ACTIONS(2395), + [sym_entity_reference] = ACTIONS(2395), + [sym_numeric_character_reference] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_BANG_LBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [aux_sym_pandoc_str_token1] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2395), + [sym__whitespace] = ACTIONS(2395), + [sym__line_ending] = ACTIONS(2395), + [sym__soft_line_ending] = ACTIONS(2395), + [sym__block_close] = ACTIONS(2395), + [sym__block_quote_start] = ACTIONS(2395), + [sym_atx_h1_marker] = ACTIONS(2395), + [sym_atx_h2_marker] = ACTIONS(2395), + [sym_atx_h3_marker] = ACTIONS(2395), + [sym_atx_h4_marker] = ACTIONS(2395), + [sym_atx_h5_marker] = ACTIONS(2395), + [sym_atx_h6_marker] = ACTIONS(2395), + [sym__thematic_break] = ACTIONS(2395), + [sym__list_marker_minus] = ACTIONS(2395), + [sym__list_marker_plus] = ACTIONS(2395), + [sym__list_marker_star] = ACTIONS(2395), + [sym__list_marker_parenthesis] = ACTIONS(2395), + [sym__list_marker_dot] = ACTIONS(2395), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_example] = ACTIONS(2395), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2395), + [sym__fenced_code_block_start_backtick] = ACTIONS(2395), + [sym_minus_metadata] = ACTIONS(2395), + [sym__pipe_table_start] = ACTIONS(2395), + [sym__fenced_div_start] = ACTIONS(2395), + [sym_ref_id_specifier] = ACTIONS(2395), + [sym__code_span_start] = ACTIONS(2395), + [sym__html_comment] = ACTIONS(2395), + [sym__autolink] = ACTIONS(2395), + [sym__highlight_span_start] = ACTIONS(2395), + [sym__insert_span_start] = ACTIONS(2395), + [sym__delete_span_start] = ACTIONS(2395), + [sym__edit_comment_span_start] = ACTIONS(2395), + [sym__single_quote_span_open] = ACTIONS(2395), + [sym__double_quote_span_open] = ACTIONS(2395), + [sym__shortcode_open_escaped] = ACTIONS(2395), + [sym__shortcode_open] = ACTIONS(2395), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2395), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2395), + [sym__cite_author_in_text] = ACTIONS(2395), + [sym__cite_suppress_author] = ACTIONS(2395), + [sym__strikeout_open] = ACTIONS(2395), + [sym__subscript_open] = ACTIONS(2395), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2395), + [sym__strong_emphasis_open_star] = ACTIONS(2395), + [sym__strong_emphasis_open_underscore] = ACTIONS(2395), + [sym__emphasis_open_star] = ACTIONS(2395), + [sym__emphasis_open_underscore] = ACTIONS(2395), + [sym_inline_note_reference] = ACTIONS(2395), + [sym_html_element] = ACTIONS(2395), + [sym__pandoc_line_break] = ACTIONS(2395), }, - [STATE(414)] = { + [STATE(380)] = { + [anon_sym_COLON] = ACTIONS(2711), + [sym_entity_reference] = ACTIONS(2711), + [sym_numeric_character_reference] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_BANG_LBRACK] = ACTIONS(2711), + [anon_sym_DOLLAR] = ACTIONS(2713), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [aux_sym_pandoc_str_token1] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2711), + [sym__whitespace] = ACTIONS(2711), + [sym__line_ending] = ACTIONS(2711), + [sym__soft_line_ending] = ACTIONS(2711), + [sym__block_close] = ACTIONS(2711), + [sym__block_quote_start] = ACTIONS(2711), + [sym_atx_h1_marker] = ACTIONS(2711), + [sym_atx_h2_marker] = ACTIONS(2711), + [sym_atx_h3_marker] = ACTIONS(2711), + [sym_atx_h4_marker] = ACTIONS(2711), + [sym_atx_h5_marker] = ACTIONS(2711), + [sym_atx_h6_marker] = ACTIONS(2711), + [sym__thematic_break] = ACTIONS(2711), + [sym__list_marker_minus] = ACTIONS(2711), + [sym__list_marker_plus] = ACTIONS(2711), + [sym__list_marker_star] = ACTIONS(2711), + [sym__list_marker_parenthesis] = ACTIONS(2711), + [sym__list_marker_dot] = ACTIONS(2711), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2711), + [sym__list_marker_example] = ACTIONS(2711), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2711), + [sym__fenced_code_block_start_backtick] = ACTIONS(2711), + [sym_minus_metadata] = ACTIONS(2711), + [sym__pipe_table_start] = ACTIONS(2711), + [sym__fenced_div_start] = ACTIONS(2711), + [sym_ref_id_specifier] = ACTIONS(2711), + [sym__code_span_start] = ACTIONS(2711), + [sym__html_comment] = ACTIONS(2711), + [sym__autolink] = ACTIONS(2711), + [sym__highlight_span_start] = ACTIONS(2711), + [sym__insert_span_start] = ACTIONS(2711), + [sym__delete_span_start] = ACTIONS(2711), + [sym__edit_comment_span_start] = ACTIONS(2711), + [sym__single_quote_span_open] = ACTIONS(2711), + [sym__double_quote_span_open] = ACTIONS(2711), + [sym__shortcode_open_escaped] = ACTIONS(2711), + [sym__shortcode_open] = ACTIONS(2711), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2711), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2711), + [sym__cite_author_in_text] = ACTIONS(2711), + [sym__cite_suppress_author] = ACTIONS(2711), + [sym__strikeout_open] = ACTIONS(2711), + [sym__subscript_open] = ACTIONS(2711), + [sym__superscript_open] = ACTIONS(2711), + [sym__inline_note_start_token] = ACTIONS(2711), + [sym__strong_emphasis_open_star] = ACTIONS(2711), + [sym__strong_emphasis_open_underscore] = ACTIONS(2711), + [sym__emphasis_open_star] = ACTIONS(2711), + [sym__emphasis_open_underscore] = ACTIONS(2711), + [sym_inline_note_reference] = ACTIONS(2711), + [sym_html_element] = ACTIONS(2711), + [sym__pandoc_line_break] = ACTIONS(2711), + }, + [STATE(381)] = { + [anon_sym_COLON] = ACTIONS(2401), + [sym_entity_reference] = ACTIONS(2401), + [sym_numeric_character_reference] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_BANG_LBRACK] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [aux_sym_pandoc_str_token1] = ACTIONS(2403), + [anon_sym_PIPE] = ACTIONS(2401), + [sym__whitespace] = ACTIONS(2401), + [sym__line_ending] = ACTIONS(2401), + [sym__soft_line_ending] = ACTIONS(2401), + [sym__block_close] = ACTIONS(2401), + [sym__block_quote_start] = ACTIONS(2401), + [sym_atx_h1_marker] = ACTIONS(2401), + [sym_atx_h2_marker] = ACTIONS(2401), + [sym_atx_h3_marker] = ACTIONS(2401), + [sym_atx_h4_marker] = ACTIONS(2401), + [sym_atx_h5_marker] = ACTIONS(2401), + [sym_atx_h6_marker] = ACTIONS(2401), + [sym__thematic_break] = ACTIONS(2401), + [sym__list_marker_minus] = ACTIONS(2401), + [sym__list_marker_plus] = ACTIONS(2401), + [sym__list_marker_star] = ACTIONS(2401), + [sym__list_marker_parenthesis] = ACTIONS(2401), + [sym__list_marker_dot] = ACTIONS(2401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_example] = ACTIONS(2401), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2401), + [sym__fenced_code_block_start_backtick] = ACTIONS(2401), + [sym_minus_metadata] = ACTIONS(2401), + [sym__pipe_table_start] = ACTIONS(2401), + [sym__fenced_div_start] = ACTIONS(2401), + [sym_ref_id_specifier] = ACTIONS(2401), + [sym__code_span_start] = ACTIONS(2401), + [sym__html_comment] = ACTIONS(2401), + [sym__autolink] = ACTIONS(2401), + [sym__highlight_span_start] = ACTIONS(2401), + [sym__insert_span_start] = ACTIONS(2401), + [sym__delete_span_start] = ACTIONS(2401), + [sym__edit_comment_span_start] = ACTIONS(2401), + [sym__single_quote_span_open] = ACTIONS(2401), + [sym__double_quote_span_open] = ACTIONS(2401), + [sym__shortcode_open_escaped] = ACTIONS(2401), + [sym__shortcode_open] = ACTIONS(2401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2401), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2401), + [sym__cite_author_in_text] = ACTIONS(2401), + [sym__cite_suppress_author] = ACTIONS(2401), + [sym__strikeout_open] = ACTIONS(2401), + [sym__subscript_open] = ACTIONS(2401), + [sym__superscript_open] = ACTIONS(2401), + [sym__inline_note_start_token] = ACTIONS(2401), + [sym__strong_emphasis_open_star] = ACTIONS(2401), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2401), + [sym__emphasis_open_underscore] = ACTIONS(2401), + [sym_inline_note_reference] = ACTIONS(2401), + [sym_html_element] = ACTIONS(2401), + [sym__pandoc_line_break] = ACTIONS(2401), + }, + [STATE(382)] = { + [anon_sym_COLON] = ACTIONS(2715), + [sym_entity_reference] = ACTIONS(2715), + [sym_numeric_character_reference] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_BANG_LBRACK] = ACTIONS(2715), + [anon_sym_DOLLAR] = ACTIONS(2717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [aux_sym_pandoc_str_token1] = ACTIONS(2717), + [anon_sym_PIPE] = ACTIONS(2715), + [sym__whitespace] = ACTIONS(2715), + [sym__line_ending] = ACTIONS(2715), + [sym__soft_line_ending] = ACTIONS(2715), + [sym__block_close] = ACTIONS(2715), + [sym__block_quote_start] = ACTIONS(2715), + [sym_atx_h1_marker] = ACTIONS(2715), + [sym_atx_h2_marker] = ACTIONS(2715), + [sym_atx_h3_marker] = ACTIONS(2715), + [sym_atx_h4_marker] = ACTIONS(2715), + [sym_atx_h5_marker] = ACTIONS(2715), + [sym_atx_h6_marker] = ACTIONS(2715), + [sym__thematic_break] = ACTIONS(2715), + [sym__list_marker_minus] = ACTIONS(2715), + [sym__list_marker_plus] = ACTIONS(2715), + [sym__list_marker_star] = ACTIONS(2715), + [sym__list_marker_parenthesis] = ACTIONS(2715), + [sym__list_marker_dot] = ACTIONS(2715), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2715), + [sym__list_marker_example] = ACTIONS(2715), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2715), + [sym__fenced_code_block_start_backtick] = ACTIONS(2715), + [sym_minus_metadata] = ACTIONS(2715), + [sym__pipe_table_start] = ACTIONS(2715), + [sym__fenced_div_start] = ACTIONS(2715), + [sym_ref_id_specifier] = ACTIONS(2715), + [sym__code_span_start] = ACTIONS(2715), + [sym__html_comment] = ACTIONS(2715), + [sym__autolink] = ACTIONS(2715), + [sym__highlight_span_start] = ACTIONS(2715), + [sym__insert_span_start] = ACTIONS(2715), + [sym__delete_span_start] = ACTIONS(2715), + [sym__edit_comment_span_start] = ACTIONS(2715), + [sym__single_quote_span_open] = ACTIONS(2715), + [sym__double_quote_span_open] = ACTIONS(2715), + [sym__shortcode_open_escaped] = ACTIONS(2715), + [sym__shortcode_open] = ACTIONS(2715), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2715), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2715), + [sym__cite_author_in_text] = ACTIONS(2715), + [sym__cite_suppress_author] = ACTIONS(2715), + [sym__strikeout_open] = ACTIONS(2715), + [sym__subscript_open] = ACTIONS(2715), + [sym__superscript_open] = ACTIONS(2715), + [sym__inline_note_start_token] = ACTIONS(2715), + [sym__strong_emphasis_open_star] = ACTIONS(2715), + [sym__strong_emphasis_open_underscore] = ACTIONS(2715), + [sym__emphasis_open_star] = ACTIONS(2715), + [sym__emphasis_open_underscore] = ACTIONS(2715), + [sym_inline_note_reference] = ACTIONS(2715), + [sym_html_element] = ACTIONS(2715), + [sym__pandoc_line_break] = ACTIONS(2715), + }, + [STATE(383)] = { + [anon_sym_COLON] = ACTIONS(2407), + [sym_entity_reference] = ACTIONS(2407), + [sym_numeric_character_reference] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_BANG_LBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [aux_sym_pandoc_str_token1] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2407), + [sym__whitespace] = ACTIONS(2407), + [sym__line_ending] = ACTIONS(2407), + [sym__soft_line_ending] = ACTIONS(2407), + [sym__block_close] = ACTIONS(2407), + [sym__block_quote_start] = ACTIONS(2407), + [sym_atx_h1_marker] = ACTIONS(2407), + [sym_atx_h2_marker] = ACTIONS(2407), + [sym_atx_h3_marker] = ACTIONS(2407), + [sym_atx_h4_marker] = ACTIONS(2407), + [sym_atx_h5_marker] = ACTIONS(2407), + [sym_atx_h6_marker] = ACTIONS(2407), + [sym__thematic_break] = ACTIONS(2407), + [sym__list_marker_minus] = ACTIONS(2407), + [sym__list_marker_plus] = ACTIONS(2407), + [sym__list_marker_star] = ACTIONS(2407), + [sym__list_marker_parenthesis] = ACTIONS(2407), + [sym__list_marker_dot] = ACTIONS(2407), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_example] = ACTIONS(2407), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2407), + [sym__fenced_code_block_start_backtick] = ACTIONS(2407), + [sym_minus_metadata] = ACTIONS(2407), + [sym__pipe_table_start] = ACTIONS(2407), + [sym__fenced_div_start] = ACTIONS(2407), + [sym_ref_id_specifier] = ACTIONS(2407), + [sym__code_span_start] = ACTIONS(2407), + [sym__html_comment] = ACTIONS(2407), + [sym__autolink] = ACTIONS(2407), + [sym__highlight_span_start] = ACTIONS(2407), + [sym__insert_span_start] = ACTIONS(2407), + [sym__delete_span_start] = ACTIONS(2407), + [sym__edit_comment_span_start] = ACTIONS(2407), + [sym__single_quote_span_open] = ACTIONS(2407), + [sym__double_quote_span_open] = ACTIONS(2407), + [sym__shortcode_open_escaped] = ACTIONS(2407), + [sym__shortcode_open] = ACTIONS(2407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2407), + [sym__cite_author_in_text] = ACTIONS(2407), + [sym__cite_suppress_author] = ACTIONS(2407), + [sym__strikeout_open] = ACTIONS(2407), + [sym__subscript_open] = ACTIONS(2407), + [sym__superscript_open] = ACTIONS(2407), + [sym__inline_note_start_token] = ACTIONS(2407), + [sym__strong_emphasis_open_star] = ACTIONS(2407), + [sym__strong_emphasis_open_underscore] = ACTIONS(2407), + [sym__emphasis_open_star] = ACTIONS(2407), + [sym__emphasis_open_underscore] = ACTIONS(2407), + [sym_inline_note_reference] = ACTIONS(2407), + [sym_html_element] = ACTIONS(2407), + [sym__pandoc_line_break] = ACTIONS(2407), + }, + [STATE(384)] = { + [anon_sym_COLON] = ACTIONS(2761), + [sym_entity_reference] = ACTIONS(2761), + [sym_numeric_character_reference] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_BANG_LBRACK] = ACTIONS(2761), + [anon_sym_DOLLAR] = ACTIONS(2763), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2761), + [aux_sym_pandoc_str_token1] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(2761), + [sym__whitespace] = ACTIONS(2761), + [sym__line_ending] = ACTIONS(2761), + [sym__soft_line_ending] = ACTIONS(2761), + [sym__block_close] = ACTIONS(2761), + [sym__block_quote_start] = ACTIONS(2761), + [sym_atx_h1_marker] = ACTIONS(2761), + [sym_atx_h2_marker] = ACTIONS(2761), + [sym_atx_h3_marker] = ACTIONS(2761), + [sym_atx_h4_marker] = ACTIONS(2761), + [sym_atx_h5_marker] = ACTIONS(2761), + [sym_atx_h6_marker] = ACTIONS(2761), + [sym__thematic_break] = ACTIONS(2761), + [sym__list_marker_minus] = ACTIONS(2761), + [sym__list_marker_plus] = ACTIONS(2761), + [sym__list_marker_star] = ACTIONS(2761), + [sym__list_marker_parenthesis] = ACTIONS(2761), + [sym__list_marker_dot] = ACTIONS(2761), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_example] = ACTIONS(2761), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2761), + [sym__fenced_code_block_start_backtick] = ACTIONS(2761), + [sym_minus_metadata] = ACTIONS(2761), + [sym__pipe_table_start] = ACTIONS(2761), + [sym__fenced_div_start] = ACTIONS(2761), + [sym_ref_id_specifier] = ACTIONS(2761), + [sym__code_span_start] = ACTIONS(2761), + [sym__html_comment] = ACTIONS(2761), + [sym__autolink] = ACTIONS(2761), + [sym__highlight_span_start] = ACTIONS(2761), + [sym__insert_span_start] = ACTIONS(2761), + [sym__delete_span_start] = ACTIONS(2761), + [sym__edit_comment_span_start] = ACTIONS(2761), + [sym__single_quote_span_open] = ACTIONS(2761), + [sym__double_quote_span_open] = ACTIONS(2761), + [sym__shortcode_open_escaped] = ACTIONS(2761), + [sym__shortcode_open] = ACTIONS(2761), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2761), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2761), + [sym__cite_author_in_text] = ACTIONS(2761), + [sym__cite_suppress_author] = ACTIONS(2761), + [sym__strikeout_open] = ACTIONS(2761), + [sym__subscript_open] = ACTIONS(2761), + [sym__superscript_open] = ACTIONS(2761), + [sym__inline_note_start_token] = ACTIONS(2761), + [sym__strong_emphasis_open_star] = ACTIONS(2761), + [sym__strong_emphasis_open_underscore] = ACTIONS(2761), + [sym__emphasis_open_star] = ACTIONS(2761), + [sym__emphasis_open_underscore] = ACTIONS(2761), + [sym_inline_note_reference] = ACTIONS(2761), + [sym_html_element] = ACTIONS(2761), + [sym__pandoc_line_break] = ACTIONS(2761), + }, + [STATE(385)] = { + [ts_builtin_sym_end] = ACTIONS(2753), + [anon_sym_COLON] = ACTIONS(2753), + [sym_entity_reference] = ACTIONS(2753), + [sym_numeric_character_reference] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_BANG_LBRACK] = ACTIONS(2753), + [anon_sym_DOLLAR] = ACTIONS(2755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2753), + [aux_sym_pandoc_str_token1] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2753), + [sym__whitespace] = ACTIONS(2753), + [sym__line_ending] = ACTIONS(2753), + [sym__soft_line_ending] = ACTIONS(2753), + [sym__block_quote_start] = ACTIONS(2753), + [sym_atx_h1_marker] = ACTIONS(2753), + [sym_atx_h2_marker] = ACTIONS(2753), + [sym_atx_h3_marker] = ACTIONS(2753), + [sym_atx_h4_marker] = ACTIONS(2753), + [sym_atx_h5_marker] = ACTIONS(2753), + [sym_atx_h6_marker] = ACTIONS(2753), + [sym__thematic_break] = ACTIONS(2753), + [sym__list_marker_minus] = ACTIONS(2753), + [sym__list_marker_plus] = ACTIONS(2753), + [sym__list_marker_star] = ACTIONS(2753), + [sym__list_marker_parenthesis] = ACTIONS(2753), + [sym__list_marker_dot] = ACTIONS(2753), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2753), + [sym__list_marker_example] = ACTIONS(2753), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2753), + [sym__fenced_code_block_start_backtick] = ACTIONS(2753), + [sym_minus_metadata] = ACTIONS(2753), + [sym__pipe_table_start] = ACTIONS(2753), + [sym__fenced_div_start] = ACTIONS(2753), + [sym_ref_id_specifier] = ACTIONS(2753), + [sym__code_span_start] = ACTIONS(2753), + [sym__html_comment] = ACTIONS(2753), + [sym__autolink] = ACTIONS(2753), + [sym__highlight_span_start] = ACTIONS(2753), + [sym__insert_span_start] = ACTIONS(2753), + [sym__delete_span_start] = ACTIONS(2753), + [sym__edit_comment_span_start] = ACTIONS(2753), + [sym__single_quote_span_open] = ACTIONS(2753), + [sym__double_quote_span_open] = ACTIONS(2753), + [sym__shortcode_open_escaped] = ACTIONS(2753), + [sym__shortcode_open] = ACTIONS(2753), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2753), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2753), + [sym__cite_author_in_text] = ACTIONS(2753), + [sym__cite_suppress_author] = ACTIONS(2753), + [sym__strikeout_open] = ACTIONS(2753), + [sym__subscript_open] = ACTIONS(2753), + [sym__superscript_open] = ACTIONS(2753), + [sym__inline_note_start_token] = ACTIONS(2753), + [sym__strong_emphasis_open_star] = ACTIONS(2753), + [sym__strong_emphasis_open_underscore] = ACTIONS(2753), + [sym__emphasis_open_star] = ACTIONS(2753), + [sym__emphasis_open_underscore] = ACTIONS(2753), + [sym_inline_note_reference] = ACTIONS(2753), + [sym_html_element] = ACTIONS(2753), + [sym__pandoc_line_break] = ACTIONS(2753), + }, + [STATE(386)] = { + [anon_sym_COLON] = ACTIONS(2765), + [sym_entity_reference] = ACTIONS(2765), + [sym_numeric_character_reference] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_BANG_LBRACK] = ACTIONS(2765), + [anon_sym_DOLLAR] = ACTIONS(2767), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2765), + [aux_sym_pandoc_str_token1] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2765), + [sym__whitespace] = ACTIONS(2765), + [sym__line_ending] = ACTIONS(2765), + [sym__soft_line_ending] = ACTIONS(2765), + [sym__block_close] = ACTIONS(2765), + [sym__block_quote_start] = ACTIONS(2765), + [sym_atx_h1_marker] = ACTIONS(2765), + [sym_atx_h2_marker] = ACTIONS(2765), + [sym_atx_h3_marker] = ACTIONS(2765), + [sym_atx_h4_marker] = ACTIONS(2765), + [sym_atx_h5_marker] = ACTIONS(2765), + [sym_atx_h6_marker] = ACTIONS(2765), + [sym__thematic_break] = ACTIONS(2765), + [sym__list_marker_minus] = ACTIONS(2765), + [sym__list_marker_plus] = ACTIONS(2765), + [sym__list_marker_star] = ACTIONS(2765), + [sym__list_marker_parenthesis] = ACTIONS(2765), + [sym__list_marker_dot] = ACTIONS(2765), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_example] = ACTIONS(2765), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2765), + [sym__fenced_code_block_start_backtick] = ACTIONS(2765), + [sym_minus_metadata] = ACTIONS(2765), + [sym__pipe_table_start] = ACTIONS(2765), + [sym__fenced_div_start] = ACTIONS(2765), + [sym_ref_id_specifier] = ACTIONS(2765), + [sym__code_span_start] = ACTIONS(2765), + [sym__html_comment] = ACTIONS(2765), + [sym__autolink] = ACTIONS(2765), + [sym__highlight_span_start] = ACTIONS(2765), + [sym__insert_span_start] = ACTIONS(2765), + [sym__delete_span_start] = ACTIONS(2765), + [sym__edit_comment_span_start] = ACTIONS(2765), + [sym__single_quote_span_open] = ACTIONS(2765), + [sym__double_quote_span_open] = ACTIONS(2765), + [sym__shortcode_open_escaped] = ACTIONS(2765), + [sym__shortcode_open] = ACTIONS(2765), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2765), + [sym__cite_author_in_text] = ACTIONS(2765), + [sym__cite_suppress_author] = ACTIONS(2765), + [sym__strikeout_open] = ACTIONS(2765), + [sym__subscript_open] = ACTIONS(2765), + [sym__superscript_open] = ACTIONS(2765), + [sym__inline_note_start_token] = ACTIONS(2765), + [sym__strong_emphasis_open_star] = ACTIONS(2765), + [sym__strong_emphasis_open_underscore] = ACTIONS(2765), + [sym__emphasis_open_star] = ACTIONS(2765), + [sym__emphasis_open_underscore] = ACTIONS(2765), + [sym_inline_note_reference] = ACTIONS(2765), + [sym_html_element] = ACTIONS(2765), + [sym__pandoc_line_break] = ACTIONS(2765), + }, + [STATE(387)] = { + [ts_builtin_sym_end] = ACTIONS(2657), [anon_sym_COLON] = ACTIONS(2657), [sym_entity_reference] = ACTIONS(2657), [sym_numeric_character_reference] = ACTIONS(2657), @@ -57645,11 +57061,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2657), [aux_sym_pandoc_str_token1] = ACTIONS(2659), [anon_sym_PIPE] = ACTIONS(2657), - [aux_sym__prose_punctuation_token1] = ACTIONS(2659), + [sym__whitespace] = ACTIONS(2657), [sym__line_ending] = ACTIONS(2657), [sym__soft_line_ending] = ACTIONS(2657), - [sym__block_close] = ACTIONS(2657), - [sym_block_continuation] = ACTIONS(3421), [sym__block_quote_start] = ACTIONS(2657), [sym_atx_h1_marker] = ACTIONS(2657), [sym_atx_h2_marker] = ACTIONS(2657), @@ -57702,755 +57116,2822 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2657), [sym__pandoc_line_break] = ACTIONS(2657), }, - [STATE(415)] = { - [anon_sym_COLON] = ACTIONS(2657), - [sym_entity_reference] = ACTIONS(2657), - [sym_numeric_character_reference] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_BANG_LBRACK] = ACTIONS(2657), - [anon_sym_DOLLAR] = ACTIONS(2659), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [aux_sym_pandoc_str_token1] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2657), - [aux_sym__prose_punctuation_token1] = ACTIONS(2659), - [sym__line_ending] = ACTIONS(2657), - [sym__soft_line_ending] = ACTIONS(2657), - [sym__block_close] = ACTIONS(2657), - [sym__block_quote_start] = ACTIONS(2657), - [sym_atx_h1_marker] = ACTIONS(2657), - [sym_atx_h2_marker] = ACTIONS(2657), - [sym_atx_h3_marker] = ACTIONS(2657), - [sym_atx_h4_marker] = ACTIONS(2657), - [sym_atx_h5_marker] = ACTIONS(2657), - [sym_atx_h6_marker] = ACTIONS(2657), - [sym__thematic_break] = ACTIONS(2657), - [sym__list_marker_minus] = ACTIONS(2657), - [sym__list_marker_plus] = ACTIONS(2657), - [sym__list_marker_star] = ACTIONS(2657), - [sym__list_marker_parenthesis] = ACTIONS(2657), - [sym__list_marker_dot] = ACTIONS(2657), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_example] = ACTIONS(2657), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2657), - [sym__fenced_code_block_start_backtick] = ACTIONS(2657), - [sym_minus_metadata] = ACTIONS(2657), - [sym__pipe_table_start] = ACTIONS(2657), - [sym__fenced_div_start] = ACTIONS(2657), - [sym__fenced_div_end] = ACTIONS(2657), - [sym_ref_id_specifier] = ACTIONS(2657), - [sym__code_span_start] = ACTIONS(2657), - [sym__html_comment] = ACTIONS(2657), - [sym__autolink] = ACTIONS(2657), - [sym__highlight_span_start] = ACTIONS(2657), - [sym__insert_span_start] = ACTIONS(2657), - [sym__delete_span_start] = ACTIONS(2657), - [sym__edit_comment_span_start] = ACTIONS(2657), - [sym__single_quote_span_open] = ACTIONS(2657), - [sym__double_quote_span_open] = ACTIONS(2657), - [sym__shortcode_open_escaped] = ACTIONS(2657), - [sym__shortcode_open] = ACTIONS(2657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2657), - [sym__cite_author_in_text] = ACTIONS(2657), - [sym__cite_suppress_author] = ACTIONS(2657), - [sym__strikeout_open] = ACTIONS(2657), - [sym__subscript_open] = ACTIONS(2657), - [sym__superscript_open] = ACTIONS(2657), - [sym__inline_note_start_token] = ACTIONS(2657), - [sym__strong_emphasis_open_star] = ACTIONS(2657), - [sym__strong_emphasis_open_underscore] = ACTIONS(2657), - [sym__emphasis_open_star] = ACTIONS(2657), - [sym__emphasis_open_underscore] = ACTIONS(2657), - [sym_inline_note_reference] = ACTIONS(2657), - [sym_html_element] = ACTIONS(2657), - [sym__pandoc_line_break] = ACTIONS(2657), + [STATE(388)] = { + [anon_sym_COLON] = ACTIONS(2719), + [sym_entity_reference] = ACTIONS(2719), + [sym_numeric_character_reference] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_BANG_LBRACK] = ACTIONS(2719), + [anon_sym_DOLLAR] = ACTIONS(2721), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [aux_sym_pandoc_str_token1] = ACTIONS(2721), + [anon_sym_PIPE] = ACTIONS(2719), + [sym__whitespace] = ACTIONS(2719), + [sym__line_ending] = ACTIONS(2719), + [sym__soft_line_ending] = ACTIONS(2719), + [sym__block_close] = ACTIONS(2719), + [sym__block_quote_start] = ACTIONS(2719), + [sym_atx_h1_marker] = ACTIONS(2719), + [sym_atx_h2_marker] = ACTIONS(2719), + [sym_atx_h3_marker] = ACTIONS(2719), + [sym_atx_h4_marker] = ACTIONS(2719), + [sym_atx_h5_marker] = ACTIONS(2719), + [sym_atx_h6_marker] = ACTIONS(2719), + [sym__thematic_break] = ACTIONS(2719), + [sym__list_marker_minus] = ACTIONS(2719), + [sym__list_marker_plus] = ACTIONS(2719), + [sym__list_marker_star] = ACTIONS(2719), + [sym__list_marker_parenthesis] = ACTIONS(2719), + [sym__list_marker_dot] = ACTIONS(2719), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2719), + [sym__list_marker_example] = ACTIONS(2719), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2719), + [sym__fenced_code_block_start_backtick] = ACTIONS(2719), + [sym_minus_metadata] = ACTIONS(2719), + [sym__pipe_table_start] = ACTIONS(2719), + [sym__fenced_div_start] = ACTIONS(2719), + [sym_ref_id_specifier] = ACTIONS(2719), + [sym__code_span_start] = ACTIONS(2719), + [sym__html_comment] = ACTIONS(2719), + [sym__autolink] = ACTIONS(2719), + [sym__highlight_span_start] = ACTIONS(2719), + [sym__insert_span_start] = ACTIONS(2719), + [sym__delete_span_start] = ACTIONS(2719), + [sym__edit_comment_span_start] = ACTIONS(2719), + [sym__single_quote_span_open] = ACTIONS(2719), + [sym__double_quote_span_open] = ACTIONS(2719), + [sym__shortcode_open_escaped] = ACTIONS(2719), + [sym__shortcode_open] = ACTIONS(2719), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2719), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2719), + [sym__cite_author_in_text] = ACTIONS(2719), + [sym__cite_suppress_author] = ACTIONS(2719), + [sym__strikeout_open] = ACTIONS(2719), + [sym__subscript_open] = ACTIONS(2719), + [sym__superscript_open] = ACTIONS(2719), + [sym__inline_note_start_token] = ACTIONS(2719), + [sym__strong_emphasis_open_star] = ACTIONS(2719), + [sym__strong_emphasis_open_underscore] = ACTIONS(2719), + [sym__emphasis_open_star] = ACTIONS(2719), + [sym__emphasis_open_underscore] = ACTIONS(2719), + [sym_inline_note_reference] = ACTIONS(2719), + [sym_html_element] = ACTIONS(2719), + [sym__pandoc_line_break] = ACTIONS(2719), + }, + [STATE(389)] = { + [anon_sym_COLON] = ACTIONS(2769), + [sym_entity_reference] = ACTIONS(2769), + [sym_numeric_character_reference] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_BANG_LBRACK] = ACTIONS(2769), + [anon_sym_DOLLAR] = ACTIONS(2771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2769), + [aux_sym_pandoc_str_token1] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2769), + [sym__whitespace] = ACTIONS(2769), + [sym__line_ending] = ACTIONS(2769), + [sym__soft_line_ending] = ACTIONS(2769), + [sym__block_close] = ACTIONS(2769), + [sym__block_quote_start] = ACTIONS(2769), + [sym_atx_h1_marker] = ACTIONS(2769), + [sym_atx_h2_marker] = ACTIONS(2769), + [sym_atx_h3_marker] = ACTIONS(2769), + [sym_atx_h4_marker] = ACTIONS(2769), + [sym_atx_h5_marker] = ACTIONS(2769), + [sym_atx_h6_marker] = ACTIONS(2769), + [sym__thematic_break] = ACTIONS(2769), + [sym__list_marker_minus] = ACTIONS(2769), + [sym__list_marker_plus] = ACTIONS(2769), + [sym__list_marker_star] = ACTIONS(2769), + [sym__list_marker_parenthesis] = ACTIONS(2769), + [sym__list_marker_dot] = ACTIONS(2769), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_example] = ACTIONS(2769), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2769), + [sym__fenced_code_block_start_backtick] = ACTIONS(2769), + [sym_minus_metadata] = ACTIONS(2769), + [sym__pipe_table_start] = ACTIONS(2769), + [sym__fenced_div_start] = ACTIONS(2769), + [sym_ref_id_specifier] = ACTIONS(2769), + [sym__code_span_start] = ACTIONS(2769), + [sym__html_comment] = ACTIONS(2769), + [sym__autolink] = ACTIONS(2769), + [sym__highlight_span_start] = ACTIONS(2769), + [sym__insert_span_start] = ACTIONS(2769), + [sym__delete_span_start] = ACTIONS(2769), + [sym__edit_comment_span_start] = ACTIONS(2769), + [sym__single_quote_span_open] = ACTIONS(2769), + [sym__double_quote_span_open] = ACTIONS(2769), + [sym__shortcode_open_escaped] = ACTIONS(2769), + [sym__shortcode_open] = ACTIONS(2769), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2769), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2769), + [sym__cite_author_in_text] = ACTIONS(2769), + [sym__cite_suppress_author] = ACTIONS(2769), + [sym__strikeout_open] = ACTIONS(2769), + [sym__subscript_open] = ACTIONS(2769), + [sym__superscript_open] = ACTIONS(2769), + [sym__inline_note_start_token] = ACTIONS(2769), + [sym__strong_emphasis_open_star] = ACTIONS(2769), + [sym__strong_emphasis_open_underscore] = ACTIONS(2769), + [sym__emphasis_open_star] = ACTIONS(2769), + [sym__emphasis_open_underscore] = ACTIONS(2769), + [sym_inline_note_reference] = ACTIONS(2769), + [sym_html_element] = ACTIONS(2769), + [sym__pandoc_line_break] = ACTIONS(2769), + }, + [STATE(390)] = { + [anon_sym_COLON] = ACTIONS(2773), + [sym_entity_reference] = ACTIONS(2773), + [sym_numeric_character_reference] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_BANG_LBRACK] = ACTIONS(2773), + [anon_sym_DOLLAR] = ACTIONS(2775), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2773), + [aux_sym_pandoc_str_token1] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2773), + [sym__whitespace] = ACTIONS(2773), + [sym__line_ending] = ACTIONS(2773), + [sym__soft_line_ending] = ACTIONS(2773), + [sym__block_close] = ACTIONS(2773), + [sym__block_quote_start] = ACTIONS(2773), + [sym_atx_h1_marker] = ACTIONS(2773), + [sym_atx_h2_marker] = ACTIONS(2773), + [sym_atx_h3_marker] = ACTIONS(2773), + [sym_atx_h4_marker] = ACTIONS(2773), + [sym_atx_h5_marker] = ACTIONS(2773), + [sym_atx_h6_marker] = ACTIONS(2773), + [sym__thematic_break] = ACTIONS(2773), + [sym__list_marker_minus] = ACTIONS(2773), + [sym__list_marker_plus] = ACTIONS(2773), + [sym__list_marker_star] = ACTIONS(2773), + [sym__list_marker_parenthesis] = ACTIONS(2773), + [sym__list_marker_dot] = ACTIONS(2773), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_example] = ACTIONS(2773), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2773), + [sym__fenced_code_block_start_backtick] = ACTIONS(2773), + [sym_minus_metadata] = ACTIONS(2773), + [sym__pipe_table_start] = ACTIONS(2773), + [sym__fenced_div_start] = ACTIONS(2773), + [sym_ref_id_specifier] = ACTIONS(2773), + [sym__code_span_start] = ACTIONS(2773), + [sym__html_comment] = ACTIONS(2773), + [sym__autolink] = ACTIONS(2773), + [sym__highlight_span_start] = ACTIONS(2773), + [sym__insert_span_start] = ACTIONS(2773), + [sym__delete_span_start] = ACTIONS(2773), + [sym__edit_comment_span_start] = ACTIONS(2773), + [sym__single_quote_span_open] = ACTIONS(2773), + [sym__double_quote_span_open] = ACTIONS(2773), + [sym__shortcode_open_escaped] = ACTIONS(2773), + [sym__shortcode_open] = ACTIONS(2773), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2773), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2773), + [sym__cite_author_in_text] = ACTIONS(2773), + [sym__cite_suppress_author] = ACTIONS(2773), + [sym__strikeout_open] = ACTIONS(2773), + [sym__subscript_open] = ACTIONS(2773), + [sym__superscript_open] = ACTIONS(2773), + [sym__inline_note_start_token] = ACTIONS(2773), + [sym__strong_emphasis_open_star] = ACTIONS(2773), + [sym__strong_emphasis_open_underscore] = ACTIONS(2773), + [sym__emphasis_open_star] = ACTIONS(2773), + [sym__emphasis_open_underscore] = ACTIONS(2773), + [sym_inline_note_reference] = ACTIONS(2773), + [sym_html_element] = ACTIONS(2773), + [sym__pandoc_line_break] = ACTIONS(2773), + }, + [STATE(391)] = { + [anon_sym_COLON] = ACTIONS(2777), + [sym_entity_reference] = ACTIONS(2777), + [sym_numeric_character_reference] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_BANG_LBRACK] = ACTIONS(2777), + [anon_sym_DOLLAR] = ACTIONS(2779), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2777), + [aux_sym_pandoc_str_token1] = ACTIONS(2779), + [anon_sym_PIPE] = ACTIONS(2777), + [sym__whitespace] = ACTIONS(2777), + [sym__line_ending] = ACTIONS(2777), + [sym__soft_line_ending] = ACTIONS(2777), + [sym__block_close] = ACTIONS(2777), + [sym__block_quote_start] = ACTIONS(2777), + [sym_atx_h1_marker] = ACTIONS(2777), + [sym_atx_h2_marker] = ACTIONS(2777), + [sym_atx_h3_marker] = ACTIONS(2777), + [sym_atx_h4_marker] = ACTIONS(2777), + [sym_atx_h5_marker] = ACTIONS(2777), + [sym_atx_h6_marker] = ACTIONS(2777), + [sym__thematic_break] = ACTIONS(2777), + [sym__list_marker_minus] = ACTIONS(2777), + [sym__list_marker_plus] = ACTIONS(2777), + [sym__list_marker_star] = ACTIONS(2777), + [sym__list_marker_parenthesis] = ACTIONS(2777), + [sym__list_marker_dot] = ACTIONS(2777), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_example] = ACTIONS(2777), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2777), + [sym__fenced_code_block_start_backtick] = ACTIONS(2777), + [sym_minus_metadata] = ACTIONS(2777), + [sym__pipe_table_start] = ACTIONS(2777), + [sym__fenced_div_start] = ACTIONS(2777), + [sym_ref_id_specifier] = ACTIONS(2777), + [sym__code_span_start] = ACTIONS(2777), + [sym__html_comment] = ACTIONS(2777), + [sym__autolink] = ACTIONS(2777), + [sym__highlight_span_start] = ACTIONS(2777), + [sym__insert_span_start] = ACTIONS(2777), + [sym__delete_span_start] = ACTIONS(2777), + [sym__edit_comment_span_start] = ACTIONS(2777), + [sym__single_quote_span_open] = ACTIONS(2777), + [sym__double_quote_span_open] = ACTIONS(2777), + [sym__shortcode_open_escaped] = ACTIONS(2777), + [sym__shortcode_open] = ACTIONS(2777), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2777), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2777), + [sym__cite_author_in_text] = ACTIONS(2777), + [sym__cite_suppress_author] = ACTIONS(2777), + [sym__strikeout_open] = ACTIONS(2777), + [sym__subscript_open] = ACTIONS(2777), + [sym__superscript_open] = ACTIONS(2777), + [sym__inline_note_start_token] = ACTIONS(2777), + [sym__strong_emphasis_open_star] = ACTIONS(2777), + [sym__strong_emphasis_open_underscore] = ACTIONS(2777), + [sym__emphasis_open_star] = ACTIONS(2777), + [sym__emphasis_open_underscore] = ACTIONS(2777), + [sym_inline_note_reference] = ACTIONS(2777), + [sym_html_element] = ACTIONS(2777), + [sym__pandoc_line_break] = ACTIONS(2777), + }, + [STATE(392)] = { + [anon_sym_COLON] = ACTIONS(2781), + [sym_entity_reference] = ACTIONS(2781), + [sym_numeric_character_reference] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_BANG_LBRACK] = ACTIONS(2781), + [anon_sym_DOLLAR] = ACTIONS(2783), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2781), + [aux_sym_pandoc_str_token1] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(2781), + [sym__whitespace] = ACTIONS(2781), + [sym__line_ending] = ACTIONS(2781), + [sym__soft_line_ending] = ACTIONS(2781), + [sym__block_close] = ACTIONS(2781), + [sym__block_quote_start] = ACTIONS(2781), + [sym_atx_h1_marker] = ACTIONS(2781), + [sym_atx_h2_marker] = ACTIONS(2781), + [sym_atx_h3_marker] = ACTIONS(2781), + [sym_atx_h4_marker] = ACTIONS(2781), + [sym_atx_h5_marker] = ACTIONS(2781), + [sym_atx_h6_marker] = ACTIONS(2781), + [sym__thematic_break] = ACTIONS(2781), + [sym__list_marker_minus] = ACTIONS(2781), + [sym__list_marker_plus] = ACTIONS(2781), + [sym__list_marker_star] = ACTIONS(2781), + [sym__list_marker_parenthesis] = ACTIONS(2781), + [sym__list_marker_dot] = ACTIONS(2781), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_example] = ACTIONS(2781), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2781), + [sym__fenced_code_block_start_backtick] = ACTIONS(2781), + [sym_minus_metadata] = ACTIONS(2781), + [sym__pipe_table_start] = ACTIONS(2781), + [sym__fenced_div_start] = ACTIONS(2781), + [sym_ref_id_specifier] = ACTIONS(2781), + [sym__code_span_start] = ACTIONS(2781), + [sym__html_comment] = ACTIONS(2781), + [sym__autolink] = ACTIONS(2781), + [sym__highlight_span_start] = ACTIONS(2781), + [sym__insert_span_start] = ACTIONS(2781), + [sym__delete_span_start] = ACTIONS(2781), + [sym__edit_comment_span_start] = ACTIONS(2781), + [sym__single_quote_span_open] = ACTIONS(2781), + [sym__double_quote_span_open] = ACTIONS(2781), + [sym__shortcode_open_escaped] = ACTIONS(2781), + [sym__shortcode_open] = ACTIONS(2781), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2781), + [sym__cite_author_in_text] = ACTIONS(2781), + [sym__cite_suppress_author] = ACTIONS(2781), + [sym__strikeout_open] = ACTIONS(2781), + [sym__subscript_open] = ACTIONS(2781), + [sym__superscript_open] = ACTIONS(2781), + [sym__inline_note_start_token] = ACTIONS(2781), + [sym__strong_emphasis_open_star] = ACTIONS(2781), + [sym__strong_emphasis_open_underscore] = ACTIONS(2781), + [sym__emphasis_open_star] = ACTIONS(2781), + [sym__emphasis_open_underscore] = ACTIONS(2781), + [sym_inline_note_reference] = ACTIONS(2781), + [sym_html_element] = ACTIONS(2781), + [sym__pandoc_line_break] = ACTIONS(2781), + }, + [STATE(393)] = { + [anon_sym_COLON] = ACTIONS(2785), + [sym_entity_reference] = ACTIONS(2785), + [sym_numeric_character_reference] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_BANG_LBRACK] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2785), + [aux_sym_pandoc_str_token1] = ACTIONS(2787), + [anon_sym_PIPE] = ACTIONS(2785), + [sym__whitespace] = ACTIONS(2785), + [sym__line_ending] = ACTIONS(2785), + [sym__soft_line_ending] = ACTIONS(2785), + [sym__block_close] = ACTIONS(2785), + [sym__block_quote_start] = ACTIONS(2785), + [sym_atx_h1_marker] = ACTIONS(2785), + [sym_atx_h2_marker] = ACTIONS(2785), + [sym_atx_h3_marker] = ACTIONS(2785), + [sym_atx_h4_marker] = ACTIONS(2785), + [sym_atx_h5_marker] = ACTIONS(2785), + [sym_atx_h6_marker] = ACTIONS(2785), + [sym__thematic_break] = ACTIONS(2785), + [sym__list_marker_minus] = ACTIONS(2785), + [sym__list_marker_plus] = ACTIONS(2785), + [sym__list_marker_star] = ACTIONS(2785), + [sym__list_marker_parenthesis] = ACTIONS(2785), + [sym__list_marker_dot] = ACTIONS(2785), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2785), + [sym__list_marker_example] = ACTIONS(2785), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2785), + [sym__fenced_code_block_start_backtick] = ACTIONS(2785), + [sym_minus_metadata] = ACTIONS(2785), + [sym__pipe_table_start] = ACTIONS(2785), + [sym__fenced_div_start] = ACTIONS(2785), + [sym_ref_id_specifier] = ACTIONS(2785), + [sym__code_span_start] = ACTIONS(2785), + [sym__html_comment] = ACTIONS(2785), + [sym__autolink] = ACTIONS(2785), + [sym__highlight_span_start] = ACTIONS(2785), + [sym__insert_span_start] = ACTIONS(2785), + [sym__delete_span_start] = ACTIONS(2785), + [sym__edit_comment_span_start] = ACTIONS(2785), + [sym__single_quote_span_open] = ACTIONS(2785), + [sym__double_quote_span_open] = ACTIONS(2785), + [sym__shortcode_open_escaped] = ACTIONS(2785), + [sym__shortcode_open] = ACTIONS(2785), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2785), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2785), + [sym__cite_author_in_text] = ACTIONS(2785), + [sym__cite_suppress_author] = ACTIONS(2785), + [sym__strikeout_open] = ACTIONS(2785), + [sym__subscript_open] = ACTIONS(2785), + [sym__superscript_open] = ACTIONS(2785), + [sym__inline_note_start_token] = ACTIONS(2785), + [sym__strong_emphasis_open_star] = ACTIONS(2785), + [sym__strong_emphasis_open_underscore] = ACTIONS(2785), + [sym__emphasis_open_star] = ACTIONS(2785), + [sym__emphasis_open_underscore] = ACTIONS(2785), + [sym_inline_note_reference] = ACTIONS(2785), + [sym_html_element] = ACTIONS(2785), + [sym__pandoc_line_break] = ACTIONS(2785), + }, + [STATE(394)] = { + [anon_sym_COLON] = ACTIONS(2789), + [sym_entity_reference] = ACTIONS(2789), + [sym_numeric_character_reference] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_BANG_LBRACK] = ACTIONS(2789), + [anon_sym_DOLLAR] = ACTIONS(2791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2789), + [aux_sym_pandoc_str_token1] = ACTIONS(2791), + [anon_sym_PIPE] = ACTIONS(2789), + [sym__whitespace] = ACTIONS(2789), + [sym__line_ending] = ACTIONS(2789), + [sym__soft_line_ending] = ACTIONS(2789), + [sym__block_close] = ACTIONS(2789), + [sym__block_quote_start] = ACTIONS(2789), + [sym_atx_h1_marker] = ACTIONS(2789), + [sym_atx_h2_marker] = ACTIONS(2789), + [sym_atx_h3_marker] = ACTIONS(2789), + [sym_atx_h4_marker] = ACTIONS(2789), + [sym_atx_h5_marker] = ACTIONS(2789), + [sym_atx_h6_marker] = ACTIONS(2789), + [sym__thematic_break] = ACTIONS(2789), + [sym__list_marker_minus] = ACTIONS(2789), + [sym__list_marker_plus] = ACTIONS(2789), + [sym__list_marker_star] = ACTIONS(2789), + [sym__list_marker_parenthesis] = ACTIONS(2789), + [sym__list_marker_dot] = ACTIONS(2789), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_example] = ACTIONS(2789), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2789), + [sym__fenced_code_block_start_backtick] = ACTIONS(2789), + [sym_minus_metadata] = ACTIONS(2789), + [sym__pipe_table_start] = ACTIONS(2789), + [sym__fenced_div_start] = ACTIONS(2789), + [sym_ref_id_specifier] = ACTIONS(2789), + [sym__code_span_start] = ACTIONS(2789), + [sym__html_comment] = ACTIONS(2789), + [sym__autolink] = ACTIONS(2789), + [sym__highlight_span_start] = ACTIONS(2789), + [sym__insert_span_start] = ACTIONS(2789), + [sym__delete_span_start] = ACTIONS(2789), + [sym__edit_comment_span_start] = ACTIONS(2789), + [sym__single_quote_span_open] = ACTIONS(2789), + [sym__double_quote_span_open] = ACTIONS(2789), + [sym__shortcode_open_escaped] = ACTIONS(2789), + [sym__shortcode_open] = ACTIONS(2789), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2789), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2789), + [sym__cite_author_in_text] = ACTIONS(2789), + [sym__cite_suppress_author] = ACTIONS(2789), + [sym__strikeout_open] = ACTIONS(2789), + [sym__subscript_open] = ACTIONS(2789), + [sym__superscript_open] = ACTIONS(2789), + [sym__inline_note_start_token] = ACTIONS(2789), + [sym__strong_emphasis_open_star] = ACTIONS(2789), + [sym__strong_emphasis_open_underscore] = ACTIONS(2789), + [sym__emphasis_open_star] = ACTIONS(2789), + [sym__emphasis_open_underscore] = ACTIONS(2789), + [sym_inline_note_reference] = ACTIONS(2789), + [sym_html_element] = ACTIONS(2789), + [sym__pandoc_line_break] = ACTIONS(2789), + }, + [STATE(395)] = { + [anon_sym_COLON] = ACTIONS(2793), + [sym_entity_reference] = ACTIONS(2793), + [sym_numeric_character_reference] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_BANG_LBRACK] = ACTIONS(2793), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2793), + [aux_sym_pandoc_str_token1] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2793), + [sym__whitespace] = ACTIONS(2793), + [sym__line_ending] = ACTIONS(2793), + [sym__soft_line_ending] = ACTIONS(2793), + [sym__block_close] = ACTIONS(2793), + [sym__block_quote_start] = ACTIONS(2793), + [sym_atx_h1_marker] = ACTIONS(2793), + [sym_atx_h2_marker] = ACTIONS(2793), + [sym_atx_h3_marker] = ACTIONS(2793), + [sym_atx_h4_marker] = ACTIONS(2793), + [sym_atx_h5_marker] = ACTIONS(2793), + [sym_atx_h6_marker] = ACTIONS(2793), + [sym__thematic_break] = ACTIONS(2793), + [sym__list_marker_minus] = ACTIONS(2793), + [sym__list_marker_plus] = ACTIONS(2793), + [sym__list_marker_star] = ACTIONS(2793), + [sym__list_marker_parenthesis] = ACTIONS(2793), + [sym__list_marker_dot] = ACTIONS(2793), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_example] = ACTIONS(2793), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2793), + [sym__fenced_code_block_start_backtick] = ACTIONS(2793), + [sym_minus_metadata] = ACTIONS(2793), + [sym__pipe_table_start] = ACTIONS(2793), + [sym__fenced_div_start] = ACTIONS(2793), + [sym_ref_id_specifier] = ACTIONS(2793), + [sym__code_span_start] = ACTIONS(2793), + [sym__html_comment] = ACTIONS(2793), + [sym__autolink] = ACTIONS(2793), + [sym__highlight_span_start] = ACTIONS(2793), + [sym__insert_span_start] = ACTIONS(2793), + [sym__delete_span_start] = ACTIONS(2793), + [sym__edit_comment_span_start] = ACTIONS(2793), + [sym__single_quote_span_open] = ACTIONS(2793), + [sym__double_quote_span_open] = ACTIONS(2793), + [sym__shortcode_open_escaped] = ACTIONS(2793), + [sym__shortcode_open] = ACTIONS(2793), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2793), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2793), + [sym__cite_author_in_text] = ACTIONS(2793), + [sym__cite_suppress_author] = ACTIONS(2793), + [sym__strikeout_open] = ACTIONS(2793), + [sym__subscript_open] = ACTIONS(2793), + [sym__superscript_open] = ACTIONS(2793), + [sym__inline_note_start_token] = ACTIONS(2793), + [sym__strong_emphasis_open_star] = ACTIONS(2793), + [sym__strong_emphasis_open_underscore] = ACTIONS(2793), + [sym__emphasis_open_star] = ACTIONS(2793), + [sym__emphasis_open_underscore] = ACTIONS(2793), + [sym_inline_note_reference] = ACTIONS(2793), + [sym_html_element] = ACTIONS(2793), + [sym__pandoc_line_break] = ACTIONS(2793), + }, + [STATE(396)] = { + [anon_sym_COLON] = ACTIONS(2797), + [sym_entity_reference] = ACTIONS(2797), + [sym_numeric_character_reference] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_BANG_LBRACK] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2799), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2797), + [aux_sym_pandoc_str_token1] = ACTIONS(2799), + [anon_sym_PIPE] = ACTIONS(2797), + [sym__whitespace] = ACTIONS(2797), + [sym__line_ending] = ACTIONS(2797), + [sym__soft_line_ending] = ACTIONS(2797), + [sym__block_close] = ACTIONS(2797), + [sym__block_quote_start] = ACTIONS(2797), + [sym_atx_h1_marker] = ACTIONS(2797), + [sym_atx_h2_marker] = ACTIONS(2797), + [sym_atx_h3_marker] = ACTIONS(2797), + [sym_atx_h4_marker] = ACTIONS(2797), + [sym_atx_h5_marker] = ACTIONS(2797), + [sym_atx_h6_marker] = ACTIONS(2797), + [sym__thematic_break] = ACTIONS(2797), + [sym__list_marker_minus] = ACTIONS(2797), + [sym__list_marker_plus] = ACTIONS(2797), + [sym__list_marker_star] = ACTIONS(2797), + [sym__list_marker_parenthesis] = ACTIONS(2797), + [sym__list_marker_dot] = ACTIONS(2797), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_example] = ACTIONS(2797), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2797), + [sym__fenced_code_block_start_backtick] = ACTIONS(2797), + [sym_minus_metadata] = ACTIONS(2797), + [sym__pipe_table_start] = ACTIONS(2797), + [sym__fenced_div_start] = ACTIONS(2797), + [sym_ref_id_specifier] = ACTIONS(2797), + [sym__code_span_start] = ACTIONS(2797), + [sym__html_comment] = ACTIONS(2797), + [sym__autolink] = ACTIONS(2797), + [sym__highlight_span_start] = ACTIONS(2797), + [sym__insert_span_start] = ACTIONS(2797), + [sym__delete_span_start] = ACTIONS(2797), + [sym__edit_comment_span_start] = ACTIONS(2797), + [sym__single_quote_span_open] = ACTIONS(2797), + [sym__double_quote_span_open] = ACTIONS(2797), + [sym__shortcode_open_escaped] = ACTIONS(2797), + [sym__shortcode_open] = ACTIONS(2797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2797), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2797), + [sym__cite_author_in_text] = ACTIONS(2797), + [sym__cite_suppress_author] = ACTIONS(2797), + [sym__strikeout_open] = ACTIONS(2797), + [sym__subscript_open] = ACTIONS(2797), + [sym__superscript_open] = ACTIONS(2797), + [sym__inline_note_start_token] = ACTIONS(2797), + [sym__strong_emphasis_open_star] = ACTIONS(2797), + [sym__strong_emphasis_open_underscore] = ACTIONS(2797), + [sym__emphasis_open_star] = ACTIONS(2797), + [sym__emphasis_open_underscore] = ACTIONS(2797), + [sym_inline_note_reference] = ACTIONS(2797), + [sym_html_element] = ACTIONS(2797), + [sym__pandoc_line_break] = ACTIONS(2797), + }, + [STATE(397)] = { + [anon_sym_COLON] = ACTIONS(2801), + [sym_entity_reference] = ACTIONS(2801), + [sym_numeric_character_reference] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_BANG_LBRACK] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2803), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2801), + [aux_sym_pandoc_str_token1] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(2801), + [sym__whitespace] = ACTIONS(2801), + [sym__line_ending] = ACTIONS(2801), + [sym__soft_line_ending] = ACTIONS(2801), + [sym__block_close] = ACTIONS(2801), + [sym__block_quote_start] = ACTIONS(2801), + [sym_atx_h1_marker] = ACTIONS(2801), + [sym_atx_h2_marker] = ACTIONS(2801), + [sym_atx_h3_marker] = ACTIONS(2801), + [sym_atx_h4_marker] = ACTIONS(2801), + [sym_atx_h5_marker] = ACTIONS(2801), + [sym_atx_h6_marker] = ACTIONS(2801), + [sym__thematic_break] = ACTIONS(2801), + [sym__list_marker_minus] = ACTIONS(2801), + [sym__list_marker_plus] = ACTIONS(2801), + [sym__list_marker_star] = ACTIONS(2801), + [sym__list_marker_parenthesis] = ACTIONS(2801), + [sym__list_marker_dot] = ACTIONS(2801), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_example] = ACTIONS(2801), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2801), + [sym__fenced_code_block_start_backtick] = ACTIONS(2801), + [sym_minus_metadata] = ACTIONS(2801), + [sym__pipe_table_start] = ACTIONS(2801), + [sym__fenced_div_start] = ACTIONS(2801), + [sym_ref_id_specifier] = ACTIONS(2801), + [sym__code_span_start] = ACTIONS(2801), + [sym__html_comment] = ACTIONS(2801), + [sym__autolink] = ACTIONS(2801), + [sym__highlight_span_start] = ACTIONS(2801), + [sym__insert_span_start] = ACTIONS(2801), + [sym__delete_span_start] = ACTIONS(2801), + [sym__edit_comment_span_start] = ACTIONS(2801), + [sym__single_quote_span_open] = ACTIONS(2801), + [sym__double_quote_span_open] = ACTIONS(2801), + [sym__shortcode_open_escaped] = ACTIONS(2801), + [sym__shortcode_open] = ACTIONS(2801), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2801), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2801), + [sym__cite_author_in_text] = ACTIONS(2801), + [sym__cite_suppress_author] = ACTIONS(2801), + [sym__strikeout_open] = ACTIONS(2801), + [sym__subscript_open] = ACTIONS(2801), + [sym__superscript_open] = ACTIONS(2801), + [sym__inline_note_start_token] = ACTIONS(2801), + [sym__strong_emphasis_open_star] = ACTIONS(2801), + [sym__strong_emphasis_open_underscore] = ACTIONS(2801), + [sym__emphasis_open_star] = ACTIONS(2801), + [sym__emphasis_open_underscore] = ACTIONS(2801), + [sym_inline_note_reference] = ACTIONS(2801), + [sym_html_element] = ACTIONS(2801), + [sym__pandoc_line_break] = ACTIONS(2801), + }, + [STATE(398)] = { + [anon_sym_COLON] = ACTIONS(2805), + [sym_entity_reference] = ACTIONS(2805), + [sym_numeric_character_reference] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_BANG_LBRACK] = ACTIONS(2805), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2805), + [aux_sym_pandoc_str_token1] = ACTIONS(2807), + [anon_sym_PIPE] = ACTIONS(2805), + [sym__whitespace] = ACTIONS(2805), + [sym__line_ending] = ACTIONS(2805), + [sym__soft_line_ending] = ACTIONS(2805), + [sym__block_close] = ACTIONS(2805), + [sym__block_quote_start] = ACTIONS(2805), + [sym_atx_h1_marker] = ACTIONS(2805), + [sym_atx_h2_marker] = ACTIONS(2805), + [sym_atx_h3_marker] = ACTIONS(2805), + [sym_atx_h4_marker] = ACTIONS(2805), + [sym_atx_h5_marker] = ACTIONS(2805), + [sym_atx_h6_marker] = ACTIONS(2805), + [sym__thematic_break] = ACTIONS(2805), + [sym__list_marker_minus] = ACTIONS(2805), + [sym__list_marker_plus] = ACTIONS(2805), + [sym__list_marker_star] = ACTIONS(2805), + [sym__list_marker_parenthesis] = ACTIONS(2805), + [sym__list_marker_dot] = ACTIONS(2805), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_example] = ACTIONS(2805), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2805), + [sym__fenced_code_block_start_backtick] = ACTIONS(2805), + [sym_minus_metadata] = ACTIONS(2805), + [sym__pipe_table_start] = ACTIONS(2805), + [sym__fenced_div_start] = ACTIONS(2805), + [sym_ref_id_specifier] = ACTIONS(2805), + [sym__code_span_start] = ACTIONS(2805), + [sym__html_comment] = ACTIONS(2805), + [sym__autolink] = ACTIONS(2805), + [sym__highlight_span_start] = ACTIONS(2805), + [sym__insert_span_start] = ACTIONS(2805), + [sym__delete_span_start] = ACTIONS(2805), + [sym__edit_comment_span_start] = ACTIONS(2805), + [sym__single_quote_span_open] = ACTIONS(2805), + [sym__double_quote_span_open] = ACTIONS(2805), + [sym__shortcode_open_escaped] = ACTIONS(2805), + [sym__shortcode_open] = ACTIONS(2805), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2805), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2805), + [sym__cite_author_in_text] = ACTIONS(2805), + [sym__cite_suppress_author] = ACTIONS(2805), + [sym__strikeout_open] = ACTIONS(2805), + [sym__subscript_open] = ACTIONS(2805), + [sym__superscript_open] = ACTIONS(2805), + [sym__inline_note_start_token] = ACTIONS(2805), + [sym__strong_emphasis_open_star] = ACTIONS(2805), + [sym__strong_emphasis_open_underscore] = ACTIONS(2805), + [sym__emphasis_open_star] = ACTIONS(2805), + [sym__emphasis_open_underscore] = ACTIONS(2805), + [sym_inline_note_reference] = ACTIONS(2805), + [sym_html_element] = ACTIONS(2805), + [sym__pandoc_line_break] = ACTIONS(2805), + }, + [STATE(399)] = { + [anon_sym_COLON] = ACTIONS(2809), + [sym_entity_reference] = ACTIONS(2809), + [sym_numeric_character_reference] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_BANG_LBRACK] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), + [aux_sym_pandoc_str_token1] = ACTIONS(2811), + [anon_sym_PIPE] = ACTIONS(2809), + [sym__whitespace] = ACTIONS(2809), + [sym__line_ending] = ACTIONS(2809), + [sym__soft_line_ending] = ACTIONS(2809), + [sym__block_close] = ACTIONS(2809), + [sym__block_quote_start] = ACTIONS(2809), + [sym_atx_h1_marker] = ACTIONS(2809), + [sym_atx_h2_marker] = ACTIONS(2809), + [sym_atx_h3_marker] = ACTIONS(2809), + [sym_atx_h4_marker] = ACTIONS(2809), + [sym_atx_h5_marker] = ACTIONS(2809), + [sym_atx_h6_marker] = ACTIONS(2809), + [sym__thematic_break] = ACTIONS(2809), + [sym__list_marker_minus] = ACTIONS(2809), + [sym__list_marker_plus] = ACTIONS(2809), + [sym__list_marker_star] = ACTIONS(2809), + [sym__list_marker_parenthesis] = ACTIONS(2809), + [sym__list_marker_dot] = ACTIONS(2809), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_example] = ACTIONS(2809), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2809), + [sym__fenced_code_block_start_backtick] = ACTIONS(2809), + [sym_minus_metadata] = ACTIONS(2809), + [sym__pipe_table_start] = ACTIONS(2809), + [sym__fenced_div_start] = ACTIONS(2809), + [sym_ref_id_specifier] = ACTIONS(2809), + [sym__code_span_start] = ACTIONS(2809), + [sym__html_comment] = ACTIONS(2809), + [sym__autolink] = ACTIONS(2809), + [sym__highlight_span_start] = ACTIONS(2809), + [sym__insert_span_start] = ACTIONS(2809), + [sym__delete_span_start] = ACTIONS(2809), + [sym__edit_comment_span_start] = ACTIONS(2809), + [sym__single_quote_span_open] = ACTIONS(2809), + [sym__double_quote_span_open] = ACTIONS(2809), + [sym__shortcode_open_escaped] = ACTIONS(2809), + [sym__shortcode_open] = ACTIONS(2809), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2809), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2809), + [sym__cite_author_in_text] = ACTIONS(2809), + [sym__cite_suppress_author] = ACTIONS(2809), + [sym__strikeout_open] = ACTIONS(2809), + [sym__subscript_open] = ACTIONS(2809), + [sym__superscript_open] = ACTIONS(2809), + [sym__inline_note_start_token] = ACTIONS(2809), + [sym__strong_emphasis_open_star] = ACTIONS(2809), + [sym__strong_emphasis_open_underscore] = ACTIONS(2809), + [sym__emphasis_open_star] = ACTIONS(2809), + [sym__emphasis_open_underscore] = ACTIONS(2809), + [sym_inline_note_reference] = ACTIONS(2809), + [sym_html_element] = ACTIONS(2809), + [sym__pandoc_line_break] = ACTIONS(2809), + }, + [STATE(400)] = { + [anon_sym_COLON] = ACTIONS(2813), + [sym_entity_reference] = ACTIONS(2813), + [sym_numeric_character_reference] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_BANG_LBRACK] = ACTIONS(2813), + [anon_sym_DOLLAR] = ACTIONS(2815), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2813), + [aux_sym_pandoc_str_token1] = ACTIONS(2815), + [anon_sym_PIPE] = ACTIONS(2813), + [sym__whitespace] = ACTIONS(2813), + [sym__line_ending] = ACTIONS(2813), + [sym__soft_line_ending] = ACTIONS(2813), + [sym__block_close] = ACTIONS(2813), + [sym__block_quote_start] = ACTIONS(2813), + [sym_atx_h1_marker] = ACTIONS(2813), + [sym_atx_h2_marker] = ACTIONS(2813), + [sym_atx_h3_marker] = ACTIONS(2813), + [sym_atx_h4_marker] = ACTIONS(2813), + [sym_atx_h5_marker] = ACTIONS(2813), + [sym_atx_h6_marker] = ACTIONS(2813), + [sym__thematic_break] = ACTIONS(2813), + [sym__list_marker_minus] = ACTIONS(2813), + [sym__list_marker_plus] = ACTIONS(2813), + [sym__list_marker_star] = ACTIONS(2813), + [sym__list_marker_parenthesis] = ACTIONS(2813), + [sym__list_marker_dot] = ACTIONS(2813), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_example] = ACTIONS(2813), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2813), + [sym__fenced_code_block_start_backtick] = ACTIONS(2813), + [sym_minus_metadata] = ACTIONS(2813), + [sym__pipe_table_start] = ACTIONS(2813), + [sym__fenced_div_start] = ACTIONS(2813), + [sym_ref_id_specifier] = ACTIONS(2813), + [sym__code_span_start] = ACTIONS(2813), + [sym__html_comment] = ACTIONS(2813), + [sym__autolink] = ACTIONS(2813), + [sym__highlight_span_start] = ACTIONS(2813), + [sym__insert_span_start] = ACTIONS(2813), + [sym__delete_span_start] = ACTIONS(2813), + [sym__edit_comment_span_start] = ACTIONS(2813), + [sym__single_quote_span_open] = ACTIONS(2813), + [sym__double_quote_span_open] = ACTIONS(2813), + [sym__shortcode_open_escaped] = ACTIONS(2813), + [sym__shortcode_open] = ACTIONS(2813), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2813), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2813), + [sym__cite_author_in_text] = ACTIONS(2813), + [sym__cite_suppress_author] = ACTIONS(2813), + [sym__strikeout_open] = ACTIONS(2813), + [sym__subscript_open] = ACTIONS(2813), + [sym__superscript_open] = ACTIONS(2813), + [sym__inline_note_start_token] = ACTIONS(2813), + [sym__strong_emphasis_open_star] = ACTIONS(2813), + [sym__strong_emphasis_open_underscore] = ACTIONS(2813), + [sym__emphasis_open_star] = ACTIONS(2813), + [sym__emphasis_open_underscore] = ACTIONS(2813), + [sym_inline_note_reference] = ACTIONS(2813), + [sym_html_element] = ACTIONS(2813), + [sym__pandoc_line_break] = ACTIONS(2813), + }, + [STATE(401)] = { + [anon_sym_COLON] = ACTIONS(2817), + [sym_entity_reference] = ACTIONS(2817), + [sym_numeric_character_reference] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_BANG_LBRACK] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2817), + [aux_sym_pandoc_str_token1] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2817), + [sym__whitespace] = ACTIONS(2817), + [sym__line_ending] = ACTIONS(2817), + [sym__soft_line_ending] = ACTIONS(2817), + [sym__block_close] = ACTIONS(2817), + [sym__block_quote_start] = ACTIONS(2817), + [sym_atx_h1_marker] = ACTIONS(2817), + [sym_atx_h2_marker] = ACTIONS(2817), + [sym_atx_h3_marker] = ACTIONS(2817), + [sym_atx_h4_marker] = ACTIONS(2817), + [sym_atx_h5_marker] = ACTIONS(2817), + [sym_atx_h6_marker] = ACTIONS(2817), + [sym__thematic_break] = ACTIONS(2817), + [sym__list_marker_minus] = ACTIONS(2817), + [sym__list_marker_plus] = ACTIONS(2817), + [sym__list_marker_star] = ACTIONS(2817), + [sym__list_marker_parenthesis] = ACTIONS(2817), + [sym__list_marker_dot] = ACTIONS(2817), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_example] = ACTIONS(2817), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2817), + [sym__fenced_code_block_start_backtick] = ACTIONS(2817), + [sym_minus_metadata] = ACTIONS(2817), + [sym__pipe_table_start] = ACTIONS(2817), + [sym__fenced_div_start] = ACTIONS(2817), + [sym_ref_id_specifier] = ACTIONS(2817), + [sym__code_span_start] = ACTIONS(2817), + [sym__html_comment] = ACTIONS(2817), + [sym__autolink] = ACTIONS(2817), + [sym__highlight_span_start] = ACTIONS(2817), + [sym__insert_span_start] = ACTIONS(2817), + [sym__delete_span_start] = ACTIONS(2817), + [sym__edit_comment_span_start] = ACTIONS(2817), + [sym__single_quote_span_open] = ACTIONS(2817), + [sym__double_quote_span_open] = ACTIONS(2817), + [sym__shortcode_open_escaped] = ACTIONS(2817), + [sym__shortcode_open] = ACTIONS(2817), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2817), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2817), + [sym__cite_author_in_text] = ACTIONS(2817), + [sym__cite_suppress_author] = ACTIONS(2817), + [sym__strikeout_open] = ACTIONS(2817), + [sym__subscript_open] = ACTIONS(2817), + [sym__superscript_open] = ACTIONS(2817), + [sym__inline_note_start_token] = ACTIONS(2817), + [sym__strong_emphasis_open_star] = ACTIONS(2817), + [sym__strong_emphasis_open_underscore] = ACTIONS(2817), + [sym__emphasis_open_star] = ACTIONS(2817), + [sym__emphasis_open_underscore] = ACTIONS(2817), + [sym_inline_note_reference] = ACTIONS(2817), + [sym_html_element] = ACTIONS(2817), + [sym__pandoc_line_break] = ACTIONS(2817), + }, + [STATE(402)] = { + [anon_sym_COLON] = ACTIONS(2821), + [sym_entity_reference] = ACTIONS(2821), + [sym_numeric_character_reference] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_BANG_LBRACK] = ACTIONS(2821), + [anon_sym_DOLLAR] = ACTIONS(2823), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [aux_sym_pandoc_str_token1] = ACTIONS(2823), + [anon_sym_PIPE] = ACTIONS(2821), + [sym__whitespace] = ACTIONS(2821), + [sym__line_ending] = ACTIONS(2821), + [sym__soft_line_ending] = ACTIONS(2821), + [sym__block_close] = ACTIONS(2821), + [sym__block_quote_start] = ACTIONS(2821), + [sym_atx_h1_marker] = ACTIONS(2821), + [sym_atx_h2_marker] = ACTIONS(2821), + [sym_atx_h3_marker] = ACTIONS(2821), + [sym_atx_h4_marker] = ACTIONS(2821), + [sym_atx_h5_marker] = ACTIONS(2821), + [sym_atx_h6_marker] = ACTIONS(2821), + [sym__thematic_break] = ACTIONS(2821), + [sym__list_marker_minus] = ACTIONS(2821), + [sym__list_marker_plus] = ACTIONS(2821), + [sym__list_marker_star] = ACTIONS(2821), + [sym__list_marker_parenthesis] = ACTIONS(2821), + [sym__list_marker_dot] = ACTIONS(2821), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_example] = ACTIONS(2821), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2821), + [sym__fenced_code_block_start_backtick] = ACTIONS(2821), + [sym_minus_metadata] = ACTIONS(2821), + [sym__pipe_table_start] = ACTIONS(2821), + [sym__fenced_div_start] = ACTIONS(2821), + [sym_ref_id_specifier] = ACTIONS(2821), + [sym__code_span_start] = ACTIONS(2821), + [sym__html_comment] = ACTIONS(2821), + [sym__autolink] = ACTIONS(2821), + [sym__highlight_span_start] = ACTIONS(2821), + [sym__insert_span_start] = ACTIONS(2821), + [sym__delete_span_start] = ACTIONS(2821), + [sym__edit_comment_span_start] = ACTIONS(2821), + [sym__single_quote_span_open] = ACTIONS(2821), + [sym__double_quote_span_open] = ACTIONS(2821), + [sym__shortcode_open_escaped] = ACTIONS(2821), + [sym__shortcode_open] = ACTIONS(2821), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2821), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2821), + [sym__cite_author_in_text] = ACTIONS(2821), + [sym__cite_suppress_author] = ACTIONS(2821), + [sym__strikeout_open] = ACTIONS(2821), + [sym__subscript_open] = ACTIONS(2821), + [sym__superscript_open] = ACTIONS(2821), + [sym__inline_note_start_token] = ACTIONS(2821), + [sym__strong_emphasis_open_star] = ACTIONS(2821), + [sym__strong_emphasis_open_underscore] = ACTIONS(2821), + [sym__emphasis_open_star] = ACTIONS(2821), + [sym__emphasis_open_underscore] = ACTIONS(2821), + [sym_inline_note_reference] = ACTIONS(2821), + [sym_html_element] = ACTIONS(2821), + [sym__pandoc_line_break] = ACTIONS(2821), + }, + [STATE(403)] = { + [anon_sym_COLON] = ACTIONS(2825), + [sym_entity_reference] = ACTIONS(2825), + [sym_numeric_character_reference] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_BANG_LBRACK] = ACTIONS(2825), + [anon_sym_DOLLAR] = ACTIONS(2827), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2825), + [aux_sym_pandoc_str_token1] = ACTIONS(2827), + [anon_sym_PIPE] = ACTIONS(2825), + [sym__whitespace] = ACTIONS(2825), + [sym__line_ending] = ACTIONS(2825), + [sym__soft_line_ending] = ACTIONS(2825), + [sym__block_close] = ACTIONS(2825), + [sym__block_quote_start] = ACTIONS(2825), + [sym_atx_h1_marker] = ACTIONS(2825), + [sym_atx_h2_marker] = ACTIONS(2825), + [sym_atx_h3_marker] = ACTIONS(2825), + [sym_atx_h4_marker] = ACTIONS(2825), + [sym_atx_h5_marker] = ACTIONS(2825), + [sym_atx_h6_marker] = ACTIONS(2825), + [sym__thematic_break] = ACTIONS(2825), + [sym__list_marker_minus] = ACTIONS(2825), + [sym__list_marker_plus] = ACTIONS(2825), + [sym__list_marker_star] = ACTIONS(2825), + [sym__list_marker_parenthesis] = ACTIONS(2825), + [sym__list_marker_dot] = ACTIONS(2825), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_example] = ACTIONS(2825), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2825), + [sym__fenced_code_block_start_backtick] = ACTIONS(2825), + [sym_minus_metadata] = ACTIONS(2825), + [sym__pipe_table_start] = ACTIONS(2825), + [sym__fenced_div_start] = ACTIONS(2825), + [sym_ref_id_specifier] = ACTIONS(2825), + [sym__code_span_start] = ACTIONS(2825), + [sym__html_comment] = ACTIONS(2825), + [sym__autolink] = ACTIONS(2825), + [sym__highlight_span_start] = ACTIONS(2825), + [sym__insert_span_start] = ACTIONS(2825), + [sym__delete_span_start] = ACTIONS(2825), + [sym__edit_comment_span_start] = ACTIONS(2825), + [sym__single_quote_span_open] = ACTIONS(2825), + [sym__double_quote_span_open] = ACTIONS(2825), + [sym__shortcode_open_escaped] = ACTIONS(2825), + [sym__shortcode_open] = ACTIONS(2825), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2825), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2825), + [sym__cite_author_in_text] = ACTIONS(2825), + [sym__cite_suppress_author] = ACTIONS(2825), + [sym__strikeout_open] = ACTIONS(2825), + [sym__subscript_open] = ACTIONS(2825), + [sym__superscript_open] = ACTIONS(2825), + [sym__inline_note_start_token] = ACTIONS(2825), + [sym__strong_emphasis_open_star] = ACTIONS(2825), + [sym__strong_emphasis_open_underscore] = ACTIONS(2825), + [sym__emphasis_open_star] = ACTIONS(2825), + [sym__emphasis_open_underscore] = ACTIONS(2825), + [sym_inline_note_reference] = ACTIONS(2825), + [sym_html_element] = ACTIONS(2825), + [sym__pandoc_line_break] = ACTIONS(2825), + }, + [STATE(404)] = { + [anon_sym_COLON] = ACTIONS(2829), + [sym_entity_reference] = ACTIONS(2829), + [sym_numeric_character_reference] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_BANG_LBRACK] = ACTIONS(2829), + [anon_sym_DOLLAR] = ACTIONS(2831), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [aux_sym_pandoc_str_token1] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2829), + [sym__whitespace] = ACTIONS(2829), + [sym__line_ending] = ACTIONS(2829), + [sym__soft_line_ending] = ACTIONS(2829), + [sym__block_close] = ACTIONS(2829), + [sym__block_quote_start] = ACTIONS(2829), + [sym_atx_h1_marker] = ACTIONS(2829), + [sym_atx_h2_marker] = ACTIONS(2829), + [sym_atx_h3_marker] = ACTIONS(2829), + [sym_atx_h4_marker] = ACTIONS(2829), + [sym_atx_h5_marker] = ACTIONS(2829), + [sym_atx_h6_marker] = ACTIONS(2829), + [sym__thematic_break] = ACTIONS(2829), + [sym__list_marker_minus] = ACTIONS(2829), + [sym__list_marker_plus] = ACTIONS(2829), + [sym__list_marker_star] = ACTIONS(2829), + [sym__list_marker_parenthesis] = ACTIONS(2829), + [sym__list_marker_dot] = ACTIONS(2829), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_example] = ACTIONS(2829), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2829), + [sym__fenced_code_block_start_backtick] = ACTIONS(2829), + [sym_minus_metadata] = ACTIONS(2829), + [sym__pipe_table_start] = ACTIONS(2829), + [sym__fenced_div_start] = ACTIONS(2829), + [sym_ref_id_specifier] = ACTIONS(2829), + [sym__code_span_start] = ACTIONS(2829), + [sym__html_comment] = ACTIONS(2829), + [sym__autolink] = ACTIONS(2829), + [sym__highlight_span_start] = ACTIONS(2829), + [sym__insert_span_start] = ACTIONS(2829), + [sym__delete_span_start] = ACTIONS(2829), + [sym__edit_comment_span_start] = ACTIONS(2829), + [sym__single_quote_span_open] = ACTIONS(2829), + [sym__double_quote_span_open] = ACTIONS(2829), + [sym__shortcode_open_escaped] = ACTIONS(2829), + [sym__shortcode_open] = ACTIONS(2829), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2829), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2829), + [sym__cite_author_in_text] = ACTIONS(2829), + [sym__cite_suppress_author] = ACTIONS(2829), + [sym__strikeout_open] = ACTIONS(2829), + [sym__subscript_open] = ACTIONS(2829), + [sym__superscript_open] = ACTIONS(2829), + [sym__inline_note_start_token] = ACTIONS(2829), + [sym__strong_emphasis_open_star] = ACTIONS(2829), + [sym__strong_emphasis_open_underscore] = ACTIONS(2829), + [sym__emphasis_open_star] = ACTIONS(2829), + [sym__emphasis_open_underscore] = ACTIONS(2829), + [sym_inline_note_reference] = ACTIONS(2829), + [sym_html_element] = ACTIONS(2829), + [sym__pandoc_line_break] = ACTIONS(2829), + }, + [STATE(405)] = { + [anon_sym_COLON] = ACTIONS(2833), + [sym_entity_reference] = ACTIONS(2833), + [sym_numeric_character_reference] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_BANG_LBRACK] = ACTIONS(2833), + [anon_sym_DOLLAR] = ACTIONS(2835), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [aux_sym_pandoc_str_token1] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [sym__whitespace] = ACTIONS(2833), + [sym__line_ending] = ACTIONS(2833), + [sym__soft_line_ending] = ACTIONS(2833), + [sym__block_close] = ACTIONS(2833), + [sym__block_quote_start] = ACTIONS(2833), + [sym_atx_h1_marker] = ACTIONS(2833), + [sym_atx_h2_marker] = ACTIONS(2833), + [sym_atx_h3_marker] = ACTIONS(2833), + [sym_atx_h4_marker] = ACTIONS(2833), + [sym_atx_h5_marker] = ACTIONS(2833), + [sym_atx_h6_marker] = ACTIONS(2833), + [sym__thematic_break] = ACTIONS(2833), + [sym__list_marker_minus] = ACTIONS(2833), + [sym__list_marker_plus] = ACTIONS(2833), + [sym__list_marker_star] = ACTIONS(2833), + [sym__list_marker_parenthesis] = ACTIONS(2833), + [sym__list_marker_dot] = ACTIONS(2833), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_example] = ACTIONS(2833), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2833), + [sym__fenced_code_block_start_backtick] = ACTIONS(2833), + [sym_minus_metadata] = ACTIONS(2833), + [sym__pipe_table_start] = ACTIONS(2833), + [sym__fenced_div_start] = ACTIONS(2833), + [sym_ref_id_specifier] = ACTIONS(2833), + [sym__code_span_start] = ACTIONS(2833), + [sym__html_comment] = ACTIONS(2833), + [sym__autolink] = ACTIONS(2833), + [sym__highlight_span_start] = ACTIONS(2833), + [sym__insert_span_start] = ACTIONS(2833), + [sym__delete_span_start] = ACTIONS(2833), + [sym__edit_comment_span_start] = ACTIONS(2833), + [sym__single_quote_span_open] = ACTIONS(2833), + [sym__double_quote_span_open] = ACTIONS(2833), + [sym__shortcode_open_escaped] = ACTIONS(2833), + [sym__shortcode_open] = ACTIONS(2833), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2833), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2833), + [sym__cite_author_in_text] = ACTIONS(2833), + [sym__cite_suppress_author] = ACTIONS(2833), + [sym__strikeout_open] = ACTIONS(2833), + [sym__subscript_open] = ACTIONS(2833), + [sym__superscript_open] = ACTIONS(2833), + [sym__inline_note_start_token] = ACTIONS(2833), + [sym__strong_emphasis_open_star] = ACTIONS(2833), + [sym__strong_emphasis_open_underscore] = ACTIONS(2833), + [sym__emphasis_open_star] = ACTIONS(2833), + [sym__emphasis_open_underscore] = ACTIONS(2833), + [sym_inline_note_reference] = ACTIONS(2833), + [sym_html_element] = ACTIONS(2833), + [sym__pandoc_line_break] = ACTIONS(2833), + }, + [STATE(406)] = { + [anon_sym_COLON] = ACTIONS(2837), + [sym_entity_reference] = ACTIONS(2837), + [sym_numeric_character_reference] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_BANG_LBRACK] = ACTIONS(2837), + [anon_sym_DOLLAR] = ACTIONS(2839), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [aux_sym_pandoc_str_token1] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2837), + [sym__whitespace] = ACTIONS(2837), + [sym__line_ending] = ACTIONS(2837), + [sym__soft_line_ending] = ACTIONS(2837), + [sym__block_close] = ACTIONS(2837), + [sym__block_quote_start] = ACTIONS(2837), + [sym_atx_h1_marker] = ACTIONS(2837), + [sym_atx_h2_marker] = ACTIONS(2837), + [sym_atx_h3_marker] = ACTIONS(2837), + [sym_atx_h4_marker] = ACTIONS(2837), + [sym_atx_h5_marker] = ACTIONS(2837), + [sym_atx_h6_marker] = ACTIONS(2837), + [sym__thematic_break] = ACTIONS(2837), + [sym__list_marker_minus] = ACTIONS(2837), + [sym__list_marker_plus] = ACTIONS(2837), + [sym__list_marker_star] = ACTIONS(2837), + [sym__list_marker_parenthesis] = ACTIONS(2837), + [sym__list_marker_dot] = ACTIONS(2837), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_example] = ACTIONS(2837), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2837), + [sym__fenced_code_block_start_backtick] = ACTIONS(2837), + [sym_minus_metadata] = ACTIONS(2837), + [sym__pipe_table_start] = ACTIONS(2837), + [sym__fenced_div_start] = ACTIONS(2837), + [sym_ref_id_specifier] = ACTIONS(2837), + [sym__code_span_start] = ACTIONS(2837), + [sym__html_comment] = ACTIONS(2837), + [sym__autolink] = ACTIONS(2837), + [sym__highlight_span_start] = ACTIONS(2837), + [sym__insert_span_start] = ACTIONS(2837), + [sym__delete_span_start] = ACTIONS(2837), + [sym__edit_comment_span_start] = ACTIONS(2837), + [sym__single_quote_span_open] = ACTIONS(2837), + [sym__double_quote_span_open] = ACTIONS(2837), + [sym__shortcode_open_escaped] = ACTIONS(2837), + [sym__shortcode_open] = ACTIONS(2837), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2837), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2837), + [sym__cite_author_in_text] = ACTIONS(2837), + [sym__cite_suppress_author] = ACTIONS(2837), + [sym__strikeout_open] = ACTIONS(2837), + [sym__subscript_open] = ACTIONS(2837), + [sym__superscript_open] = ACTIONS(2837), + [sym__inline_note_start_token] = ACTIONS(2837), + [sym__strong_emphasis_open_star] = ACTIONS(2837), + [sym__strong_emphasis_open_underscore] = ACTIONS(2837), + [sym__emphasis_open_star] = ACTIONS(2837), + [sym__emphasis_open_underscore] = ACTIONS(2837), + [sym_inline_note_reference] = ACTIONS(2837), + [sym_html_element] = ACTIONS(2837), + [sym__pandoc_line_break] = ACTIONS(2837), + }, + [STATE(407)] = { + [anon_sym_COLON] = ACTIONS(2841), + [sym_entity_reference] = ACTIONS(2841), + [sym_numeric_character_reference] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_BANG_LBRACK] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [aux_sym_pandoc_str_token1] = ACTIONS(2843), + [anon_sym_PIPE] = ACTIONS(2841), + [sym__whitespace] = ACTIONS(2841), + [sym__line_ending] = ACTIONS(2841), + [sym__soft_line_ending] = ACTIONS(2841), + [sym__block_close] = ACTIONS(2841), + [sym__block_quote_start] = ACTIONS(2841), + [sym_atx_h1_marker] = ACTIONS(2841), + [sym_atx_h2_marker] = ACTIONS(2841), + [sym_atx_h3_marker] = ACTIONS(2841), + [sym_atx_h4_marker] = ACTIONS(2841), + [sym_atx_h5_marker] = ACTIONS(2841), + [sym_atx_h6_marker] = ACTIONS(2841), + [sym__thematic_break] = ACTIONS(2841), + [sym__list_marker_minus] = ACTIONS(2841), + [sym__list_marker_plus] = ACTIONS(2841), + [sym__list_marker_star] = ACTIONS(2841), + [sym__list_marker_parenthesis] = ACTIONS(2841), + [sym__list_marker_dot] = ACTIONS(2841), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_example] = ACTIONS(2841), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2841), + [sym__fenced_code_block_start_backtick] = ACTIONS(2841), + [sym_minus_metadata] = ACTIONS(2841), + [sym__pipe_table_start] = ACTIONS(2841), + [sym__fenced_div_start] = ACTIONS(2841), + [sym_ref_id_specifier] = ACTIONS(2841), + [sym__code_span_start] = ACTIONS(2841), + [sym__html_comment] = ACTIONS(2841), + [sym__autolink] = ACTIONS(2841), + [sym__highlight_span_start] = ACTIONS(2841), + [sym__insert_span_start] = ACTIONS(2841), + [sym__delete_span_start] = ACTIONS(2841), + [sym__edit_comment_span_start] = ACTIONS(2841), + [sym__single_quote_span_open] = ACTIONS(2841), + [sym__double_quote_span_open] = ACTIONS(2841), + [sym__shortcode_open_escaped] = ACTIONS(2841), + [sym__shortcode_open] = ACTIONS(2841), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2841), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2841), + [sym__cite_author_in_text] = ACTIONS(2841), + [sym__cite_suppress_author] = ACTIONS(2841), + [sym__strikeout_open] = ACTIONS(2841), + [sym__subscript_open] = ACTIONS(2841), + [sym__superscript_open] = ACTIONS(2841), + [sym__inline_note_start_token] = ACTIONS(2841), + [sym__strong_emphasis_open_star] = ACTIONS(2841), + [sym__strong_emphasis_open_underscore] = ACTIONS(2841), + [sym__emphasis_open_star] = ACTIONS(2841), + [sym__emphasis_open_underscore] = ACTIONS(2841), + [sym_inline_note_reference] = ACTIONS(2841), + [sym_html_element] = ACTIONS(2841), + [sym__pandoc_line_break] = ACTIONS(2841), + }, + [STATE(408)] = { + [anon_sym_COLON] = ACTIONS(2845), + [sym_entity_reference] = ACTIONS(2845), + [sym_numeric_character_reference] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_BANG_LBRACK] = ACTIONS(2845), + [anon_sym_DOLLAR] = ACTIONS(2847), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2845), + [aux_sym_pandoc_str_token1] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2845), + [sym__whitespace] = ACTIONS(2845), + [sym__line_ending] = ACTIONS(2845), + [sym__soft_line_ending] = ACTIONS(2845), + [sym__block_close] = ACTIONS(2845), + [sym__block_quote_start] = ACTIONS(2845), + [sym_atx_h1_marker] = ACTIONS(2845), + [sym_atx_h2_marker] = ACTIONS(2845), + [sym_atx_h3_marker] = ACTIONS(2845), + [sym_atx_h4_marker] = ACTIONS(2845), + [sym_atx_h5_marker] = ACTIONS(2845), + [sym_atx_h6_marker] = ACTIONS(2845), + [sym__thematic_break] = ACTIONS(2845), + [sym__list_marker_minus] = ACTIONS(2845), + [sym__list_marker_plus] = ACTIONS(2845), + [sym__list_marker_star] = ACTIONS(2845), + [sym__list_marker_parenthesis] = ACTIONS(2845), + [sym__list_marker_dot] = ACTIONS(2845), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_example] = ACTIONS(2845), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2845), + [sym__fenced_code_block_start_backtick] = ACTIONS(2845), + [sym_minus_metadata] = ACTIONS(2845), + [sym__pipe_table_start] = ACTIONS(2845), + [sym__fenced_div_start] = ACTIONS(2845), + [sym_ref_id_specifier] = ACTIONS(2845), + [sym__code_span_start] = ACTIONS(2845), + [sym__html_comment] = ACTIONS(2845), + [sym__autolink] = ACTIONS(2845), + [sym__highlight_span_start] = ACTIONS(2845), + [sym__insert_span_start] = ACTIONS(2845), + [sym__delete_span_start] = ACTIONS(2845), + [sym__edit_comment_span_start] = ACTIONS(2845), + [sym__single_quote_span_open] = ACTIONS(2845), + [sym__double_quote_span_open] = ACTIONS(2845), + [sym__shortcode_open_escaped] = ACTIONS(2845), + [sym__shortcode_open] = ACTIONS(2845), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2845), + [sym__cite_author_in_text] = ACTIONS(2845), + [sym__cite_suppress_author] = ACTIONS(2845), + [sym__strikeout_open] = ACTIONS(2845), + [sym__subscript_open] = ACTIONS(2845), + [sym__superscript_open] = ACTIONS(2845), + [sym__inline_note_start_token] = ACTIONS(2845), + [sym__strong_emphasis_open_star] = ACTIONS(2845), + [sym__strong_emphasis_open_underscore] = ACTIONS(2845), + [sym__emphasis_open_star] = ACTIONS(2845), + [sym__emphasis_open_underscore] = ACTIONS(2845), + [sym_inline_note_reference] = ACTIONS(2845), + [sym_html_element] = ACTIONS(2845), + [sym__pandoc_line_break] = ACTIONS(2845), + }, + [STATE(409)] = { + [anon_sym_COLON] = ACTIONS(2849), + [sym_entity_reference] = ACTIONS(2849), + [sym_numeric_character_reference] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_BANG_LBRACK] = ACTIONS(2849), + [anon_sym_DOLLAR] = ACTIONS(2851), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [aux_sym_pandoc_str_token1] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2849), + [sym__whitespace] = ACTIONS(2849), + [sym__line_ending] = ACTIONS(2849), + [sym__soft_line_ending] = ACTIONS(2849), + [sym__block_close] = ACTIONS(2849), + [sym__block_quote_start] = ACTIONS(2849), + [sym_atx_h1_marker] = ACTIONS(2849), + [sym_atx_h2_marker] = ACTIONS(2849), + [sym_atx_h3_marker] = ACTIONS(2849), + [sym_atx_h4_marker] = ACTIONS(2849), + [sym_atx_h5_marker] = ACTIONS(2849), + [sym_atx_h6_marker] = ACTIONS(2849), + [sym__thematic_break] = ACTIONS(2849), + [sym__list_marker_minus] = ACTIONS(2849), + [sym__list_marker_plus] = ACTIONS(2849), + [sym__list_marker_star] = ACTIONS(2849), + [sym__list_marker_parenthesis] = ACTIONS(2849), + [sym__list_marker_dot] = ACTIONS(2849), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_example] = ACTIONS(2849), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2849), + [sym__fenced_code_block_start_backtick] = ACTIONS(2849), + [sym_minus_metadata] = ACTIONS(2849), + [sym__pipe_table_start] = ACTIONS(2849), + [sym__fenced_div_start] = ACTIONS(2849), + [sym_ref_id_specifier] = ACTIONS(2849), + [sym__code_span_start] = ACTIONS(2849), + [sym__html_comment] = ACTIONS(2849), + [sym__autolink] = ACTIONS(2849), + [sym__highlight_span_start] = ACTIONS(2849), + [sym__insert_span_start] = ACTIONS(2849), + [sym__delete_span_start] = ACTIONS(2849), + [sym__edit_comment_span_start] = ACTIONS(2849), + [sym__single_quote_span_open] = ACTIONS(2849), + [sym__double_quote_span_open] = ACTIONS(2849), + [sym__shortcode_open_escaped] = ACTIONS(2849), + [sym__shortcode_open] = ACTIONS(2849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2849), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2849), + [sym__cite_author_in_text] = ACTIONS(2849), + [sym__cite_suppress_author] = ACTIONS(2849), + [sym__strikeout_open] = ACTIONS(2849), + [sym__subscript_open] = ACTIONS(2849), + [sym__superscript_open] = ACTIONS(2849), + [sym__inline_note_start_token] = ACTIONS(2849), + [sym__strong_emphasis_open_star] = ACTIONS(2849), + [sym__strong_emphasis_open_underscore] = ACTIONS(2849), + [sym__emphasis_open_star] = ACTIONS(2849), + [sym__emphasis_open_underscore] = ACTIONS(2849), + [sym_inline_note_reference] = ACTIONS(2849), + [sym_html_element] = ACTIONS(2849), + [sym__pandoc_line_break] = ACTIONS(2849), + }, + [STATE(410)] = { + [anon_sym_COLON] = ACTIONS(2853), + [sym_entity_reference] = ACTIONS(2853), + [sym_numeric_character_reference] = ACTIONS(2853), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_BANG_LBRACK] = ACTIONS(2853), + [anon_sym_DOLLAR] = ACTIONS(2855), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2853), + [aux_sym_pandoc_str_token1] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2853), + [sym__whitespace] = ACTIONS(2853), + [sym__line_ending] = ACTIONS(2853), + [sym__soft_line_ending] = ACTIONS(2853), + [sym__block_close] = ACTIONS(2853), + [sym__block_quote_start] = ACTIONS(2853), + [sym_atx_h1_marker] = ACTIONS(2853), + [sym_atx_h2_marker] = ACTIONS(2853), + [sym_atx_h3_marker] = ACTIONS(2853), + [sym_atx_h4_marker] = ACTIONS(2853), + [sym_atx_h5_marker] = ACTIONS(2853), + [sym_atx_h6_marker] = ACTIONS(2853), + [sym__thematic_break] = ACTIONS(2853), + [sym__list_marker_minus] = ACTIONS(2853), + [sym__list_marker_plus] = ACTIONS(2853), + [sym__list_marker_star] = ACTIONS(2853), + [sym__list_marker_parenthesis] = ACTIONS(2853), + [sym__list_marker_dot] = ACTIONS(2853), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_example] = ACTIONS(2853), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2853), + [sym__fenced_code_block_start_backtick] = ACTIONS(2853), + [sym_minus_metadata] = ACTIONS(2853), + [sym__pipe_table_start] = ACTIONS(2853), + [sym__fenced_div_start] = ACTIONS(2853), + [sym_ref_id_specifier] = ACTIONS(2853), + [sym__code_span_start] = ACTIONS(2853), + [sym__html_comment] = ACTIONS(2853), + [sym__autolink] = ACTIONS(2853), + [sym__highlight_span_start] = ACTIONS(2853), + [sym__insert_span_start] = ACTIONS(2853), + [sym__delete_span_start] = ACTIONS(2853), + [sym__edit_comment_span_start] = ACTIONS(2853), + [sym__single_quote_span_open] = ACTIONS(2853), + [sym__double_quote_span_open] = ACTIONS(2853), + [sym__shortcode_open_escaped] = ACTIONS(2853), + [sym__shortcode_open] = ACTIONS(2853), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2853), + [sym__cite_author_in_text] = ACTIONS(2853), + [sym__cite_suppress_author] = ACTIONS(2853), + [sym__strikeout_open] = ACTIONS(2853), + [sym__subscript_open] = ACTIONS(2853), + [sym__superscript_open] = ACTIONS(2853), + [sym__inline_note_start_token] = ACTIONS(2853), + [sym__strong_emphasis_open_star] = ACTIONS(2853), + [sym__strong_emphasis_open_underscore] = ACTIONS(2853), + [sym__emphasis_open_star] = ACTIONS(2853), + [sym__emphasis_open_underscore] = ACTIONS(2853), + [sym_inline_note_reference] = ACTIONS(2853), + [sym_html_element] = ACTIONS(2853), + [sym__pandoc_line_break] = ACTIONS(2853), + }, + [STATE(411)] = { + [anon_sym_COLON] = ACTIONS(2857), + [sym_entity_reference] = ACTIONS(2857), + [sym_numeric_character_reference] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_BANG_LBRACK] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2859), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2857), + [aux_sym_pandoc_str_token1] = ACTIONS(2859), + [anon_sym_PIPE] = ACTIONS(2857), + [sym__whitespace] = ACTIONS(2857), + [sym__line_ending] = ACTIONS(2857), + [sym__soft_line_ending] = ACTIONS(2857), + [sym__block_close] = ACTIONS(2857), + [sym__block_quote_start] = ACTIONS(2857), + [sym_atx_h1_marker] = ACTIONS(2857), + [sym_atx_h2_marker] = ACTIONS(2857), + [sym_atx_h3_marker] = ACTIONS(2857), + [sym_atx_h4_marker] = ACTIONS(2857), + [sym_atx_h5_marker] = ACTIONS(2857), + [sym_atx_h6_marker] = ACTIONS(2857), + [sym__thematic_break] = ACTIONS(2857), + [sym__list_marker_minus] = ACTIONS(2857), + [sym__list_marker_plus] = ACTIONS(2857), + [sym__list_marker_star] = ACTIONS(2857), + [sym__list_marker_parenthesis] = ACTIONS(2857), + [sym__list_marker_dot] = ACTIONS(2857), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_example] = ACTIONS(2857), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2857), + [sym__fenced_code_block_start_backtick] = ACTIONS(2857), + [sym_minus_metadata] = ACTIONS(2857), + [sym__pipe_table_start] = ACTIONS(2857), + [sym__fenced_div_start] = ACTIONS(2857), + [sym_ref_id_specifier] = ACTIONS(2857), + [sym__code_span_start] = ACTIONS(2857), + [sym__html_comment] = ACTIONS(2857), + [sym__autolink] = ACTIONS(2857), + [sym__highlight_span_start] = ACTIONS(2857), + [sym__insert_span_start] = ACTIONS(2857), + [sym__delete_span_start] = ACTIONS(2857), + [sym__edit_comment_span_start] = ACTIONS(2857), + [sym__single_quote_span_open] = ACTIONS(2857), + [sym__double_quote_span_open] = ACTIONS(2857), + [sym__shortcode_open_escaped] = ACTIONS(2857), + [sym__shortcode_open] = ACTIONS(2857), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2857), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2857), + [sym__cite_author_in_text] = ACTIONS(2857), + [sym__cite_suppress_author] = ACTIONS(2857), + [sym__strikeout_open] = ACTIONS(2857), + [sym__subscript_open] = ACTIONS(2857), + [sym__superscript_open] = ACTIONS(2857), + [sym__inline_note_start_token] = ACTIONS(2857), + [sym__strong_emphasis_open_star] = ACTIONS(2857), + [sym__strong_emphasis_open_underscore] = ACTIONS(2857), + [sym__emphasis_open_star] = ACTIONS(2857), + [sym__emphasis_open_underscore] = ACTIONS(2857), + [sym_inline_note_reference] = ACTIONS(2857), + [sym_html_element] = ACTIONS(2857), + [sym__pandoc_line_break] = ACTIONS(2857), + }, + [STATE(412)] = { + [sym__atx_heading_content] = STATE(3231), + [sym__inlines] = STATE(3231), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(254), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(191), + [sym__eof] = ACTIONS(3037), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(413)] = { + [sym__atx_heading_content] = STATE(3245), + [sym__inlines] = STATE(3245), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(255), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(191), + [sym__eof] = ACTIONS(3039), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(414)] = { + [ts_builtin_sym_end] = ACTIONS(2661), + [anon_sym_COLON] = ACTIONS(2661), + [sym_entity_reference] = ACTIONS(2661), + [sym_numeric_character_reference] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_BANG_LBRACK] = ACTIONS(2661), + [anon_sym_DOLLAR] = ACTIONS(2663), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [aux_sym_pandoc_str_token1] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2661), + [sym__whitespace] = ACTIONS(2661), + [sym__line_ending] = ACTIONS(2661), + [sym__soft_line_ending] = ACTIONS(2661), + [sym__block_quote_start] = ACTIONS(2661), + [sym_atx_h1_marker] = ACTIONS(2661), + [sym_atx_h2_marker] = ACTIONS(2661), + [sym_atx_h3_marker] = ACTIONS(2661), + [sym_atx_h4_marker] = ACTIONS(2661), + [sym_atx_h5_marker] = ACTIONS(2661), + [sym_atx_h6_marker] = ACTIONS(2661), + [sym__thematic_break] = ACTIONS(2661), + [sym__list_marker_minus] = ACTIONS(2661), + [sym__list_marker_plus] = ACTIONS(2661), + [sym__list_marker_star] = ACTIONS(2661), + [sym__list_marker_parenthesis] = ACTIONS(2661), + [sym__list_marker_dot] = ACTIONS(2661), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_example] = ACTIONS(2661), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2661), + [sym__fenced_code_block_start_backtick] = ACTIONS(2661), + [sym_minus_metadata] = ACTIONS(2661), + [sym__pipe_table_start] = ACTIONS(2661), + [sym__fenced_div_start] = ACTIONS(2661), + [sym_ref_id_specifier] = ACTIONS(2661), + [sym__code_span_start] = ACTIONS(2661), + [sym__html_comment] = ACTIONS(2661), + [sym__autolink] = ACTIONS(2661), + [sym__highlight_span_start] = ACTIONS(2661), + [sym__insert_span_start] = ACTIONS(2661), + [sym__delete_span_start] = ACTIONS(2661), + [sym__edit_comment_span_start] = ACTIONS(2661), + [sym__single_quote_span_open] = ACTIONS(2661), + [sym__double_quote_span_open] = ACTIONS(2661), + [sym__shortcode_open_escaped] = ACTIONS(2661), + [sym__shortcode_open] = ACTIONS(2661), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2661), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2661), + [sym__cite_author_in_text] = ACTIONS(2661), + [sym__cite_suppress_author] = ACTIONS(2661), + [sym__strikeout_open] = ACTIONS(2661), + [sym__subscript_open] = ACTIONS(2661), + [sym__superscript_open] = ACTIONS(2661), + [sym__inline_note_start_token] = ACTIONS(2661), + [sym__strong_emphasis_open_star] = ACTIONS(2661), + [sym__strong_emphasis_open_underscore] = ACTIONS(2661), + [sym__emphasis_open_star] = ACTIONS(2661), + [sym__emphasis_open_underscore] = ACTIONS(2661), + [sym_inline_note_reference] = ACTIONS(2661), + [sym_html_element] = ACTIONS(2661), + [sym__pandoc_line_break] = ACTIONS(2661), + }, + [STATE(415)] = { + [sym__atx_heading_content] = STATE(3247), + [sym__inlines] = STATE(3247), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(256), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(191), + [sym__eof] = ACTIONS(3041), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(416)] = { - [anon_sym_COLON] = ACTIONS(2705), - [sym_entity_reference] = ACTIONS(2705), - [sym_numeric_character_reference] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_BANG_LBRACK] = ACTIONS(2705), - [anon_sym_DOLLAR] = ACTIONS(2707), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2705), - [aux_sym_pandoc_str_token1] = ACTIONS(2707), - [anon_sym_PIPE] = ACTIONS(2705), - [aux_sym__prose_punctuation_token1] = ACTIONS(2707), - [sym__line_ending] = ACTIONS(2705), - [sym__soft_line_ending] = ACTIONS(2705), - [sym__block_close] = ACTIONS(2705), - [sym_block_continuation] = ACTIONS(3423), - [sym__block_quote_start] = ACTIONS(2705), - [sym_atx_h1_marker] = ACTIONS(2705), - [sym_atx_h2_marker] = ACTIONS(2705), - [sym_atx_h3_marker] = ACTIONS(2705), - [sym_atx_h4_marker] = ACTIONS(2705), - [sym_atx_h5_marker] = ACTIONS(2705), - [sym_atx_h6_marker] = ACTIONS(2705), - [sym__thematic_break] = ACTIONS(2705), - [sym__list_marker_minus] = ACTIONS(2705), - [sym__list_marker_plus] = ACTIONS(2705), - [sym__list_marker_star] = ACTIONS(2705), - [sym__list_marker_parenthesis] = ACTIONS(2705), - [sym__list_marker_dot] = ACTIONS(2705), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2705), - [sym__list_marker_example] = ACTIONS(2705), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2705), - [sym__fenced_code_block_start_backtick] = ACTIONS(2705), - [sym_minus_metadata] = ACTIONS(2705), - [sym__pipe_table_start] = ACTIONS(2705), - [sym__fenced_div_start] = ACTIONS(2705), - [sym_ref_id_specifier] = ACTIONS(2705), - [sym__code_span_start] = ACTIONS(2705), - [sym__html_comment] = ACTIONS(2705), - [sym__autolink] = ACTIONS(2705), - [sym__highlight_span_start] = ACTIONS(2705), - [sym__insert_span_start] = ACTIONS(2705), - [sym__delete_span_start] = ACTIONS(2705), - [sym__edit_comment_span_start] = ACTIONS(2705), - [sym__single_quote_span_open] = ACTIONS(2705), - [sym__double_quote_span_open] = ACTIONS(2705), - [sym__shortcode_open_escaped] = ACTIONS(2705), - [sym__shortcode_open] = ACTIONS(2705), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2705), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2705), - [sym__cite_author_in_text] = ACTIONS(2705), - [sym__cite_suppress_author] = ACTIONS(2705), - [sym__strikeout_open] = ACTIONS(2705), - [sym__subscript_open] = ACTIONS(2705), - [sym__superscript_open] = ACTIONS(2705), - [sym__inline_note_start_token] = ACTIONS(2705), - [sym__strong_emphasis_open_star] = ACTIONS(2705), - [sym__strong_emphasis_open_underscore] = ACTIONS(2705), - [sym__emphasis_open_star] = ACTIONS(2705), - [sym__emphasis_open_underscore] = ACTIONS(2705), - [sym_inline_note_reference] = ACTIONS(2705), - [sym_html_element] = ACTIONS(2705), - [sym__pandoc_line_break] = ACTIONS(2705), + [ts_builtin_sym_end] = ACTIONS(2665), + [anon_sym_COLON] = ACTIONS(2665), + [sym_entity_reference] = ACTIONS(2665), + [sym_numeric_character_reference] = ACTIONS(2665), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_BANG_LBRACK] = ACTIONS(2665), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2665), + [aux_sym_pandoc_str_token1] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2665), + [sym__whitespace] = ACTIONS(2665), + [sym__line_ending] = ACTIONS(2665), + [sym__soft_line_ending] = ACTIONS(2665), + [sym__block_quote_start] = ACTIONS(2665), + [sym_atx_h1_marker] = ACTIONS(2665), + [sym_atx_h2_marker] = ACTIONS(2665), + [sym_atx_h3_marker] = ACTIONS(2665), + [sym_atx_h4_marker] = ACTIONS(2665), + [sym_atx_h5_marker] = ACTIONS(2665), + [sym_atx_h6_marker] = ACTIONS(2665), + [sym__thematic_break] = ACTIONS(2665), + [sym__list_marker_minus] = ACTIONS(2665), + [sym__list_marker_plus] = ACTIONS(2665), + [sym__list_marker_star] = ACTIONS(2665), + [sym__list_marker_parenthesis] = ACTIONS(2665), + [sym__list_marker_dot] = ACTIONS(2665), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_example] = ACTIONS(2665), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2665), + [sym__fenced_code_block_start_backtick] = ACTIONS(2665), + [sym_minus_metadata] = ACTIONS(2665), + [sym__pipe_table_start] = ACTIONS(2665), + [sym__fenced_div_start] = ACTIONS(2665), + [sym_ref_id_specifier] = ACTIONS(2665), + [sym__code_span_start] = ACTIONS(2665), + [sym__html_comment] = ACTIONS(2665), + [sym__autolink] = ACTIONS(2665), + [sym__highlight_span_start] = ACTIONS(2665), + [sym__insert_span_start] = ACTIONS(2665), + [sym__delete_span_start] = ACTIONS(2665), + [sym__edit_comment_span_start] = ACTIONS(2665), + [sym__single_quote_span_open] = ACTIONS(2665), + [sym__double_quote_span_open] = ACTIONS(2665), + [sym__shortcode_open_escaped] = ACTIONS(2665), + [sym__shortcode_open] = ACTIONS(2665), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2665), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2665), + [sym__cite_author_in_text] = ACTIONS(2665), + [sym__cite_suppress_author] = ACTIONS(2665), + [sym__strikeout_open] = ACTIONS(2665), + [sym__subscript_open] = ACTIONS(2665), + [sym__superscript_open] = ACTIONS(2665), + [sym__inline_note_start_token] = ACTIONS(2665), + [sym__strong_emphasis_open_star] = ACTIONS(2665), + [sym__strong_emphasis_open_underscore] = ACTIONS(2665), + [sym__emphasis_open_star] = ACTIONS(2665), + [sym__emphasis_open_underscore] = ACTIONS(2665), + [sym_inline_note_reference] = ACTIONS(2665), + [sym_html_element] = ACTIONS(2665), + [sym__pandoc_line_break] = ACTIONS(2665), }, [STATE(417)] = { - [anon_sym_COLON] = ACTIONS(2663), - [sym_entity_reference] = ACTIONS(2663), - [sym_numeric_character_reference] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_BANG_LBRACK] = ACTIONS(2663), - [anon_sym_DOLLAR] = ACTIONS(2665), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [aux_sym_pandoc_str_token1] = ACTIONS(2665), - [anon_sym_PIPE] = ACTIONS(2663), - [aux_sym__prose_punctuation_token1] = ACTIONS(2665), - [sym__line_ending] = ACTIONS(2663), - [sym__soft_line_ending] = ACTIONS(2663), - [sym__block_close] = ACTIONS(2663), - [sym_block_continuation] = ACTIONS(3425), - [sym__block_quote_start] = ACTIONS(2663), - [sym_atx_h1_marker] = ACTIONS(2663), - [sym_atx_h2_marker] = ACTIONS(2663), - [sym_atx_h3_marker] = ACTIONS(2663), - [sym_atx_h4_marker] = ACTIONS(2663), - [sym_atx_h5_marker] = ACTIONS(2663), - [sym_atx_h6_marker] = ACTIONS(2663), - [sym__thematic_break] = ACTIONS(2663), - [sym__list_marker_minus] = ACTIONS(2663), - [sym__list_marker_plus] = ACTIONS(2663), - [sym__list_marker_star] = ACTIONS(2663), - [sym__list_marker_parenthesis] = ACTIONS(2663), - [sym__list_marker_dot] = ACTIONS(2663), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_example] = ACTIONS(2663), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2663), - [sym__fenced_code_block_start_backtick] = ACTIONS(2663), - [sym_minus_metadata] = ACTIONS(2663), - [sym__pipe_table_start] = ACTIONS(2663), - [sym__fenced_div_start] = ACTIONS(2663), - [sym_ref_id_specifier] = ACTIONS(2663), - [sym__code_span_start] = ACTIONS(2663), - [sym__html_comment] = ACTIONS(2663), - [sym__autolink] = ACTIONS(2663), - [sym__highlight_span_start] = ACTIONS(2663), - [sym__insert_span_start] = ACTIONS(2663), - [sym__delete_span_start] = ACTIONS(2663), - [sym__edit_comment_span_start] = ACTIONS(2663), - [sym__single_quote_span_open] = ACTIONS(2663), - [sym__double_quote_span_open] = ACTIONS(2663), - [sym__shortcode_open_escaped] = ACTIONS(2663), - [sym__shortcode_open] = ACTIONS(2663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2663), - [sym__cite_author_in_text] = ACTIONS(2663), - [sym__cite_suppress_author] = ACTIONS(2663), - [sym__strikeout_open] = ACTIONS(2663), - [sym__subscript_open] = ACTIONS(2663), - [sym__superscript_open] = ACTIONS(2663), - [sym__inline_note_start_token] = ACTIONS(2663), - [sym__strong_emphasis_open_star] = ACTIONS(2663), - [sym__strong_emphasis_open_underscore] = ACTIONS(2663), - [sym__emphasis_open_star] = ACTIONS(2663), - [sym__emphasis_open_underscore] = ACTIONS(2663), - [sym_inline_note_reference] = ACTIONS(2663), - [sym_html_element] = ACTIONS(2663), - [sym__pandoc_line_break] = ACTIONS(2663), + [sym__atx_heading_content] = STATE(3018), + [sym__inlines] = STATE(3018), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(257), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(191), + [sym__eof] = ACTIONS(3043), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(418)] = { - [anon_sym_COLON] = ACTIONS(3427), - [sym_entity_reference] = ACTIONS(3427), - [sym_numeric_character_reference] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_BANG_LBRACK] = ACTIONS(3427), - [anon_sym_DOLLAR] = ACTIONS(3429), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [aux_sym_pandoc_str_token1] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3427), - [aux_sym__prose_punctuation_token1] = ACTIONS(3429), - [sym__line_ending] = ACTIONS(3427), - [sym__soft_line_ending] = ACTIONS(3427), - [sym__block_close] = ACTIONS(3427), - [sym__block_quote_start] = ACTIONS(3427), - [sym_atx_h1_marker] = ACTIONS(3427), - [sym_atx_h2_marker] = ACTIONS(3427), - [sym_atx_h3_marker] = ACTIONS(3427), - [sym_atx_h4_marker] = ACTIONS(3427), - [sym_atx_h5_marker] = ACTIONS(3427), - [sym_atx_h6_marker] = ACTIONS(3427), - [sym__thematic_break] = ACTIONS(3427), - [sym__list_marker_minus] = ACTIONS(3427), - [sym__list_marker_plus] = ACTIONS(3427), - [sym__list_marker_star] = ACTIONS(3427), - [sym__list_marker_parenthesis] = ACTIONS(3427), - [sym__list_marker_dot] = ACTIONS(3427), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_example] = ACTIONS(3427), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3427), - [sym__fenced_code_block_start_backtick] = ACTIONS(3427), - [sym_minus_metadata] = ACTIONS(3427), - [sym__pipe_table_start] = ACTIONS(3427), - [sym__fenced_div_start] = ACTIONS(3427), - [sym__fenced_div_end] = ACTIONS(3427), - [sym_ref_id_specifier] = ACTIONS(3427), - [sym__code_span_start] = ACTIONS(3427), - [sym__html_comment] = ACTIONS(3427), - [sym__autolink] = ACTIONS(3427), - [sym__highlight_span_start] = ACTIONS(3427), - [sym__insert_span_start] = ACTIONS(3427), - [sym__delete_span_start] = ACTIONS(3427), - [sym__edit_comment_span_start] = ACTIONS(3427), - [sym__single_quote_span_open] = ACTIONS(3427), - [sym__double_quote_span_open] = ACTIONS(3427), - [sym__shortcode_open_escaped] = ACTIONS(3427), - [sym__shortcode_open] = ACTIONS(3427), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3427), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3427), - [sym__cite_author_in_text] = ACTIONS(3427), - [sym__cite_suppress_author] = ACTIONS(3427), - [sym__strikeout_open] = ACTIONS(3427), - [sym__subscript_open] = ACTIONS(3427), - [sym__superscript_open] = ACTIONS(3427), - [sym__inline_note_start_token] = ACTIONS(3427), - [sym__strong_emphasis_open_star] = ACTIONS(3427), - [sym__strong_emphasis_open_underscore] = ACTIONS(3427), - [sym__emphasis_open_star] = ACTIONS(3427), - [sym__emphasis_open_underscore] = ACTIONS(3427), - [sym_inline_note_reference] = ACTIONS(3427), - [sym_html_element] = ACTIONS(3427), - [sym__pandoc_line_break] = ACTIONS(3427), + [ts_builtin_sym_end] = ACTIONS(2757), + [anon_sym_COLON] = ACTIONS(2757), + [sym_entity_reference] = ACTIONS(2757), + [sym_numeric_character_reference] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_BANG_LBRACK] = ACTIONS(2757), + [anon_sym_DOLLAR] = ACTIONS(2759), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2757), + [aux_sym_pandoc_str_token1] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2757), + [sym__whitespace] = ACTIONS(2757), + [sym__line_ending] = ACTIONS(2757), + [sym__soft_line_ending] = ACTIONS(2757), + [sym__block_quote_start] = ACTIONS(2757), + [sym_atx_h1_marker] = ACTIONS(2757), + [sym_atx_h2_marker] = ACTIONS(2757), + [sym_atx_h3_marker] = ACTIONS(2757), + [sym_atx_h4_marker] = ACTIONS(2757), + [sym_atx_h5_marker] = ACTIONS(2757), + [sym_atx_h6_marker] = ACTIONS(2757), + [sym__thematic_break] = ACTIONS(2757), + [sym__list_marker_minus] = ACTIONS(2757), + [sym__list_marker_plus] = ACTIONS(2757), + [sym__list_marker_star] = ACTIONS(2757), + [sym__list_marker_parenthesis] = ACTIONS(2757), + [sym__list_marker_dot] = ACTIONS(2757), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2757), + [sym__list_marker_example] = ACTIONS(2757), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2757), + [sym__fenced_code_block_start_backtick] = ACTIONS(2757), + [sym_minus_metadata] = ACTIONS(2757), + [sym__pipe_table_start] = ACTIONS(2757), + [sym__fenced_div_start] = ACTIONS(2757), + [sym_ref_id_specifier] = ACTIONS(2757), + [sym__code_span_start] = ACTIONS(2757), + [sym__html_comment] = ACTIONS(2757), + [sym__autolink] = ACTIONS(2757), + [sym__highlight_span_start] = ACTIONS(2757), + [sym__insert_span_start] = ACTIONS(2757), + [sym__delete_span_start] = ACTIONS(2757), + [sym__edit_comment_span_start] = ACTIONS(2757), + [sym__single_quote_span_open] = ACTIONS(2757), + [sym__double_quote_span_open] = ACTIONS(2757), + [sym__shortcode_open_escaped] = ACTIONS(2757), + [sym__shortcode_open] = ACTIONS(2757), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2757), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2757), + [sym__cite_author_in_text] = ACTIONS(2757), + [sym__cite_suppress_author] = ACTIONS(2757), + [sym__strikeout_open] = ACTIONS(2757), + [sym__subscript_open] = ACTIONS(2757), + [sym__superscript_open] = ACTIONS(2757), + [sym__inline_note_start_token] = ACTIONS(2757), + [sym__strong_emphasis_open_star] = ACTIONS(2757), + [sym__strong_emphasis_open_underscore] = ACTIONS(2757), + [sym__emphasis_open_star] = ACTIONS(2757), + [sym__emphasis_open_underscore] = ACTIONS(2757), + [sym_inline_note_reference] = ACTIONS(2757), + [sym_html_element] = ACTIONS(2757), + [sym__pandoc_line_break] = ACTIONS(2757), }, [STATE(419)] = { - [anon_sym_COLON] = ACTIONS(3431), - [sym_entity_reference] = ACTIONS(3431), - [sym_numeric_character_reference] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_BANG_LBRACK] = ACTIONS(3431), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [aux_sym_pandoc_str_token1] = ACTIONS(3433), - [anon_sym_PIPE] = ACTIONS(3431), - [aux_sym__prose_punctuation_token1] = ACTIONS(3433), - [sym__line_ending] = ACTIONS(3431), - [sym__soft_line_ending] = ACTIONS(3431), - [sym__block_close] = ACTIONS(3431), - [sym__block_quote_start] = ACTIONS(3431), - [sym_atx_h1_marker] = ACTIONS(3431), - [sym_atx_h2_marker] = ACTIONS(3431), - [sym_atx_h3_marker] = ACTIONS(3431), - [sym_atx_h4_marker] = ACTIONS(3431), - [sym_atx_h5_marker] = ACTIONS(3431), - [sym_atx_h6_marker] = ACTIONS(3431), - [sym__thematic_break] = ACTIONS(3431), - [sym__list_marker_minus] = ACTIONS(3431), - [sym__list_marker_plus] = ACTIONS(3431), - [sym__list_marker_star] = ACTIONS(3431), - [sym__list_marker_parenthesis] = ACTIONS(3431), - [sym__list_marker_dot] = ACTIONS(3431), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_example] = ACTIONS(3431), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3431), - [sym__fenced_code_block_start_backtick] = ACTIONS(3431), - [sym_minus_metadata] = ACTIONS(3431), - [sym__pipe_table_start] = ACTIONS(3431), - [sym__fenced_div_start] = ACTIONS(3431), - [sym__fenced_div_end] = ACTIONS(3431), - [sym_ref_id_specifier] = ACTIONS(3431), - [sym__code_span_start] = ACTIONS(3431), - [sym__html_comment] = ACTIONS(3431), - [sym__autolink] = ACTIONS(3431), - [sym__highlight_span_start] = ACTIONS(3431), - [sym__insert_span_start] = ACTIONS(3431), - [sym__delete_span_start] = ACTIONS(3431), - [sym__edit_comment_span_start] = ACTIONS(3431), - [sym__single_quote_span_open] = ACTIONS(3431), - [sym__double_quote_span_open] = ACTIONS(3431), - [sym__shortcode_open_escaped] = ACTIONS(3431), - [sym__shortcode_open] = ACTIONS(3431), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3431), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3431), - [sym__cite_author_in_text] = ACTIONS(3431), - [sym__cite_suppress_author] = ACTIONS(3431), - [sym__strikeout_open] = ACTIONS(3431), - [sym__subscript_open] = ACTIONS(3431), - [sym__superscript_open] = ACTIONS(3431), - [sym__inline_note_start_token] = ACTIONS(3431), - [sym__strong_emphasis_open_star] = ACTIONS(3431), - [sym__strong_emphasis_open_underscore] = ACTIONS(3431), - [sym__emphasis_open_star] = ACTIONS(3431), - [sym__emphasis_open_underscore] = ACTIONS(3431), - [sym_inline_note_reference] = ACTIONS(3431), - [sym_html_element] = ACTIONS(3431), - [sym__pandoc_line_break] = ACTIONS(3431), + [sym__atx_heading_content] = STATE(3024), + [sym__inlines] = STATE(3024), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(258), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(191), + [sym__eof] = ACTIONS(3045), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(420)] = { - [anon_sym_COLON] = ACTIONS(3435), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_BANG_LBRACK] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [aux_sym_pandoc_str_token1] = ACTIONS(3437), - [anon_sym_PIPE] = ACTIONS(3435), - [aux_sym__prose_punctuation_token1] = ACTIONS(3437), - [sym__line_ending] = ACTIONS(3435), - [sym__soft_line_ending] = ACTIONS(3435), - [sym__block_close] = ACTIONS(3435), - [sym__block_quote_start] = ACTIONS(3435), - [sym_atx_h1_marker] = ACTIONS(3435), - [sym_atx_h2_marker] = ACTIONS(3435), - [sym_atx_h3_marker] = ACTIONS(3435), - [sym_atx_h4_marker] = ACTIONS(3435), - [sym_atx_h5_marker] = ACTIONS(3435), - [sym_atx_h6_marker] = ACTIONS(3435), - [sym__thematic_break] = ACTIONS(3435), - [sym__list_marker_minus] = ACTIONS(3435), - [sym__list_marker_plus] = ACTIONS(3435), - [sym__list_marker_star] = ACTIONS(3435), - [sym__list_marker_parenthesis] = ACTIONS(3435), - [sym__list_marker_dot] = ACTIONS(3435), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_example] = ACTIONS(3435), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3435), - [sym__fenced_code_block_start_backtick] = ACTIONS(3435), - [sym_minus_metadata] = ACTIONS(3435), - [sym__pipe_table_start] = ACTIONS(3435), - [sym__fenced_div_start] = ACTIONS(3435), - [sym__fenced_div_end] = ACTIONS(3435), - [sym_ref_id_specifier] = ACTIONS(3435), - [sym__code_span_start] = ACTIONS(3435), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3435), - [sym__insert_span_start] = ACTIONS(3435), - [sym__delete_span_start] = ACTIONS(3435), - [sym__edit_comment_span_start] = ACTIONS(3435), - [sym__single_quote_span_open] = ACTIONS(3435), - [sym__double_quote_span_open] = ACTIONS(3435), - [sym__shortcode_open_escaped] = ACTIONS(3435), - [sym__shortcode_open] = ACTIONS(3435), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3435), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3435), - [sym__cite_author_in_text] = ACTIONS(3435), - [sym__cite_suppress_author] = ACTIONS(3435), - [sym__strikeout_open] = ACTIONS(3435), - [sym__subscript_open] = ACTIONS(3435), - [sym__superscript_open] = ACTIONS(3435), - [sym__inline_note_start_token] = ACTIONS(3435), - [sym__strong_emphasis_open_star] = ACTIONS(3435), - [sym__strong_emphasis_open_underscore] = ACTIONS(3435), - [sym__emphasis_open_star] = ACTIONS(3435), - [sym__emphasis_open_underscore] = ACTIONS(3435), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_line_break] = ACTIONS(3435), + [sym__inlines] = STATE(4155), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(715), + [sym__inline_whitespace] = STATE(715), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3049), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, [STATE(421)] = { - [anon_sym_COLON] = ACTIONS(2669), - [sym_entity_reference] = ACTIONS(2669), - [sym_numeric_character_reference] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_BANG_LBRACK] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [aux_sym_pandoc_str_token1] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2669), - [aux_sym__prose_punctuation_token1] = ACTIONS(2671), - [sym__line_ending] = ACTIONS(2669), - [sym__soft_line_ending] = ACTIONS(2669), - [sym__block_close] = ACTIONS(2669), - [sym_block_continuation] = ACTIONS(3439), - [sym__block_quote_start] = ACTIONS(2669), - [sym_atx_h1_marker] = ACTIONS(2669), - [sym_atx_h2_marker] = ACTIONS(2669), - [sym_atx_h3_marker] = ACTIONS(2669), - [sym_atx_h4_marker] = ACTIONS(2669), - [sym_atx_h5_marker] = ACTIONS(2669), - [sym_atx_h6_marker] = ACTIONS(2669), - [sym__thematic_break] = ACTIONS(2669), - [sym__list_marker_minus] = ACTIONS(2669), - [sym__list_marker_plus] = ACTIONS(2669), - [sym__list_marker_star] = ACTIONS(2669), - [sym__list_marker_parenthesis] = ACTIONS(2669), - [sym__list_marker_dot] = ACTIONS(2669), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_example] = ACTIONS(2669), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2669), - [sym__fenced_code_block_start_backtick] = ACTIONS(2669), - [sym_minus_metadata] = ACTIONS(2669), - [sym__pipe_table_start] = ACTIONS(2669), - [sym__fenced_div_start] = ACTIONS(2669), - [sym_ref_id_specifier] = ACTIONS(2669), - [sym__code_span_start] = ACTIONS(2669), - [sym__html_comment] = ACTIONS(2669), - [sym__autolink] = ACTIONS(2669), - [sym__highlight_span_start] = ACTIONS(2669), - [sym__insert_span_start] = ACTIONS(2669), - [sym__delete_span_start] = ACTIONS(2669), - [sym__edit_comment_span_start] = ACTIONS(2669), - [sym__single_quote_span_open] = ACTIONS(2669), - [sym__double_quote_span_open] = ACTIONS(2669), - [sym__shortcode_open_escaped] = ACTIONS(2669), - [sym__shortcode_open] = ACTIONS(2669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2669), - [sym__cite_author_in_text] = ACTIONS(2669), - [sym__cite_suppress_author] = ACTIONS(2669), - [sym__strikeout_open] = ACTIONS(2669), - [sym__subscript_open] = ACTIONS(2669), - [sym__superscript_open] = ACTIONS(2669), - [sym__inline_note_start_token] = ACTIONS(2669), - [sym__strong_emphasis_open_star] = ACTIONS(2669), - [sym__strong_emphasis_open_underscore] = ACTIONS(2669), - [sym__emphasis_open_star] = ACTIONS(2669), - [sym__emphasis_open_underscore] = ACTIONS(2669), - [sym_inline_note_reference] = ACTIONS(2669), - [sym_html_element] = ACTIONS(2669), - [sym__pandoc_line_break] = ACTIONS(2669), + [sym__inlines] = STATE(3401), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(721), + [sym__inline_whitespace] = STATE(721), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3051), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3053), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, [STATE(422)] = { - [anon_sym_COLON] = ACTIONS(2663), - [sym_entity_reference] = ACTIONS(2663), - [sym_numeric_character_reference] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_BANG_LBRACK] = ACTIONS(2663), - [anon_sym_DOLLAR] = ACTIONS(2665), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [aux_sym_pandoc_str_token1] = ACTIONS(2665), - [anon_sym_PIPE] = ACTIONS(2663), - [aux_sym__prose_punctuation_token1] = ACTIONS(2665), - [sym__line_ending] = ACTIONS(2663), - [sym__soft_line_ending] = ACTIONS(2663), - [sym__block_close] = ACTIONS(2663), - [sym__block_quote_start] = ACTIONS(2663), - [sym_atx_h1_marker] = ACTIONS(2663), - [sym_atx_h2_marker] = ACTIONS(2663), - [sym_atx_h3_marker] = ACTIONS(2663), - [sym_atx_h4_marker] = ACTIONS(2663), - [sym_atx_h5_marker] = ACTIONS(2663), - [sym_atx_h6_marker] = ACTIONS(2663), - [sym__thematic_break] = ACTIONS(2663), - [sym__list_marker_minus] = ACTIONS(2663), - [sym__list_marker_plus] = ACTIONS(2663), - [sym__list_marker_star] = ACTIONS(2663), - [sym__list_marker_parenthesis] = ACTIONS(2663), - [sym__list_marker_dot] = ACTIONS(2663), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_example] = ACTIONS(2663), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2663), - [sym__fenced_code_block_start_backtick] = ACTIONS(2663), - [sym_minus_metadata] = ACTIONS(2663), - [sym__pipe_table_start] = ACTIONS(2663), - [sym__fenced_div_start] = ACTIONS(2663), - [sym__fenced_div_end] = ACTIONS(2663), - [sym_ref_id_specifier] = ACTIONS(2663), - [sym__code_span_start] = ACTIONS(2663), - [sym__html_comment] = ACTIONS(2663), - [sym__autolink] = ACTIONS(2663), - [sym__highlight_span_start] = ACTIONS(2663), - [sym__insert_span_start] = ACTIONS(2663), - [sym__delete_span_start] = ACTIONS(2663), - [sym__edit_comment_span_start] = ACTIONS(2663), - [sym__single_quote_span_open] = ACTIONS(2663), - [sym__double_quote_span_open] = ACTIONS(2663), - [sym__shortcode_open_escaped] = ACTIONS(2663), - [sym__shortcode_open] = ACTIONS(2663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2663), - [sym__cite_author_in_text] = ACTIONS(2663), - [sym__cite_suppress_author] = ACTIONS(2663), - [sym__strikeout_open] = ACTIONS(2663), - [sym__subscript_open] = ACTIONS(2663), - [sym__superscript_open] = ACTIONS(2663), - [sym__inline_note_start_token] = ACTIONS(2663), - [sym__strong_emphasis_open_star] = ACTIONS(2663), - [sym__strong_emphasis_open_underscore] = ACTIONS(2663), - [sym__emphasis_open_star] = ACTIONS(2663), - [sym__emphasis_open_underscore] = ACTIONS(2663), - [sym_inline_note_reference] = ACTIONS(2663), - [sym_html_element] = ACTIONS(2663), - [sym__pandoc_line_break] = ACTIONS(2663), + [sym__inlines] = STATE(3416), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(722), + [sym__inline_whitespace] = STATE(722), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3057), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, [STATE(423)] = { - [anon_sym_COLON] = ACTIONS(2675), - [sym_entity_reference] = ACTIONS(2675), - [sym_numeric_character_reference] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_BANG_LBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [aux_sym_pandoc_str_token1] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2675), - [aux_sym__prose_punctuation_token1] = ACTIONS(2677), - [sym__line_ending] = ACTIONS(2675), - [sym__soft_line_ending] = ACTIONS(2675), - [sym__block_close] = ACTIONS(2675), - [sym_block_continuation] = ACTIONS(3441), - [sym__block_quote_start] = ACTIONS(2675), - [sym_atx_h1_marker] = ACTIONS(2675), - [sym_atx_h2_marker] = ACTIONS(2675), - [sym_atx_h3_marker] = ACTIONS(2675), - [sym_atx_h4_marker] = ACTIONS(2675), - [sym_atx_h5_marker] = ACTIONS(2675), - [sym_atx_h6_marker] = ACTIONS(2675), - [sym__thematic_break] = ACTIONS(2675), - [sym__list_marker_minus] = ACTIONS(2675), - [sym__list_marker_plus] = ACTIONS(2675), - [sym__list_marker_star] = ACTIONS(2675), - [sym__list_marker_parenthesis] = ACTIONS(2675), - [sym__list_marker_dot] = ACTIONS(2675), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_example] = ACTIONS(2675), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2675), - [sym__fenced_code_block_start_backtick] = ACTIONS(2675), - [sym_minus_metadata] = ACTIONS(2675), - [sym__pipe_table_start] = ACTIONS(2675), - [sym__fenced_div_start] = ACTIONS(2675), - [sym_ref_id_specifier] = ACTIONS(2675), - [sym__code_span_start] = ACTIONS(2675), - [sym__html_comment] = ACTIONS(2675), - [sym__autolink] = ACTIONS(2675), - [sym__highlight_span_start] = ACTIONS(2675), - [sym__insert_span_start] = ACTIONS(2675), - [sym__delete_span_start] = ACTIONS(2675), - [sym__edit_comment_span_start] = ACTIONS(2675), - [sym__single_quote_span_open] = ACTIONS(2675), - [sym__double_quote_span_open] = ACTIONS(2675), - [sym__shortcode_open_escaped] = ACTIONS(2675), - [sym__shortcode_open] = ACTIONS(2675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2675), - [sym__cite_author_in_text] = ACTIONS(2675), - [sym__cite_suppress_author] = ACTIONS(2675), - [sym__strikeout_open] = ACTIONS(2675), - [sym__subscript_open] = ACTIONS(2675), - [sym__superscript_open] = ACTIONS(2675), - [sym__inline_note_start_token] = ACTIONS(2675), - [sym__strong_emphasis_open_star] = ACTIONS(2675), - [sym__strong_emphasis_open_underscore] = ACTIONS(2675), - [sym__emphasis_open_star] = ACTIONS(2675), - [sym__emphasis_open_underscore] = ACTIONS(2675), - [sym_inline_note_reference] = ACTIONS(2675), - [sym_html_element] = ACTIONS(2675), - [sym__pandoc_line_break] = ACTIONS(2675), + [sym__inlines] = STATE(3431), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(737), + [sym__inline_whitespace] = STATE(737), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3061), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, [STATE(424)] = { - [sym__inlines] = STATE(2602), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(768), - [sym__inline_whitespace] = STATE(768), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3443), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), + [ts_builtin_sym_end] = ACTIONS(2377), + [anon_sym_COLON] = ACTIONS(2377), + [sym_entity_reference] = ACTIONS(2377), + [sym_numeric_character_reference] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_BANG_LBRACK] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [aux_sym_pandoc_str_token1] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2377), + [sym__whitespace] = ACTIONS(2377), + [sym__line_ending] = ACTIONS(2377), + [sym__soft_line_ending] = ACTIONS(2377), + [sym__block_quote_start] = ACTIONS(2377), + [sym_atx_h1_marker] = ACTIONS(2377), + [sym_atx_h2_marker] = ACTIONS(2377), + [sym_atx_h3_marker] = ACTIONS(2377), + [sym_atx_h4_marker] = ACTIONS(2377), + [sym_atx_h5_marker] = ACTIONS(2377), + [sym_atx_h6_marker] = ACTIONS(2377), + [sym__thematic_break] = ACTIONS(2377), + [sym__list_marker_minus] = ACTIONS(2377), + [sym__list_marker_plus] = ACTIONS(2377), + [sym__list_marker_star] = ACTIONS(2377), + [sym__list_marker_parenthesis] = ACTIONS(2377), + [sym__list_marker_dot] = ACTIONS(2377), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2377), + [sym__list_marker_example] = ACTIONS(2377), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2377), + [sym__fenced_code_block_start_backtick] = ACTIONS(2377), + [sym_minus_metadata] = ACTIONS(2377), + [sym__pipe_table_start] = ACTIONS(2377), + [sym__fenced_div_start] = ACTIONS(2377), + [sym_ref_id_specifier] = ACTIONS(2377), + [sym__code_span_start] = ACTIONS(2377), + [sym__html_comment] = ACTIONS(2377), + [sym__autolink] = ACTIONS(2377), + [sym__highlight_span_start] = ACTIONS(2377), + [sym__insert_span_start] = ACTIONS(2377), + [sym__delete_span_start] = ACTIONS(2377), + [sym__edit_comment_span_start] = ACTIONS(2377), + [sym__single_quote_span_open] = ACTIONS(2377), + [sym__double_quote_span_open] = ACTIONS(2377), + [sym__shortcode_open_escaped] = ACTIONS(2377), + [sym__shortcode_open] = ACTIONS(2377), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2377), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2377), + [sym__cite_author_in_text] = ACTIONS(2377), + [sym__cite_suppress_author] = ACTIONS(2377), + [sym__strikeout_open] = ACTIONS(2377), + [sym__subscript_open] = ACTIONS(2377), + [sym__superscript_open] = ACTIONS(2377), + [sym__inline_note_start_token] = ACTIONS(2377), + [sym__strong_emphasis_open_star] = ACTIONS(2377), + [sym__strong_emphasis_open_underscore] = ACTIONS(2377), + [sym__emphasis_open_star] = ACTIONS(2377), + [sym__emphasis_open_underscore] = ACTIONS(2377), + [sym_inline_note_reference] = ACTIONS(2377), + [sym_html_element] = ACTIONS(2377), + [sym__pandoc_line_break] = ACTIONS(2377), }, [STATE(425)] = { - [anon_sym_COLON] = ACTIONS(2669), - [sym_entity_reference] = ACTIONS(2669), - [sym_numeric_character_reference] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_BANG_LBRACK] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [aux_sym_pandoc_str_token1] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2669), - [aux_sym__prose_punctuation_token1] = ACTIONS(2671), - [sym__line_ending] = ACTIONS(2669), - [sym__soft_line_ending] = ACTIONS(2669), - [sym__block_close] = ACTIONS(2669), - [sym__block_quote_start] = ACTIONS(2669), - [sym_atx_h1_marker] = ACTIONS(2669), - [sym_atx_h2_marker] = ACTIONS(2669), - [sym_atx_h3_marker] = ACTIONS(2669), - [sym_atx_h4_marker] = ACTIONS(2669), - [sym_atx_h5_marker] = ACTIONS(2669), - [sym_atx_h6_marker] = ACTIONS(2669), - [sym__thematic_break] = ACTIONS(2669), - [sym__list_marker_minus] = ACTIONS(2669), - [sym__list_marker_plus] = ACTIONS(2669), - [sym__list_marker_star] = ACTIONS(2669), - [sym__list_marker_parenthesis] = ACTIONS(2669), - [sym__list_marker_dot] = ACTIONS(2669), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_example] = ACTIONS(2669), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2669), - [sym__fenced_code_block_start_backtick] = ACTIONS(2669), - [sym_minus_metadata] = ACTIONS(2669), - [sym__pipe_table_start] = ACTIONS(2669), - [sym__fenced_div_start] = ACTIONS(2669), - [sym__fenced_div_end] = ACTIONS(2669), - [sym_ref_id_specifier] = ACTIONS(2669), - [sym__code_span_start] = ACTIONS(2669), - [sym__html_comment] = ACTIONS(2669), - [sym__autolink] = ACTIONS(2669), - [sym__highlight_span_start] = ACTIONS(2669), - [sym__insert_span_start] = ACTIONS(2669), - [sym__delete_span_start] = ACTIONS(2669), - [sym__edit_comment_span_start] = ACTIONS(2669), - [sym__single_quote_span_open] = ACTIONS(2669), - [sym__double_quote_span_open] = ACTIONS(2669), - [sym__shortcode_open_escaped] = ACTIONS(2669), - [sym__shortcode_open] = ACTIONS(2669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2669), - [sym__cite_author_in_text] = ACTIONS(2669), - [sym__cite_suppress_author] = ACTIONS(2669), - [sym__strikeout_open] = ACTIONS(2669), - [sym__subscript_open] = ACTIONS(2669), - [sym__superscript_open] = ACTIONS(2669), - [sym__inline_note_start_token] = ACTIONS(2669), - [sym__strong_emphasis_open_star] = ACTIONS(2669), - [sym__strong_emphasis_open_underscore] = ACTIONS(2669), - [sym__emphasis_open_star] = ACTIONS(2669), - [sym__emphasis_open_underscore] = ACTIONS(2669), - [sym_inline_note_reference] = ACTIONS(2669), - [sym_html_element] = ACTIONS(2669), - [sym__pandoc_line_break] = ACTIONS(2669), + [sym__atx_heading_content] = STATE(3027), + [sym__inlines] = STATE(3027), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(259), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(191), + [sym__eof] = ACTIONS(3063), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(426)] = { + [ts_builtin_sym_end] = ACTIONS(2383), + [anon_sym_COLON] = ACTIONS(2383), + [sym_entity_reference] = ACTIONS(2383), + [sym_numeric_character_reference] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_BANG_LBRACK] = ACTIONS(2383), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [aux_sym_pandoc_str_token1] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2383), + [sym__whitespace] = ACTIONS(2383), + [sym__line_ending] = ACTIONS(2383), + [sym__soft_line_ending] = ACTIONS(2383), + [sym__block_quote_start] = ACTIONS(2383), + [sym_atx_h1_marker] = ACTIONS(2383), + [sym_atx_h2_marker] = ACTIONS(2383), + [sym_atx_h3_marker] = ACTIONS(2383), + [sym_atx_h4_marker] = ACTIONS(2383), + [sym_atx_h5_marker] = ACTIONS(2383), + [sym_atx_h6_marker] = ACTIONS(2383), + [sym__thematic_break] = ACTIONS(2383), + [sym__list_marker_minus] = ACTIONS(2383), + [sym__list_marker_plus] = ACTIONS(2383), + [sym__list_marker_star] = ACTIONS(2383), + [sym__list_marker_parenthesis] = ACTIONS(2383), + [sym__list_marker_dot] = ACTIONS(2383), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2383), + [sym__list_marker_example] = ACTIONS(2383), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2383), + [sym__fenced_code_block_start_backtick] = ACTIONS(2383), + [sym_minus_metadata] = ACTIONS(2383), + [sym__pipe_table_start] = ACTIONS(2383), + [sym__fenced_div_start] = ACTIONS(2383), + [sym_ref_id_specifier] = ACTIONS(2383), + [sym__code_span_start] = ACTIONS(2383), + [sym__html_comment] = ACTIONS(2383), + [sym__autolink] = ACTIONS(2383), + [sym__highlight_span_start] = ACTIONS(2383), + [sym__insert_span_start] = ACTIONS(2383), + [sym__delete_span_start] = ACTIONS(2383), + [sym__edit_comment_span_start] = ACTIONS(2383), + [sym__single_quote_span_open] = ACTIONS(2383), + [sym__double_quote_span_open] = ACTIONS(2383), + [sym__shortcode_open_escaped] = ACTIONS(2383), + [sym__shortcode_open] = ACTIONS(2383), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2383), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2383), + [sym__cite_author_in_text] = ACTIONS(2383), + [sym__cite_suppress_author] = ACTIONS(2383), + [sym__strikeout_open] = ACTIONS(2383), + [sym__subscript_open] = ACTIONS(2383), + [sym__superscript_open] = ACTIONS(2383), + [sym__inline_note_start_token] = ACTIONS(2383), + [sym__strong_emphasis_open_star] = ACTIONS(2383), + [sym__strong_emphasis_open_underscore] = ACTIONS(2383), + [sym__emphasis_open_star] = ACTIONS(2383), + [sym__emphasis_open_underscore] = ACTIONS(2383), + [sym_inline_note_reference] = ACTIONS(2383), + [sym_html_element] = ACTIONS(2383), + [sym__pandoc_line_break] = ACTIONS(2383), + }, + [STATE(427)] = { + [anon_sym_COLON] = ACTIONS(2463), + [sym_entity_reference] = ACTIONS(2463), + [sym_numeric_character_reference] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_BANG_LBRACK] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(2465), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [aux_sym_pandoc_str_token1] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2463), + [sym__whitespace] = ACTIONS(2463), + [sym__line_ending] = ACTIONS(2463), + [sym__soft_line_ending] = ACTIONS(2463), + [sym__block_close] = ACTIONS(2463), + [sym__block_quote_start] = ACTIONS(2463), + [sym_atx_h1_marker] = ACTIONS(2463), + [sym_atx_h2_marker] = ACTIONS(2463), + [sym_atx_h3_marker] = ACTIONS(2463), + [sym_atx_h4_marker] = ACTIONS(2463), + [sym_atx_h5_marker] = ACTIONS(2463), + [sym_atx_h6_marker] = ACTIONS(2463), + [sym__thematic_break] = ACTIONS(2463), + [sym__list_marker_minus] = ACTIONS(2463), + [sym__list_marker_plus] = ACTIONS(2463), + [sym__list_marker_star] = ACTIONS(2463), + [sym__list_marker_parenthesis] = ACTIONS(2463), + [sym__list_marker_dot] = ACTIONS(2463), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2463), + [sym__list_marker_example] = ACTIONS(2463), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2463), + [sym__fenced_code_block_start_backtick] = ACTIONS(2463), + [sym_minus_metadata] = ACTIONS(2463), + [sym__pipe_table_start] = ACTIONS(2463), + [sym__fenced_div_start] = ACTIONS(2463), + [sym_ref_id_specifier] = ACTIONS(2463), + [sym__code_span_start] = ACTIONS(2463), + [sym__html_comment] = ACTIONS(2463), + [sym__autolink] = ACTIONS(2463), + [sym__highlight_span_start] = ACTIONS(2463), + [sym__insert_span_start] = ACTIONS(2463), + [sym__delete_span_start] = ACTIONS(2463), + [sym__edit_comment_span_start] = ACTIONS(2463), + [sym__single_quote_span_open] = ACTIONS(2463), + [sym__double_quote_span_open] = ACTIONS(2463), + [sym__shortcode_open_escaped] = ACTIONS(2463), + [sym__shortcode_open] = ACTIONS(2463), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2463), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2463), + [sym__cite_author_in_text] = ACTIONS(2463), + [sym__cite_suppress_author] = ACTIONS(2463), + [sym__strikeout_open] = ACTIONS(2463), + [sym__subscript_open] = ACTIONS(2463), + [sym__superscript_open] = ACTIONS(2463), + [sym__inline_note_start_token] = ACTIONS(2463), + [sym__strong_emphasis_open_star] = ACTIONS(2463), + [sym__strong_emphasis_open_underscore] = ACTIONS(2463), + [sym__emphasis_open_star] = ACTIONS(2463), + [sym__emphasis_open_underscore] = ACTIONS(2463), + [sym_inline_note_reference] = ACTIONS(2463), + [sym_html_element] = ACTIONS(2463), + [sym__pandoc_line_break] = ACTIONS(2463), + }, + [STATE(428)] = { + [sym_pandoc_paragraph] = STATE(343), + [sym__inlines] = STATE(3070), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__soft_line_break] = STATE(753), + [sym__inline_whitespace] = STATE(753), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(111), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(429)] = { + [ts_builtin_sym_end] = ACTIONS(2389), + [anon_sym_COLON] = ACTIONS(2389), + [sym_entity_reference] = ACTIONS(2389), + [sym_numeric_character_reference] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_BANG_LBRACK] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [aux_sym_pandoc_str_token1] = ACTIONS(2391), + [anon_sym_PIPE] = ACTIONS(2389), + [sym__whitespace] = ACTIONS(2389), + [sym__line_ending] = ACTIONS(2389), + [sym__soft_line_ending] = ACTIONS(2389), + [sym__block_quote_start] = ACTIONS(2389), + [sym_atx_h1_marker] = ACTIONS(2389), + [sym_atx_h2_marker] = ACTIONS(2389), + [sym_atx_h3_marker] = ACTIONS(2389), + [sym_atx_h4_marker] = ACTIONS(2389), + [sym_atx_h5_marker] = ACTIONS(2389), + [sym_atx_h6_marker] = ACTIONS(2389), + [sym__thematic_break] = ACTIONS(2389), + [sym__list_marker_minus] = ACTIONS(2389), + [sym__list_marker_plus] = ACTIONS(2389), + [sym__list_marker_star] = ACTIONS(2389), + [sym__list_marker_parenthesis] = ACTIONS(2389), + [sym__list_marker_dot] = ACTIONS(2389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2389), + [sym__list_marker_example] = ACTIONS(2389), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2389), + [sym__fenced_code_block_start_backtick] = ACTIONS(2389), + [sym_minus_metadata] = ACTIONS(2389), + [sym__pipe_table_start] = ACTIONS(2389), + [sym__fenced_div_start] = ACTIONS(2389), + [sym_ref_id_specifier] = ACTIONS(2389), + [sym__code_span_start] = ACTIONS(2389), + [sym__html_comment] = ACTIONS(2389), + [sym__autolink] = ACTIONS(2389), + [sym__highlight_span_start] = ACTIONS(2389), + [sym__insert_span_start] = ACTIONS(2389), + [sym__delete_span_start] = ACTIONS(2389), + [sym__edit_comment_span_start] = ACTIONS(2389), + [sym__single_quote_span_open] = ACTIONS(2389), + [sym__double_quote_span_open] = ACTIONS(2389), + [sym__shortcode_open_escaped] = ACTIONS(2389), + [sym__shortcode_open] = ACTIONS(2389), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2389), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2389), + [sym__cite_author_in_text] = ACTIONS(2389), + [sym__cite_suppress_author] = ACTIONS(2389), + [sym__strikeout_open] = ACTIONS(2389), + [sym__subscript_open] = ACTIONS(2389), + [sym__superscript_open] = ACTIONS(2389), + [sym__inline_note_start_token] = ACTIONS(2389), + [sym__strong_emphasis_open_star] = ACTIONS(2389), + [sym__strong_emphasis_open_underscore] = ACTIONS(2389), + [sym__emphasis_open_star] = ACTIONS(2389), + [sym__emphasis_open_underscore] = ACTIONS(2389), + [sym_inline_note_reference] = ACTIONS(2389), + [sym_html_element] = ACTIONS(2389), + [sym__pandoc_line_break] = ACTIONS(2389), + }, + [STATE(430)] = { + [ts_builtin_sym_end] = ACTIONS(2681), [anon_sym_COLON] = ACTIONS(2681), [sym_entity_reference] = ACTIONS(2681), [sym_numeric_character_reference] = ACTIONS(2681), @@ -58461,11 +59942,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2681), [aux_sym_pandoc_str_token1] = ACTIONS(2683), [anon_sym_PIPE] = ACTIONS(2681), - [aux_sym__prose_punctuation_token1] = ACTIONS(2683), + [sym__whitespace] = ACTIONS(2681), [sym__line_ending] = ACTIONS(2681), [sym__soft_line_ending] = ACTIONS(2681), - [sym__block_close] = ACTIONS(2681), - [sym_block_continuation] = ACTIONS(3445), [sym__block_quote_start] = ACTIONS(2681), [sym_atx_h1_marker] = ACTIONS(2681), [sym_atx_h2_marker] = ACTIONS(2681), @@ -58518,2841 +59997,677 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2681), [sym__pandoc_line_break] = ACTIONS(2681), }, - [STATE(427)] = { - [anon_sym_COLON] = ACTIONS(2675), - [sym_entity_reference] = ACTIONS(2675), - [sym_numeric_character_reference] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_BANG_LBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [aux_sym_pandoc_str_token1] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2675), - [aux_sym__prose_punctuation_token1] = ACTIONS(2677), - [sym__line_ending] = ACTIONS(2675), - [sym__soft_line_ending] = ACTIONS(2675), - [sym__block_close] = ACTIONS(2675), - [sym__block_quote_start] = ACTIONS(2675), - [sym_atx_h1_marker] = ACTIONS(2675), - [sym_atx_h2_marker] = ACTIONS(2675), - [sym_atx_h3_marker] = ACTIONS(2675), - [sym_atx_h4_marker] = ACTIONS(2675), - [sym_atx_h5_marker] = ACTIONS(2675), - [sym_atx_h6_marker] = ACTIONS(2675), - [sym__thematic_break] = ACTIONS(2675), - [sym__list_marker_minus] = ACTIONS(2675), - [sym__list_marker_plus] = ACTIONS(2675), - [sym__list_marker_star] = ACTIONS(2675), - [sym__list_marker_parenthesis] = ACTIONS(2675), - [sym__list_marker_dot] = ACTIONS(2675), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_example] = ACTIONS(2675), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2675), - [sym__fenced_code_block_start_backtick] = ACTIONS(2675), - [sym_minus_metadata] = ACTIONS(2675), - [sym__pipe_table_start] = ACTIONS(2675), - [sym__fenced_div_start] = ACTIONS(2675), - [sym__fenced_div_end] = ACTIONS(2675), - [sym_ref_id_specifier] = ACTIONS(2675), - [sym__code_span_start] = ACTIONS(2675), - [sym__html_comment] = ACTIONS(2675), - [sym__autolink] = ACTIONS(2675), - [sym__highlight_span_start] = ACTIONS(2675), - [sym__insert_span_start] = ACTIONS(2675), - [sym__delete_span_start] = ACTIONS(2675), - [sym__edit_comment_span_start] = ACTIONS(2675), - [sym__single_quote_span_open] = ACTIONS(2675), - [sym__double_quote_span_open] = ACTIONS(2675), - [sym__shortcode_open_escaped] = ACTIONS(2675), - [sym__shortcode_open] = ACTIONS(2675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2675), - [sym__cite_author_in_text] = ACTIONS(2675), - [sym__cite_suppress_author] = ACTIONS(2675), - [sym__strikeout_open] = ACTIONS(2675), - [sym__subscript_open] = ACTIONS(2675), - [sym__superscript_open] = ACTIONS(2675), - [sym__inline_note_start_token] = ACTIONS(2675), - [sym__strong_emphasis_open_star] = ACTIONS(2675), - [sym__strong_emphasis_open_underscore] = ACTIONS(2675), - [sym__emphasis_open_star] = ACTIONS(2675), - [sym__emphasis_open_underscore] = ACTIONS(2675), - [sym_inline_note_reference] = ACTIONS(2675), - [sym_html_element] = ACTIONS(2675), - [sym__pandoc_line_break] = ACTIONS(2675), - }, - [STATE(428)] = { - [sym__inlines] = STATE(2619), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(777), - [sym__inline_whitespace] = STATE(777), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3447), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), - }, - [STATE(429)] = { - [anon_sym_COLON] = ACTIONS(2687), - [sym_entity_reference] = ACTIONS(2687), - [sym_numeric_character_reference] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_BANG_LBRACK] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [aux_sym_pandoc_str_token1] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2687), - [aux_sym__prose_punctuation_token1] = ACTIONS(2689), - [sym__line_ending] = ACTIONS(2687), - [sym__soft_line_ending] = ACTIONS(2687), - [sym__block_close] = ACTIONS(2687), - [sym_block_continuation] = ACTIONS(3449), - [sym__block_quote_start] = ACTIONS(2687), - [sym_atx_h1_marker] = ACTIONS(2687), - [sym_atx_h2_marker] = ACTIONS(2687), - [sym_atx_h3_marker] = ACTIONS(2687), - [sym_atx_h4_marker] = ACTIONS(2687), - [sym_atx_h5_marker] = ACTIONS(2687), - [sym_atx_h6_marker] = ACTIONS(2687), - [sym__thematic_break] = ACTIONS(2687), - [sym__list_marker_minus] = ACTIONS(2687), - [sym__list_marker_plus] = ACTIONS(2687), - [sym__list_marker_star] = ACTIONS(2687), - [sym__list_marker_parenthesis] = ACTIONS(2687), - [sym__list_marker_dot] = ACTIONS(2687), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_example] = ACTIONS(2687), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2687), - [sym__fenced_code_block_start_backtick] = ACTIONS(2687), - [sym_minus_metadata] = ACTIONS(2687), - [sym__pipe_table_start] = ACTIONS(2687), - [sym__fenced_div_start] = ACTIONS(2687), - [sym_ref_id_specifier] = ACTIONS(2687), - [sym__code_span_start] = ACTIONS(2687), - [sym__html_comment] = ACTIONS(2687), - [sym__autolink] = ACTIONS(2687), - [sym__highlight_span_start] = ACTIONS(2687), - [sym__insert_span_start] = ACTIONS(2687), - [sym__delete_span_start] = ACTIONS(2687), - [sym__edit_comment_span_start] = ACTIONS(2687), - [sym__single_quote_span_open] = ACTIONS(2687), - [sym__double_quote_span_open] = ACTIONS(2687), - [sym__shortcode_open_escaped] = ACTIONS(2687), - [sym__shortcode_open] = ACTIONS(2687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2687), - [sym__cite_author_in_text] = ACTIONS(2687), - [sym__cite_suppress_author] = ACTIONS(2687), - [sym__strikeout_open] = ACTIONS(2687), - [sym__subscript_open] = ACTIONS(2687), - [sym__superscript_open] = ACTIONS(2687), - [sym__inline_note_start_token] = ACTIONS(2687), - [sym__strong_emphasis_open_star] = ACTIONS(2687), - [sym__strong_emphasis_open_underscore] = ACTIONS(2687), - [sym__emphasis_open_star] = ACTIONS(2687), - [sym__emphasis_open_underscore] = ACTIONS(2687), - [sym_inline_note_reference] = ACTIONS(2687), - [sym_html_element] = ACTIONS(2687), - [sym__pandoc_line_break] = ACTIONS(2687), - }, - [STATE(430)] = { - [anon_sym_COLON] = ACTIONS(2681), - [sym_entity_reference] = ACTIONS(2681), - [sym_numeric_character_reference] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_BANG_LBRACK] = ACTIONS(2681), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [aux_sym_pandoc_str_token1] = ACTIONS(2683), - [anon_sym_PIPE] = ACTIONS(2681), - [aux_sym__prose_punctuation_token1] = ACTIONS(2683), - [sym__line_ending] = ACTIONS(2681), - [sym__soft_line_ending] = ACTIONS(2681), - [sym__block_close] = ACTIONS(2681), - [sym__block_quote_start] = ACTIONS(2681), - [sym_atx_h1_marker] = ACTIONS(2681), - [sym_atx_h2_marker] = ACTIONS(2681), - [sym_atx_h3_marker] = ACTIONS(2681), - [sym_atx_h4_marker] = ACTIONS(2681), - [sym_atx_h5_marker] = ACTIONS(2681), - [sym_atx_h6_marker] = ACTIONS(2681), - [sym__thematic_break] = ACTIONS(2681), - [sym__list_marker_minus] = ACTIONS(2681), - [sym__list_marker_plus] = ACTIONS(2681), - [sym__list_marker_star] = ACTIONS(2681), - [sym__list_marker_parenthesis] = ACTIONS(2681), - [sym__list_marker_dot] = ACTIONS(2681), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_example] = ACTIONS(2681), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2681), - [sym__fenced_code_block_start_backtick] = ACTIONS(2681), - [sym_minus_metadata] = ACTIONS(2681), - [sym__pipe_table_start] = ACTIONS(2681), - [sym__fenced_div_start] = ACTIONS(2681), - [sym__fenced_div_end] = ACTIONS(2681), - [sym_ref_id_specifier] = ACTIONS(2681), - [sym__code_span_start] = ACTIONS(2681), - [sym__html_comment] = ACTIONS(2681), - [sym__autolink] = ACTIONS(2681), - [sym__highlight_span_start] = ACTIONS(2681), - [sym__insert_span_start] = ACTIONS(2681), - [sym__delete_span_start] = ACTIONS(2681), - [sym__edit_comment_span_start] = ACTIONS(2681), - [sym__single_quote_span_open] = ACTIONS(2681), - [sym__double_quote_span_open] = ACTIONS(2681), - [sym__shortcode_open_escaped] = ACTIONS(2681), - [sym__shortcode_open] = ACTIONS(2681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2681), - [sym__cite_author_in_text] = ACTIONS(2681), - [sym__cite_suppress_author] = ACTIONS(2681), - [sym__strikeout_open] = ACTIONS(2681), - [sym__subscript_open] = ACTIONS(2681), - [sym__superscript_open] = ACTIONS(2681), - [sym__inline_note_start_token] = ACTIONS(2681), - [sym__strong_emphasis_open_star] = ACTIONS(2681), - [sym__strong_emphasis_open_underscore] = ACTIONS(2681), - [sym__emphasis_open_star] = ACTIONS(2681), - [sym__emphasis_open_underscore] = ACTIONS(2681), - [sym_inline_note_reference] = ACTIONS(2681), - [sym_html_element] = ACTIONS(2681), - [sym__pandoc_line_break] = ACTIONS(2681), - }, - [STATE(431)] = { - [anon_sym_COLON] = ACTIONS(2607), - [sym_entity_reference] = ACTIONS(2607), - [sym_numeric_character_reference] = ACTIONS(2607), - [anon_sym_LBRACK] = ACTIONS(2607), - [anon_sym_BANG_LBRACK] = ACTIONS(2607), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [aux_sym_pandoc_str_token1] = ACTIONS(2609), - [anon_sym_PIPE] = ACTIONS(2607), - [aux_sym__prose_punctuation_token1] = ACTIONS(2609), - [sym__line_ending] = ACTIONS(2607), - [sym__soft_line_ending] = ACTIONS(2607), - [sym__block_close] = ACTIONS(2607), - [sym_block_continuation] = ACTIONS(3451), - [sym__block_quote_start] = ACTIONS(2607), - [sym_atx_h1_marker] = ACTIONS(2607), - [sym_atx_h2_marker] = ACTIONS(2607), - [sym_atx_h3_marker] = ACTIONS(2607), - [sym_atx_h4_marker] = ACTIONS(2607), - [sym_atx_h5_marker] = ACTIONS(2607), - [sym_atx_h6_marker] = ACTIONS(2607), - [sym__thematic_break] = ACTIONS(2607), - [sym__list_marker_minus] = ACTIONS(2607), - [sym__list_marker_plus] = ACTIONS(2607), - [sym__list_marker_star] = ACTIONS(2607), - [sym__list_marker_parenthesis] = ACTIONS(2607), - [sym__list_marker_dot] = ACTIONS(2607), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2607), - [sym__list_marker_example] = ACTIONS(2607), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2607), - [sym__fenced_code_block_start_backtick] = ACTIONS(2607), - [sym_minus_metadata] = ACTIONS(2607), - [sym__pipe_table_start] = ACTIONS(2607), - [sym__fenced_div_start] = ACTIONS(2607), - [sym_ref_id_specifier] = ACTIONS(2607), - [sym__code_span_start] = ACTIONS(2607), - [sym__html_comment] = ACTIONS(2607), - [sym__autolink] = ACTIONS(2607), - [sym__highlight_span_start] = ACTIONS(2607), - [sym__insert_span_start] = ACTIONS(2607), - [sym__delete_span_start] = ACTIONS(2607), - [sym__edit_comment_span_start] = ACTIONS(2607), - [sym__single_quote_span_open] = ACTIONS(2607), - [sym__double_quote_span_open] = ACTIONS(2607), - [sym__shortcode_open_escaped] = ACTIONS(2607), - [sym__shortcode_open] = ACTIONS(2607), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2607), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2607), - [sym__cite_author_in_text] = ACTIONS(2607), - [sym__cite_suppress_author] = ACTIONS(2607), - [sym__strikeout_open] = ACTIONS(2607), - [sym__subscript_open] = ACTIONS(2607), - [sym__superscript_open] = ACTIONS(2607), - [sym__inline_note_start_token] = ACTIONS(2607), - [sym__strong_emphasis_open_star] = ACTIONS(2607), - [sym__strong_emphasis_open_underscore] = ACTIONS(2607), - [sym__emphasis_open_star] = ACTIONS(2607), - [sym__emphasis_open_underscore] = ACTIONS(2607), - [sym_inline_note_reference] = ACTIONS(2607), - [sym_html_element] = ACTIONS(2607), - [sym__pandoc_line_break] = ACTIONS(2607), + [STATE(431)] = { + [ts_builtin_sym_end] = ACTIONS(2395), + [anon_sym_COLON] = ACTIONS(2395), + [sym_entity_reference] = ACTIONS(2395), + [sym_numeric_character_reference] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_BANG_LBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [aux_sym_pandoc_str_token1] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2395), + [sym__whitespace] = ACTIONS(2395), + [sym__line_ending] = ACTIONS(2395), + [sym__soft_line_ending] = ACTIONS(2395), + [sym__block_quote_start] = ACTIONS(2395), + [sym_atx_h1_marker] = ACTIONS(2395), + [sym_atx_h2_marker] = ACTIONS(2395), + [sym_atx_h3_marker] = ACTIONS(2395), + [sym_atx_h4_marker] = ACTIONS(2395), + [sym_atx_h5_marker] = ACTIONS(2395), + [sym_atx_h6_marker] = ACTIONS(2395), + [sym__thematic_break] = ACTIONS(2395), + [sym__list_marker_minus] = ACTIONS(2395), + [sym__list_marker_plus] = ACTIONS(2395), + [sym__list_marker_star] = ACTIONS(2395), + [sym__list_marker_parenthesis] = ACTIONS(2395), + [sym__list_marker_dot] = ACTIONS(2395), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2395), + [sym__list_marker_example] = ACTIONS(2395), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2395), + [sym__fenced_code_block_start_backtick] = ACTIONS(2395), + [sym_minus_metadata] = ACTIONS(2395), + [sym__pipe_table_start] = ACTIONS(2395), + [sym__fenced_div_start] = ACTIONS(2395), + [sym_ref_id_specifier] = ACTIONS(2395), + [sym__code_span_start] = ACTIONS(2395), + [sym__html_comment] = ACTIONS(2395), + [sym__autolink] = ACTIONS(2395), + [sym__highlight_span_start] = ACTIONS(2395), + [sym__insert_span_start] = ACTIONS(2395), + [sym__delete_span_start] = ACTIONS(2395), + [sym__edit_comment_span_start] = ACTIONS(2395), + [sym__single_quote_span_open] = ACTIONS(2395), + [sym__double_quote_span_open] = ACTIONS(2395), + [sym__shortcode_open_escaped] = ACTIONS(2395), + [sym__shortcode_open] = ACTIONS(2395), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2395), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2395), + [sym__cite_author_in_text] = ACTIONS(2395), + [sym__cite_suppress_author] = ACTIONS(2395), + [sym__strikeout_open] = ACTIONS(2395), + [sym__subscript_open] = ACTIONS(2395), + [sym__superscript_open] = ACTIONS(2395), + [sym__inline_note_start_token] = ACTIONS(2395), + [sym__strong_emphasis_open_star] = ACTIONS(2395), + [sym__strong_emphasis_open_underscore] = ACTIONS(2395), + [sym__emphasis_open_star] = ACTIONS(2395), + [sym__emphasis_open_underscore] = ACTIONS(2395), + [sym_inline_note_reference] = ACTIONS(2395), + [sym_html_element] = ACTIONS(2395), + [sym__pandoc_line_break] = ACTIONS(2395), }, [STATE(432)] = { - [sym__inlines] = STATE(2551), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(785), - [sym__inline_whitespace] = STATE(785), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3453), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), + [ts_builtin_sym_end] = ACTIONS(2401), + [anon_sym_COLON] = ACTIONS(2401), + [sym_entity_reference] = ACTIONS(2401), + [sym_numeric_character_reference] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_BANG_LBRACK] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [aux_sym_pandoc_str_token1] = ACTIONS(2403), + [anon_sym_PIPE] = ACTIONS(2401), + [sym__whitespace] = ACTIONS(2401), + [sym__line_ending] = ACTIONS(2401), + [sym__soft_line_ending] = ACTIONS(2401), + [sym__block_quote_start] = ACTIONS(2401), + [sym_atx_h1_marker] = ACTIONS(2401), + [sym_atx_h2_marker] = ACTIONS(2401), + [sym_atx_h3_marker] = ACTIONS(2401), + [sym_atx_h4_marker] = ACTIONS(2401), + [sym_atx_h5_marker] = ACTIONS(2401), + [sym_atx_h6_marker] = ACTIONS(2401), + [sym__thematic_break] = ACTIONS(2401), + [sym__list_marker_minus] = ACTIONS(2401), + [sym__list_marker_plus] = ACTIONS(2401), + [sym__list_marker_star] = ACTIONS(2401), + [sym__list_marker_parenthesis] = ACTIONS(2401), + [sym__list_marker_dot] = ACTIONS(2401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2401), + [sym__list_marker_example] = ACTIONS(2401), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2401), + [sym__fenced_code_block_start_backtick] = ACTIONS(2401), + [sym_minus_metadata] = ACTIONS(2401), + [sym__pipe_table_start] = ACTIONS(2401), + [sym__fenced_div_start] = ACTIONS(2401), + [sym_ref_id_specifier] = ACTIONS(2401), + [sym__code_span_start] = ACTIONS(2401), + [sym__html_comment] = ACTIONS(2401), + [sym__autolink] = ACTIONS(2401), + [sym__highlight_span_start] = ACTIONS(2401), + [sym__insert_span_start] = ACTIONS(2401), + [sym__delete_span_start] = ACTIONS(2401), + [sym__edit_comment_span_start] = ACTIONS(2401), + [sym__single_quote_span_open] = ACTIONS(2401), + [sym__double_quote_span_open] = ACTIONS(2401), + [sym__shortcode_open_escaped] = ACTIONS(2401), + [sym__shortcode_open] = ACTIONS(2401), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2401), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2401), + [sym__cite_author_in_text] = ACTIONS(2401), + [sym__cite_suppress_author] = ACTIONS(2401), + [sym__strikeout_open] = ACTIONS(2401), + [sym__subscript_open] = ACTIONS(2401), + [sym__superscript_open] = ACTIONS(2401), + [sym__inline_note_start_token] = ACTIONS(2401), + [sym__strong_emphasis_open_star] = ACTIONS(2401), + [sym__strong_emphasis_open_underscore] = ACTIONS(2401), + [sym__emphasis_open_star] = ACTIONS(2401), + [sym__emphasis_open_underscore] = ACTIONS(2401), + [sym_inline_note_reference] = ACTIONS(2401), + [sym_html_element] = ACTIONS(2401), + [sym__pandoc_line_break] = ACTIONS(2401), }, [STATE(433)] = { - [sym__inlines] = STATE(2582), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(793), - [sym__inline_whitespace] = STATE(793), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3455), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), + [ts_builtin_sym_end] = ACTIONS(2407), + [anon_sym_COLON] = ACTIONS(2407), + [sym_entity_reference] = ACTIONS(2407), + [sym_numeric_character_reference] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_BANG_LBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [aux_sym_pandoc_str_token1] = ACTIONS(2409), + [anon_sym_PIPE] = ACTIONS(2407), + [sym__whitespace] = ACTIONS(2407), + [sym__line_ending] = ACTIONS(2407), + [sym__soft_line_ending] = ACTIONS(2407), + [sym__block_quote_start] = ACTIONS(2407), + [sym_atx_h1_marker] = ACTIONS(2407), + [sym_atx_h2_marker] = ACTIONS(2407), + [sym_atx_h3_marker] = ACTIONS(2407), + [sym_atx_h4_marker] = ACTIONS(2407), + [sym_atx_h5_marker] = ACTIONS(2407), + [sym_atx_h6_marker] = ACTIONS(2407), + [sym__thematic_break] = ACTIONS(2407), + [sym__list_marker_minus] = ACTIONS(2407), + [sym__list_marker_plus] = ACTIONS(2407), + [sym__list_marker_star] = ACTIONS(2407), + [sym__list_marker_parenthesis] = ACTIONS(2407), + [sym__list_marker_dot] = ACTIONS(2407), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2407), + [sym__list_marker_example] = ACTIONS(2407), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2407), + [sym__fenced_code_block_start_backtick] = ACTIONS(2407), + [sym_minus_metadata] = ACTIONS(2407), + [sym__pipe_table_start] = ACTIONS(2407), + [sym__fenced_div_start] = ACTIONS(2407), + [sym_ref_id_specifier] = ACTIONS(2407), + [sym__code_span_start] = ACTIONS(2407), + [sym__html_comment] = ACTIONS(2407), + [sym__autolink] = ACTIONS(2407), + [sym__highlight_span_start] = ACTIONS(2407), + [sym__insert_span_start] = ACTIONS(2407), + [sym__delete_span_start] = ACTIONS(2407), + [sym__edit_comment_span_start] = ACTIONS(2407), + [sym__single_quote_span_open] = ACTIONS(2407), + [sym__double_quote_span_open] = ACTIONS(2407), + [sym__shortcode_open_escaped] = ACTIONS(2407), + [sym__shortcode_open] = ACTIONS(2407), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2407), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2407), + [sym__cite_author_in_text] = ACTIONS(2407), + [sym__cite_suppress_author] = ACTIONS(2407), + [sym__strikeout_open] = ACTIONS(2407), + [sym__subscript_open] = ACTIONS(2407), + [sym__superscript_open] = ACTIONS(2407), + [sym__inline_note_start_token] = ACTIONS(2407), + [sym__strong_emphasis_open_star] = ACTIONS(2407), + [sym__strong_emphasis_open_underscore] = ACTIONS(2407), + [sym__emphasis_open_star] = ACTIONS(2407), + [sym__emphasis_open_underscore] = ACTIONS(2407), + [sym_inline_note_reference] = ACTIONS(2407), + [sym_html_element] = ACTIONS(2407), + [sym__pandoc_line_break] = ACTIONS(2407), }, [STATE(434)] = { - [sym__inlines] = STATE(2556), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(801), - [sym__inline_whitespace] = STATE(801), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3457), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), + [ts_builtin_sym_end] = ACTIONS(2761), + [anon_sym_COLON] = ACTIONS(2761), + [sym_entity_reference] = ACTIONS(2761), + [sym_numeric_character_reference] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_BANG_LBRACK] = ACTIONS(2761), + [anon_sym_DOLLAR] = ACTIONS(2763), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2761), + [aux_sym_pandoc_str_token1] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(2761), + [sym__whitespace] = ACTIONS(2761), + [sym__line_ending] = ACTIONS(2761), + [sym__soft_line_ending] = ACTIONS(2761), + [sym__block_quote_start] = ACTIONS(2761), + [sym_atx_h1_marker] = ACTIONS(2761), + [sym_atx_h2_marker] = ACTIONS(2761), + [sym_atx_h3_marker] = ACTIONS(2761), + [sym_atx_h4_marker] = ACTIONS(2761), + [sym_atx_h5_marker] = ACTIONS(2761), + [sym_atx_h6_marker] = ACTIONS(2761), + [sym__thematic_break] = ACTIONS(2761), + [sym__list_marker_minus] = ACTIONS(2761), + [sym__list_marker_plus] = ACTIONS(2761), + [sym__list_marker_star] = ACTIONS(2761), + [sym__list_marker_parenthesis] = ACTIONS(2761), + [sym__list_marker_dot] = ACTIONS(2761), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2761), + [sym__list_marker_example] = ACTIONS(2761), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2761), + [sym__fenced_code_block_start_backtick] = ACTIONS(2761), + [sym_minus_metadata] = ACTIONS(2761), + [sym__pipe_table_start] = ACTIONS(2761), + [sym__fenced_div_start] = ACTIONS(2761), + [sym_ref_id_specifier] = ACTIONS(2761), + [sym__code_span_start] = ACTIONS(2761), + [sym__html_comment] = ACTIONS(2761), + [sym__autolink] = ACTIONS(2761), + [sym__highlight_span_start] = ACTIONS(2761), + [sym__insert_span_start] = ACTIONS(2761), + [sym__delete_span_start] = ACTIONS(2761), + [sym__edit_comment_span_start] = ACTIONS(2761), + [sym__single_quote_span_open] = ACTIONS(2761), + [sym__double_quote_span_open] = ACTIONS(2761), + [sym__shortcode_open_escaped] = ACTIONS(2761), + [sym__shortcode_open] = ACTIONS(2761), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2761), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2761), + [sym__cite_author_in_text] = ACTIONS(2761), + [sym__cite_suppress_author] = ACTIONS(2761), + [sym__strikeout_open] = ACTIONS(2761), + [sym__subscript_open] = ACTIONS(2761), + [sym__superscript_open] = ACTIONS(2761), + [sym__inline_note_start_token] = ACTIONS(2761), + [sym__strong_emphasis_open_star] = ACTIONS(2761), + [sym__strong_emphasis_open_underscore] = ACTIONS(2761), + [sym__emphasis_open_star] = ACTIONS(2761), + [sym__emphasis_open_underscore] = ACTIONS(2761), + [sym_inline_note_reference] = ACTIONS(2761), + [sym_html_element] = ACTIONS(2761), + [sym__pandoc_line_break] = ACTIONS(2761), }, [STATE(435)] = { - [sym__inlines] = STATE(2580), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(809), - [sym__inline_whitespace] = STATE(809), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3459), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), + [ts_builtin_sym_end] = ACTIONS(2765), + [anon_sym_COLON] = ACTIONS(2765), + [sym_entity_reference] = ACTIONS(2765), + [sym_numeric_character_reference] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_BANG_LBRACK] = ACTIONS(2765), + [anon_sym_DOLLAR] = ACTIONS(2767), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2765), + [aux_sym_pandoc_str_token1] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2765), + [sym__whitespace] = ACTIONS(2765), + [sym__line_ending] = ACTIONS(2765), + [sym__soft_line_ending] = ACTIONS(2765), + [sym__block_quote_start] = ACTIONS(2765), + [sym_atx_h1_marker] = ACTIONS(2765), + [sym_atx_h2_marker] = ACTIONS(2765), + [sym_atx_h3_marker] = ACTIONS(2765), + [sym_atx_h4_marker] = ACTIONS(2765), + [sym_atx_h5_marker] = ACTIONS(2765), + [sym_atx_h6_marker] = ACTIONS(2765), + [sym__thematic_break] = ACTIONS(2765), + [sym__list_marker_minus] = ACTIONS(2765), + [sym__list_marker_plus] = ACTIONS(2765), + [sym__list_marker_star] = ACTIONS(2765), + [sym__list_marker_parenthesis] = ACTIONS(2765), + [sym__list_marker_dot] = ACTIONS(2765), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2765), + [sym__list_marker_example] = ACTIONS(2765), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2765), + [sym__fenced_code_block_start_backtick] = ACTIONS(2765), + [sym_minus_metadata] = ACTIONS(2765), + [sym__pipe_table_start] = ACTIONS(2765), + [sym__fenced_div_start] = ACTIONS(2765), + [sym_ref_id_specifier] = ACTIONS(2765), + [sym__code_span_start] = ACTIONS(2765), + [sym__html_comment] = ACTIONS(2765), + [sym__autolink] = ACTIONS(2765), + [sym__highlight_span_start] = ACTIONS(2765), + [sym__insert_span_start] = ACTIONS(2765), + [sym__delete_span_start] = ACTIONS(2765), + [sym__edit_comment_span_start] = ACTIONS(2765), + [sym__single_quote_span_open] = ACTIONS(2765), + [sym__double_quote_span_open] = ACTIONS(2765), + [sym__shortcode_open_escaped] = ACTIONS(2765), + [sym__shortcode_open] = ACTIONS(2765), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2765), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2765), + [sym__cite_author_in_text] = ACTIONS(2765), + [sym__cite_suppress_author] = ACTIONS(2765), + [sym__strikeout_open] = ACTIONS(2765), + [sym__subscript_open] = ACTIONS(2765), + [sym__superscript_open] = ACTIONS(2765), + [sym__inline_note_start_token] = ACTIONS(2765), + [sym__strong_emphasis_open_star] = ACTIONS(2765), + [sym__strong_emphasis_open_underscore] = ACTIONS(2765), + [sym__emphasis_open_star] = ACTIONS(2765), + [sym__emphasis_open_underscore] = ACTIONS(2765), + [sym_inline_note_reference] = ACTIONS(2765), + [sym_html_element] = ACTIONS(2765), + [sym__pandoc_line_break] = ACTIONS(2765), }, [STATE(436)] = { - [sym__inlines] = STATE(2606), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(817), - [sym__inline_whitespace] = STATE(817), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3461), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), + [sym__inlines] = STATE(3768), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(666), + [sym__inline_whitespace] = STATE(666), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3067), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, [STATE(437)] = { - [sym__inlines] = STATE(2613), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(825), - [sym__inline_whitespace] = STATE(825), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3463), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), + [sym__inlines] = STATE(3780), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(667), + [sym__inline_whitespace] = STATE(667), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3071), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, [STATE(438)] = { - [sym__inlines] = STATE(2542), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(833), - [sym__inline_whitespace] = STATE(833), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3465), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), + [sym__inlines] = STATE(3784), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(668), + [sym__inline_whitespace] = STATE(668), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3075), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, [STATE(439)] = { - [sym__inlines] = STATE(2547), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(841), - [sym__inline_whitespace] = STATE(841), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3467), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), + [sym__inlines] = STATE(3786), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(669), + [sym__inline_whitespace] = STATE(669), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3079), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, [STATE(440)] = { - [sym__inlines] = STATE(2559), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(849), - [sym__inline_whitespace] = STATE(849), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3469), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), + [ts_builtin_sym_end] = ACTIONS(2769), + [anon_sym_COLON] = ACTIONS(2769), + [sym_entity_reference] = ACTIONS(2769), + [sym_numeric_character_reference] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_BANG_LBRACK] = ACTIONS(2769), + [anon_sym_DOLLAR] = ACTIONS(2771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2769), + [aux_sym_pandoc_str_token1] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2769), + [sym__whitespace] = ACTIONS(2769), + [sym__line_ending] = ACTIONS(2769), + [sym__soft_line_ending] = ACTIONS(2769), + [sym__block_quote_start] = ACTIONS(2769), + [sym_atx_h1_marker] = ACTIONS(2769), + [sym_atx_h2_marker] = ACTIONS(2769), + [sym_atx_h3_marker] = ACTIONS(2769), + [sym_atx_h4_marker] = ACTIONS(2769), + [sym_atx_h5_marker] = ACTIONS(2769), + [sym_atx_h6_marker] = ACTIONS(2769), + [sym__thematic_break] = ACTIONS(2769), + [sym__list_marker_minus] = ACTIONS(2769), + [sym__list_marker_plus] = ACTIONS(2769), + [sym__list_marker_star] = ACTIONS(2769), + [sym__list_marker_parenthesis] = ACTIONS(2769), + [sym__list_marker_dot] = ACTIONS(2769), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2769), + [sym__list_marker_example] = ACTIONS(2769), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2769), + [sym__fenced_code_block_start_backtick] = ACTIONS(2769), + [sym_minus_metadata] = ACTIONS(2769), + [sym__pipe_table_start] = ACTIONS(2769), + [sym__fenced_div_start] = ACTIONS(2769), + [sym_ref_id_specifier] = ACTIONS(2769), + [sym__code_span_start] = ACTIONS(2769), + [sym__html_comment] = ACTIONS(2769), + [sym__autolink] = ACTIONS(2769), + [sym__highlight_span_start] = ACTIONS(2769), + [sym__insert_span_start] = ACTIONS(2769), + [sym__delete_span_start] = ACTIONS(2769), + [sym__edit_comment_span_start] = ACTIONS(2769), + [sym__single_quote_span_open] = ACTIONS(2769), + [sym__double_quote_span_open] = ACTIONS(2769), + [sym__shortcode_open_escaped] = ACTIONS(2769), + [sym__shortcode_open] = ACTIONS(2769), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2769), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2769), + [sym__cite_author_in_text] = ACTIONS(2769), + [sym__cite_suppress_author] = ACTIONS(2769), + [sym__strikeout_open] = ACTIONS(2769), + [sym__subscript_open] = ACTIONS(2769), + [sym__superscript_open] = ACTIONS(2769), + [sym__inline_note_start_token] = ACTIONS(2769), + [sym__strong_emphasis_open_star] = ACTIONS(2769), + [sym__strong_emphasis_open_underscore] = ACTIONS(2769), + [sym__emphasis_open_star] = ACTIONS(2769), + [sym__emphasis_open_underscore] = ACTIONS(2769), + [sym_inline_note_reference] = ACTIONS(2769), + [sym_html_element] = ACTIONS(2769), + [sym__pandoc_line_break] = ACTIONS(2769), }, [STATE(441)] = { - [sym__inlines] = STATE(2564), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(857), - [sym__inline_whitespace] = STATE(857), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3471), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), - }, - [STATE(442)] = { - [sym__inlines] = STATE(2571), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(865), - [sym__inline_whitespace] = STATE(865), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3473), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), - }, - [STATE(443)] = { - [sym__inlines] = STATE(2578), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(873), - [sym__inline_whitespace] = STATE(873), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3475), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), - }, - [STATE(444)] = { - [sym__inlines] = STATE(2586), - [sym_pandoc_span] = STATE(627), - [sym_pandoc_image] = STATE(627), - [sym_pandoc_math] = STATE(627), - [sym_pandoc_display_math] = STATE(627), - [sym_pandoc_code_span] = STATE(627), - [sym_pandoc_single_quote] = STATE(627), - [sym_pandoc_double_quote] = STATE(627), - [sym_insert] = STATE(627), - [sym_delete] = STATE(627), - [sym_edit_comment] = STATE(627), - [sym_highlight] = STATE(627), - [sym__pandoc_attr_specifier] = STATE(627), - [sym__line] = STATE(2576), - [sym__inline_element] = STATE(627), - [sym_shortcode_escaped] = STATE(627), - [sym_shortcode] = STATE(627), - [sym_citation] = STATE(627), - [sym_inline_note] = STATE(627), - [sym_pandoc_superscript] = STATE(627), - [sym_pandoc_subscript] = STATE(627), - [sym_pandoc_strikeout] = STATE(627), - [sym_pandoc_emph] = STATE(627), - [sym_pandoc_strong] = STATE(627), - [sym_pandoc_str] = STATE(627), - [sym__prose_punctuation] = STATE(627), - [sym__soft_line_break] = STATE(795), - [sym__inline_whitespace] = STATE(795), - [sym_entity_reference] = ACTIONS(3093), - [sym_numeric_character_reference] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3097), - [anon_sym_DOLLAR] = ACTIONS(3099), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3103), - [aux_sym_pandoc_str_token1] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [sym__whitespace] = ACTIONS(3477), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3093), - [sym__autolink] = ACTIONS(3093), - [sym__highlight_span_start] = ACTIONS(3115), - [sym__insert_span_start] = ACTIONS(3117), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3121), - [sym__single_quote_span_open] = ACTIONS(3123), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3127), - [sym__shortcode_open] = ACTIONS(3129), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3133), - [sym__cite_author_in_text] = ACTIONS(3135), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3139), - [sym__subscript_open] = ACTIONS(3141), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3145), - [sym__strong_emphasis_open_star] = ACTIONS(3147), - [sym__strong_emphasis_open_underscore] = ACTIONS(3149), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3153), - [sym_inline_note_reference] = ACTIONS(3093), - [sym_html_element] = ACTIONS(3093), - [sym__pandoc_line_break] = ACTIONS(3093), - }, - [STATE(445)] = { - [anon_sym_COLON] = ACTIONS(2693), - [sym_entity_reference] = ACTIONS(2693), - [sym_numeric_character_reference] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_BANG_LBRACK] = ACTIONS(2693), - [anon_sym_DOLLAR] = ACTIONS(2695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [aux_sym_pandoc_str_token1] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2693), - [aux_sym__prose_punctuation_token1] = ACTIONS(2695), - [sym__line_ending] = ACTIONS(2693), - [sym__soft_line_ending] = ACTIONS(2693), - [sym__block_close] = ACTIONS(2693), - [sym_block_continuation] = ACTIONS(3479), - [sym__block_quote_start] = ACTIONS(2693), - [sym_atx_h1_marker] = ACTIONS(2693), - [sym_atx_h2_marker] = ACTIONS(2693), - [sym_atx_h3_marker] = ACTIONS(2693), - [sym_atx_h4_marker] = ACTIONS(2693), - [sym_atx_h5_marker] = ACTIONS(2693), - [sym_atx_h6_marker] = ACTIONS(2693), - [sym__thematic_break] = ACTIONS(2693), - [sym__list_marker_minus] = ACTIONS(2693), - [sym__list_marker_plus] = ACTIONS(2693), - [sym__list_marker_star] = ACTIONS(2693), - [sym__list_marker_parenthesis] = ACTIONS(2693), - [sym__list_marker_dot] = ACTIONS(2693), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_example] = ACTIONS(2693), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2693), - [sym__fenced_code_block_start_backtick] = ACTIONS(2693), - [sym_minus_metadata] = ACTIONS(2693), - [sym__pipe_table_start] = ACTIONS(2693), - [sym__fenced_div_start] = ACTIONS(2693), - [sym_ref_id_specifier] = ACTIONS(2693), - [sym__code_span_start] = ACTIONS(2693), - [sym__html_comment] = ACTIONS(2693), - [sym__autolink] = ACTIONS(2693), - [sym__highlight_span_start] = ACTIONS(2693), - [sym__insert_span_start] = ACTIONS(2693), - [sym__delete_span_start] = ACTIONS(2693), - [sym__edit_comment_span_start] = ACTIONS(2693), - [sym__single_quote_span_open] = ACTIONS(2693), - [sym__double_quote_span_open] = ACTIONS(2693), - [sym__shortcode_open_escaped] = ACTIONS(2693), - [sym__shortcode_open] = ACTIONS(2693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2693), - [sym__cite_author_in_text] = ACTIONS(2693), - [sym__cite_suppress_author] = ACTIONS(2693), - [sym__strikeout_open] = ACTIONS(2693), - [sym__subscript_open] = ACTIONS(2693), - [sym__superscript_open] = ACTIONS(2693), - [sym__inline_note_start_token] = ACTIONS(2693), - [sym__strong_emphasis_open_star] = ACTIONS(2693), - [sym__strong_emphasis_open_underscore] = ACTIONS(2693), - [sym__emphasis_open_star] = ACTIONS(2693), - [sym__emphasis_open_underscore] = ACTIONS(2693), - [sym_inline_note_reference] = ACTIONS(2693), - [sym_html_element] = ACTIONS(2693), - [sym__pandoc_line_break] = ACTIONS(2693), - }, - [STATE(446)] = { - [ts_builtin_sym_end] = ACTIONS(2639), - [anon_sym_COLON] = ACTIONS(2639), - [sym_entity_reference] = ACTIONS(2639), - [sym_numeric_character_reference] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_BANG_LBRACK] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2641), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2639), - [aux_sym_pandoc_str_token1] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2639), - [aux_sym__prose_punctuation_token1] = ACTIONS(2641), - [sym__line_ending] = ACTIONS(2639), - [sym__soft_line_ending] = ACTIONS(2639), - [sym_block_continuation] = ACTIONS(3481), - [sym__block_quote_start] = ACTIONS(2639), - [sym_atx_h1_marker] = ACTIONS(2639), - [sym_atx_h2_marker] = ACTIONS(2639), - [sym_atx_h3_marker] = ACTIONS(2639), - [sym_atx_h4_marker] = ACTIONS(2639), - [sym_atx_h5_marker] = ACTIONS(2639), - [sym_atx_h6_marker] = ACTIONS(2639), - [sym__thematic_break] = ACTIONS(2639), - [sym__list_marker_minus] = ACTIONS(2639), - [sym__list_marker_plus] = ACTIONS(2639), - [sym__list_marker_star] = ACTIONS(2639), - [sym__list_marker_parenthesis] = ACTIONS(2639), - [sym__list_marker_dot] = ACTIONS(2639), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2639), - [sym__list_marker_example] = ACTIONS(2639), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2639), - [sym__fenced_code_block_start_backtick] = ACTIONS(2639), - [sym_minus_metadata] = ACTIONS(2639), - [sym__pipe_table_start] = ACTIONS(2639), - [sym__fenced_div_start] = ACTIONS(2639), - [sym_ref_id_specifier] = ACTIONS(2639), - [sym__code_span_start] = ACTIONS(2639), - [sym__html_comment] = ACTIONS(2639), - [sym__autolink] = ACTIONS(2639), - [sym__highlight_span_start] = ACTIONS(2639), - [sym__insert_span_start] = ACTIONS(2639), - [sym__delete_span_start] = ACTIONS(2639), - [sym__edit_comment_span_start] = ACTIONS(2639), - [sym__single_quote_span_open] = ACTIONS(2639), - [sym__double_quote_span_open] = ACTIONS(2639), - [sym__shortcode_open_escaped] = ACTIONS(2639), - [sym__shortcode_open] = ACTIONS(2639), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2639), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2639), - [sym__cite_author_in_text] = ACTIONS(2639), - [sym__cite_suppress_author] = ACTIONS(2639), - [sym__strikeout_open] = ACTIONS(2639), - [sym__subscript_open] = ACTIONS(2639), - [sym__superscript_open] = ACTIONS(2639), - [sym__inline_note_start_token] = ACTIONS(2639), - [sym__strong_emphasis_open_star] = ACTIONS(2639), - [sym__strong_emphasis_open_underscore] = ACTIONS(2639), - [sym__emphasis_open_star] = ACTIONS(2639), - [sym__emphasis_open_underscore] = ACTIONS(2639), - [sym_inline_note_reference] = ACTIONS(2639), - [sym_html_element] = ACTIONS(2639), - [sym__pandoc_line_break] = ACTIONS(2639), - }, - [STATE(447)] = { - [ts_builtin_sym_end] = ACTIONS(2981), - [anon_sym_COLON] = ACTIONS(2981), - [sym_entity_reference] = ACTIONS(2981), - [sym_numeric_character_reference] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_BANG_LBRACK] = ACTIONS(2981), - [anon_sym_DOLLAR] = ACTIONS(2983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [aux_sym_pandoc_str_token1] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2981), - [aux_sym__prose_punctuation_token1] = ACTIONS(2983), - [sym__line_ending] = ACTIONS(2981), - [sym__soft_line_ending] = ACTIONS(2981), - [sym__block_quote_start] = ACTIONS(2981), - [sym_atx_h1_marker] = ACTIONS(2981), - [sym_atx_h2_marker] = ACTIONS(2981), - [sym_atx_h3_marker] = ACTIONS(2981), - [sym_atx_h4_marker] = ACTIONS(2981), - [sym_atx_h5_marker] = ACTIONS(2981), - [sym_atx_h6_marker] = ACTIONS(2981), - [sym__thematic_break] = ACTIONS(2981), - [sym__list_marker_minus] = ACTIONS(2981), - [sym__list_marker_plus] = ACTIONS(2981), - [sym__list_marker_star] = ACTIONS(2981), - [sym__list_marker_parenthesis] = ACTIONS(2981), - [sym__list_marker_dot] = ACTIONS(2981), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_example] = ACTIONS(2981), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2981), - [sym__fenced_code_block_start_backtick] = ACTIONS(2981), - [sym_minus_metadata] = ACTIONS(2981), - [sym__pipe_table_start] = ACTIONS(2981), - [sym__fenced_div_start] = ACTIONS(2981), - [sym_ref_id_specifier] = ACTIONS(2981), - [sym__code_span_start] = ACTIONS(2981), - [sym__html_comment] = ACTIONS(2981), - [sym__autolink] = ACTIONS(2981), - [sym__highlight_span_start] = ACTIONS(2981), - [sym__insert_span_start] = ACTIONS(2981), - [sym__delete_span_start] = ACTIONS(2981), - [sym__edit_comment_span_start] = ACTIONS(2981), - [sym__single_quote_span_open] = ACTIONS(2981), - [sym__double_quote_span_open] = ACTIONS(2981), - [sym__shortcode_open_escaped] = ACTIONS(2981), - [sym__shortcode_open] = ACTIONS(2981), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2981), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2981), - [sym__cite_author_in_text] = ACTIONS(2981), - [sym__cite_suppress_author] = ACTIONS(2981), - [sym__strikeout_open] = ACTIONS(2981), - [sym__subscript_open] = ACTIONS(2981), - [sym__superscript_open] = ACTIONS(2981), - [sym__inline_note_start_token] = ACTIONS(2981), - [sym__strong_emphasis_open_star] = ACTIONS(2981), - [sym__strong_emphasis_open_underscore] = ACTIONS(2981), - [sym__emphasis_open_star] = ACTIONS(2981), - [sym__emphasis_open_underscore] = ACTIONS(2981), - [sym_inline_note_reference] = ACTIONS(2981), - [sym_html_element] = ACTIONS(2981), - [sym__pandoc_line_break] = ACTIONS(2981), - }, - [STATE(448)] = { - [ts_builtin_sym_end] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3179), - [sym_entity_reference] = ACTIONS(3179), - [sym_numeric_character_reference] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_BANG_LBRACK] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3181), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [aux_sym_pandoc_str_token1] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3179), - [aux_sym__prose_punctuation_token1] = ACTIONS(3181), - [sym__line_ending] = ACTIONS(3179), - [sym__soft_line_ending] = ACTIONS(3179), - [sym__block_quote_start] = ACTIONS(3179), - [sym_atx_h1_marker] = ACTIONS(3179), - [sym_atx_h2_marker] = ACTIONS(3179), - [sym_atx_h3_marker] = ACTIONS(3179), - [sym_atx_h4_marker] = ACTIONS(3179), - [sym_atx_h5_marker] = ACTIONS(3179), - [sym_atx_h6_marker] = ACTIONS(3179), - [sym__thematic_break] = ACTIONS(3179), - [sym__list_marker_minus] = ACTIONS(3179), - [sym__list_marker_plus] = ACTIONS(3179), - [sym__list_marker_star] = ACTIONS(3179), - [sym__list_marker_parenthesis] = ACTIONS(3179), - [sym__list_marker_dot] = ACTIONS(3179), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_example] = ACTIONS(3179), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3179), - [sym__fenced_code_block_start_backtick] = ACTIONS(3179), - [sym_minus_metadata] = ACTIONS(3179), - [sym__pipe_table_start] = ACTIONS(3179), - [sym__fenced_div_start] = ACTIONS(3179), - [sym_ref_id_specifier] = ACTIONS(3179), - [sym__code_span_start] = ACTIONS(3179), - [sym__html_comment] = ACTIONS(3179), - [sym__autolink] = ACTIONS(3179), - [sym__highlight_span_start] = ACTIONS(3179), - [sym__insert_span_start] = ACTIONS(3179), - [sym__delete_span_start] = ACTIONS(3179), - [sym__edit_comment_span_start] = ACTIONS(3179), - [sym__single_quote_span_open] = ACTIONS(3179), - [sym__double_quote_span_open] = ACTIONS(3179), - [sym__shortcode_open_escaped] = ACTIONS(3179), - [sym__shortcode_open] = ACTIONS(3179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3179), - [sym__cite_author_in_text] = ACTIONS(3179), - [sym__cite_suppress_author] = ACTIONS(3179), - [sym__strikeout_open] = ACTIONS(3179), - [sym__subscript_open] = ACTIONS(3179), - [sym__superscript_open] = ACTIONS(3179), - [sym__inline_note_start_token] = ACTIONS(3179), - [sym__strong_emphasis_open_star] = ACTIONS(3179), - [sym__strong_emphasis_open_underscore] = ACTIONS(3179), - [sym__emphasis_open_star] = ACTIONS(3179), - [sym__emphasis_open_underscore] = ACTIONS(3179), - [sym_inline_note_reference] = ACTIONS(3179), - [sym_html_element] = ACTIONS(3179), - [sym__pandoc_line_break] = ACTIONS(3179), - }, - [STATE(449)] = { - [anon_sym_COLON] = ACTIONS(3218), - [sym_entity_reference] = ACTIONS(3218), - [sym_numeric_character_reference] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_BANG_LBRACK] = ACTIONS(3218), - [anon_sym_DOLLAR] = ACTIONS(3220), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [aux_sym_pandoc_str_token1] = ACTIONS(3220), - [anon_sym_PIPE] = ACTIONS(3218), - [aux_sym__prose_punctuation_token1] = ACTIONS(3220), - [sym__line_ending] = ACTIONS(3218), - [sym__soft_line_ending] = ACTIONS(3218), - [sym__block_close] = ACTIONS(3218), - [sym__block_quote_start] = ACTIONS(3218), - [sym_atx_h1_marker] = ACTIONS(3218), - [sym_atx_h2_marker] = ACTIONS(3218), - [sym_atx_h3_marker] = ACTIONS(3218), - [sym_atx_h4_marker] = ACTIONS(3218), - [sym_atx_h5_marker] = ACTIONS(3218), - [sym_atx_h6_marker] = ACTIONS(3218), - [sym__thematic_break] = ACTIONS(3218), - [sym__list_marker_minus] = ACTIONS(3218), - [sym__list_marker_plus] = ACTIONS(3218), - [sym__list_marker_star] = ACTIONS(3218), - [sym__list_marker_parenthesis] = ACTIONS(3218), - [sym__list_marker_dot] = ACTIONS(3218), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_example] = ACTIONS(3218), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3218), - [sym__fenced_code_block_start_backtick] = ACTIONS(3218), - [sym_minus_metadata] = ACTIONS(3218), - [sym__pipe_table_start] = ACTIONS(3218), - [sym__fenced_div_start] = ACTIONS(3218), - [sym_ref_id_specifier] = ACTIONS(3218), - [sym__code_span_start] = ACTIONS(3218), - [sym__html_comment] = ACTIONS(3218), - [sym__autolink] = ACTIONS(3218), - [sym__highlight_span_start] = ACTIONS(3218), - [sym__insert_span_start] = ACTIONS(3218), - [sym__delete_span_start] = ACTIONS(3218), - [sym__edit_comment_span_start] = ACTIONS(3218), - [sym__single_quote_span_open] = ACTIONS(3218), - [sym__double_quote_span_open] = ACTIONS(3218), - [sym__shortcode_open_escaped] = ACTIONS(3218), - [sym__shortcode_open] = ACTIONS(3218), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3218), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3218), - [sym__cite_author_in_text] = ACTIONS(3218), - [sym__cite_suppress_author] = ACTIONS(3218), - [sym__strikeout_open] = ACTIONS(3218), - [sym__subscript_open] = ACTIONS(3218), - [sym__superscript_open] = ACTIONS(3218), - [sym__inline_note_start_token] = ACTIONS(3218), - [sym__strong_emphasis_open_star] = ACTIONS(3218), - [sym__strong_emphasis_open_underscore] = ACTIONS(3218), - [sym__emphasis_open_star] = ACTIONS(3218), - [sym__emphasis_open_underscore] = ACTIONS(3218), - [sym_inline_note_reference] = ACTIONS(3218), - [sym_html_element] = ACTIONS(3218), - [sym__pandoc_line_break] = ACTIONS(3218), - }, - [STATE(450)] = { - [sym_pandoc_span] = STATE(451), - [sym_pandoc_image] = STATE(451), - [sym_pandoc_math] = STATE(451), - [sym_pandoc_display_math] = STATE(451), - [sym_pandoc_code_span] = STATE(451), - [sym_pandoc_single_quote] = STATE(451), - [sym_pandoc_double_quote] = STATE(451), - [sym_insert] = STATE(451), - [sym_delete] = STATE(451), - [sym_edit_comment] = STATE(451), - [sym_highlight] = STATE(451), - [sym__pandoc_attr_specifier] = STATE(451), - [sym__inline_element] = STATE(451), - [sym_shortcode_escaped] = STATE(451), - [sym_shortcode] = STATE(451), - [sym_citation] = STATE(451), - [sym_inline_note] = STATE(451), - [sym_pandoc_superscript] = STATE(451), - [sym_pandoc_subscript] = STATE(451), - [sym_pandoc_strikeout] = STATE(451), - [sym_pandoc_emph] = STATE(451), - [sym_pandoc_strong] = STATE(451), - [sym_pandoc_str] = STATE(451), - [sym__prose_punctuation] = STATE(451), - [aux_sym__line_repeat1] = STATE(451), - [sym_entity_reference] = ACTIONS(3483), - [sym_numeric_character_reference] = ACTIONS(3483), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3485), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(3487), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(3489), - [sym__whitespace] = ACTIONS(3491), - [sym__soft_line_ending] = ACTIONS(3487), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(3483), - [sym__autolink] = ACTIONS(3483), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(3483), - [sym_html_element] = ACTIONS(3483), - [sym__pandoc_line_break] = ACTIONS(3483), - }, - [STATE(451)] = { - [sym_pandoc_span] = STATE(452), - [sym_pandoc_image] = STATE(452), - [sym_pandoc_math] = STATE(452), - [sym_pandoc_display_math] = STATE(452), - [sym_pandoc_code_span] = STATE(452), - [sym_pandoc_single_quote] = STATE(452), - [sym_pandoc_double_quote] = STATE(452), - [sym_insert] = STATE(452), - [sym_delete] = STATE(452), - [sym_edit_comment] = STATE(452), - [sym_highlight] = STATE(452), - [sym__pandoc_attr_specifier] = STATE(452), - [sym__inline_element] = STATE(452), - [sym_shortcode_escaped] = STATE(452), - [sym_shortcode] = STATE(452), - [sym_citation] = STATE(452), - [sym_inline_note] = STATE(452), - [sym_pandoc_superscript] = STATE(452), - [sym_pandoc_subscript] = STATE(452), - [sym_pandoc_strikeout] = STATE(452), - [sym_pandoc_emph] = STATE(452), - [sym_pandoc_strong] = STATE(452), - [sym_pandoc_str] = STATE(452), - [sym__prose_punctuation] = STATE(452), - [aux_sym__line_repeat1] = STATE(452), - [sym_entity_reference] = ACTIONS(3493), - [sym_numeric_character_reference] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3495), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(3497), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(3499), - [sym__whitespace] = ACTIONS(3491), - [sym__soft_line_ending] = ACTIONS(3497), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(3493), - [sym__autolink] = ACTIONS(3493), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(3493), - [sym_html_element] = ACTIONS(3493), - [sym__pandoc_line_break] = ACTIONS(3493), - }, - [STATE(452)] = { - [sym_pandoc_span] = STATE(452), - [sym_pandoc_image] = STATE(452), - [sym_pandoc_math] = STATE(452), - [sym_pandoc_display_math] = STATE(452), - [sym_pandoc_code_span] = STATE(452), - [sym_pandoc_single_quote] = STATE(452), - [sym_pandoc_double_quote] = STATE(452), - [sym_insert] = STATE(452), - [sym_delete] = STATE(452), - [sym_edit_comment] = STATE(452), - [sym_highlight] = STATE(452), - [sym__pandoc_attr_specifier] = STATE(452), - [sym__inline_element] = STATE(452), - [sym_shortcode_escaped] = STATE(452), - [sym_shortcode] = STATE(452), - [sym_citation] = STATE(452), - [sym_inline_note] = STATE(452), - [sym_pandoc_superscript] = STATE(452), - [sym_pandoc_subscript] = STATE(452), - [sym_pandoc_strikeout] = STATE(452), - [sym_pandoc_emph] = STATE(452), - [sym_pandoc_strong] = STATE(452), - [sym_pandoc_str] = STATE(452), - [sym__prose_punctuation] = STATE(452), - [aux_sym__line_repeat1] = STATE(452), - [sym_entity_reference] = ACTIONS(3501), - [sym_numeric_character_reference] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3504), - [aux_sym_pandoc_span_token1] = ACTIONS(3507), - [anon_sym_BANG_LBRACK] = ACTIONS(3509), - [aux_sym_target_token1] = ACTIONS(3512), - [anon_sym_DOLLAR] = ACTIONS(3514), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3517), - [anon_sym_LBRACE] = ACTIONS(3520), - [aux_sym_pandoc_str_token1] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3526), - [aux_sym__prose_punctuation_token1] = ACTIONS(3529), - [sym__whitespace] = ACTIONS(3532), - [sym__soft_line_ending] = ACTIONS(3512), - [sym__code_span_start] = ACTIONS(3535), - [sym__html_comment] = ACTIONS(3501), - [sym__autolink] = ACTIONS(3501), - [sym__highlight_span_start] = ACTIONS(3538), - [sym__insert_span_start] = ACTIONS(3541), - [sym__delete_span_start] = ACTIONS(3544), - [sym__edit_comment_span_start] = ACTIONS(3547), - [sym__single_quote_span_open] = ACTIONS(3550), - [sym__double_quote_span_open] = ACTIONS(3553), - [sym__shortcode_open_escaped] = ACTIONS(3556), - [sym__shortcode_open] = ACTIONS(3559), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3562), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3565), - [sym__cite_author_in_text] = ACTIONS(3568), - [sym__cite_suppress_author] = ACTIONS(3571), - [sym__strikeout_open] = ACTIONS(3574), - [sym__subscript_open] = ACTIONS(3577), - [sym__superscript_open] = ACTIONS(3580), - [sym__inline_note_start_token] = ACTIONS(3583), - [sym__strong_emphasis_open_star] = ACTIONS(3586), - [sym__strong_emphasis_open_underscore] = ACTIONS(3589), - [sym__emphasis_open_star] = ACTIONS(3592), - [sym__emphasis_open_underscore] = ACTIONS(3595), - [sym_inline_note_reference] = ACTIONS(3501), - [sym_html_element] = ACTIONS(3501), - [sym__pandoc_line_break] = ACTIONS(3501), - }, - [STATE(453)] = { - [sym_pipe_table_cell] = STATE(3051), - [sym_pandoc_span] = STATE(746), - [sym_pandoc_image] = STATE(746), - [sym_pandoc_math] = STATE(746), - [sym_pandoc_display_math] = STATE(746), - [sym_pandoc_code_span] = STATE(746), - [sym_pandoc_single_quote] = STATE(746), - [sym_pandoc_double_quote] = STATE(746), - [sym_insert] = STATE(746), - [sym_delete] = STATE(746), - [sym_edit_comment] = STATE(746), - [sym_highlight] = STATE(746), - [sym__pandoc_attr_specifier] = STATE(746), - [sym__line_with_maybe_spaces] = STATE(3072), - [sym__inline_element] = STATE(746), - [sym_shortcode_escaped] = STATE(746), - [sym_shortcode] = STATE(746), - [sym_citation] = STATE(746), - [sym_inline_note] = STATE(746), - [sym_pandoc_superscript] = STATE(746), - [sym_pandoc_subscript] = STATE(746), - [sym_pandoc_strikeout] = STATE(746), - [sym_pandoc_emph] = STATE(746), - [sym_pandoc_strong] = STATE(746), - [sym_pandoc_str] = STATE(746), - [sym__prose_punctuation] = STATE(746), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(746), - [sym_entity_reference] = ACTIONS(3598), - [sym_numeric_character_reference] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_BANG_LBRACK] = ACTIONS(3602), - [anon_sym_DOLLAR] = ACTIONS(3604), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(3608), - [aux_sym_pandoc_str_token1] = ACTIONS(3610), - [anon_sym_PIPE] = ACTIONS(3612), - [aux_sym__prose_punctuation_token1] = ACTIONS(3614), - [sym__whitespace] = ACTIONS(3616), - [sym__code_span_start] = ACTIONS(3618), - [sym__html_comment] = ACTIONS(3598), - [sym__autolink] = ACTIONS(3598), - [sym__highlight_span_start] = ACTIONS(3620), - [sym__insert_span_start] = ACTIONS(3622), - [sym__delete_span_start] = ACTIONS(3624), - [sym__edit_comment_span_start] = ACTIONS(3626), - [sym__single_quote_span_open] = ACTIONS(3628), - [sym__double_quote_span_open] = ACTIONS(3630), - [sym__shortcode_open_escaped] = ACTIONS(3632), - [sym__shortcode_open] = ACTIONS(3634), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3636), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3638), - [sym__cite_author_in_text] = ACTIONS(3640), - [sym__cite_suppress_author] = ACTIONS(3642), - [sym__strikeout_open] = ACTIONS(3644), - [sym__subscript_open] = ACTIONS(3646), - [sym__superscript_open] = ACTIONS(3648), - [sym__inline_note_start_token] = ACTIONS(3650), - [sym__strong_emphasis_open_star] = ACTIONS(3652), - [sym__strong_emphasis_open_underscore] = ACTIONS(3654), - [sym__emphasis_open_star] = ACTIONS(3656), - [sym__emphasis_open_underscore] = ACTIONS(3658), - [sym_inline_note_reference] = ACTIONS(3598), - [sym_html_element] = ACTIONS(3598), - [sym__pipe_table_delimiter] = ACTIONS(3175), - [sym__pandoc_line_break] = ACTIONS(3598), - }, - [STATE(454)] = { - [anon_sym_COLON] = ACTIONS(2657), - [sym_entity_reference] = ACTIONS(2657), - [sym_numeric_character_reference] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_BANG_LBRACK] = ACTIONS(2657), - [anon_sym_DOLLAR] = ACTIONS(2659), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [aux_sym_pandoc_str_token1] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2657), - [aux_sym__prose_punctuation_token1] = ACTIONS(2659), - [sym__line_ending] = ACTIONS(2657), - [sym__soft_line_ending] = ACTIONS(2657), - [sym__block_close] = ACTIONS(2657), - [sym__block_quote_start] = ACTIONS(2657), - [sym_atx_h1_marker] = ACTIONS(2657), - [sym_atx_h2_marker] = ACTIONS(2657), - [sym_atx_h3_marker] = ACTIONS(2657), - [sym_atx_h4_marker] = ACTIONS(2657), - [sym_atx_h5_marker] = ACTIONS(2657), - [sym_atx_h6_marker] = ACTIONS(2657), - [sym__thematic_break] = ACTIONS(2657), - [sym__list_marker_minus] = ACTIONS(2657), - [sym__list_marker_plus] = ACTIONS(2657), - [sym__list_marker_star] = ACTIONS(2657), - [sym__list_marker_parenthesis] = ACTIONS(2657), - [sym__list_marker_dot] = ACTIONS(2657), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_example] = ACTIONS(2657), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2657), - [sym__fenced_code_block_start_backtick] = ACTIONS(2657), - [sym_minus_metadata] = ACTIONS(2657), - [sym__pipe_table_start] = ACTIONS(2657), - [sym__fenced_div_start] = ACTIONS(2657), - [sym_ref_id_specifier] = ACTIONS(2657), - [sym__code_span_start] = ACTIONS(2657), - [sym__html_comment] = ACTIONS(2657), - [sym__autolink] = ACTIONS(2657), - [sym__highlight_span_start] = ACTIONS(2657), - [sym__insert_span_start] = ACTIONS(2657), - [sym__delete_span_start] = ACTIONS(2657), - [sym__edit_comment_span_start] = ACTIONS(2657), - [sym__single_quote_span_open] = ACTIONS(2657), - [sym__double_quote_span_open] = ACTIONS(2657), - [sym__shortcode_open_escaped] = ACTIONS(2657), - [sym__shortcode_open] = ACTIONS(2657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2657), - [sym__cite_author_in_text] = ACTIONS(2657), - [sym__cite_suppress_author] = ACTIONS(2657), - [sym__strikeout_open] = ACTIONS(2657), - [sym__subscript_open] = ACTIONS(2657), - [sym__superscript_open] = ACTIONS(2657), - [sym__inline_note_start_token] = ACTIONS(2657), - [sym__strong_emphasis_open_star] = ACTIONS(2657), - [sym__strong_emphasis_open_underscore] = ACTIONS(2657), - [sym__emphasis_open_star] = ACTIONS(2657), - [sym__emphasis_open_underscore] = ACTIONS(2657), - [sym_inline_note_reference] = ACTIONS(2657), - [sym_html_element] = ACTIONS(2657), - [sym__pandoc_line_break] = ACTIONS(2657), - }, - [STATE(455)] = { - [anon_sym_COLON] = ACTIONS(3232), - [sym_entity_reference] = ACTIONS(3232), - [sym_numeric_character_reference] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_BANG_LBRACK] = ACTIONS(3232), - [anon_sym_DOLLAR] = ACTIONS(3234), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [aux_sym_pandoc_str_token1] = ACTIONS(3234), - [anon_sym_PIPE] = ACTIONS(3232), - [aux_sym__prose_punctuation_token1] = ACTIONS(3234), - [sym__line_ending] = ACTIONS(3232), - [sym__soft_line_ending] = ACTIONS(3232), - [sym__block_close] = ACTIONS(3232), - [sym__block_quote_start] = ACTIONS(3232), - [sym_atx_h1_marker] = ACTIONS(3232), - [sym_atx_h2_marker] = ACTIONS(3232), - [sym_atx_h3_marker] = ACTIONS(3232), - [sym_atx_h4_marker] = ACTIONS(3232), - [sym_atx_h5_marker] = ACTIONS(3232), - [sym_atx_h6_marker] = ACTIONS(3232), - [sym__thematic_break] = ACTIONS(3232), - [sym__list_marker_minus] = ACTIONS(3232), - [sym__list_marker_plus] = ACTIONS(3232), - [sym__list_marker_star] = ACTIONS(3232), - [sym__list_marker_parenthesis] = ACTIONS(3232), - [sym__list_marker_dot] = ACTIONS(3232), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_example] = ACTIONS(3232), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3232), - [sym__fenced_code_block_start_backtick] = ACTIONS(3232), - [sym_minus_metadata] = ACTIONS(3232), - [sym__pipe_table_start] = ACTIONS(3232), - [sym__fenced_div_start] = ACTIONS(3232), - [sym_ref_id_specifier] = ACTIONS(3232), - [sym__code_span_start] = ACTIONS(3232), - [sym__html_comment] = ACTIONS(3232), - [sym__autolink] = ACTIONS(3232), - [sym__highlight_span_start] = ACTIONS(3232), - [sym__insert_span_start] = ACTIONS(3232), - [sym__delete_span_start] = ACTIONS(3232), - [sym__edit_comment_span_start] = ACTIONS(3232), - [sym__single_quote_span_open] = ACTIONS(3232), - [sym__double_quote_span_open] = ACTIONS(3232), - [sym__shortcode_open_escaped] = ACTIONS(3232), - [sym__shortcode_open] = ACTIONS(3232), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3232), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3232), - [sym__cite_author_in_text] = ACTIONS(3232), - [sym__cite_suppress_author] = ACTIONS(3232), - [sym__strikeout_open] = ACTIONS(3232), - [sym__subscript_open] = ACTIONS(3232), - [sym__superscript_open] = ACTIONS(3232), - [sym__inline_note_start_token] = ACTIONS(3232), - [sym__strong_emphasis_open_star] = ACTIONS(3232), - [sym__strong_emphasis_open_underscore] = ACTIONS(3232), - [sym__emphasis_open_star] = ACTIONS(3232), - [sym__emphasis_open_underscore] = ACTIONS(3232), - [sym_inline_note_reference] = ACTIONS(3232), - [sym_html_element] = ACTIONS(3232), - [sym__pandoc_line_break] = ACTIONS(3232), - }, - [STATE(456)] = { - [ts_builtin_sym_end] = ACTIONS(3155), - [anon_sym_COLON] = ACTIONS(3155), - [sym_entity_reference] = ACTIONS(3155), - [sym_numeric_character_reference] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_BANG_LBRACK] = ACTIONS(3155), - [anon_sym_DOLLAR] = ACTIONS(3157), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [aux_sym_pandoc_str_token1] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3155), - [aux_sym__prose_punctuation_token1] = ACTIONS(3157), - [sym__line_ending] = ACTIONS(3155), - [sym__soft_line_ending] = ACTIONS(3155), - [sym__block_quote_start] = ACTIONS(3155), - [sym_atx_h1_marker] = ACTIONS(3155), - [sym_atx_h2_marker] = ACTIONS(3155), - [sym_atx_h3_marker] = ACTIONS(3155), - [sym_atx_h4_marker] = ACTIONS(3155), - [sym_atx_h5_marker] = ACTIONS(3155), - [sym_atx_h6_marker] = ACTIONS(3155), - [sym__thematic_break] = ACTIONS(3155), - [sym__list_marker_minus] = ACTIONS(3155), - [sym__list_marker_plus] = ACTIONS(3155), - [sym__list_marker_star] = ACTIONS(3155), - [sym__list_marker_parenthesis] = ACTIONS(3155), - [sym__list_marker_dot] = ACTIONS(3155), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_example] = ACTIONS(3155), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3155), - [sym__fenced_code_block_start_backtick] = ACTIONS(3155), - [sym_minus_metadata] = ACTIONS(3155), - [sym__pipe_table_start] = ACTIONS(3155), - [sym__fenced_div_start] = ACTIONS(3155), - [sym_ref_id_specifier] = ACTIONS(3155), - [sym__code_span_start] = ACTIONS(3155), - [sym__html_comment] = ACTIONS(3155), - [sym__autolink] = ACTIONS(3155), - [sym__highlight_span_start] = ACTIONS(3155), - [sym__insert_span_start] = ACTIONS(3155), - [sym__delete_span_start] = ACTIONS(3155), - [sym__edit_comment_span_start] = ACTIONS(3155), - [sym__single_quote_span_open] = ACTIONS(3155), - [sym__double_quote_span_open] = ACTIONS(3155), - [sym__shortcode_open_escaped] = ACTIONS(3155), - [sym__shortcode_open] = ACTIONS(3155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3155), - [sym__cite_author_in_text] = ACTIONS(3155), - [sym__cite_suppress_author] = ACTIONS(3155), - [sym__strikeout_open] = ACTIONS(3155), - [sym__subscript_open] = ACTIONS(3155), - [sym__superscript_open] = ACTIONS(3155), - [sym__inline_note_start_token] = ACTIONS(3155), - [sym__strong_emphasis_open_star] = ACTIONS(3155), - [sym__strong_emphasis_open_underscore] = ACTIONS(3155), - [sym__emphasis_open_star] = ACTIONS(3155), - [sym__emphasis_open_underscore] = ACTIONS(3155), - [sym_inline_note_reference] = ACTIONS(3155), - [sym_html_element] = ACTIONS(3155), - [sym__pandoc_line_break] = ACTIONS(3155), - }, - [STATE(457)] = { - [anon_sym_COLON] = ACTIONS(3427), - [sym_entity_reference] = ACTIONS(3427), - [sym_numeric_character_reference] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_BANG_LBRACK] = ACTIONS(3427), - [anon_sym_DOLLAR] = ACTIONS(3429), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [aux_sym_pandoc_str_token1] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3427), - [aux_sym__prose_punctuation_token1] = ACTIONS(3429), - [sym__line_ending] = ACTIONS(3427), - [sym__soft_line_ending] = ACTIONS(3427), - [sym__block_close] = ACTIONS(3427), - [sym__block_quote_start] = ACTIONS(3427), - [sym_atx_h1_marker] = ACTIONS(3427), - [sym_atx_h2_marker] = ACTIONS(3427), - [sym_atx_h3_marker] = ACTIONS(3427), - [sym_atx_h4_marker] = ACTIONS(3427), - [sym_atx_h5_marker] = ACTIONS(3427), - [sym_atx_h6_marker] = ACTIONS(3427), - [sym__thematic_break] = ACTIONS(3427), - [sym__list_marker_minus] = ACTIONS(3427), - [sym__list_marker_plus] = ACTIONS(3427), - [sym__list_marker_star] = ACTIONS(3427), - [sym__list_marker_parenthesis] = ACTIONS(3427), - [sym__list_marker_dot] = ACTIONS(3427), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_example] = ACTIONS(3427), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3427), - [sym__fenced_code_block_start_backtick] = ACTIONS(3427), - [sym_minus_metadata] = ACTIONS(3427), - [sym__pipe_table_start] = ACTIONS(3427), - [sym__fenced_div_start] = ACTIONS(3427), - [sym_ref_id_specifier] = ACTIONS(3427), - [sym__code_span_start] = ACTIONS(3427), - [sym__html_comment] = ACTIONS(3427), - [sym__autolink] = ACTIONS(3427), - [sym__highlight_span_start] = ACTIONS(3427), - [sym__insert_span_start] = ACTIONS(3427), - [sym__delete_span_start] = ACTIONS(3427), - [sym__edit_comment_span_start] = ACTIONS(3427), - [sym__single_quote_span_open] = ACTIONS(3427), - [sym__double_quote_span_open] = ACTIONS(3427), - [sym__shortcode_open_escaped] = ACTIONS(3427), - [sym__shortcode_open] = ACTIONS(3427), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3427), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3427), - [sym__cite_author_in_text] = ACTIONS(3427), - [sym__cite_suppress_author] = ACTIONS(3427), - [sym__strikeout_open] = ACTIONS(3427), - [sym__subscript_open] = ACTIONS(3427), - [sym__superscript_open] = ACTIONS(3427), - [sym__inline_note_start_token] = ACTIONS(3427), - [sym__strong_emphasis_open_star] = ACTIONS(3427), - [sym__strong_emphasis_open_underscore] = ACTIONS(3427), - [sym__emphasis_open_star] = ACTIONS(3427), - [sym__emphasis_open_underscore] = ACTIONS(3427), - [sym_inline_note_reference] = ACTIONS(3427), - [sym_html_element] = ACTIONS(3427), - [sym__pandoc_line_break] = ACTIONS(3427), - }, - [STATE(458)] = { - [ts_builtin_sym_end] = ACTIONS(3431), - [anon_sym_COLON] = ACTIONS(3431), - [sym_entity_reference] = ACTIONS(3431), - [sym_numeric_character_reference] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_BANG_LBRACK] = ACTIONS(3431), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [aux_sym_pandoc_str_token1] = ACTIONS(3433), - [anon_sym_PIPE] = ACTIONS(3431), - [aux_sym__prose_punctuation_token1] = ACTIONS(3433), - [sym__line_ending] = ACTIONS(3431), - [sym__soft_line_ending] = ACTIONS(3431), - [sym__block_quote_start] = ACTIONS(3431), - [sym_atx_h1_marker] = ACTIONS(3431), - [sym_atx_h2_marker] = ACTIONS(3431), - [sym_atx_h3_marker] = ACTIONS(3431), - [sym_atx_h4_marker] = ACTIONS(3431), - [sym_atx_h5_marker] = ACTIONS(3431), - [sym_atx_h6_marker] = ACTIONS(3431), - [sym__thematic_break] = ACTIONS(3431), - [sym__list_marker_minus] = ACTIONS(3431), - [sym__list_marker_plus] = ACTIONS(3431), - [sym__list_marker_star] = ACTIONS(3431), - [sym__list_marker_parenthesis] = ACTIONS(3431), - [sym__list_marker_dot] = ACTIONS(3431), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_example] = ACTIONS(3431), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3431), - [sym__fenced_code_block_start_backtick] = ACTIONS(3431), - [sym_minus_metadata] = ACTIONS(3431), - [sym__pipe_table_start] = ACTIONS(3431), - [sym__fenced_div_start] = ACTIONS(3431), - [sym_ref_id_specifier] = ACTIONS(3431), - [sym__code_span_start] = ACTIONS(3431), - [sym__html_comment] = ACTIONS(3431), - [sym__autolink] = ACTIONS(3431), - [sym__highlight_span_start] = ACTIONS(3431), - [sym__insert_span_start] = ACTIONS(3431), - [sym__delete_span_start] = ACTIONS(3431), - [sym__edit_comment_span_start] = ACTIONS(3431), - [sym__single_quote_span_open] = ACTIONS(3431), - [sym__double_quote_span_open] = ACTIONS(3431), - [sym__shortcode_open_escaped] = ACTIONS(3431), - [sym__shortcode_open] = ACTIONS(3431), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3431), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3431), - [sym__cite_author_in_text] = ACTIONS(3431), - [sym__cite_suppress_author] = ACTIONS(3431), - [sym__strikeout_open] = ACTIONS(3431), - [sym__subscript_open] = ACTIONS(3431), - [sym__superscript_open] = ACTIONS(3431), - [sym__inline_note_start_token] = ACTIONS(3431), - [sym__strong_emphasis_open_star] = ACTIONS(3431), - [sym__strong_emphasis_open_underscore] = ACTIONS(3431), - [sym__emphasis_open_star] = ACTIONS(3431), - [sym__emphasis_open_underscore] = ACTIONS(3431), - [sym_inline_note_reference] = ACTIONS(3431), - [sym_html_element] = ACTIONS(3431), - [sym__pandoc_line_break] = ACTIONS(3431), - }, - [STATE(459)] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [anon_sym_COLON] = ACTIONS(3210), - [sym_entity_reference] = ACTIONS(3210), - [sym_numeric_character_reference] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_BANG_LBRACK] = ACTIONS(3210), - [anon_sym_DOLLAR] = ACTIONS(3212), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [aux_sym_pandoc_str_token1] = ACTIONS(3212), - [anon_sym_PIPE] = ACTIONS(3210), - [aux_sym__prose_punctuation_token1] = ACTIONS(3212), - [sym__line_ending] = ACTIONS(3210), - [sym__soft_line_ending] = ACTIONS(3210), - [sym__block_quote_start] = ACTIONS(3210), - [sym_atx_h1_marker] = ACTIONS(3210), - [sym_atx_h2_marker] = ACTIONS(3210), - [sym_atx_h3_marker] = ACTIONS(3210), - [sym_atx_h4_marker] = ACTIONS(3210), - [sym_atx_h5_marker] = ACTIONS(3210), - [sym_atx_h6_marker] = ACTIONS(3210), - [sym__thematic_break] = ACTIONS(3210), - [sym__list_marker_minus] = ACTIONS(3210), - [sym__list_marker_plus] = ACTIONS(3210), - [sym__list_marker_star] = ACTIONS(3210), - [sym__list_marker_parenthesis] = ACTIONS(3210), - [sym__list_marker_dot] = ACTIONS(3210), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_example] = ACTIONS(3210), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3210), - [sym__fenced_code_block_start_backtick] = ACTIONS(3210), - [sym_minus_metadata] = ACTIONS(3210), - [sym__pipe_table_start] = ACTIONS(3210), - [sym__fenced_div_start] = ACTIONS(3210), - [sym_ref_id_specifier] = ACTIONS(3210), - [sym__code_span_start] = ACTIONS(3210), - [sym__html_comment] = ACTIONS(3210), - [sym__autolink] = ACTIONS(3210), - [sym__highlight_span_start] = ACTIONS(3210), - [sym__insert_span_start] = ACTIONS(3210), - [sym__delete_span_start] = ACTIONS(3210), - [sym__edit_comment_span_start] = ACTIONS(3210), - [sym__single_quote_span_open] = ACTIONS(3210), - [sym__double_quote_span_open] = ACTIONS(3210), - [sym__shortcode_open_escaped] = ACTIONS(3210), - [sym__shortcode_open] = ACTIONS(3210), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3210), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3210), - [sym__cite_author_in_text] = ACTIONS(3210), - [sym__cite_suppress_author] = ACTIONS(3210), - [sym__strikeout_open] = ACTIONS(3210), - [sym__subscript_open] = ACTIONS(3210), - [sym__superscript_open] = ACTIONS(3210), - [sym__inline_note_start_token] = ACTIONS(3210), - [sym__strong_emphasis_open_star] = ACTIONS(3210), - [sym__strong_emphasis_open_underscore] = ACTIONS(3210), - [sym__emphasis_open_star] = ACTIONS(3210), - [sym__emphasis_open_underscore] = ACTIONS(3210), - [sym_inline_note_reference] = ACTIONS(3210), - [sym_html_element] = ACTIONS(3210), - [sym__pandoc_line_break] = ACTIONS(3210), - }, - [STATE(460)] = { - [ts_builtin_sym_end] = ACTIONS(3214), - [anon_sym_COLON] = ACTIONS(3214), - [sym_entity_reference] = ACTIONS(3214), - [sym_numeric_character_reference] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_BANG_LBRACK] = ACTIONS(3214), - [anon_sym_DOLLAR] = ACTIONS(3216), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [aux_sym_pandoc_str_token1] = ACTIONS(3216), - [anon_sym_PIPE] = ACTIONS(3214), - [aux_sym__prose_punctuation_token1] = ACTIONS(3216), - [sym__line_ending] = ACTIONS(3214), - [sym__soft_line_ending] = ACTIONS(3214), - [sym__block_quote_start] = ACTIONS(3214), - [sym_atx_h1_marker] = ACTIONS(3214), - [sym_atx_h2_marker] = ACTIONS(3214), - [sym_atx_h3_marker] = ACTIONS(3214), - [sym_atx_h4_marker] = ACTIONS(3214), - [sym_atx_h5_marker] = ACTIONS(3214), - [sym_atx_h6_marker] = ACTIONS(3214), - [sym__thematic_break] = ACTIONS(3214), - [sym__list_marker_minus] = ACTIONS(3214), - [sym__list_marker_plus] = ACTIONS(3214), - [sym__list_marker_star] = ACTIONS(3214), - [sym__list_marker_parenthesis] = ACTIONS(3214), - [sym__list_marker_dot] = ACTIONS(3214), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_example] = ACTIONS(3214), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3214), - [sym__fenced_code_block_start_backtick] = ACTIONS(3214), - [sym_minus_metadata] = ACTIONS(3214), - [sym__pipe_table_start] = ACTIONS(3214), - [sym__fenced_div_start] = ACTIONS(3214), - [sym_ref_id_specifier] = ACTIONS(3214), - [sym__code_span_start] = ACTIONS(3214), - [sym__html_comment] = ACTIONS(3214), - [sym__autolink] = ACTIONS(3214), - [sym__highlight_span_start] = ACTIONS(3214), - [sym__insert_span_start] = ACTIONS(3214), - [sym__delete_span_start] = ACTIONS(3214), - [sym__edit_comment_span_start] = ACTIONS(3214), - [sym__single_quote_span_open] = ACTIONS(3214), - [sym__double_quote_span_open] = ACTIONS(3214), - [sym__shortcode_open_escaped] = ACTIONS(3214), - [sym__shortcode_open] = ACTIONS(3214), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3214), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3214), - [sym__cite_author_in_text] = ACTIONS(3214), - [sym__cite_suppress_author] = ACTIONS(3214), - [sym__strikeout_open] = ACTIONS(3214), - [sym__subscript_open] = ACTIONS(3214), - [sym__superscript_open] = ACTIONS(3214), - [sym__inline_note_start_token] = ACTIONS(3214), - [sym__strong_emphasis_open_star] = ACTIONS(3214), - [sym__strong_emphasis_open_underscore] = ACTIONS(3214), - [sym__emphasis_open_star] = ACTIONS(3214), - [sym__emphasis_open_underscore] = ACTIONS(3214), - [sym_inline_note_reference] = ACTIONS(3214), - [sym_html_element] = ACTIONS(3214), - [sym__pandoc_line_break] = ACTIONS(3214), - }, - [STATE(461)] = { - [ts_builtin_sym_end] = ACTIONS(3218), - [anon_sym_COLON] = ACTIONS(3218), - [sym_entity_reference] = ACTIONS(3218), - [sym_numeric_character_reference] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_BANG_LBRACK] = ACTIONS(3218), - [anon_sym_DOLLAR] = ACTIONS(3220), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [aux_sym_pandoc_str_token1] = ACTIONS(3220), - [anon_sym_PIPE] = ACTIONS(3218), - [aux_sym__prose_punctuation_token1] = ACTIONS(3220), - [sym__line_ending] = ACTIONS(3218), - [sym__soft_line_ending] = ACTIONS(3218), - [sym__block_quote_start] = ACTIONS(3218), - [sym_atx_h1_marker] = ACTIONS(3218), - [sym_atx_h2_marker] = ACTIONS(3218), - [sym_atx_h3_marker] = ACTIONS(3218), - [sym_atx_h4_marker] = ACTIONS(3218), - [sym_atx_h5_marker] = ACTIONS(3218), - [sym_atx_h6_marker] = ACTIONS(3218), - [sym__thematic_break] = ACTIONS(3218), - [sym__list_marker_minus] = ACTIONS(3218), - [sym__list_marker_plus] = ACTIONS(3218), - [sym__list_marker_star] = ACTIONS(3218), - [sym__list_marker_parenthesis] = ACTIONS(3218), - [sym__list_marker_dot] = ACTIONS(3218), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3218), - [sym__list_marker_example] = ACTIONS(3218), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3218), - [sym__fenced_code_block_start_backtick] = ACTIONS(3218), - [sym_minus_metadata] = ACTIONS(3218), - [sym__pipe_table_start] = ACTIONS(3218), - [sym__fenced_div_start] = ACTIONS(3218), - [sym_ref_id_specifier] = ACTIONS(3218), - [sym__code_span_start] = ACTIONS(3218), - [sym__html_comment] = ACTIONS(3218), - [sym__autolink] = ACTIONS(3218), - [sym__highlight_span_start] = ACTIONS(3218), - [sym__insert_span_start] = ACTIONS(3218), - [sym__delete_span_start] = ACTIONS(3218), - [sym__edit_comment_span_start] = ACTIONS(3218), - [sym__single_quote_span_open] = ACTIONS(3218), - [sym__double_quote_span_open] = ACTIONS(3218), - [sym__shortcode_open_escaped] = ACTIONS(3218), - [sym__shortcode_open] = ACTIONS(3218), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3218), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3218), - [sym__cite_author_in_text] = ACTIONS(3218), - [sym__cite_suppress_author] = ACTIONS(3218), - [sym__strikeout_open] = ACTIONS(3218), - [sym__subscript_open] = ACTIONS(3218), - [sym__superscript_open] = ACTIONS(3218), - [sym__inline_note_start_token] = ACTIONS(3218), - [sym__strong_emphasis_open_star] = ACTIONS(3218), - [sym__strong_emphasis_open_underscore] = ACTIONS(3218), - [sym__emphasis_open_star] = ACTIONS(3218), - [sym__emphasis_open_underscore] = ACTIONS(3218), - [sym_inline_note_reference] = ACTIONS(3218), - [sym_html_element] = ACTIONS(3218), - [sym__pandoc_line_break] = ACTIONS(3218), - }, - [STATE(462)] = { - [sym_pipe_table_cell] = STATE(2540), - [sym_pandoc_span] = STATE(376), - [sym_pandoc_image] = STATE(376), - [sym_pandoc_math] = STATE(376), - [sym_pandoc_display_math] = STATE(376), - [sym_pandoc_code_span] = STATE(376), - [sym_pandoc_single_quote] = STATE(376), - [sym_pandoc_double_quote] = STATE(376), - [sym_insert] = STATE(376), - [sym_delete] = STATE(376), - [sym_edit_comment] = STATE(376), - [sym_highlight] = STATE(376), - [sym__pandoc_attr_specifier] = STATE(376), - [sym__line_with_maybe_spaces] = STATE(2577), - [sym__inline_element] = STATE(376), - [sym_shortcode_escaped] = STATE(376), - [sym_shortcode] = STATE(376), - [sym_citation] = STATE(376), - [sym_inline_note] = STATE(376), - [sym_pandoc_superscript] = STATE(376), - [sym_pandoc_subscript] = STATE(376), - [sym_pandoc_strikeout] = STATE(376), - [sym_pandoc_emph] = STATE(376), - [sym_pandoc_strong] = STATE(376), - [sym_pandoc_str] = STATE(376), - [sym__prose_punctuation] = STATE(376), - [aux_sym_pipe_table_row_repeat1] = STATE(184), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(376), - [sym_entity_reference] = ACTIONS(1968), - [sym_numeric_character_reference] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BANG_LBRACK] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [aux_sym_pandoc_str_token1] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [aux_sym__prose_punctuation_token1] = ACTIONS(1984), - [sym__whitespace] = ACTIONS(3660), - [sym__code_span_start] = ACTIONS(1990), - [sym__html_comment] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), - [sym__highlight_span_start] = ACTIONS(1992), - [sym__insert_span_start] = ACTIONS(1994), - [sym__delete_span_start] = ACTIONS(1996), - [sym__edit_comment_span_start] = ACTIONS(1998), - [sym__single_quote_span_open] = ACTIONS(2000), - [sym__double_quote_span_open] = ACTIONS(2002), - [sym__shortcode_open_escaped] = ACTIONS(2004), - [sym__shortcode_open] = ACTIONS(2006), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2008), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2010), - [sym__cite_author_in_text] = ACTIONS(2012), - [sym__cite_suppress_author] = ACTIONS(2014), - [sym__strikeout_open] = ACTIONS(2016), - [sym__subscript_open] = ACTIONS(2018), - [sym__superscript_open] = ACTIONS(2020), - [sym__inline_note_start_token] = ACTIONS(2022), - [sym__strong_emphasis_open_star] = ACTIONS(2024), - [sym__strong_emphasis_open_underscore] = ACTIONS(2026), - [sym__emphasis_open_star] = ACTIONS(2028), - [sym__emphasis_open_underscore] = ACTIONS(2030), - [sym_inline_note_reference] = ACTIONS(1968), - [sym_html_element] = ACTIONS(1968), - [sym__pandoc_line_break] = ACTIONS(1968), - }, - [STATE(463)] = { - [sym__inlines] = STATE(2932), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1472), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3662), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(464)] = { - [sym__inlines] = STATE(2933), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1358), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3664), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(465)] = { - [ts_builtin_sym_end] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3435), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_BANG_LBRACK] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [aux_sym_pandoc_str_token1] = ACTIONS(3437), - [anon_sym_PIPE] = ACTIONS(3435), - [aux_sym__prose_punctuation_token1] = ACTIONS(3437), - [sym__line_ending] = ACTIONS(3435), - [sym__soft_line_ending] = ACTIONS(3435), - [sym__block_quote_start] = ACTIONS(3435), - [sym_atx_h1_marker] = ACTIONS(3435), - [sym_atx_h2_marker] = ACTIONS(3435), - [sym_atx_h3_marker] = ACTIONS(3435), - [sym_atx_h4_marker] = ACTIONS(3435), - [sym_atx_h5_marker] = ACTIONS(3435), - [sym_atx_h6_marker] = ACTIONS(3435), - [sym__thematic_break] = ACTIONS(3435), - [sym__list_marker_minus] = ACTIONS(3435), - [sym__list_marker_plus] = ACTIONS(3435), - [sym__list_marker_star] = ACTIONS(3435), - [sym__list_marker_parenthesis] = ACTIONS(3435), - [sym__list_marker_dot] = ACTIONS(3435), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_example] = ACTIONS(3435), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3435), - [sym__fenced_code_block_start_backtick] = ACTIONS(3435), - [sym_minus_metadata] = ACTIONS(3435), - [sym__pipe_table_start] = ACTIONS(3435), - [sym__fenced_div_start] = ACTIONS(3435), - [sym_ref_id_specifier] = ACTIONS(3435), - [sym__code_span_start] = ACTIONS(3435), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3435), - [sym__insert_span_start] = ACTIONS(3435), - [sym__delete_span_start] = ACTIONS(3435), - [sym__edit_comment_span_start] = ACTIONS(3435), - [sym__single_quote_span_open] = ACTIONS(3435), - [sym__double_quote_span_open] = ACTIONS(3435), - [sym__shortcode_open_escaped] = ACTIONS(3435), - [sym__shortcode_open] = ACTIONS(3435), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3435), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3435), - [sym__cite_author_in_text] = ACTIONS(3435), - [sym__cite_suppress_author] = ACTIONS(3435), - [sym__strikeout_open] = ACTIONS(3435), - [sym__subscript_open] = ACTIONS(3435), - [sym__superscript_open] = ACTIONS(3435), - [sym__inline_note_start_token] = ACTIONS(3435), - [sym__strong_emphasis_open_star] = ACTIONS(3435), - [sym__strong_emphasis_open_underscore] = ACTIONS(3435), - [sym__emphasis_open_star] = ACTIONS(3435), - [sym__emphasis_open_underscore] = ACTIONS(3435), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_line_break] = ACTIONS(3435), - }, - [STATE(466)] = { - [ts_builtin_sym_end] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(3198), - [sym_entity_reference] = ACTIONS(3198), - [sym_numeric_character_reference] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_BANG_LBRACK] = ACTIONS(3198), - [anon_sym_DOLLAR] = ACTIONS(3200), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [aux_sym_pandoc_str_token1] = ACTIONS(3200), - [anon_sym_PIPE] = ACTIONS(3198), - [aux_sym__prose_punctuation_token1] = ACTIONS(3200), - [sym__line_ending] = ACTIONS(3198), - [sym__soft_line_ending] = ACTIONS(3198), - [sym__block_quote_start] = ACTIONS(3198), - [sym_atx_h1_marker] = ACTIONS(3198), - [sym_atx_h2_marker] = ACTIONS(3198), - [sym_atx_h3_marker] = ACTIONS(3198), - [sym_atx_h4_marker] = ACTIONS(3198), - [sym_atx_h5_marker] = ACTIONS(3198), - [sym_atx_h6_marker] = ACTIONS(3198), - [sym__thematic_break] = ACTIONS(3198), - [sym__list_marker_minus] = ACTIONS(3198), - [sym__list_marker_plus] = ACTIONS(3198), - [sym__list_marker_star] = ACTIONS(3198), - [sym__list_marker_parenthesis] = ACTIONS(3198), - [sym__list_marker_dot] = ACTIONS(3198), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_example] = ACTIONS(3198), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3198), - [sym__fenced_code_block_start_backtick] = ACTIONS(3198), - [sym_minus_metadata] = ACTIONS(3198), - [sym__pipe_table_start] = ACTIONS(3198), - [sym__fenced_div_start] = ACTIONS(3198), - [sym_ref_id_specifier] = ACTIONS(3198), - [sym__code_span_start] = ACTIONS(3198), - [sym__html_comment] = ACTIONS(3198), - [sym__autolink] = ACTIONS(3198), - [sym__highlight_span_start] = ACTIONS(3198), - [sym__insert_span_start] = ACTIONS(3198), - [sym__delete_span_start] = ACTIONS(3198), - [sym__edit_comment_span_start] = ACTIONS(3198), - [sym__single_quote_span_open] = ACTIONS(3198), - [sym__double_quote_span_open] = ACTIONS(3198), - [sym__shortcode_open_escaped] = ACTIONS(3198), - [sym__shortcode_open] = ACTIONS(3198), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3198), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3198), - [sym__cite_author_in_text] = ACTIONS(3198), - [sym__cite_suppress_author] = ACTIONS(3198), - [sym__strikeout_open] = ACTIONS(3198), - [sym__subscript_open] = ACTIONS(3198), - [sym__superscript_open] = ACTIONS(3198), - [sym__inline_note_start_token] = ACTIONS(3198), - [sym__strong_emphasis_open_star] = ACTIONS(3198), - [sym__strong_emphasis_open_underscore] = ACTIONS(3198), - [sym__emphasis_open_star] = ACTIONS(3198), - [sym__emphasis_open_underscore] = ACTIONS(3198), - [sym_inline_note_reference] = ACTIONS(3198), - [sym_html_element] = ACTIONS(3198), - [sym__pandoc_line_break] = ACTIONS(3198), - }, - [STATE(467)] = { - [ts_builtin_sym_end] = ACTIONS(2663), - [anon_sym_COLON] = ACTIONS(2663), - [sym_entity_reference] = ACTIONS(2663), - [sym_numeric_character_reference] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_BANG_LBRACK] = ACTIONS(2663), - [anon_sym_DOLLAR] = ACTIONS(2665), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [aux_sym_pandoc_str_token1] = ACTIONS(2665), - [anon_sym_PIPE] = ACTIONS(2663), - [aux_sym__prose_punctuation_token1] = ACTIONS(2665), - [sym__line_ending] = ACTIONS(2663), - [sym__soft_line_ending] = ACTIONS(2663), - [sym__block_quote_start] = ACTIONS(2663), - [sym_atx_h1_marker] = ACTIONS(2663), - [sym_atx_h2_marker] = ACTIONS(2663), - [sym_atx_h3_marker] = ACTIONS(2663), - [sym_atx_h4_marker] = ACTIONS(2663), - [sym_atx_h5_marker] = ACTIONS(2663), - [sym_atx_h6_marker] = ACTIONS(2663), - [sym__thematic_break] = ACTIONS(2663), - [sym__list_marker_minus] = ACTIONS(2663), - [sym__list_marker_plus] = ACTIONS(2663), - [sym__list_marker_star] = ACTIONS(2663), - [sym__list_marker_parenthesis] = ACTIONS(2663), - [sym__list_marker_dot] = ACTIONS(2663), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_example] = ACTIONS(2663), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2663), - [sym__fenced_code_block_start_backtick] = ACTIONS(2663), - [sym_minus_metadata] = ACTIONS(2663), - [sym__pipe_table_start] = ACTIONS(2663), - [sym__fenced_div_start] = ACTIONS(2663), - [sym_ref_id_specifier] = ACTIONS(2663), - [sym__code_span_start] = ACTIONS(2663), - [sym__html_comment] = ACTIONS(2663), - [sym__autolink] = ACTIONS(2663), - [sym__highlight_span_start] = ACTIONS(2663), - [sym__insert_span_start] = ACTIONS(2663), - [sym__delete_span_start] = ACTIONS(2663), - [sym__edit_comment_span_start] = ACTIONS(2663), - [sym__single_quote_span_open] = ACTIONS(2663), - [sym__double_quote_span_open] = ACTIONS(2663), - [sym__shortcode_open_escaped] = ACTIONS(2663), - [sym__shortcode_open] = ACTIONS(2663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2663), - [sym__cite_author_in_text] = ACTIONS(2663), - [sym__cite_suppress_author] = ACTIONS(2663), - [sym__strikeout_open] = ACTIONS(2663), - [sym__subscript_open] = ACTIONS(2663), - [sym__superscript_open] = ACTIONS(2663), - [sym__inline_note_start_token] = ACTIONS(2663), - [sym__strong_emphasis_open_star] = ACTIONS(2663), - [sym__strong_emphasis_open_underscore] = ACTIONS(2663), - [sym__emphasis_open_star] = ACTIONS(2663), - [sym__emphasis_open_underscore] = ACTIONS(2663), - [sym_inline_note_reference] = ACTIONS(2663), - [sym_html_element] = ACTIONS(2663), - [sym__pandoc_line_break] = ACTIONS(2663), - }, - [STATE(468)] = { - [ts_builtin_sym_end] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3081), - [sym_entity_reference] = ACTIONS(3081), - [sym_numeric_character_reference] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_BANG_LBRACK] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [aux_sym_pandoc_str_token1] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3081), - [aux_sym__prose_punctuation_token1] = ACTIONS(3083), - [sym__line_ending] = ACTIONS(3081), - [sym__soft_line_ending] = ACTIONS(3081), - [sym__block_quote_start] = ACTIONS(3081), - [sym_atx_h1_marker] = ACTIONS(3081), - [sym_atx_h2_marker] = ACTIONS(3081), - [sym_atx_h3_marker] = ACTIONS(3081), - [sym_atx_h4_marker] = ACTIONS(3081), - [sym_atx_h5_marker] = ACTIONS(3081), - [sym_atx_h6_marker] = ACTIONS(3081), - [sym__thematic_break] = ACTIONS(3081), - [sym__list_marker_minus] = ACTIONS(3081), - [sym__list_marker_plus] = ACTIONS(3081), - [sym__list_marker_star] = ACTIONS(3081), - [sym__list_marker_parenthesis] = ACTIONS(3081), - [sym__list_marker_dot] = ACTIONS(3081), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_example] = ACTIONS(3081), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3081), - [sym__fenced_code_block_start_backtick] = ACTIONS(3081), - [sym_minus_metadata] = ACTIONS(3081), - [sym__pipe_table_start] = ACTIONS(3081), - [sym__fenced_div_start] = ACTIONS(3081), - [sym_ref_id_specifier] = ACTIONS(3081), - [sym__code_span_start] = ACTIONS(3081), - [sym__html_comment] = ACTIONS(3081), - [sym__autolink] = ACTIONS(3081), - [sym__highlight_span_start] = ACTIONS(3081), - [sym__insert_span_start] = ACTIONS(3081), - [sym__delete_span_start] = ACTIONS(3081), - [sym__edit_comment_span_start] = ACTIONS(3081), - [sym__single_quote_span_open] = ACTIONS(3081), - [sym__double_quote_span_open] = ACTIONS(3081), - [sym__shortcode_open_escaped] = ACTIONS(3081), - [sym__shortcode_open] = ACTIONS(3081), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3081), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3081), - [sym__cite_author_in_text] = ACTIONS(3081), - [sym__cite_suppress_author] = ACTIONS(3081), - [sym__strikeout_open] = ACTIONS(3081), - [sym__subscript_open] = ACTIONS(3081), - [sym__superscript_open] = ACTIONS(3081), - [sym__inline_note_start_token] = ACTIONS(3081), - [sym__strong_emphasis_open_star] = ACTIONS(3081), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3081), - [sym__emphasis_open_underscore] = ACTIONS(3081), - [sym_inline_note_reference] = ACTIONS(3081), - [sym_html_element] = ACTIONS(3081), - [sym__pandoc_line_break] = ACTIONS(3081), - }, - [STATE(469)] = { [ts_builtin_sym_end] = ACTIONS(2669), [anon_sym_COLON] = ACTIONS(2669), [sym_entity_reference] = ACTIONS(2669), @@ -61364,7 +60679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(2669), [aux_sym_pandoc_str_token1] = ACTIONS(2671), [anon_sym_PIPE] = ACTIONS(2669), - [aux_sym__prose_punctuation_token1] = ACTIONS(2671), + [sym__whitespace] = ACTIONS(2669), [sym__line_ending] = ACTIONS(2669), [sym__soft_line_ending] = ACTIONS(2669), [sym__block_quote_start] = ACTIONS(2669), @@ -61419,8141 +60734,3721 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_element] = ACTIONS(2669), [sym__pandoc_line_break] = ACTIONS(2669), }, - [STATE(470)] = { - [ts_builtin_sym_end] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3202), - [sym_entity_reference] = ACTIONS(3202), - [sym_numeric_character_reference] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_BANG_LBRACK] = ACTIONS(3202), - [anon_sym_DOLLAR] = ACTIONS(3204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [aux_sym_pandoc_str_token1] = ACTIONS(3204), - [anon_sym_PIPE] = ACTIONS(3202), - [aux_sym__prose_punctuation_token1] = ACTIONS(3204), - [sym__line_ending] = ACTIONS(3202), - [sym__soft_line_ending] = ACTIONS(3202), - [sym__block_quote_start] = ACTIONS(3202), - [sym_atx_h1_marker] = ACTIONS(3202), - [sym_atx_h2_marker] = ACTIONS(3202), - [sym_atx_h3_marker] = ACTIONS(3202), - [sym_atx_h4_marker] = ACTIONS(3202), - [sym_atx_h5_marker] = ACTIONS(3202), - [sym_atx_h6_marker] = ACTIONS(3202), - [sym__thematic_break] = ACTIONS(3202), - [sym__list_marker_minus] = ACTIONS(3202), - [sym__list_marker_plus] = ACTIONS(3202), - [sym__list_marker_star] = ACTIONS(3202), - [sym__list_marker_parenthesis] = ACTIONS(3202), - [sym__list_marker_dot] = ACTIONS(3202), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_example] = ACTIONS(3202), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3202), - [sym__fenced_code_block_start_backtick] = ACTIONS(3202), - [sym_minus_metadata] = ACTIONS(3202), - [sym__pipe_table_start] = ACTIONS(3202), - [sym__fenced_div_start] = ACTIONS(3202), - [sym_ref_id_specifier] = ACTIONS(3202), - [sym__code_span_start] = ACTIONS(3202), - [sym__html_comment] = ACTIONS(3202), - [sym__autolink] = ACTIONS(3202), - [sym__highlight_span_start] = ACTIONS(3202), - [sym__insert_span_start] = ACTIONS(3202), - [sym__delete_span_start] = ACTIONS(3202), - [sym__edit_comment_span_start] = ACTIONS(3202), - [sym__single_quote_span_open] = ACTIONS(3202), - [sym__double_quote_span_open] = ACTIONS(3202), - [sym__shortcode_open_escaped] = ACTIONS(3202), - [sym__shortcode_open] = ACTIONS(3202), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3202), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3202), - [sym__cite_author_in_text] = ACTIONS(3202), - [sym__cite_suppress_author] = ACTIONS(3202), - [sym__strikeout_open] = ACTIONS(3202), - [sym__subscript_open] = ACTIONS(3202), - [sym__superscript_open] = ACTIONS(3202), - [sym__inline_note_start_token] = ACTIONS(3202), - [sym__strong_emphasis_open_star] = ACTIONS(3202), - [sym__strong_emphasis_open_underscore] = ACTIONS(3202), - [sym__emphasis_open_star] = ACTIONS(3202), - [sym__emphasis_open_underscore] = ACTIONS(3202), - [sym_inline_note_reference] = ACTIONS(3202), - [sym_html_element] = ACTIONS(3202), - [sym__pandoc_line_break] = ACTIONS(3202), + [STATE(442)] = { + [ts_builtin_sym_end] = ACTIONS(2773), + [anon_sym_COLON] = ACTIONS(2773), + [sym_entity_reference] = ACTIONS(2773), + [sym_numeric_character_reference] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_BANG_LBRACK] = ACTIONS(2773), + [anon_sym_DOLLAR] = ACTIONS(2775), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2773), + [aux_sym_pandoc_str_token1] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2773), + [sym__whitespace] = ACTIONS(2773), + [sym__line_ending] = ACTIONS(2773), + [sym__soft_line_ending] = ACTIONS(2773), + [sym__block_quote_start] = ACTIONS(2773), + [sym_atx_h1_marker] = ACTIONS(2773), + [sym_atx_h2_marker] = ACTIONS(2773), + [sym_atx_h3_marker] = ACTIONS(2773), + [sym_atx_h4_marker] = ACTIONS(2773), + [sym_atx_h5_marker] = ACTIONS(2773), + [sym_atx_h6_marker] = ACTIONS(2773), + [sym__thematic_break] = ACTIONS(2773), + [sym__list_marker_minus] = ACTIONS(2773), + [sym__list_marker_plus] = ACTIONS(2773), + [sym__list_marker_star] = ACTIONS(2773), + [sym__list_marker_parenthesis] = ACTIONS(2773), + [sym__list_marker_dot] = ACTIONS(2773), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2773), + [sym__list_marker_example] = ACTIONS(2773), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2773), + [sym__fenced_code_block_start_backtick] = ACTIONS(2773), + [sym_minus_metadata] = ACTIONS(2773), + [sym__pipe_table_start] = ACTIONS(2773), + [sym__fenced_div_start] = ACTIONS(2773), + [sym_ref_id_specifier] = ACTIONS(2773), + [sym__code_span_start] = ACTIONS(2773), + [sym__html_comment] = ACTIONS(2773), + [sym__autolink] = ACTIONS(2773), + [sym__highlight_span_start] = ACTIONS(2773), + [sym__insert_span_start] = ACTIONS(2773), + [sym__delete_span_start] = ACTIONS(2773), + [sym__edit_comment_span_start] = ACTIONS(2773), + [sym__single_quote_span_open] = ACTIONS(2773), + [sym__double_quote_span_open] = ACTIONS(2773), + [sym__shortcode_open_escaped] = ACTIONS(2773), + [sym__shortcode_open] = ACTIONS(2773), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2773), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2773), + [sym__cite_author_in_text] = ACTIONS(2773), + [sym__cite_suppress_author] = ACTIONS(2773), + [sym__strikeout_open] = ACTIONS(2773), + [sym__subscript_open] = ACTIONS(2773), + [sym__superscript_open] = ACTIONS(2773), + [sym__inline_note_start_token] = ACTIONS(2773), + [sym__strong_emphasis_open_star] = ACTIONS(2773), + [sym__strong_emphasis_open_underscore] = ACTIONS(2773), + [sym__emphasis_open_star] = ACTIONS(2773), + [sym__emphasis_open_underscore] = ACTIONS(2773), + [sym_inline_note_reference] = ACTIONS(2773), + [sym_html_element] = ACTIONS(2773), + [sym__pandoc_line_break] = ACTIONS(2773), }, - [STATE(471)] = { - [ts_builtin_sym_end] = ACTIONS(2675), - [anon_sym_COLON] = ACTIONS(2675), - [sym_entity_reference] = ACTIONS(2675), - [sym_numeric_character_reference] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_BANG_LBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [aux_sym_pandoc_str_token1] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2675), - [aux_sym__prose_punctuation_token1] = ACTIONS(2677), - [sym__line_ending] = ACTIONS(2675), - [sym__soft_line_ending] = ACTIONS(2675), - [sym__block_quote_start] = ACTIONS(2675), - [sym_atx_h1_marker] = ACTIONS(2675), - [sym_atx_h2_marker] = ACTIONS(2675), - [sym_atx_h3_marker] = ACTIONS(2675), - [sym_atx_h4_marker] = ACTIONS(2675), - [sym_atx_h5_marker] = ACTIONS(2675), - [sym_atx_h6_marker] = ACTIONS(2675), - [sym__thematic_break] = ACTIONS(2675), - [sym__list_marker_minus] = ACTIONS(2675), - [sym__list_marker_plus] = ACTIONS(2675), - [sym__list_marker_star] = ACTIONS(2675), - [sym__list_marker_parenthesis] = ACTIONS(2675), - [sym__list_marker_dot] = ACTIONS(2675), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_example] = ACTIONS(2675), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2675), - [sym__fenced_code_block_start_backtick] = ACTIONS(2675), - [sym_minus_metadata] = ACTIONS(2675), - [sym__pipe_table_start] = ACTIONS(2675), - [sym__fenced_div_start] = ACTIONS(2675), - [sym_ref_id_specifier] = ACTIONS(2675), - [sym__code_span_start] = ACTIONS(2675), - [sym__html_comment] = ACTIONS(2675), - [sym__autolink] = ACTIONS(2675), - [sym__highlight_span_start] = ACTIONS(2675), - [sym__insert_span_start] = ACTIONS(2675), - [sym__delete_span_start] = ACTIONS(2675), - [sym__edit_comment_span_start] = ACTIONS(2675), - [sym__single_quote_span_open] = ACTIONS(2675), - [sym__double_quote_span_open] = ACTIONS(2675), - [sym__shortcode_open_escaped] = ACTIONS(2675), - [sym__shortcode_open] = ACTIONS(2675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2675), - [sym__cite_author_in_text] = ACTIONS(2675), - [sym__cite_suppress_author] = ACTIONS(2675), - [sym__strikeout_open] = ACTIONS(2675), - [sym__subscript_open] = ACTIONS(2675), - [sym__superscript_open] = ACTIONS(2675), - [sym__inline_note_start_token] = ACTIONS(2675), - [sym__strong_emphasis_open_star] = ACTIONS(2675), - [sym__strong_emphasis_open_underscore] = ACTIONS(2675), - [sym__emphasis_open_star] = ACTIONS(2675), - [sym__emphasis_open_underscore] = ACTIONS(2675), - [sym_inline_note_reference] = ACTIONS(2675), - [sym_html_element] = ACTIONS(2675), - [sym__pandoc_line_break] = ACTIONS(2675), + [STATE(443)] = { + [ts_builtin_sym_end] = ACTIONS(2777), + [anon_sym_COLON] = ACTIONS(2777), + [sym_entity_reference] = ACTIONS(2777), + [sym_numeric_character_reference] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_BANG_LBRACK] = ACTIONS(2777), + [anon_sym_DOLLAR] = ACTIONS(2779), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2777), + [aux_sym_pandoc_str_token1] = ACTIONS(2779), + [anon_sym_PIPE] = ACTIONS(2777), + [sym__whitespace] = ACTIONS(2777), + [sym__line_ending] = ACTIONS(2777), + [sym__soft_line_ending] = ACTIONS(2777), + [sym__block_quote_start] = ACTIONS(2777), + [sym_atx_h1_marker] = ACTIONS(2777), + [sym_atx_h2_marker] = ACTIONS(2777), + [sym_atx_h3_marker] = ACTIONS(2777), + [sym_atx_h4_marker] = ACTIONS(2777), + [sym_atx_h5_marker] = ACTIONS(2777), + [sym_atx_h6_marker] = ACTIONS(2777), + [sym__thematic_break] = ACTIONS(2777), + [sym__list_marker_minus] = ACTIONS(2777), + [sym__list_marker_plus] = ACTIONS(2777), + [sym__list_marker_star] = ACTIONS(2777), + [sym__list_marker_parenthesis] = ACTIONS(2777), + [sym__list_marker_dot] = ACTIONS(2777), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2777), + [sym__list_marker_example] = ACTIONS(2777), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2777), + [sym__fenced_code_block_start_backtick] = ACTIONS(2777), + [sym_minus_metadata] = ACTIONS(2777), + [sym__pipe_table_start] = ACTIONS(2777), + [sym__fenced_div_start] = ACTIONS(2777), + [sym_ref_id_specifier] = ACTIONS(2777), + [sym__code_span_start] = ACTIONS(2777), + [sym__html_comment] = ACTIONS(2777), + [sym__autolink] = ACTIONS(2777), + [sym__highlight_span_start] = ACTIONS(2777), + [sym__insert_span_start] = ACTIONS(2777), + [sym__delete_span_start] = ACTIONS(2777), + [sym__edit_comment_span_start] = ACTIONS(2777), + [sym__single_quote_span_open] = ACTIONS(2777), + [sym__double_quote_span_open] = ACTIONS(2777), + [sym__shortcode_open_escaped] = ACTIONS(2777), + [sym__shortcode_open] = ACTIONS(2777), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2777), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2777), + [sym__cite_author_in_text] = ACTIONS(2777), + [sym__cite_suppress_author] = ACTIONS(2777), + [sym__strikeout_open] = ACTIONS(2777), + [sym__subscript_open] = ACTIONS(2777), + [sym__superscript_open] = ACTIONS(2777), + [sym__inline_note_start_token] = ACTIONS(2777), + [sym__strong_emphasis_open_star] = ACTIONS(2777), + [sym__strong_emphasis_open_underscore] = ACTIONS(2777), + [sym__emphasis_open_star] = ACTIONS(2777), + [sym__emphasis_open_underscore] = ACTIONS(2777), + [sym_inline_note_reference] = ACTIONS(2777), + [sym_html_element] = ACTIONS(2777), + [sym__pandoc_line_break] = ACTIONS(2777), }, - [STATE(472)] = { - [ts_builtin_sym_end] = ACTIONS(3274), - [anon_sym_COLON] = ACTIONS(3274), - [sym_entity_reference] = ACTIONS(3274), - [sym_numeric_character_reference] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_BANG_LBRACK] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [aux_sym_pandoc_str_token1] = ACTIONS(3276), - [anon_sym_PIPE] = ACTIONS(3274), - [aux_sym__prose_punctuation_token1] = ACTIONS(3276), - [sym__line_ending] = ACTIONS(3274), - [sym__soft_line_ending] = ACTIONS(3274), - [sym__block_quote_start] = ACTIONS(3274), - [sym_atx_h1_marker] = ACTIONS(3274), - [sym_atx_h2_marker] = ACTIONS(3274), - [sym_atx_h3_marker] = ACTIONS(3274), - [sym_atx_h4_marker] = ACTIONS(3274), - [sym_atx_h5_marker] = ACTIONS(3274), - [sym_atx_h6_marker] = ACTIONS(3274), - [sym__thematic_break] = ACTIONS(3274), - [sym__list_marker_minus] = ACTIONS(3274), - [sym__list_marker_plus] = ACTIONS(3274), - [sym__list_marker_star] = ACTIONS(3274), - [sym__list_marker_parenthesis] = ACTIONS(3274), - [sym__list_marker_dot] = ACTIONS(3274), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_example] = ACTIONS(3274), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3274), - [sym__fenced_code_block_start_backtick] = ACTIONS(3274), - [sym_minus_metadata] = ACTIONS(3274), - [sym__pipe_table_start] = ACTIONS(3274), - [sym__fenced_div_start] = ACTIONS(3274), - [sym_ref_id_specifier] = ACTIONS(3274), - [sym__code_span_start] = ACTIONS(3274), - [sym__html_comment] = ACTIONS(3274), - [sym__autolink] = ACTIONS(3274), - [sym__highlight_span_start] = ACTIONS(3274), - [sym__insert_span_start] = ACTIONS(3274), - [sym__delete_span_start] = ACTIONS(3274), - [sym__edit_comment_span_start] = ACTIONS(3274), - [sym__single_quote_span_open] = ACTIONS(3274), - [sym__double_quote_span_open] = ACTIONS(3274), - [sym__shortcode_open_escaped] = ACTIONS(3274), - [sym__shortcode_open] = ACTIONS(3274), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3274), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3274), - [sym__cite_author_in_text] = ACTIONS(3274), - [sym__cite_suppress_author] = ACTIONS(3274), - [sym__strikeout_open] = ACTIONS(3274), - [sym__subscript_open] = ACTIONS(3274), - [sym__superscript_open] = ACTIONS(3274), - [sym__inline_note_start_token] = ACTIONS(3274), - [sym__strong_emphasis_open_star] = ACTIONS(3274), - [sym__strong_emphasis_open_underscore] = ACTIONS(3274), - [sym__emphasis_open_star] = ACTIONS(3274), - [sym__emphasis_open_underscore] = ACTIONS(3274), - [sym_inline_note_reference] = ACTIONS(3274), - [sym_html_element] = ACTIONS(3274), - [sym__pandoc_line_break] = ACTIONS(3274), + [STATE(444)] = { + [sym_pandoc_paragraph] = STATE(276), + [sym__inlines] = STATE(3179), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__soft_line_break] = STATE(755), + [sym__inline_whitespace] = STATE(755), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(189), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(473)] = { - [ts_builtin_sym_end] = ACTIONS(2681), - [anon_sym_COLON] = ACTIONS(2681), - [sym_entity_reference] = ACTIONS(2681), - [sym_numeric_character_reference] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_BANG_LBRACK] = ACTIONS(2681), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [aux_sym_pandoc_str_token1] = ACTIONS(2683), - [anon_sym_PIPE] = ACTIONS(2681), - [aux_sym__prose_punctuation_token1] = ACTIONS(2683), - [sym__line_ending] = ACTIONS(2681), - [sym__soft_line_ending] = ACTIONS(2681), - [sym__block_quote_start] = ACTIONS(2681), - [sym_atx_h1_marker] = ACTIONS(2681), - [sym_atx_h2_marker] = ACTIONS(2681), - [sym_atx_h3_marker] = ACTIONS(2681), - [sym_atx_h4_marker] = ACTIONS(2681), - [sym_atx_h5_marker] = ACTIONS(2681), - [sym_atx_h6_marker] = ACTIONS(2681), - [sym__thematic_break] = ACTIONS(2681), - [sym__list_marker_minus] = ACTIONS(2681), - [sym__list_marker_plus] = ACTIONS(2681), - [sym__list_marker_star] = ACTIONS(2681), - [sym__list_marker_parenthesis] = ACTIONS(2681), - [sym__list_marker_dot] = ACTIONS(2681), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_example] = ACTIONS(2681), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2681), - [sym__fenced_code_block_start_backtick] = ACTIONS(2681), - [sym_minus_metadata] = ACTIONS(2681), - [sym__pipe_table_start] = ACTIONS(2681), - [sym__fenced_div_start] = ACTIONS(2681), - [sym_ref_id_specifier] = ACTIONS(2681), - [sym__code_span_start] = ACTIONS(2681), - [sym__html_comment] = ACTIONS(2681), - [sym__autolink] = ACTIONS(2681), - [sym__highlight_span_start] = ACTIONS(2681), - [sym__insert_span_start] = ACTIONS(2681), - [sym__delete_span_start] = ACTIONS(2681), - [sym__edit_comment_span_start] = ACTIONS(2681), - [sym__single_quote_span_open] = ACTIONS(2681), - [sym__double_quote_span_open] = ACTIONS(2681), - [sym__shortcode_open_escaped] = ACTIONS(2681), - [sym__shortcode_open] = ACTIONS(2681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2681), - [sym__cite_author_in_text] = ACTIONS(2681), - [sym__cite_suppress_author] = ACTIONS(2681), - [sym__strikeout_open] = ACTIONS(2681), - [sym__subscript_open] = ACTIONS(2681), - [sym__superscript_open] = ACTIONS(2681), - [sym__inline_note_start_token] = ACTIONS(2681), - [sym__strong_emphasis_open_star] = ACTIONS(2681), - [sym__strong_emphasis_open_underscore] = ACTIONS(2681), - [sym__emphasis_open_star] = ACTIONS(2681), - [sym__emphasis_open_underscore] = ACTIONS(2681), - [sym_inline_note_reference] = ACTIONS(2681), - [sym_html_element] = ACTIONS(2681), - [sym__pandoc_line_break] = ACTIONS(2681), + [STATE(445)] = { + [sym__atx_heading_content] = STATE(3021), + [sym__inlines] = STATE(3021), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(387), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(25), + [sym__eof] = ACTIONS(3081), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, - [STATE(474)] = { - [ts_builtin_sym_end] = ACTIONS(3206), - [anon_sym_COLON] = ACTIONS(3206), - [sym_entity_reference] = ACTIONS(3206), - [sym_numeric_character_reference] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_BANG_LBRACK] = ACTIONS(3206), - [anon_sym_DOLLAR] = ACTIONS(3208), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3206), - [aux_sym_pandoc_str_token1] = ACTIONS(3208), - [anon_sym_PIPE] = ACTIONS(3206), - [aux_sym__prose_punctuation_token1] = ACTIONS(3208), - [sym__line_ending] = ACTIONS(3206), - [sym__soft_line_ending] = ACTIONS(3206), - [sym__block_quote_start] = ACTIONS(3206), - [sym_atx_h1_marker] = ACTIONS(3206), - [sym_atx_h2_marker] = ACTIONS(3206), - [sym_atx_h3_marker] = ACTIONS(3206), - [sym_atx_h4_marker] = ACTIONS(3206), - [sym_atx_h5_marker] = ACTIONS(3206), - [sym_atx_h6_marker] = ACTIONS(3206), - [sym__thematic_break] = ACTIONS(3206), - [sym__list_marker_minus] = ACTIONS(3206), - [sym__list_marker_plus] = ACTIONS(3206), - [sym__list_marker_star] = ACTIONS(3206), - [sym__list_marker_parenthesis] = ACTIONS(3206), - [sym__list_marker_dot] = ACTIONS(3206), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_example] = ACTIONS(3206), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3206), - [sym__fenced_code_block_start_backtick] = ACTIONS(3206), - [sym_minus_metadata] = ACTIONS(3206), - [sym__pipe_table_start] = ACTIONS(3206), - [sym__fenced_div_start] = ACTIONS(3206), - [sym_ref_id_specifier] = ACTIONS(3206), - [sym__code_span_start] = ACTIONS(3206), - [sym__html_comment] = ACTIONS(3206), - [sym__autolink] = ACTIONS(3206), - [sym__highlight_span_start] = ACTIONS(3206), - [sym__insert_span_start] = ACTIONS(3206), - [sym__delete_span_start] = ACTIONS(3206), - [sym__edit_comment_span_start] = ACTIONS(3206), - [sym__single_quote_span_open] = ACTIONS(3206), - [sym__double_quote_span_open] = ACTIONS(3206), - [sym__shortcode_open_escaped] = ACTIONS(3206), - [sym__shortcode_open] = ACTIONS(3206), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3206), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3206), - [sym__cite_author_in_text] = ACTIONS(3206), - [sym__cite_suppress_author] = ACTIONS(3206), - [sym__strikeout_open] = ACTIONS(3206), - [sym__subscript_open] = ACTIONS(3206), - [sym__superscript_open] = ACTIONS(3206), - [sym__inline_note_start_token] = ACTIONS(3206), - [sym__strong_emphasis_open_star] = ACTIONS(3206), - [sym__strong_emphasis_open_underscore] = ACTIONS(3206), - [sym__emphasis_open_star] = ACTIONS(3206), - [sym__emphasis_open_underscore] = ACTIONS(3206), - [sym_inline_note_reference] = ACTIONS(3206), - [sym_html_element] = ACTIONS(3206), - [sym__pandoc_line_break] = ACTIONS(3206), + [STATE(446)] = { + [ts_builtin_sym_end] = ACTIONS(2781), + [anon_sym_COLON] = ACTIONS(2781), + [sym_entity_reference] = ACTIONS(2781), + [sym_numeric_character_reference] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_BANG_LBRACK] = ACTIONS(2781), + [anon_sym_DOLLAR] = ACTIONS(2783), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2781), + [aux_sym_pandoc_str_token1] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(2781), + [sym__whitespace] = ACTIONS(2781), + [sym__line_ending] = ACTIONS(2781), + [sym__soft_line_ending] = ACTIONS(2781), + [sym__block_quote_start] = ACTIONS(2781), + [sym_atx_h1_marker] = ACTIONS(2781), + [sym_atx_h2_marker] = ACTIONS(2781), + [sym_atx_h3_marker] = ACTIONS(2781), + [sym_atx_h4_marker] = ACTIONS(2781), + [sym_atx_h5_marker] = ACTIONS(2781), + [sym_atx_h6_marker] = ACTIONS(2781), + [sym__thematic_break] = ACTIONS(2781), + [sym__list_marker_minus] = ACTIONS(2781), + [sym__list_marker_plus] = ACTIONS(2781), + [sym__list_marker_star] = ACTIONS(2781), + [sym__list_marker_parenthesis] = ACTIONS(2781), + [sym__list_marker_dot] = ACTIONS(2781), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2781), + [sym__list_marker_example] = ACTIONS(2781), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2781), + [sym__fenced_code_block_start_backtick] = ACTIONS(2781), + [sym_minus_metadata] = ACTIONS(2781), + [sym__pipe_table_start] = ACTIONS(2781), + [sym__fenced_div_start] = ACTIONS(2781), + [sym_ref_id_specifier] = ACTIONS(2781), + [sym__code_span_start] = ACTIONS(2781), + [sym__html_comment] = ACTIONS(2781), + [sym__autolink] = ACTIONS(2781), + [sym__highlight_span_start] = ACTIONS(2781), + [sym__insert_span_start] = ACTIONS(2781), + [sym__delete_span_start] = ACTIONS(2781), + [sym__edit_comment_span_start] = ACTIONS(2781), + [sym__single_quote_span_open] = ACTIONS(2781), + [sym__double_quote_span_open] = ACTIONS(2781), + [sym__shortcode_open_escaped] = ACTIONS(2781), + [sym__shortcode_open] = ACTIONS(2781), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2781), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2781), + [sym__cite_author_in_text] = ACTIONS(2781), + [sym__cite_suppress_author] = ACTIONS(2781), + [sym__strikeout_open] = ACTIONS(2781), + [sym__subscript_open] = ACTIONS(2781), + [sym__superscript_open] = ACTIONS(2781), + [sym__inline_note_start_token] = ACTIONS(2781), + [sym__strong_emphasis_open_star] = ACTIONS(2781), + [sym__strong_emphasis_open_underscore] = ACTIONS(2781), + [sym__emphasis_open_star] = ACTIONS(2781), + [sym__emphasis_open_underscore] = ACTIONS(2781), + [sym_inline_note_reference] = ACTIONS(2781), + [sym_html_element] = ACTIONS(2781), + [sym__pandoc_line_break] = ACTIONS(2781), }, - [STATE(475)] = { - [sym_pandoc_span] = STATE(475), - [sym_pandoc_image] = STATE(475), - [sym_pandoc_math] = STATE(475), - [sym_pandoc_display_math] = STATE(475), - [sym_pandoc_code_span] = STATE(475), - [sym_pandoc_single_quote] = STATE(475), - [sym_pandoc_double_quote] = STATE(475), - [sym_insert] = STATE(475), - [sym_delete] = STATE(475), - [sym_edit_comment] = STATE(475), - [sym_highlight] = STATE(475), - [sym__pandoc_attr_specifier] = STATE(475), - [sym__inline_element] = STATE(475), - [sym_shortcode_escaped] = STATE(475), - [sym_shortcode] = STATE(475), - [sym_citation] = STATE(475), - [sym_inline_note] = STATE(475), - [sym_pandoc_superscript] = STATE(475), - [sym_pandoc_subscript] = STATE(475), - [sym_pandoc_strikeout] = STATE(475), - [sym_pandoc_emph] = STATE(475), - [sym_pandoc_strong] = STATE(475), - [sym_pandoc_str] = STATE(475), - [sym__prose_punctuation] = STATE(475), - [aux_sym__line_repeat1] = STATE(475), - [sym_entity_reference] = ACTIONS(3666), - [sym_numeric_character_reference] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3669), - [anon_sym_BANG_LBRACK] = ACTIONS(3672), - [anon_sym_DOLLAR] = ACTIONS(3675), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3678), - [anon_sym_LBRACE] = ACTIONS(3681), - [aux_sym_pandoc_str_token1] = ACTIONS(3684), - [anon_sym_PIPE] = ACTIONS(3687), - [aux_sym__prose_punctuation_token1] = ACTIONS(3690), - [sym__whitespace] = ACTIONS(3693), - [sym__line_ending] = ACTIONS(3512), - [sym__soft_line_ending] = ACTIONS(3512), - [sym__eof] = ACTIONS(3512), - [sym__code_span_start] = ACTIONS(3696), - [sym__html_comment] = ACTIONS(3666), - [sym__autolink] = ACTIONS(3666), - [sym__highlight_span_start] = ACTIONS(3699), - [sym__insert_span_start] = ACTIONS(3702), - [sym__delete_span_start] = ACTIONS(3705), - [sym__edit_comment_span_start] = ACTIONS(3708), - [sym__single_quote_span_open] = ACTIONS(3711), - [sym__double_quote_span_open] = ACTIONS(3714), - [sym__shortcode_open_escaped] = ACTIONS(3717), - [sym__shortcode_open] = ACTIONS(3720), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3723), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3726), - [sym__cite_author_in_text] = ACTIONS(3729), - [sym__cite_suppress_author] = ACTIONS(3732), - [sym__strikeout_open] = ACTIONS(3735), - [sym__subscript_open] = ACTIONS(3738), - [sym__superscript_open] = ACTIONS(3741), - [sym__inline_note_start_token] = ACTIONS(3744), - [sym__strong_emphasis_open_star] = ACTIONS(3747), - [sym__strong_emphasis_open_underscore] = ACTIONS(3750), - [sym__emphasis_open_star] = ACTIONS(3753), - [sym__emphasis_open_underscore] = ACTIONS(3756), - [sym_inline_note_reference] = ACTIONS(3666), - [sym_html_element] = ACTIONS(3666), - [sym__pandoc_line_break] = ACTIONS(3666), + [STATE(447)] = { + [ts_builtin_sym_end] = ACTIONS(2789), + [anon_sym_COLON] = ACTIONS(2789), + [sym_entity_reference] = ACTIONS(2789), + [sym_numeric_character_reference] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_BANG_LBRACK] = ACTIONS(2789), + [anon_sym_DOLLAR] = ACTIONS(2791), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2789), + [aux_sym_pandoc_str_token1] = ACTIONS(2791), + [anon_sym_PIPE] = ACTIONS(2789), + [sym__whitespace] = ACTIONS(2789), + [sym__line_ending] = ACTIONS(2789), + [sym__soft_line_ending] = ACTIONS(2789), + [sym__block_quote_start] = ACTIONS(2789), + [sym_atx_h1_marker] = ACTIONS(2789), + [sym_atx_h2_marker] = ACTIONS(2789), + [sym_atx_h3_marker] = ACTIONS(2789), + [sym_atx_h4_marker] = ACTIONS(2789), + [sym_atx_h5_marker] = ACTIONS(2789), + [sym_atx_h6_marker] = ACTIONS(2789), + [sym__thematic_break] = ACTIONS(2789), + [sym__list_marker_minus] = ACTIONS(2789), + [sym__list_marker_plus] = ACTIONS(2789), + [sym__list_marker_star] = ACTIONS(2789), + [sym__list_marker_parenthesis] = ACTIONS(2789), + [sym__list_marker_dot] = ACTIONS(2789), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2789), + [sym__list_marker_example] = ACTIONS(2789), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2789), + [sym__fenced_code_block_start_backtick] = ACTIONS(2789), + [sym_minus_metadata] = ACTIONS(2789), + [sym__pipe_table_start] = ACTIONS(2789), + [sym__fenced_div_start] = ACTIONS(2789), + [sym_ref_id_specifier] = ACTIONS(2789), + [sym__code_span_start] = ACTIONS(2789), + [sym__html_comment] = ACTIONS(2789), + [sym__autolink] = ACTIONS(2789), + [sym__highlight_span_start] = ACTIONS(2789), + [sym__insert_span_start] = ACTIONS(2789), + [sym__delete_span_start] = ACTIONS(2789), + [sym__edit_comment_span_start] = ACTIONS(2789), + [sym__single_quote_span_open] = ACTIONS(2789), + [sym__double_quote_span_open] = ACTIONS(2789), + [sym__shortcode_open_escaped] = ACTIONS(2789), + [sym__shortcode_open] = ACTIONS(2789), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2789), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2789), + [sym__cite_author_in_text] = ACTIONS(2789), + [sym__cite_suppress_author] = ACTIONS(2789), + [sym__strikeout_open] = ACTIONS(2789), + [sym__subscript_open] = ACTIONS(2789), + [sym__superscript_open] = ACTIONS(2789), + [sym__inline_note_start_token] = ACTIONS(2789), + [sym__strong_emphasis_open_star] = ACTIONS(2789), + [sym__strong_emphasis_open_underscore] = ACTIONS(2789), + [sym__emphasis_open_star] = ACTIONS(2789), + [sym__emphasis_open_underscore] = ACTIONS(2789), + [sym_inline_note_reference] = ACTIONS(2789), + [sym_html_element] = ACTIONS(2789), + [sym__pandoc_line_break] = ACTIONS(2789), }, - [STATE(476)] = { - [ts_builtin_sym_end] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3280), - [sym_entity_reference] = ACTIONS(3280), - [sym_numeric_character_reference] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_BANG_LBRACK] = ACTIONS(3280), - [anon_sym_DOLLAR] = ACTIONS(3282), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3280), - [aux_sym_pandoc_str_token1] = ACTIONS(3282), - [anon_sym_PIPE] = ACTIONS(3280), - [aux_sym__prose_punctuation_token1] = ACTIONS(3282), - [sym__line_ending] = ACTIONS(3280), - [sym__soft_line_ending] = ACTIONS(3280), - [sym__block_quote_start] = ACTIONS(3280), - [sym_atx_h1_marker] = ACTIONS(3280), - [sym_atx_h2_marker] = ACTIONS(3280), - [sym_atx_h3_marker] = ACTIONS(3280), - [sym_atx_h4_marker] = ACTIONS(3280), - [sym_atx_h5_marker] = ACTIONS(3280), - [sym_atx_h6_marker] = ACTIONS(3280), - [sym__thematic_break] = ACTIONS(3280), - [sym__list_marker_minus] = ACTIONS(3280), - [sym__list_marker_plus] = ACTIONS(3280), - [sym__list_marker_star] = ACTIONS(3280), - [sym__list_marker_parenthesis] = ACTIONS(3280), - [sym__list_marker_dot] = ACTIONS(3280), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_example] = ACTIONS(3280), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3280), - [sym__fenced_code_block_start_backtick] = ACTIONS(3280), - [sym_minus_metadata] = ACTIONS(3280), - [sym__pipe_table_start] = ACTIONS(3280), - [sym__fenced_div_start] = ACTIONS(3280), - [sym_ref_id_specifier] = ACTIONS(3280), - [sym__code_span_start] = ACTIONS(3280), - [sym__html_comment] = ACTIONS(3280), - [sym__autolink] = ACTIONS(3280), - [sym__highlight_span_start] = ACTIONS(3280), - [sym__insert_span_start] = ACTIONS(3280), - [sym__delete_span_start] = ACTIONS(3280), - [sym__edit_comment_span_start] = ACTIONS(3280), - [sym__single_quote_span_open] = ACTIONS(3280), - [sym__double_quote_span_open] = ACTIONS(3280), - [sym__shortcode_open_escaped] = ACTIONS(3280), - [sym__shortcode_open] = ACTIONS(3280), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3280), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3280), - [sym__cite_author_in_text] = ACTIONS(3280), - [sym__cite_suppress_author] = ACTIONS(3280), - [sym__strikeout_open] = ACTIONS(3280), - [sym__subscript_open] = ACTIONS(3280), - [sym__superscript_open] = ACTIONS(3280), - [sym__inline_note_start_token] = ACTIONS(3280), - [sym__strong_emphasis_open_star] = ACTIONS(3280), - [sym__strong_emphasis_open_underscore] = ACTIONS(3280), - [sym__emphasis_open_star] = ACTIONS(3280), - [sym__emphasis_open_underscore] = ACTIONS(3280), - [sym_inline_note_reference] = ACTIONS(3280), - [sym_html_element] = ACTIONS(3280), - [sym__pandoc_line_break] = ACTIONS(3280), + [STATE(448)] = { + [ts_builtin_sym_end] = ACTIONS(2793), + [anon_sym_COLON] = ACTIONS(2793), + [sym_entity_reference] = ACTIONS(2793), + [sym_numeric_character_reference] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_BANG_LBRACK] = ACTIONS(2793), + [anon_sym_DOLLAR] = ACTIONS(2795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2793), + [aux_sym_pandoc_str_token1] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2793), + [sym__whitespace] = ACTIONS(2793), + [sym__line_ending] = ACTIONS(2793), + [sym__soft_line_ending] = ACTIONS(2793), + [sym__block_quote_start] = ACTIONS(2793), + [sym_atx_h1_marker] = ACTIONS(2793), + [sym_atx_h2_marker] = ACTIONS(2793), + [sym_atx_h3_marker] = ACTIONS(2793), + [sym_atx_h4_marker] = ACTIONS(2793), + [sym_atx_h5_marker] = ACTIONS(2793), + [sym_atx_h6_marker] = ACTIONS(2793), + [sym__thematic_break] = ACTIONS(2793), + [sym__list_marker_minus] = ACTIONS(2793), + [sym__list_marker_plus] = ACTIONS(2793), + [sym__list_marker_star] = ACTIONS(2793), + [sym__list_marker_parenthesis] = ACTIONS(2793), + [sym__list_marker_dot] = ACTIONS(2793), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2793), + [sym__list_marker_example] = ACTIONS(2793), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2793), + [sym__fenced_code_block_start_backtick] = ACTIONS(2793), + [sym_minus_metadata] = ACTIONS(2793), + [sym__pipe_table_start] = ACTIONS(2793), + [sym__fenced_div_start] = ACTIONS(2793), + [sym_ref_id_specifier] = ACTIONS(2793), + [sym__code_span_start] = ACTIONS(2793), + [sym__html_comment] = ACTIONS(2793), + [sym__autolink] = ACTIONS(2793), + [sym__highlight_span_start] = ACTIONS(2793), + [sym__insert_span_start] = ACTIONS(2793), + [sym__delete_span_start] = ACTIONS(2793), + [sym__edit_comment_span_start] = ACTIONS(2793), + [sym__single_quote_span_open] = ACTIONS(2793), + [sym__double_quote_span_open] = ACTIONS(2793), + [sym__shortcode_open_escaped] = ACTIONS(2793), + [sym__shortcode_open] = ACTIONS(2793), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2793), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2793), + [sym__cite_author_in_text] = ACTIONS(2793), + [sym__cite_suppress_author] = ACTIONS(2793), + [sym__strikeout_open] = ACTIONS(2793), + [sym__subscript_open] = ACTIONS(2793), + [sym__superscript_open] = ACTIONS(2793), + [sym__inline_note_start_token] = ACTIONS(2793), + [sym__strong_emphasis_open_star] = ACTIONS(2793), + [sym__strong_emphasis_open_underscore] = ACTIONS(2793), + [sym__emphasis_open_star] = ACTIONS(2793), + [sym__emphasis_open_underscore] = ACTIONS(2793), + [sym_inline_note_reference] = ACTIONS(2793), + [sym_html_element] = ACTIONS(2793), + [sym__pandoc_line_break] = ACTIONS(2793), }, - [STATE(477)] = { - [sym_pipe_table_cell] = STATE(3086), - [sym_pandoc_span] = STATE(746), - [sym_pandoc_image] = STATE(746), - [sym_pandoc_math] = STATE(746), - [sym_pandoc_display_math] = STATE(746), - [sym_pandoc_code_span] = STATE(746), - [sym_pandoc_single_quote] = STATE(746), - [sym_pandoc_double_quote] = STATE(746), - [sym_insert] = STATE(746), - [sym_delete] = STATE(746), - [sym_edit_comment] = STATE(746), - [sym_highlight] = STATE(746), - [sym__pandoc_attr_specifier] = STATE(746), - [sym__line_with_maybe_spaces] = STATE(3072), - [sym__inline_element] = STATE(746), - [sym_shortcode_escaped] = STATE(746), - [sym_shortcode] = STATE(746), - [sym_citation] = STATE(746), - [sym_inline_note] = STATE(746), - [sym_pandoc_superscript] = STATE(746), - [sym_pandoc_subscript] = STATE(746), - [sym_pandoc_strikeout] = STATE(746), - [sym_pandoc_emph] = STATE(746), - [sym_pandoc_strong] = STATE(746), - [sym_pandoc_str] = STATE(746), - [sym__prose_punctuation] = STATE(746), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(746), - [sym_entity_reference] = ACTIONS(3598), - [sym_numeric_character_reference] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_BANG_LBRACK] = ACTIONS(3602), - [anon_sym_DOLLAR] = ACTIONS(3604), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(3608), - [aux_sym_pandoc_str_token1] = ACTIONS(3610), - [anon_sym_PIPE] = ACTIONS(3612), - [aux_sym__prose_punctuation_token1] = ACTIONS(3614), - [sym__whitespace] = ACTIONS(3616), - [sym__code_span_start] = ACTIONS(3618), - [sym__html_comment] = ACTIONS(3598), - [sym__autolink] = ACTIONS(3598), - [sym__highlight_span_start] = ACTIONS(3620), - [sym__insert_span_start] = ACTIONS(3622), - [sym__delete_span_start] = ACTIONS(3624), - [sym__edit_comment_span_start] = ACTIONS(3626), - [sym__single_quote_span_open] = ACTIONS(3628), - [sym__double_quote_span_open] = ACTIONS(3630), - [sym__shortcode_open_escaped] = ACTIONS(3632), - [sym__shortcode_open] = ACTIONS(3634), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3636), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3638), - [sym__cite_author_in_text] = ACTIONS(3640), - [sym__cite_suppress_author] = ACTIONS(3642), - [sym__strikeout_open] = ACTIONS(3644), - [sym__subscript_open] = ACTIONS(3646), - [sym__superscript_open] = ACTIONS(3648), - [sym__inline_note_start_token] = ACTIONS(3650), - [sym__strong_emphasis_open_star] = ACTIONS(3652), - [sym__strong_emphasis_open_underscore] = ACTIONS(3654), - [sym__emphasis_open_star] = ACTIONS(3656), - [sym__emphasis_open_underscore] = ACTIONS(3658), - [sym_inline_note_reference] = ACTIONS(3598), - [sym_html_element] = ACTIONS(3598), - [sym__pipe_table_delimiter] = ACTIONS(2326), - [sym__pandoc_line_break] = ACTIONS(3598), + [STATE(449)] = { + [ts_builtin_sym_end] = ACTIONS(2797), + [anon_sym_COLON] = ACTIONS(2797), + [sym_entity_reference] = ACTIONS(2797), + [sym_numeric_character_reference] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_BANG_LBRACK] = ACTIONS(2797), + [anon_sym_DOLLAR] = ACTIONS(2799), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2797), + [aux_sym_pandoc_str_token1] = ACTIONS(2799), + [anon_sym_PIPE] = ACTIONS(2797), + [sym__whitespace] = ACTIONS(2797), + [sym__line_ending] = ACTIONS(2797), + [sym__soft_line_ending] = ACTIONS(2797), + [sym__block_quote_start] = ACTIONS(2797), + [sym_atx_h1_marker] = ACTIONS(2797), + [sym_atx_h2_marker] = ACTIONS(2797), + [sym_atx_h3_marker] = ACTIONS(2797), + [sym_atx_h4_marker] = ACTIONS(2797), + [sym_atx_h5_marker] = ACTIONS(2797), + [sym_atx_h6_marker] = ACTIONS(2797), + [sym__thematic_break] = ACTIONS(2797), + [sym__list_marker_minus] = ACTIONS(2797), + [sym__list_marker_plus] = ACTIONS(2797), + [sym__list_marker_star] = ACTIONS(2797), + [sym__list_marker_parenthesis] = ACTIONS(2797), + [sym__list_marker_dot] = ACTIONS(2797), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2797), + [sym__list_marker_example] = ACTIONS(2797), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2797), + [sym__fenced_code_block_start_backtick] = ACTIONS(2797), + [sym_minus_metadata] = ACTIONS(2797), + [sym__pipe_table_start] = ACTIONS(2797), + [sym__fenced_div_start] = ACTIONS(2797), + [sym_ref_id_specifier] = ACTIONS(2797), + [sym__code_span_start] = ACTIONS(2797), + [sym__html_comment] = ACTIONS(2797), + [sym__autolink] = ACTIONS(2797), + [sym__highlight_span_start] = ACTIONS(2797), + [sym__insert_span_start] = ACTIONS(2797), + [sym__delete_span_start] = ACTIONS(2797), + [sym__edit_comment_span_start] = ACTIONS(2797), + [sym__single_quote_span_open] = ACTIONS(2797), + [sym__double_quote_span_open] = ACTIONS(2797), + [sym__shortcode_open_escaped] = ACTIONS(2797), + [sym__shortcode_open] = ACTIONS(2797), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2797), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2797), + [sym__cite_author_in_text] = ACTIONS(2797), + [sym__cite_suppress_author] = ACTIONS(2797), + [sym__strikeout_open] = ACTIONS(2797), + [sym__subscript_open] = ACTIONS(2797), + [sym__superscript_open] = ACTIONS(2797), + [sym__inline_note_start_token] = ACTIONS(2797), + [sym__strong_emphasis_open_star] = ACTIONS(2797), + [sym__strong_emphasis_open_underscore] = ACTIONS(2797), + [sym__emphasis_open_star] = ACTIONS(2797), + [sym__emphasis_open_underscore] = ACTIONS(2797), + [sym_inline_note_reference] = ACTIONS(2797), + [sym_html_element] = ACTIONS(2797), + [sym__pandoc_line_break] = ACTIONS(2797), }, - [STATE(478)] = { - [ts_builtin_sym_end] = ACTIONS(2687), - [anon_sym_COLON] = ACTIONS(2687), - [sym_entity_reference] = ACTIONS(2687), - [sym_numeric_character_reference] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_BANG_LBRACK] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [aux_sym_pandoc_str_token1] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2687), - [aux_sym__prose_punctuation_token1] = ACTIONS(2689), - [sym__line_ending] = ACTIONS(2687), - [sym__soft_line_ending] = ACTIONS(2687), - [sym__block_quote_start] = ACTIONS(2687), - [sym_atx_h1_marker] = ACTIONS(2687), - [sym_atx_h2_marker] = ACTIONS(2687), - [sym_atx_h3_marker] = ACTIONS(2687), - [sym_atx_h4_marker] = ACTIONS(2687), - [sym_atx_h5_marker] = ACTIONS(2687), - [sym_atx_h6_marker] = ACTIONS(2687), - [sym__thematic_break] = ACTIONS(2687), - [sym__list_marker_minus] = ACTIONS(2687), - [sym__list_marker_plus] = ACTIONS(2687), - [sym__list_marker_star] = ACTIONS(2687), - [sym__list_marker_parenthesis] = ACTIONS(2687), - [sym__list_marker_dot] = ACTIONS(2687), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_example] = ACTIONS(2687), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2687), - [sym__fenced_code_block_start_backtick] = ACTIONS(2687), - [sym_minus_metadata] = ACTIONS(2687), - [sym__pipe_table_start] = ACTIONS(2687), - [sym__fenced_div_start] = ACTIONS(2687), - [sym_ref_id_specifier] = ACTIONS(2687), - [sym__code_span_start] = ACTIONS(2687), - [sym__html_comment] = ACTIONS(2687), - [sym__autolink] = ACTIONS(2687), - [sym__highlight_span_start] = ACTIONS(2687), - [sym__insert_span_start] = ACTIONS(2687), - [sym__delete_span_start] = ACTIONS(2687), - [sym__edit_comment_span_start] = ACTIONS(2687), - [sym__single_quote_span_open] = ACTIONS(2687), - [sym__double_quote_span_open] = ACTIONS(2687), - [sym__shortcode_open_escaped] = ACTIONS(2687), - [sym__shortcode_open] = ACTIONS(2687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2687), - [sym__cite_author_in_text] = ACTIONS(2687), - [sym__cite_suppress_author] = ACTIONS(2687), - [sym__strikeout_open] = ACTIONS(2687), - [sym__subscript_open] = ACTIONS(2687), - [sym__superscript_open] = ACTIONS(2687), - [sym__inline_note_start_token] = ACTIONS(2687), - [sym__strong_emphasis_open_star] = ACTIONS(2687), - [sym__strong_emphasis_open_underscore] = ACTIONS(2687), - [sym__emphasis_open_star] = ACTIONS(2687), - [sym__emphasis_open_underscore] = ACTIONS(2687), - [sym_inline_note_reference] = ACTIONS(2687), - [sym_html_element] = ACTIONS(2687), - [sym__pandoc_line_break] = ACTIONS(2687), + [STATE(450)] = { + [ts_builtin_sym_end] = ACTIONS(2861), + [anon_sym_COLON] = ACTIONS(2861), + [sym_entity_reference] = ACTIONS(2861), + [sym_numeric_character_reference] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_BANG_LBRACK] = ACTIONS(2861), + [anon_sym_DOLLAR] = ACTIONS(2863), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2861), + [aux_sym_pandoc_str_token1] = ACTIONS(2863), + [anon_sym_PIPE] = ACTIONS(2861), + [sym__whitespace] = ACTIONS(2861), + [sym__line_ending] = ACTIONS(2861), + [sym__soft_line_ending] = ACTIONS(2861), + [sym__block_quote_start] = ACTIONS(2861), + [sym_atx_h1_marker] = ACTIONS(2861), + [sym_atx_h2_marker] = ACTIONS(2861), + [sym_atx_h3_marker] = ACTIONS(2861), + [sym_atx_h4_marker] = ACTIONS(2861), + [sym_atx_h5_marker] = ACTIONS(2861), + [sym_atx_h6_marker] = ACTIONS(2861), + [sym__thematic_break] = ACTIONS(2861), + [sym__list_marker_minus] = ACTIONS(2861), + [sym__list_marker_plus] = ACTIONS(2861), + [sym__list_marker_star] = ACTIONS(2861), + [sym__list_marker_parenthesis] = ACTIONS(2861), + [sym__list_marker_dot] = ACTIONS(2861), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_example] = ACTIONS(2861), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2861), + [sym__fenced_code_block_start_backtick] = ACTIONS(2861), + [sym_minus_metadata] = ACTIONS(2861), + [sym__pipe_table_start] = ACTIONS(2861), + [sym__fenced_div_start] = ACTIONS(2861), + [sym_ref_id_specifier] = ACTIONS(2861), + [sym__code_span_start] = ACTIONS(2861), + [sym__html_comment] = ACTIONS(2861), + [sym__autolink] = ACTIONS(2861), + [sym__highlight_span_start] = ACTIONS(2861), + [sym__insert_span_start] = ACTIONS(2861), + [sym__delete_span_start] = ACTIONS(2861), + [sym__edit_comment_span_start] = ACTIONS(2861), + [sym__single_quote_span_open] = ACTIONS(2861), + [sym__double_quote_span_open] = ACTIONS(2861), + [sym__shortcode_open_escaped] = ACTIONS(2861), + [sym__shortcode_open] = ACTIONS(2861), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2861), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2861), + [sym__cite_author_in_text] = ACTIONS(2861), + [sym__cite_suppress_author] = ACTIONS(2861), + [sym__strikeout_open] = ACTIONS(2861), + [sym__subscript_open] = ACTIONS(2861), + [sym__superscript_open] = ACTIONS(2861), + [sym__inline_note_start_token] = ACTIONS(2861), + [sym__strong_emphasis_open_star] = ACTIONS(2861), + [sym__strong_emphasis_open_underscore] = ACTIONS(2861), + [sym__emphasis_open_star] = ACTIONS(2861), + [sym__emphasis_open_underscore] = ACTIONS(2861), + [sym_inline_note_reference] = ACTIONS(2861), + [sym_html_element] = ACTIONS(2861), + [sym__pandoc_line_break] = ACTIONS(2861), }, - [STATE(479)] = { - [anon_sym_COLON] = ACTIONS(3431), - [sym_entity_reference] = ACTIONS(3431), - [sym_numeric_character_reference] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_BANG_LBRACK] = ACTIONS(3431), - [anon_sym_DOLLAR] = ACTIONS(3433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [aux_sym_pandoc_str_token1] = ACTIONS(3433), - [anon_sym_PIPE] = ACTIONS(3431), - [aux_sym__prose_punctuation_token1] = ACTIONS(3433), - [sym__line_ending] = ACTIONS(3431), - [sym__soft_line_ending] = ACTIONS(3431), - [sym__block_close] = ACTIONS(3431), - [sym__block_quote_start] = ACTIONS(3431), - [sym_atx_h1_marker] = ACTIONS(3431), - [sym_atx_h2_marker] = ACTIONS(3431), - [sym_atx_h3_marker] = ACTIONS(3431), - [sym_atx_h4_marker] = ACTIONS(3431), - [sym_atx_h5_marker] = ACTIONS(3431), - [sym_atx_h6_marker] = ACTIONS(3431), - [sym__thematic_break] = ACTIONS(3431), - [sym__list_marker_minus] = ACTIONS(3431), - [sym__list_marker_plus] = ACTIONS(3431), - [sym__list_marker_star] = ACTIONS(3431), - [sym__list_marker_parenthesis] = ACTIONS(3431), - [sym__list_marker_dot] = ACTIONS(3431), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3431), - [sym__list_marker_example] = ACTIONS(3431), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3431), - [sym__fenced_code_block_start_backtick] = ACTIONS(3431), - [sym_minus_metadata] = ACTIONS(3431), - [sym__pipe_table_start] = ACTIONS(3431), - [sym__fenced_div_start] = ACTIONS(3431), - [sym_ref_id_specifier] = ACTIONS(3431), - [sym__code_span_start] = ACTIONS(3431), - [sym__html_comment] = ACTIONS(3431), - [sym__autolink] = ACTIONS(3431), - [sym__highlight_span_start] = ACTIONS(3431), - [sym__insert_span_start] = ACTIONS(3431), - [sym__delete_span_start] = ACTIONS(3431), - [sym__edit_comment_span_start] = ACTIONS(3431), - [sym__single_quote_span_open] = ACTIONS(3431), - [sym__double_quote_span_open] = ACTIONS(3431), - [sym__shortcode_open_escaped] = ACTIONS(3431), - [sym__shortcode_open] = ACTIONS(3431), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3431), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3431), - [sym__cite_author_in_text] = ACTIONS(3431), - [sym__cite_suppress_author] = ACTIONS(3431), - [sym__strikeout_open] = ACTIONS(3431), - [sym__subscript_open] = ACTIONS(3431), - [sym__superscript_open] = ACTIONS(3431), - [sym__inline_note_start_token] = ACTIONS(3431), - [sym__strong_emphasis_open_star] = ACTIONS(3431), - [sym__strong_emphasis_open_underscore] = ACTIONS(3431), - [sym__emphasis_open_star] = ACTIONS(3431), - [sym__emphasis_open_underscore] = ACTIONS(3431), - [sym_inline_note_reference] = ACTIONS(3431), - [sym_html_element] = ACTIONS(3431), - [sym__pandoc_line_break] = ACTIONS(3431), + [STATE(451)] = { + [ts_builtin_sym_end] = ACTIONS(2805), + [anon_sym_COLON] = ACTIONS(2805), + [sym_entity_reference] = ACTIONS(2805), + [sym_numeric_character_reference] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_BANG_LBRACK] = ACTIONS(2805), + [anon_sym_DOLLAR] = ACTIONS(2807), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2805), + [aux_sym_pandoc_str_token1] = ACTIONS(2807), + [anon_sym_PIPE] = ACTIONS(2805), + [sym__whitespace] = ACTIONS(2805), + [sym__line_ending] = ACTIONS(2805), + [sym__soft_line_ending] = ACTIONS(2805), + [sym__block_quote_start] = ACTIONS(2805), + [sym_atx_h1_marker] = ACTIONS(2805), + [sym_atx_h2_marker] = ACTIONS(2805), + [sym_atx_h3_marker] = ACTIONS(2805), + [sym_atx_h4_marker] = ACTIONS(2805), + [sym_atx_h5_marker] = ACTIONS(2805), + [sym_atx_h6_marker] = ACTIONS(2805), + [sym__thematic_break] = ACTIONS(2805), + [sym__list_marker_minus] = ACTIONS(2805), + [sym__list_marker_plus] = ACTIONS(2805), + [sym__list_marker_star] = ACTIONS(2805), + [sym__list_marker_parenthesis] = ACTIONS(2805), + [sym__list_marker_dot] = ACTIONS(2805), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2805), + [sym__list_marker_example] = ACTIONS(2805), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2805), + [sym__fenced_code_block_start_backtick] = ACTIONS(2805), + [sym_minus_metadata] = ACTIONS(2805), + [sym__pipe_table_start] = ACTIONS(2805), + [sym__fenced_div_start] = ACTIONS(2805), + [sym_ref_id_specifier] = ACTIONS(2805), + [sym__code_span_start] = ACTIONS(2805), + [sym__html_comment] = ACTIONS(2805), + [sym__autolink] = ACTIONS(2805), + [sym__highlight_span_start] = ACTIONS(2805), + [sym__insert_span_start] = ACTIONS(2805), + [sym__delete_span_start] = ACTIONS(2805), + [sym__edit_comment_span_start] = ACTIONS(2805), + [sym__single_quote_span_open] = ACTIONS(2805), + [sym__double_quote_span_open] = ACTIONS(2805), + [sym__shortcode_open_escaped] = ACTIONS(2805), + [sym__shortcode_open] = ACTIONS(2805), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2805), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2805), + [sym__cite_author_in_text] = ACTIONS(2805), + [sym__cite_suppress_author] = ACTIONS(2805), + [sym__strikeout_open] = ACTIONS(2805), + [sym__subscript_open] = ACTIONS(2805), + [sym__superscript_open] = ACTIONS(2805), + [sym__inline_note_start_token] = ACTIONS(2805), + [sym__strong_emphasis_open_star] = ACTIONS(2805), + [sym__strong_emphasis_open_underscore] = ACTIONS(2805), + [sym__emphasis_open_star] = ACTIONS(2805), + [sym__emphasis_open_underscore] = ACTIONS(2805), + [sym_inline_note_reference] = ACTIONS(2805), + [sym_html_element] = ACTIONS(2805), + [sym__pandoc_line_break] = ACTIONS(2805), }, - [STATE(480)] = { - [ts_builtin_sym_end] = ACTIONS(2693), - [anon_sym_COLON] = ACTIONS(2693), - [sym_entity_reference] = ACTIONS(2693), - [sym_numeric_character_reference] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_BANG_LBRACK] = ACTIONS(2693), - [anon_sym_DOLLAR] = ACTIONS(2695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [aux_sym_pandoc_str_token1] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2693), - [aux_sym__prose_punctuation_token1] = ACTIONS(2695), - [sym__line_ending] = ACTIONS(2693), - [sym__soft_line_ending] = ACTIONS(2693), - [sym__block_quote_start] = ACTIONS(2693), - [sym_atx_h1_marker] = ACTIONS(2693), - [sym_atx_h2_marker] = ACTIONS(2693), - [sym_atx_h3_marker] = ACTIONS(2693), - [sym_atx_h4_marker] = ACTIONS(2693), - [sym_atx_h5_marker] = ACTIONS(2693), - [sym_atx_h6_marker] = ACTIONS(2693), - [sym__thematic_break] = ACTIONS(2693), - [sym__list_marker_minus] = ACTIONS(2693), - [sym__list_marker_plus] = ACTIONS(2693), - [sym__list_marker_star] = ACTIONS(2693), - [sym__list_marker_parenthesis] = ACTIONS(2693), - [sym__list_marker_dot] = ACTIONS(2693), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_example] = ACTIONS(2693), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2693), - [sym__fenced_code_block_start_backtick] = ACTIONS(2693), - [sym_minus_metadata] = ACTIONS(2693), - [sym__pipe_table_start] = ACTIONS(2693), - [sym__fenced_div_start] = ACTIONS(2693), - [sym_ref_id_specifier] = ACTIONS(2693), - [sym__code_span_start] = ACTIONS(2693), - [sym__html_comment] = ACTIONS(2693), - [sym__autolink] = ACTIONS(2693), - [sym__highlight_span_start] = ACTIONS(2693), - [sym__insert_span_start] = ACTIONS(2693), - [sym__delete_span_start] = ACTIONS(2693), - [sym__edit_comment_span_start] = ACTIONS(2693), - [sym__single_quote_span_open] = ACTIONS(2693), - [sym__double_quote_span_open] = ACTIONS(2693), - [sym__shortcode_open_escaped] = ACTIONS(2693), - [sym__shortcode_open] = ACTIONS(2693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2693), - [sym__cite_author_in_text] = ACTIONS(2693), - [sym__cite_suppress_author] = ACTIONS(2693), - [sym__strikeout_open] = ACTIONS(2693), - [sym__subscript_open] = ACTIONS(2693), - [sym__superscript_open] = ACTIONS(2693), - [sym__inline_note_start_token] = ACTIONS(2693), - [sym__strong_emphasis_open_star] = ACTIONS(2693), - [sym__strong_emphasis_open_underscore] = ACTIONS(2693), - [sym__emphasis_open_star] = ACTIONS(2693), - [sym__emphasis_open_underscore] = ACTIONS(2693), - [sym_inline_note_reference] = ACTIONS(2693), - [sym_html_element] = ACTIONS(2693), - [sym__pandoc_line_break] = ACTIONS(2693), - }, - [STATE(481)] = { - [ts_builtin_sym_end] = ACTIONS(2969), - [anon_sym_COLON] = ACTIONS(2969), - [sym_entity_reference] = ACTIONS(2969), - [sym_numeric_character_reference] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_BANG_LBRACK] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(2971), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2969), - [aux_sym_pandoc_str_token1] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2969), - [aux_sym__prose_punctuation_token1] = ACTIONS(2971), - [sym__line_ending] = ACTIONS(2969), - [sym__soft_line_ending] = ACTIONS(2969), - [sym__block_quote_start] = ACTIONS(2969), - [sym_atx_h1_marker] = ACTIONS(2969), - [sym_atx_h2_marker] = ACTIONS(2969), - [sym_atx_h3_marker] = ACTIONS(2969), - [sym_atx_h4_marker] = ACTIONS(2969), - [sym_atx_h5_marker] = ACTIONS(2969), - [sym_atx_h6_marker] = ACTIONS(2969), - [sym__thematic_break] = ACTIONS(2969), - [sym__list_marker_minus] = ACTIONS(2969), - [sym__list_marker_plus] = ACTIONS(2969), - [sym__list_marker_star] = ACTIONS(2969), - [sym__list_marker_parenthesis] = ACTIONS(2969), - [sym__list_marker_dot] = ACTIONS(2969), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_example] = ACTIONS(2969), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2969), - [sym__fenced_code_block_start_backtick] = ACTIONS(2969), - [sym_minus_metadata] = ACTIONS(2969), - [sym__pipe_table_start] = ACTIONS(2969), - [sym__fenced_div_start] = ACTIONS(2969), - [sym_ref_id_specifier] = ACTIONS(2969), - [sym__code_span_start] = ACTIONS(2969), - [sym__html_comment] = ACTIONS(2969), - [sym__autolink] = ACTIONS(2969), - [sym__highlight_span_start] = ACTIONS(2969), - [sym__insert_span_start] = ACTIONS(2969), - [sym__delete_span_start] = ACTIONS(2969), - [sym__edit_comment_span_start] = ACTIONS(2969), - [sym__single_quote_span_open] = ACTIONS(2969), - [sym__double_quote_span_open] = ACTIONS(2969), - [sym__shortcode_open_escaped] = ACTIONS(2969), - [sym__shortcode_open] = ACTIONS(2969), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2969), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2969), - [sym__cite_author_in_text] = ACTIONS(2969), - [sym__cite_suppress_author] = ACTIONS(2969), - [sym__strikeout_open] = ACTIONS(2969), - [sym__subscript_open] = ACTIONS(2969), - [sym__superscript_open] = ACTIONS(2969), - [sym__inline_note_start_token] = ACTIONS(2969), - [sym__strong_emphasis_open_star] = ACTIONS(2969), - [sym__strong_emphasis_open_underscore] = ACTIONS(2969), - [sym__emphasis_open_star] = ACTIONS(2969), - [sym__emphasis_open_underscore] = ACTIONS(2969), - [sym_inline_note_reference] = ACTIONS(2969), - [sym_html_element] = ACTIONS(2969), - [sym__pandoc_line_break] = ACTIONS(2969), - }, - [STATE(482)] = { - [sym__inlines] = STATE(2767), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1316), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3759), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2116), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(483)] = { - [sym__inlines] = STATE(2782), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1318), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3761), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2116), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(484)] = { - [ts_builtin_sym_end] = ACTIONS(2973), - [anon_sym_COLON] = ACTIONS(2973), - [sym_entity_reference] = ACTIONS(2973), - [sym_numeric_character_reference] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_BANG_LBRACK] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [aux_sym_pandoc_str_token1] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2973), - [aux_sym__prose_punctuation_token1] = ACTIONS(2975), - [sym__line_ending] = ACTIONS(2973), - [sym__soft_line_ending] = ACTIONS(2973), - [sym__block_quote_start] = ACTIONS(2973), - [sym_atx_h1_marker] = ACTIONS(2973), - [sym_atx_h2_marker] = ACTIONS(2973), - [sym_atx_h3_marker] = ACTIONS(2973), - [sym_atx_h4_marker] = ACTIONS(2973), - [sym_atx_h5_marker] = ACTIONS(2973), - [sym_atx_h6_marker] = ACTIONS(2973), - [sym__thematic_break] = ACTIONS(2973), - [sym__list_marker_minus] = ACTIONS(2973), - [sym__list_marker_plus] = ACTIONS(2973), - [sym__list_marker_star] = ACTIONS(2973), - [sym__list_marker_parenthesis] = ACTIONS(2973), - [sym__list_marker_dot] = ACTIONS(2973), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_example] = ACTIONS(2973), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2973), - [sym__fenced_code_block_start_backtick] = ACTIONS(2973), - [sym_minus_metadata] = ACTIONS(2973), - [sym__pipe_table_start] = ACTIONS(2973), - [sym__fenced_div_start] = ACTIONS(2973), - [sym_ref_id_specifier] = ACTIONS(2973), - [sym__code_span_start] = ACTIONS(2973), - [sym__html_comment] = ACTIONS(2973), - [sym__autolink] = ACTIONS(2973), - [sym__highlight_span_start] = ACTIONS(2973), - [sym__insert_span_start] = ACTIONS(2973), - [sym__delete_span_start] = ACTIONS(2973), - [sym__edit_comment_span_start] = ACTIONS(2973), - [sym__single_quote_span_open] = ACTIONS(2973), - [sym__double_quote_span_open] = ACTIONS(2973), - [sym__shortcode_open_escaped] = ACTIONS(2973), - [sym__shortcode_open] = ACTIONS(2973), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2973), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2973), - [sym__cite_author_in_text] = ACTIONS(2973), - [sym__cite_suppress_author] = ACTIONS(2973), - [sym__strikeout_open] = ACTIONS(2973), - [sym__subscript_open] = ACTIONS(2973), - [sym__superscript_open] = ACTIONS(2973), - [sym__inline_note_start_token] = ACTIONS(2973), - [sym__strong_emphasis_open_star] = ACTIONS(2973), - [sym__strong_emphasis_open_underscore] = ACTIONS(2973), - [sym__emphasis_open_star] = ACTIONS(2973), - [sym__emphasis_open_underscore] = ACTIONS(2973), - [sym_inline_note_reference] = ACTIONS(2973), - [sym_html_element] = ACTIONS(2973), - [sym__pandoc_line_break] = ACTIONS(2973), - }, - [STATE(485)] = { - [anon_sym_COLON] = ACTIONS(3435), - [sym_entity_reference] = ACTIONS(3435), - [sym_numeric_character_reference] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_BANG_LBRACK] = ACTIONS(3435), - [anon_sym_DOLLAR] = ACTIONS(3437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [aux_sym_pandoc_str_token1] = ACTIONS(3437), - [anon_sym_PIPE] = ACTIONS(3435), - [aux_sym__prose_punctuation_token1] = ACTIONS(3437), - [sym__line_ending] = ACTIONS(3435), - [sym__soft_line_ending] = ACTIONS(3435), - [sym__block_close] = ACTIONS(3435), - [sym__block_quote_start] = ACTIONS(3435), - [sym_atx_h1_marker] = ACTIONS(3435), - [sym_atx_h2_marker] = ACTIONS(3435), - [sym_atx_h3_marker] = ACTIONS(3435), - [sym_atx_h4_marker] = ACTIONS(3435), - [sym_atx_h5_marker] = ACTIONS(3435), - [sym_atx_h6_marker] = ACTIONS(3435), - [sym__thematic_break] = ACTIONS(3435), - [sym__list_marker_minus] = ACTIONS(3435), - [sym__list_marker_plus] = ACTIONS(3435), - [sym__list_marker_star] = ACTIONS(3435), - [sym__list_marker_parenthesis] = ACTIONS(3435), - [sym__list_marker_dot] = ACTIONS(3435), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3435), - [sym__list_marker_example] = ACTIONS(3435), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3435), - [sym__fenced_code_block_start_backtick] = ACTIONS(3435), - [sym_minus_metadata] = ACTIONS(3435), - [sym__pipe_table_start] = ACTIONS(3435), - [sym__fenced_div_start] = ACTIONS(3435), - [sym_ref_id_specifier] = ACTIONS(3435), - [sym__code_span_start] = ACTIONS(3435), - [sym__html_comment] = ACTIONS(3435), - [sym__autolink] = ACTIONS(3435), - [sym__highlight_span_start] = ACTIONS(3435), - [sym__insert_span_start] = ACTIONS(3435), - [sym__delete_span_start] = ACTIONS(3435), - [sym__edit_comment_span_start] = ACTIONS(3435), - [sym__single_quote_span_open] = ACTIONS(3435), - [sym__double_quote_span_open] = ACTIONS(3435), - [sym__shortcode_open_escaped] = ACTIONS(3435), - [sym__shortcode_open] = ACTIONS(3435), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3435), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3435), - [sym__cite_author_in_text] = ACTIONS(3435), - [sym__cite_suppress_author] = ACTIONS(3435), - [sym__strikeout_open] = ACTIONS(3435), - [sym__subscript_open] = ACTIONS(3435), - [sym__superscript_open] = ACTIONS(3435), - [sym__inline_note_start_token] = ACTIONS(3435), - [sym__strong_emphasis_open_star] = ACTIONS(3435), - [sym__strong_emphasis_open_underscore] = ACTIONS(3435), - [sym__emphasis_open_star] = ACTIONS(3435), - [sym__emphasis_open_underscore] = ACTIONS(3435), - [sym_inline_note_reference] = ACTIONS(3435), - [sym_html_element] = ACTIONS(3435), - [sym__pandoc_line_break] = ACTIONS(3435), - }, - [STATE(486)] = { - [ts_builtin_sym_end] = ACTIONS(2977), - [anon_sym_COLON] = ACTIONS(2977), - [sym_entity_reference] = ACTIONS(2977), - [sym_numeric_character_reference] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_BANG_LBRACK] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(2979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [aux_sym_pandoc_str_token1] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2977), - [aux_sym__prose_punctuation_token1] = ACTIONS(2979), - [sym__line_ending] = ACTIONS(2977), - [sym__soft_line_ending] = ACTIONS(2977), - [sym__block_quote_start] = ACTIONS(2977), - [sym_atx_h1_marker] = ACTIONS(2977), - [sym_atx_h2_marker] = ACTIONS(2977), - [sym_atx_h3_marker] = ACTIONS(2977), - [sym_atx_h4_marker] = ACTIONS(2977), - [sym_atx_h5_marker] = ACTIONS(2977), - [sym_atx_h6_marker] = ACTIONS(2977), - [sym__thematic_break] = ACTIONS(2977), - [sym__list_marker_minus] = ACTIONS(2977), - [sym__list_marker_plus] = ACTIONS(2977), - [sym__list_marker_star] = ACTIONS(2977), - [sym__list_marker_parenthesis] = ACTIONS(2977), - [sym__list_marker_dot] = ACTIONS(2977), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_example] = ACTIONS(2977), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2977), - [sym__fenced_code_block_start_backtick] = ACTIONS(2977), - [sym_minus_metadata] = ACTIONS(2977), - [sym__pipe_table_start] = ACTIONS(2977), - [sym__fenced_div_start] = ACTIONS(2977), - [sym_ref_id_specifier] = ACTIONS(2977), + [STATE(452)] = { + [sym__inlines] = STATE(4034), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(723), + [sym__inline_whitespace] = STATE(723), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3085), + [sym__soft_line_ending] = ACTIONS(2975), [sym__code_span_start] = ACTIONS(2977), - [sym__html_comment] = ACTIONS(2977), - [sym__autolink] = ACTIONS(2977), - [sym__highlight_span_start] = ACTIONS(2977), - [sym__insert_span_start] = ACTIONS(2977), - [sym__delete_span_start] = ACTIONS(2977), - [sym__edit_comment_span_start] = ACTIONS(2977), - [sym__single_quote_span_open] = ACTIONS(2977), - [sym__double_quote_span_open] = ACTIONS(2977), - [sym__shortcode_open_escaped] = ACTIONS(2977), - [sym__shortcode_open] = ACTIONS(2977), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2977), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2977), - [sym__cite_author_in_text] = ACTIONS(2977), - [sym__cite_suppress_author] = ACTIONS(2977), - [sym__strikeout_open] = ACTIONS(2977), - [sym__subscript_open] = ACTIONS(2977), - [sym__superscript_open] = ACTIONS(2977), - [sym__inline_note_start_token] = ACTIONS(2977), - [sym__strong_emphasis_open_star] = ACTIONS(2977), - [sym__strong_emphasis_open_underscore] = ACTIONS(2977), - [sym__emphasis_open_star] = ACTIONS(2977), - [sym__emphasis_open_underscore] = ACTIONS(2977), - [sym_inline_note_reference] = ACTIONS(2977), - [sym_html_element] = ACTIONS(2977), - [sym__pandoc_line_break] = ACTIONS(2977), - }, - [STATE(487)] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [anon_sym_COLON] = ACTIONS(3222), - [sym_entity_reference] = ACTIONS(3222), - [sym_numeric_character_reference] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_BANG_LBRACK] = ACTIONS(3222), - [anon_sym_DOLLAR] = ACTIONS(3224), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [aux_sym_pandoc_str_token1] = ACTIONS(3224), - [anon_sym_PIPE] = ACTIONS(3222), - [aux_sym__prose_punctuation_token1] = ACTIONS(3224), - [sym__line_ending] = ACTIONS(3222), - [sym__soft_line_ending] = ACTIONS(3222), - [sym__block_quote_start] = ACTIONS(3222), - [sym_atx_h1_marker] = ACTIONS(3222), - [sym_atx_h2_marker] = ACTIONS(3222), - [sym_atx_h3_marker] = ACTIONS(3222), - [sym_atx_h4_marker] = ACTIONS(3222), - [sym_atx_h5_marker] = ACTIONS(3222), - [sym_atx_h6_marker] = ACTIONS(3222), - [sym__thematic_break] = ACTIONS(3222), - [sym__list_marker_minus] = ACTIONS(3222), - [sym__list_marker_plus] = ACTIONS(3222), - [sym__list_marker_star] = ACTIONS(3222), - [sym__list_marker_parenthesis] = ACTIONS(3222), - [sym__list_marker_dot] = ACTIONS(3222), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_example] = ACTIONS(3222), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3222), - [sym__fenced_code_block_start_backtick] = ACTIONS(3222), - [sym_minus_metadata] = ACTIONS(3222), - [sym__pipe_table_start] = ACTIONS(3222), - [sym__fenced_div_start] = ACTIONS(3222), - [sym_ref_id_specifier] = ACTIONS(3222), - [sym__code_span_start] = ACTIONS(3222), - [sym__html_comment] = ACTIONS(3222), - [sym__autolink] = ACTIONS(3222), - [sym__highlight_span_start] = ACTIONS(3222), - [sym__insert_span_start] = ACTIONS(3222), - [sym__delete_span_start] = ACTIONS(3222), - [sym__edit_comment_span_start] = ACTIONS(3222), - [sym__single_quote_span_open] = ACTIONS(3222), - [sym__double_quote_span_open] = ACTIONS(3222), - [sym__shortcode_open_escaped] = ACTIONS(3222), - [sym__shortcode_open] = ACTIONS(3222), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3222), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3222), - [sym__cite_author_in_text] = ACTIONS(3222), - [sym__cite_suppress_author] = ACTIONS(3222), - [sym__strikeout_open] = ACTIONS(3222), - [sym__subscript_open] = ACTIONS(3222), - [sym__superscript_open] = ACTIONS(3222), - [sym__inline_note_start_token] = ACTIONS(3222), - [sym__strong_emphasis_open_star] = ACTIONS(3222), - [sym__strong_emphasis_open_underscore] = ACTIONS(3222), - [sym__emphasis_open_star] = ACTIONS(3222), - [sym__emphasis_open_underscore] = ACTIONS(3222), - [sym_inline_note_reference] = ACTIONS(3222), - [sym_html_element] = ACTIONS(3222), - [sym__pandoc_line_break] = ACTIONS(3222), - }, - [STATE(488)] = { - [ts_builtin_sym_end] = ACTIONS(3248), - [anon_sym_COLON] = ACTIONS(3248), - [sym_entity_reference] = ACTIONS(3248), - [sym_numeric_character_reference] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_BANG_LBRACK] = ACTIONS(3248), - [anon_sym_DOLLAR] = ACTIONS(3250), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [aux_sym_pandoc_str_token1] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3248), - [aux_sym__prose_punctuation_token1] = ACTIONS(3250), - [sym__line_ending] = ACTIONS(3248), - [sym__soft_line_ending] = ACTIONS(3248), - [sym__block_quote_start] = ACTIONS(3248), - [sym_atx_h1_marker] = ACTIONS(3248), - [sym_atx_h2_marker] = ACTIONS(3248), - [sym_atx_h3_marker] = ACTIONS(3248), - [sym_atx_h4_marker] = ACTIONS(3248), - [sym_atx_h5_marker] = ACTIONS(3248), - [sym_atx_h6_marker] = ACTIONS(3248), - [sym__thematic_break] = ACTIONS(3248), - [sym__list_marker_minus] = ACTIONS(3248), - [sym__list_marker_plus] = ACTIONS(3248), - [sym__list_marker_star] = ACTIONS(3248), - [sym__list_marker_parenthesis] = ACTIONS(3248), - [sym__list_marker_dot] = ACTIONS(3248), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_example] = ACTIONS(3248), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3248), - [sym__fenced_code_block_start_backtick] = ACTIONS(3248), - [sym_minus_metadata] = ACTIONS(3248), - [sym__pipe_table_start] = ACTIONS(3248), - [sym__fenced_div_start] = ACTIONS(3248), - [sym_ref_id_specifier] = ACTIONS(3248), - [sym__code_span_start] = ACTIONS(3248), - [sym__html_comment] = ACTIONS(3248), - [sym__autolink] = ACTIONS(3248), - [sym__highlight_span_start] = ACTIONS(3248), - [sym__insert_span_start] = ACTIONS(3248), - [sym__delete_span_start] = ACTIONS(3248), - [sym__edit_comment_span_start] = ACTIONS(3248), - [sym__single_quote_span_open] = ACTIONS(3248), - [sym__double_quote_span_open] = ACTIONS(3248), - [sym__shortcode_open_escaped] = ACTIONS(3248), - [sym__shortcode_open] = ACTIONS(3248), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3248), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3248), - [sym__cite_author_in_text] = ACTIONS(3248), - [sym__cite_suppress_author] = ACTIONS(3248), - [sym__strikeout_open] = ACTIONS(3248), - [sym__subscript_open] = ACTIONS(3248), - [sym__superscript_open] = ACTIONS(3248), - [sym__inline_note_start_token] = ACTIONS(3248), - [sym__strong_emphasis_open_star] = ACTIONS(3248), - [sym__strong_emphasis_open_underscore] = ACTIONS(3248), - [sym__emphasis_open_star] = ACTIONS(3248), - [sym__emphasis_open_underscore] = ACTIONS(3248), - [sym_inline_note_reference] = ACTIONS(3248), - [sym_html_element] = ACTIONS(3248), - [sym__pandoc_line_break] = ACTIONS(3248), - }, - [STATE(489)] = { - [ts_builtin_sym_end] = ACTIONS(2985), - [anon_sym_COLON] = ACTIONS(2985), - [sym_entity_reference] = ACTIONS(2985), - [sym_numeric_character_reference] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_BANG_LBRACK] = ACTIONS(2985), - [anon_sym_DOLLAR] = ACTIONS(2987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [aux_sym_pandoc_str_token1] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [aux_sym__prose_punctuation_token1] = ACTIONS(2987), - [sym__line_ending] = ACTIONS(2985), - [sym__soft_line_ending] = ACTIONS(2985), - [sym__block_quote_start] = ACTIONS(2985), - [sym_atx_h1_marker] = ACTIONS(2985), - [sym_atx_h2_marker] = ACTIONS(2985), - [sym_atx_h3_marker] = ACTIONS(2985), - [sym_atx_h4_marker] = ACTIONS(2985), - [sym_atx_h5_marker] = ACTIONS(2985), - [sym_atx_h6_marker] = ACTIONS(2985), - [sym__thematic_break] = ACTIONS(2985), - [sym__list_marker_minus] = ACTIONS(2985), - [sym__list_marker_plus] = ACTIONS(2985), - [sym__list_marker_star] = ACTIONS(2985), - [sym__list_marker_parenthesis] = ACTIONS(2985), - [sym__list_marker_dot] = ACTIONS(2985), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_example] = ACTIONS(2985), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2985), - [sym__fenced_code_block_start_backtick] = ACTIONS(2985), - [sym_minus_metadata] = ACTIONS(2985), - [sym__pipe_table_start] = ACTIONS(2985), - [sym__fenced_div_start] = ACTIONS(2985), - [sym_ref_id_specifier] = ACTIONS(2985), - [sym__code_span_start] = ACTIONS(2985), - [sym__html_comment] = ACTIONS(2985), - [sym__autolink] = ACTIONS(2985), - [sym__highlight_span_start] = ACTIONS(2985), - [sym__insert_span_start] = ACTIONS(2985), - [sym__delete_span_start] = ACTIONS(2985), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), [sym__edit_comment_span_start] = ACTIONS(2985), - [sym__single_quote_span_open] = ACTIONS(2985), - [sym__double_quote_span_open] = ACTIONS(2985), - [sym__shortcode_open_escaped] = ACTIONS(2985), - [sym__shortcode_open] = ACTIONS(2985), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2985), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2985), - [sym__cite_author_in_text] = ACTIONS(2985), - [sym__cite_suppress_author] = ACTIONS(2985), - [sym__strikeout_open] = ACTIONS(2985), - [sym__subscript_open] = ACTIONS(2985), - [sym__superscript_open] = ACTIONS(2985), - [sym__inline_note_start_token] = ACTIONS(2985), - [sym__strong_emphasis_open_star] = ACTIONS(2985), - [sym__strong_emphasis_open_underscore] = ACTIONS(2985), - [sym__emphasis_open_star] = ACTIONS(2985), - [sym__emphasis_open_underscore] = ACTIONS(2985), - [sym_inline_note_reference] = ACTIONS(2985), - [sym_html_element] = ACTIONS(2985), - [sym__pandoc_line_break] = ACTIONS(2985), - }, - [STATE(490)] = { - [anon_sym_COLON] = ACTIONS(2663), - [sym_entity_reference] = ACTIONS(2663), - [sym_numeric_character_reference] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_BANG_LBRACK] = ACTIONS(2663), - [anon_sym_DOLLAR] = ACTIONS(2665), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [aux_sym_pandoc_str_token1] = ACTIONS(2665), - [anon_sym_PIPE] = ACTIONS(2663), - [aux_sym__prose_punctuation_token1] = ACTIONS(2665), - [sym__line_ending] = ACTIONS(2663), - [sym__soft_line_ending] = ACTIONS(2663), - [sym__block_close] = ACTIONS(2663), - [sym__block_quote_start] = ACTIONS(2663), - [sym_atx_h1_marker] = ACTIONS(2663), - [sym_atx_h2_marker] = ACTIONS(2663), - [sym_atx_h3_marker] = ACTIONS(2663), - [sym_atx_h4_marker] = ACTIONS(2663), - [sym_atx_h5_marker] = ACTIONS(2663), - [sym_atx_h6_marker] = ACTIONS(2663), - [sym__thematic_break] = ACTIONS(2663), - [sym__list_marker_minus] = ACTIONS(2663), - [sym__list_marker_plus] = ACTIONS(2663), - [sym__list_marker_star] = ACTIONS(2663), - [sym__list_marker_parenthesis] = ACTIONS(2663), - [sym__list_marker_dot] = ACTIONS(2663), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2663), - [sym__list_marker_example] = ACTIONS(2663), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2663), - [sym__fenced_code_block_start_backtick] = ACTIONS(2663), - [sym_minus_metadata] = ACTIONS(2663), - [sym__pipe_table_start] = ACTIONS(2663), - [sym__fenced_div_start] = ACTIONS(2663), - [sym_ref_id_specifier] = ACTIONS(2663), - [sym__code_span_start] = ACTIONS(2663), - [sym__html_comment] = ACTIONS(2663), - [sym__autolink] = ACTIONS(2663), - [sym__highlight_span_start] = ACTIONS(2663), - [sym__insert_span_start] = ACTIONS(2663), - [sym__delete_span_start] = ACTIONS(2663), - [sym__edit_comment_span_start] = ACTIONS(2663), - [sym__single_quote_span_open] = ACTIONS(2663), - [sym__double_quote_span_open] = ACTIONS(2663), - [sym__shortcode_open_escaped] = ACTIONS(2663), - [sym__shortcode_open] = ACTIONS(2663), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2663), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2663), - [sym__cite_author_in_text] = ACTIONS(2663), - [sym__cite_suppress_author] = ACTIONS(2663), - [sym__strikeout_open] = ACTIONS(2663), - [sym__subscript_open] = ACTIONS(2663), - [sym__superscript_open] = ACTIONS(2663), - [sym__inline_note_start_token] = ACTIONS(2663), - [sym__strong_emphasis_open_star] = ACTIONS(2663), - [sym__strong_emphasis_open_underscore] = ACTIONS(2663), - [sym__emphasis_open_star] = ACTIONS(2663), - [sym__emphasis_open_underscore] = ACTIONS(2663), - [sym_inline_note_reference] = ACTIONS(2663), - [sym_html_element] = ACTIONS(2663), - [sym__pandoc_line_break] = ACTIONS(2663), - }, - [STATE(491)] = { - [sym_pipe_table_cell] = STATE(3035), - [sym_pandoc_span] = STATE(629), - [sym_pandoc_image] = STATE(629), - [sym_pandoc_math] = STATE(629), - [sym_pandoc_display_math] = STATE(629), - [sym_pandoc_code_span] = STATE(629), - [sym_pandoc_single_quote] = STATE(629), - [sym_pandoc_double_quote] = STATE(629), - [sym_insert] = STATE(629), - [sym_delete] = STATE(629), - [sym_edit_comment] = STATE(629), - [sym_highlight] = STATE(629), - [sym__pandoc_attr_specifier] = STATE(629), - [sym__line_with_maybe_spaces] = STATE(2854), - [sym__inline_element] = STATE(629), - [sym_shortcode_escaped] = STATE(629), - [sym_shortcode] = STATE(629), - [sym_citation] = STATE(629), - [sym_inline_note] = STATE(629), - [sym_pandoc_superscript] = STATE(629), - [sym_pandoc_subscript] = STATE(629), - [sym_pandoc_strikeout] = STATE(629), - [sym_pandoc_emph] = STATE(629), - [sym_pandoc_strong] = STATE(629), - [sym_pandoc_str] = STATE(629), - [sym__prose_punctuation] = STATE(629), - [aux_sym_pipe_table_row_repeat1] = STATE(359), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(629), - [sym_entity_reference] = ACTIONS(2509), - [sym_numeric_character_reference] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_BANG_LBRACK] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2519), - [aux_sym_pandoc_str_token1] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2523), - [aux_sym__prose_punctuation_token1] = ACTIONS(2525), - [sym__whitespace] = ACTIONS(3763), - [sym__code_span_start] = ACTIONS(2529), - [sym__html_comment] = ACTIONS(2509), - [sym__autolink] = ACTIONS(2509), - [sym__highlight_span_start] = ACTIONS(2531), - [sym__insert_span_start] = ACTIONS(2533), - [sym__delete_span_start] = ACTIONS(2535), - [sym__edit_comment_span_start] = ACTIONS(2537), - [sym__single_quote_span_open] = ACTIONS(2539), - [sym__double_quote_span_open] = ACTIONS(2541), - [sym__shortcode_open_escaped] = ACTIONS(2543), - [sym__shortcode_open] = ACTIONS(2545), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2547), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2549), - [sym__cite_author_in_text] = ACTIONS(2551), - [sym__cite_suppress_author] = ACTIONS(2553), - [sym__strikeout_open] = ACTIONS(2555), - [sym__subscript_open] = ACTIONS(2557), - [sym__superscript_open] = ACTIONS(2559), - [sym__inline_note_start_token] = ACTIONS(2561), - [sym__strong_emphasis_open_star] = ACTIONS(2563), - [sym__strong_emphasis_open_underscore] = ACTIONS(2565), - [sym__emphasis_open_star] = ACTIONS(2567), - [sym__emphasis_open_underscore] = ACTIONS(2569), - [sym_inline_note_reference] = ACTIONS(2509), - [sym_html_element] = ACTIONS(2509), - [sym__pandoc_line_break] = ACTIONS(2509), - }, - [STATE(492)] = { - [ts_builtin_sym_end] = ACTIONS(2989), - [anon_sym_COLON] = ACTIONS(2989), - [sym_entity_reference] = ACTIONS(2989), - [sym_numeric_character_reference] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_BANG_LBRACK] = ACTIONS(2989), - [anon_sym_DOLLAR] = ACTIONS(2991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [aux_sym_pandoc_str_token1] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2989), - [aux_sym__prose_punctuation_token1] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(2989), - [sym__soft_line_ending] = ACTIONS(2989), - [sym__block_quote_start] = ACTIONS(2989), - [sym_atx_h1_marker] = ACTIONS(2989), - [sym_atx_h2_marker] = ACTIONS(2989), - [sym_atx_h3_marker] = ACTIONS(2989), - [sym_atx_h4_marker] = ACTIONS(2989), - [sym_atx_h5_marker] = ACTIONS(2989), - [sym_atx_h6_marker] = ACTIONS(2989), - [sym__thematic_break] = ACTIONS(2989), - [sym__list_marker_minus] = ACTIONS(2989), - [sym__list_marker_plus] = ACTIONS(2989), - [sym__list_marker_star] = ACTIONS(2989), - [sym__list_marker_parenthesis] = ACTIONS(2989), - [sym__list_marker_dot] = ACTIONS(2989), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_example] = ACTIONS(2989), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2989), - [sym__fenced_code_block_start_backtick] = ACTIONS(2989), - [sym_minus_metadata] = ACTIONS(2989), - [sym__pipe_table_start] = ACTIONS(2989), - [sym__fenced_div_start] = ACTIONS(2989), - [sym_ref_id_specifier] = ACTIONS(2989), - [sym__code_span_start] = ACTIONS(2989), - [sym__html_comment] = ACTIONS(2989), - [sym__autolink] = ACTIONS(2989), - [sym__highlight_span_start] = ACTIONS(2989), - [sym__insert_span_start] = ACTIONS(2989), - [sym__delete_span_start] = ACTIONS(2989), - [sym__edit_comment_span_start] = ACTIONS(2989), - [sym__single_quote_span_open] = ACTIONS(2989), + [sym__single_quote_span_open] = ACTIONS(2987), [sym__double_quote_span_open] = ACTIONS(2989), - [sym__shortcode_open_escaped] = ACTIONS(2989), - [sym__shortcode_open] = ACTIONS(2989), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2989), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2989), - [sym__cite_author_in_text] = ACTIONS(2989), - [sym__cite_suppress_author] = ACTIONS(2989), - [sym__strikeout_open] = ACTIONS(2989), - [sym__subscript_open] = ACTIONS(2989), - [sym__superscript_open] = ACTIONS(2989), - [sym__inline_note_start_token] = ACTIONS(2989), - [sym__strong_emphasis_open_star] = ACTIONS(2989), - [sym__strong_emphasis_open_underscore] = ACTIONS(2989), - [sym__emphasis_open_star] = ACTIONS(2989), - [sym__emphasis_open_underscore] = ACTIONS(2989), - [sym_inline_note_reference] = ACTIONS(2989), - [sym_html_element] = ACTIONS(2989), - [sym__pandoc_line_break] = ACTIONS(2989), - }, - [STATE(493)] = { - [anon_sym_COLON] = ACTIONS(3238), - [sym_entity_reference] = ACTIONS(3238), - [sym_numeric_character_reference] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_BANG_LBRACK] = ACTIONS(3238), - [anon_sym_DOLLAR] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3238), - [aux_sym_pandoc_str_token1] = ACTIONS(3240), - [anon_sym_PIPE] = ACTIONS(3238), - [aux_sym__prose_punctuation_token1] = ACTIONS(3240), - [sym__line_ending] = ACTIONS(3238), - [sym__soft_line_ending] = ACTIONS(3238), - [sym__block_close] = ACTIONS(3238), - [sym__block_quote_start] = ACTIONS(3238), - [sym_atx_h1_marker] = ACTIONS(3238), - [sym_atx_h2_marker] = ACTIONS(3238), - [sym_atx_h3_marker] = ACTIONS(3238), - [sym_atx_h4_marker] = ACTIONS(3238), - [sym_atx_h5_marker] = ACTIONS(3238), - [sym_atx_h6_marker] = ACTIONS(3238), - [sym__thematic_break] = ACTIONS(3238), - [sym__list_marker_minus] = ACTIONS(3238), - [sym__list_marker_plus] = ACTIONS(3238), - [sym__list_marker_star] = ACTIONS(3238), - [sym__list_marker_parenthesis] = ACTIONS(3238), - [sym__list_marker_dot] = ACTIONS(3238), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_example] = ACTIONS(3238), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3238), - [sym__fenced_code_block_start_backtick] = ACTIONS(3238), - [sym_minus_metadata] = ACTIONS(3238), - [sym__pipe_table_start] = ACTIONS(3238), - [sym__fenced_div_start] = ACTIONS(3238), - [sym_ref_id_specifier] = ACTIONS(3238), - [sym__code_span_start] = ACTIONS(3238), - [sym__html_comment] = ACTIONS(3238), - [sym__autolink] = ACTIONS(3238), - [sym__highlight_span_start] = ACTIONS(3238), - [sym__insert_span_start] = ACTIONS(3238), - [sym__delete_span_start] = ACTIONS(3238), - [sym__edit_comment_span_start] = ACTIONS(3238), - [sym__single_quote_span_open] = ACTIONS(3238), - [sym__double_quote_span_open] = ACTIONS(3238), - [sym__shortcode_open_escaped] = ACTIONS(3238), - [sym__shortcode_open] = ACTIONS(3238), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3238), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3238), - [sym__cite_author_in_text] = ACTIONS(3238), - [sym__cite_suppress_author] = ACTIONS(3238), - [sym__strikeout_open] = ACTIONS(3238), - [sym__subscript_open] = ACTIONS(3238), - [sym__superscript_open] = ACTIONS(3238), - [sym__inline_note_start_token] = ACTIONS(3238), - [sym__strong_emphasis_open_star] = ACTIONS(3238), - [sym__strong_emphasis_open_underscore] = ACTIONS(3238), - [sym__emphasis_open_star] = ACTIONS(3238), - [sym__emphasis_open_underscore] = ACTIONS(3238), - [sym_inline_note_reference] = ACTIONS(3238), - [sym_html_element] = ACTIONS(3238), - [sym__pandoc_line_break] = ACTIONS(3238), - }, - [STATE(494)] = { - [ts_builtin_sym_end] = ACTIONS(2657), - [anon_sym_COLON] = ACTIONS(2657), - [sym_entity_reference] = ACTIONS(2657), - [sym_numeric_character_reference] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_BANG_LBRACK] = ACTIONS(2657), - [anon_sym_DOLLAR] = ACTIONS(2659), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [aux_sym_pandoc_str_token1] = ACTIONS(2659), - [anon_sym_PIPE] = ACTIONS(2657), - [aux_sym__prose_punctuation_token1] = ACTIONS(2659), - [sym__line_ending] = ACTIONS(2657), - [sym__soft_line_ending] = ACTIONS(2657), - [sym__block_quote_start] = ACTIONS(2657), - [sym_atx_h1_marker] = ACTIONS(2657), - [sym_atx_h2_marker] = ACTIONS(2657), - [sym_atx_h3_marker] = ACTIONS(2657), - [sym_atx_h4_marker] = ACTIONS(2657), - [sym_atx_h5_marker] = ACTIONS(2657), - [sym_atx_h6_marker] = ACTIONS(2657), - [sym__thematic_break] = ACTIONS(2657), - [sym__list_marker_minus] = ACTIONS(2657), - [sym__list_marker_plus] = ACTIONS(2657), - [sym__list_marker_star] = ACTIONS(2657), - [sym__list_marker_parenthesis] = ACTIONS(2657), - [sym__list_marker_dot] = ACTIONS(2657), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2657), - [sym__list_marker_example] = ACTIONS(2657), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2657), - [sym__fenced_code_block_start_backtick] = ACTIONS(2657), - [sym_minus_metadata] = ACTIONS(2657), - [sym__pipe_table_start] = ACTIONS(2657), - [sym__fenced_div_start] = ACTIONS(2657), - [sym_ref_id_specifier] = ACTIONS(2657), - [sym__code_span_start] = ACTIONS(2657), - [sym__html_comment] = ACTIONS(2657), - [sym__autolink] = ACTIONS(2657), - [sym__highlight_span_start] = ACTIONS(2657), - [sym__insert_span_start] = ACTIONS(2657), - [sym__delete_span_start] = ACTIONS(2657), - [sym__edit_comment_span_start] = ACTIONS(2657), - [sym__single_quote_span_open] = ACTIONS(2657), - [sym__double_quote_span_open] = ACTIONS(2657), - [sym__shortcode_open_escaped] = ACTIONS(2657), - [sym__shortcode_open] = ACTIONS(2657), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2657), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2657), - [sym__cite_author_in_text] = ACTIONS(2657), - [sym__cite_suppress_author] = ACTIONS(2657), - [sym__strikeout_open] = ACTIONS(2657), - [sym__subscript_open] = ACTIONS(2657), - [sym__superscript_open] = ACTIONS(2657), - [sym__inline_note_start_token] = ACTIONS(2657), - [sym__strong_emphasis_open_star] = ACTIONS(2657), - [sym__strong_emphasis_open_underscore] = ACTIONS(2657), - [sym__emphasis_open_star] = ACTIONS(2657), - [sym__emphasis_open_underscore] = ACTIONS(2657), - [sym_inline_note_reference] = ACTIONS(2657), - [sym_html_element] = ACTIONS(2657), - [sym__pandoc_line_break] = ACTIONS(2657), - }, - [STATE(495)] = { - [anon_sym_COLON] = ACTIONS(2669), - [sym_entity_reference] = ACTIONS(2669), - [sym_numeric_character_reference] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_BANG_LBRACK] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [aux_sym_pandoc_str_token1] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2669), - [aux_sym__prose_punctuation_token1] = ACTIONS(2671), - [sym__line_ending] = ACTIONS(2669), - [sym__soft_line_ending] = ACTIONS(2669), - [sym__block_close] = ACTIONS(2669), - [sym__block_quote_start] = ACTIONS(2669), - [sym_atx_h1_marker] = ACTIONS(2669), - [sym_atx_h2_marker] = ACTIONS(2669), - [sym_atx_h3_marker] = ACTIONS(2669), - [sym_atx_h4_marker] = ACTIONS(2669), - [sym_atx_h5_marker] = ACTIONS(2669), - [sym_atx_h6_marker] = ACTIONS(2669), - [sym__thematic_break] = ACTIONS(2669), - [sym__list_marker_minus] = ACTIONS(2669), - [sym__list_marker_plus] = ACTIONS(2669), - [sym__list_marker_star] = ACTIONS(2669), - [sym__list_marker_parenthesis] = ACTIONS(2669), - [sym__list_marker_dot] = ACTIONS(2669), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2669), - [sym__list_marker_example] = ACTIONS(2669), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2669), - [sym__fenced_code_block_start_backtick] = ACTIONS(2669), - [sym_minus_metadata] = ACTIONS(2669), - [sym__pipe_table_start] = ACTIONS(2669), - [sym__fenced_div_start] = ACTIONS(2669), - [sym_ref_id_specifier] = ACTIONS(2669), - [sym__code_span_start] = ACTIONS(2669), - [sym__html_comment] = ACTIONS(2669), - [sym__autolink] = ACTIONS(2669), - [sym__highlight_span_start] = ACTIONS(2669), - [sym__insert_span_start] = ACTIONS(2669), - [sym__delete_span_start] = ACTIONS(2669), - [sym__edit_comment_span_start] = ACTIONS(2669), - [sym__single_quote_span_open] = ACTIONS(2669), - [sym__double_quote_span_open] = ACTIONS(2669), - [sym__shortcode_open_escaped] = ACTIONS(2669), - [sym__shortcode_open] = ACTIONS(2669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2669), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2669), - [sym__cite_author_in_text] = ACTIONS(2669), - [sym__cite_suppress_author] = ACTIONS(2669), - [sym__strikeout_open] = ACTIONS(2669), - [sym__subscript_open] = ACTIONS(2669), - [sym__superscript_open] = ACTIONS(2669), - [sym__inline_note_start_token] = ACTIONS(2669), - [sym__strong_emphasis_open_star] = ACTIONS(2669), - [sym__strong_emphasis_open_underscore] = ACTIONS(2669), - [sym__emphasis_open_star] = ACTIONS(2669), - [sym__emphasis_open_underscore] = ACTIONS(2669), - [sym_inline_note_reference] = ACTIONS(2669), - [sym_html_element] = ACTIONS(2669), - [sym__pandoc_line_break] = ACTIONS(2669), - }, - [STATE(496)] = { - [anon_sym_COLON] = ACTIONS(2615), - [sym_entity_reference] = ACTIONS(2615), - [sym_numeric_character_reference] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_BANG_LBRACK] = ACTIONS(2615), - [anon_sym_DOLLAR] = ACTIONS(2617), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [aux_sym_pandoc_str_token1] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2615), - [aux_sym__prose_punctuation_token1] = ACTIONS(2617), - [sym__line_ending] = ACTIONS(2615), - [sym__soft_line_ending] = ACTIONS(2615), - [sym__block_close] = ACTIONS(2615), - [sym__block_quote_start] = ACTIONS(2615), - [sym_atx_h1_marker] = ACTIONS(2615), - [sym_atx_h2_marker] = ACTIONS(2615), - [sym_atx_h3_marker] = ACTIONS(2615), - [sym_atx_h4_marker] = ACTIONS(2615), - [sym_atx_h5_marker] = ACTIONS(2615), - [sym_atx_h6_marker] = ACTIONS(2615), - [sym__thematic_break] = ACTIONS(2615), - [sym__list_marker_minus] = ACTIONS(2615), - [sym__list_marker_plus] = ACTIONS(2615), - [sym__list_marker_star] = ACTIONS(2615), - [sym__list_marker_parenthesis] = ACTIONS(2615), - [sym__list_marker_dot] = ACTIONS(2615), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_example] = ACTIONS(2615), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2615), - [sym__fenced_code_block_start_backtick] = ACTIONS(2615), - [sym_minus_metadata] = ACTIONS(2615), - [sym__pipe_table_start] = ACTIONS(2615), - [sym__fenced_div_start] = ACTIONS(2615), - [sym_ref_id_specifier] = ACTIONS(2615), - [sym__code_span_start] = ACTIONS(2615), - [sym__html_comment] = ACTIONS(2615), - [sym__autolink] = ACTIONS(2615), - [sym__highlight_span_start] = ACTIONS(2615), - [sym__insert_span_start] = ACTIONS(2615), - [sym__delete_span_start] = ACTIONS(2615), - [sym__edit_comment_span_start] = ACTIONS(2615), - [sym__single_quote_span_open] = ACTIONS(2615), - [sym__double_quote_span_open] = ACTIONS(2615), - [sym__shortcode_open_escaped] = ACTIONS(2615), - [sym__shortcode_open] = ACTIONS(2615), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2615), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2615), - [sym__cite_author_in_text] = ACTIONS(2615), - [sym__cite_suppress_author] = ACTIONS(2615), - [sym__strikeout_open] = ACTIONS(2615), - [sym__subscript_open] = ACTIONS(2615), - [sym__superscript_open] = ACTIONS(2615), - [sym__inline_note_start_token] = ACTIONS(2615), - [sym__strong_emphasis_open_star] = ACTIONS(2615), - [sym__strong_emphasis_open_underscore] = ACTIONS(2615), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2615), - [sym_inline_note_reference] = ACTIONS(2615), - [sym_html_element] = ACTIONS(2615), - [sym__pandoc_line_break] = ACTIONS(2615), - }, - [STATE(497)] = { - [ts_builtin_sym_end] = ACTIONS(2993), - [anon_sym_COLON] = ACTIONS(2993), - [sym_entity_reference] = ACTIONS(2993), - [sym_numeric_character_reference] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_BANG_LBRACK] = ACTIONS(2993), - [anon_sym_DOLLAR] = ACTIONS(2995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [aux_sym_pandoc_str_token1] = ACTIONS(2995), - [anon_sym_PIPE] = ACTIONS(2993), - [aux_sym__prose_punctuation_token1] = ACTIONS(2995), - [sym__line_ending] = ACTIONS(2993), - [sym__soft_line_ending] = ACTIONS(2993), - [sym__block_quote_start] = ACTIONS(2993), - [sym_atx_h1_marker] = ACTIONS(2993), - [sym_atx_h2_marker] = ACTIONS(2993), - [sym_atx_h3_marker] = ACTIONS(2993), - [sym_atx_h4_marker] = ACTIONS(2993), - [sym_atx_h5_marker] = ACTIONS(2993), - [sym_atx_h6_marker] = ACTIONS(2993), - [sym__thematic_break] = ACTIONS(2993), - [sym__list_marker_minus] = ACTIONS(2993), - [sym__list_marker_plus] = ACTIONS(2993), - [sym__list_marker_star] = ACTIONS(2993), - [sym__list_marker_parenthesis] = ACTIONS(2993), - [sym__list_marker_dot] = ACTIONS(2993), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_example] = ACTIONS(2993), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2993), - [sym__fenced_code_block_start_backtick] = ACTIONS(2993), - [sym_minus_metadata] = ACTIONS(2993), - [sym__pipe_table_start] = ACTIONS(2993), - [sym__fenced_div_start] = ACTIONS(2993), - [sym_ref_id_specifier] = ACTIONS(2993), - [sym__code_span_start] = ACTIONS(2993), - [sym__html_comment] = ACTIONS(2993), - [sym__autolink] = ACTIONS(2993), - [sym__highlight_span_start] = ACTIONS(2993), - [sym__insert_span_start] = ACTIONS(2993), - [sym__delete_span_start] = ACTIONS(2993), - [sym__edit_comment_span_start] = ACTIONS(2993), - [sym__single_quote_span_open] = ACTIONS(2993), - [sym__double_quote_span_open] = ACTIONS(2993), - [sym__shortcode_open_escaped] = ACTIONS(2993), + [sym__shortcode_open_escaped] = ACTIONS(2991), [sym__shortcode_open] = ACTIONS(2993), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2993), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2993), - [sym__cite_author_in_text] = ACTIONS(2993), - [sym__cite_suppress_author] = ACTIONS(2993), - [sym__strikeout_open] = ACTIONS(2993), - [sym__subscript_open] = ACTIONS(2993), - [sym__superscript_open] = ACTIONS(2993), - [sym__inline_note_start_token] = ACTIONS(2993), - [sym__strong_emphasis_open_star] = ACTIONS(2993), - [sym__strong_emphasis_open_underscore] = ACTIONS(2993), - [sym__emphasis_open_star] = ACTIONS(2993), - [sym__emphasis_open_underscore] = ACTIONS(2993), - [sym_inline_note_reference] = ACTIONS(2993), - [sym_html_element] = ACTIONS(2993), - [sym__pandoc_line_break] = ACTIONS(2993), - }, - [STATE(498)] = { - [ts_builtin_sym_end] = ACTIONS(2997), - [anon_sym_COLON] = ACTIONS(2997), - [sym_entity_reference] = ACTIONS(2997), - [sym_numeric_character_reference] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_BANG_LBRACK] = ACTIONS(2997), - [anon_sym_DOLLAR] = ACTIONS(2999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [aux_sym_pandoc_str_token1] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(2997), - [aux_sym__prose_punctuation_token1] = ACTIONS(2999), - [sym__line_ending] = ACTIONS(2997), - [sym__soft_line_ending] = ACTIONS(2997), - [sym__block_quote_start] = ACTIONS(2997), - [sym_atx_h1_marker] = ACTIONS(2997), - [sym_atx_h2_marker] = ACTIONS(2997), - [sym_atx_h3_marker] = ACTIONS(2997), - [sym_atx_h4_marker] = ACTIONS(2997), - [sym_atx_h5_marker] = ACTIONS(2997), - [sym_atx_h6_marker] = ACTIONS(2997), - [sym__thematic_break] = ACTIONS(2997), - [sym__list_marker_minus] = ACTIONS(2997), - [sym__list_marker_plus] = ACTIONS(2997), - [sym__list_marker_star] = ACTIONS(2997), - [sym__list_marker_parenthesis] = ACTIONS(2997), - [sym__list_marker_dot] = ACTIONS(2997), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_example] = ACTIONS(2997), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2997), - [sym__fenced_code_block_start_backtick] = ACTIONS(2997), - [sym_minus_metadata] = ACTIONS(2997), - [sym__pipe_table_start] = ACTIONS(2997), - [sym__fenced_div_start] = ACTIONS(2997), - [sym_ref_id_specifier] = ACTIONS(2997), - [sym__code_span_start] = ACTIONS(2997), - [sym__html_comment] = ACTIONS(2997), - [sym__autolink] = ACTIONS(2997), - [sym__highlight_span_start] = ACTIONS(2997), - [sym__insert_span_start] = ACTIONS(2997), - [sym__delete_span_start] = ACTIONS(2997), - [sym__edit_comment_span_start] = ACTIONS(2997), - [sym__single_quote_span_open] = ACTIONS(2997), - [sym__double_quote_span_open] = ACTIONS(2997), - [sym__shortcode_open_escaped] = ACTIONS(2997), - [sym__shortcode_open] = ACTIONS(2997), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), - [sym__cite_author_in_text] = ACTIONS(2997), - [sym__cite_suppress_author] = ACTIONS(2997), - [sym__strikeout_open] = ACTIONS(2997), - [sym__subscript_open] = ACTIONS(2997), - [sym__superscript_open] = ACTIONS(2997), - [sym__inline_note_start_token] = ACTIONS(2997), - [sym__strong_emphasis_open_star] = ACTIONS(2997), - [sym__strong_emphasis_open_underscore] = ACTIONS(2997), - [sym__emphasis_open_star] = ACTIONS(2997), - [sym__emphasis_open_underscore] = ACTIONS(2997), - [sym_inline_note_reference] = ACTIONS(2997), - [sym_html_element] = ACTIONS(2997), - [sym__pandoc_line_break] = ACTIONS(2997), - }, - [STATE(499)] = { - [sym__inlines] = STATE(2888), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1127), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3765), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(500)] = { - [sym__inlines] = STATE(2894), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1140), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3767), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(501)] = { - [anon_sym_COLON] = ACTIONS(2675), - [sym_entity_reference] = ACTIONS(2675), - [sym_numeric_character_reference] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2675), - [anon_sym_BANG_LBRACK] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), - [anon_sym_LBRACE] = ACTIONS(2675), - [aux_sym_pandoc_str_token1] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2675), - [aux_sym__prose_punctuation_token1] = ACTIONS(2677), - [sym__line_ending] = ACTIONS(2675), - [sym__soft_line_ending] = ACTIONS(2675), - [sym__block_close] = ACTIONS(2675), - [sym__block_quote_start] = ACTIONS(2675), - [sym_atx_h1_marker] = ACTIONS(2675), - [sym_atx_h2_marker] = ACTIONS(2675), - [sym_atx_h3_marker] = ACTIONS(2675), - [sym_atx_h4_marker] = ACTIONS(2675), - [sym_atx_h5_marker] = ACTIONS(2675), - [sym_atx_h6_marker] = ACTIONS(2675), - [sym__thematic_break] = ACTIONS(2675), - [sym__list_marker_minus] = ACTIONS(2675), - [sym__list_marker_plus] = ACTIONS(2675), - [sym__list_marker_star] = ACTIONS(2675), - [sym__list_marker_parenthesis] = ACTIONS(2675), - [sym__list_marker_dot] = ACTIONS(2675), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2675), - [sym__list_marker_example] = ACTIONS(2675), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2675), - [sym__fenced_code_block_start_backtick] = ACTIONS(2675), - [sym_minus_metadata] = ACTIONS(2675), - [sym__pipe_table_start] = ACTIONS(2675), - [sym__fenced_div_start] = ACTIONS(2675), - [sym_ref_id_specifier] = ACTIONS(2675), - [sym__code_span_start] = ACTIONS(2675), - [sym__html_comment] = ACTIONS(2675), - [sym__autolink] = ACTIONS(2675), - [sym__highlight_span_start] = ACTIONS(2675), - [sym__insert_span_start] = ACTIONS(2675), - [sym__delete_span_start] = ACTIONS(2675), - [sym__edit_comment_span_start] = ACTIONS(2675), - [sym__single_quote_span_open] = ACTIONS(2675), - [sym__double_quote_span_open] = ACTIONS(2675), - [sym__shortcode_open_escaped] = ACTIONS(2675), - [sym__shortcode_open] = ACTIONS(2675), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2675), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2675), - [sym__cite_author_in_text] = ACTIONS(2675), - [sym__cite_suppress_author] = ACTIONS(2675), - [sym__strikeout_open] = ACTIONS(2675), - [sym__subscript_open] = ACTIONS(2675), - [sym__superscript_open] = ACTIONS(2675), - [sym__inline_note_start_token] = ACTIONS(2675), - [sym__strong_emphasis_open_star] = ACTIONS(2675), - [sym__strong_emphasis_open_underscore] = ACTIONS(2675), - [sym__emphasis_open_star] = ACTIONS(2675), - [sym__emphasis_open_underscore] = ACTIONS(2675), - [sym_inline_note_reference] = ACTIONS(2675), - [sym_html_element] = ACTIONS(2675), - [sym__pandoc_line_break] = ACTIONS(2675), - }, - [STATE(502)] = { - [anon_sym_COLON] = ACTIONS(3222), - [sym_entity_reference] = ACTIONS(3222), - [sym_numeric_character_reference] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_BANG_LBRACK] = ACTIONS(3222), - [anon_sym_DOLLAR] = ACTIONS(3224), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [aux_sym_pandoc_str_token1] = ACTIONS(3224), - [anon_sym_PIPE] = ACTIONS(3222), - [aux_sym__prose_punctuation_token1] = ACTIONS(3224), - [sym__line_ending] = ACTIONS(3222), - [sym__soft_line_ending] = ACTIONS(3222), - [sym__block_close] = ACTIONS(3222), - [sym__block_quote_start] = ACTIONS(3222), - [sym_atx_h1_marker] = ACTIONS(3222), - [sym_atx_h2_marker] = ACTIONS(3222), - [sym_atx_h3_marker] = ACTIONS(3222), - [sym_atx_h4_marker] = ACTIONS(3222), - [sym_atx_h5_marker] = ACTIONS(3222), - [sym_atx_h6_marker] = ACTIONS(3222), - [sym__thematic_break] = ACTIONS(3222), - [sym__list_marker_minus] = ACTIONS(3222), - [sym__list_marker_plus] = ACTIONS(3222), - [sym__list_marker_star] = ACTIONS(3222), - [sym__list_marker_parenthesis] = ACTIONS(3222), - [sym__list_marker_dot] = ACTIONS(3222), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3222), - [sym__list_marker_example] = ACTIONS(3222), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3222), - [sym__fenced_code_block_start_backtick] = ACTIONS(3222), - [sym_minus_metadata] = ACTIONS(3222), - [sym__pipe_table_start] = ACTIONS(3222), - [sym__fenced_div_start] = ACTIONS(3222), - [sym_ref_id_specifier] = ACTIONS(3222), - [sym__code_span_start] = ACTIONS(3222), - [sym__html_comment] = ACTIONS(3222), - [sym__autolink] = ACTIONS(3222), - [sym__highlight_span_start] = ACTIONS(3222), - [sym__insert_span_start] = ACTIONS(3222), - [sym__delete_span_start] = ACTIONS(3222), - [sym__edit_comment_span_start] = ACTIONS(3222), - [sym__single_quote_span_open] = ACTIONS(3222), - [sym__double_quote_span_open] = ACTIONS(3222), - [sym__shortcode_open_escaped] = ACTIONS(3222), - [sym__shortcode_open] = ACTIONS(3222), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3222), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3222), - [sym__cite_author_in_text] = ACTIONS(3222), - [sym__cite_suppress_author] = ACTIONS(3222), - [sym__strikeout_open] = ACTIONS(3222), - [sym__subscript_open] = ACTIONS(3222), - [sym__superscript_open] = ACTIONS(3222), - [sym__inline_note_start_token] = ACTIONS(3222), - [sym__strong_emphasis_open_star] = ACTIONS(3222), - [sym__strong_emphasis_open_underscore] = ACTIONS(3222), - [sym__emphasis_open_star] = ACTIONS(3222), - [sym__emphasis_open_underscore] = ACTIONS(3222), - [sym_inline_note_reference] = ACTIONS(3222), - [sym_html_element] = ACTIONS(3222), - [sym__pandoc_line_break] = ACTIONS(3222), - }, - [STATE(503)] = { - [anon_sym_COLON] = ACTIONS(2681), - [sym_entity_reference] = ACTIONS(2681), - [sym_numeric_character_reference] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_BANG_LBRACK] = ACTIONS(2681), - [anon_sym_DOLLAR] = ACTIONS(2683), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [aux_sym_pandoc_str_token1] = ACTIONS(2683), - [anon_sym_PIPE] = ACTIONS(2681), - [aux_sym__prose_punctuation_token1] = ACTIONS(2683), - [sym__line_ending] = ACTIONS(2681), - [sym__soft_line_ending] = ACTIONS(2681), - [sym__block_close] = ACTIONS(2681), - [sym__block_quote_start] = ACTIONS(2681), - [sym_atx_h1_marker] = ACTIONS(2681), - [sym_atx_h2_marker] = ACTIONS(2681), - [sym_atx_h3_marker] = ACTIONS(2681), - [sym_atx_h4_marker] = ACTIONS(2681), - [sym_atx_h5_marker] = ACTIONS(2681), - [sym_atx_h6_marker] = ACTIONS(2681), - [sym__thematic_break] = ACTIONS(2681), - [sym__list_marker_minus] = ACTIONS(2681), - [sym__list_marker_plus] = ACTIONS(2681), - [sym__list_marker_star] = ACTIONS(2681), - [sym__list_marker_parenthesis] = ACTIONS(2681), - [sym__list_marker_dot] = ACTIONS(2681), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2681), - [sym__list_marker_example] = ACTIONS(2681), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2681), - [sym__fenced_code_block_start_backtick] = ACTIONS(2681), - [sym_minus_metadata] = ACTIONS(2681), - [sym__pipe_table_start] = ACTIONS(2681), - [sym__fenced_div_start] = ACTIONS(2681), - [sym_ref_id_specifier] = ACTIONS(2681), - [sym__code_span_start] = ACTIONS(2681), - [sym__html_comment] = ACTIONS(2681), - [sym__autolink] = ACTIONS(2681), - [sym__highlight_span_start] = ACTIONS(2681), - [sym__insert_span_start] = ACTIONS(2681), - [sym__delete_span_start] = ACTIONS(2681), - [sym__edit_comment_span_start] = ACTIONS(2681), - [sym__single_quote_span_open] = ACTIONS(2681), - [sym__double_quote_span_open] = ACTIONS(2681), - [sym__shortcode_open_escaped] = ACTIONS(2681), - [sym__shortcode_open] = ACTIONS(2681), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2681), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2681), - [sym__cite_author_in_text] = ACTIONS(2681), - [sym__cite_suppress_author] = ACTIONS(2681), - [sym__strikeout_open] = ACTIONS(2681), - [sym__subscript_open] = ACTIONS(2681), - [sym__superscript_open] = ACTIONS(2681), - [sym__inline_note_start_token] = ACTIONS(2681), - [sym__strong_emphasis_open_star] = ACTIONS(2681), - [sym__strong_emphasis_open_underscore] = ACTIONS(2681), - [sym__emphasis_open_star] = ACTIONS(2681), - [sym__emphasis_open_underscore] = ACTIONS(2681), - [sym_inline_note_reference] = ACTIONS(2681), - [sym_html_element] = ACTIONS(2681), - [sym__pandoc_line_break] = ACTIONS(2681), - }, - [STATE(504)] = { - [anon_sym_COLON] = ACTIONS(3242), - [sym_entity_reference] = ACTIONS(3242), - [sym_numeric_character_reference] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_BANG_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [aux_sym_pandoc_str_token1] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3242), - [aux_sym__prose_punctuation_token1] = ACTIONS(3244), - [sym__line_ending] = ACTIONS(3242), - [sym__soft_line_ending] = ACTIONS(3242), - [sym__block_close] = ACTIONS(3242), - [sym__block_quote_start] = ACTIONS(3242), - [sym_atx_h1_marker] = ACTIONS(3242), - [sym_atx_h2_marker] = ACTIONS(3242), - [sym_atx_h3_marker] = ACTIONS(3242), - [sym_atx_h4_marker] = ACTIONS(3242), - [sym_atx_h5_marker] = ACTIONS(3242), - [sym_atx_h6_marker] = ACTIONS(3242), - [sym__thematic_break] = ACTIONS(3242), - [sym__list_marker_minus] = ACTIONS(3242), - [sym__list_marker_plus] = ACTIONS(3242), - [sym__list_marker_star] = ACTIONS(3242), - [sym__list_marker_parenthesis] = ACTIONS(3242), - [sym__list_marker_dot] = ACTIONS(3242), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_example] = ACTIONS(3242), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3242), - [sym__fenced_code_block_start_backtick] = ACTIONS(3242), - [sym_minus_metadata] = ACTIONS(3242), - [sym__pipe_table_start] = ACTIONS(3242), - [sym__fenced_div_start] = ACTIONS(3242), - [sym_ref_id_specifier] = ACTIONS(3242), - [sym__code_span_start] = ACTIONS(3242), - [sym__html_comment] = ACTIONS(3242), - [sym__autolink] = ACTIONS(3242), - [sym__highlight_span_start] = ACTIONS(3242), - [sym__insert_span_start] = ACTIONS(3242), - [sym__delete_span_start] = ACTIONS(3242), - [sym__edit_comment_span_start] = ACTIONS(3242), - [sym__single_quote_span_open] = ACTIONS(3242), - [sym__double_quote_span_open] = ACTIONS(3242), - [sym__shortcode_open_escaped] = ACTIONS(3242), - [sym__shortcode_open] = ACTIONS(3242), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3242), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3242), - [sym__cite_author_in_text] = ACTIONS(3242), - [sym__cite_suppress_author] = ACTIONS(3242), - [sym__strikeout_open] = ACTIONS(3242), - [sym__subscript_open] = ACTIONS(3242), - [sym__superscript_open] = ACTIONS(3242), - [sym__inline_note_start_token] = ACTIONS(3242), - [sym__strong_emphasis_open_star] = ACTIONS(3242), - [sym__strong_emphasis_open_underscore] = ACTIONS(3242), - [sym__emphasis_open_star] = ACTIONS(3242), - [sym__emphasis_open_underscore] = ACTIONS(3242), - [sym_inline_note_reference] = ACTIONS(3242), - [sym_html_element] = ACTIONS(3242), - [sym__pandoc_line_break] = ACTIONS(3242), - }, - [STATE(505)] = { - [ts_builtin_sym_end] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3001), - [sym_entity_reference] = ACTIONS(3001), - [sym_numeric_character_reference] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_BANG_LBRACK] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [aux_sym_pandoc_str_token1] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3001), - [aux_sym__prose_punctuation_token1] = ACTIONS(3003), - [sym__line_ending] = ACTIONS(3001), - [sym__soft_line_ending] = ACTIONS(3001), - [sym__block_quote_start] = ACTIONS(3001), - [sym_atx_h1_marker] = ACTIONS(3001), - [sym_atx_h2_marker] = ACTIONS(3001), - [sym_atx_h3_marker] = ACTIONS(3001), - [sym_atx_h4_marker] = ACTIONS(3001), - [sym_atx_h5_marker] = ACTIONS(3001), - [sym_atx_h6_marker] = ACTIONS(3001), - [sym__thematic_break] = ACTIONS(3001), - [sym__list_marker_minus] = ACTIONS(3001), - [sym__list_marker_plus] = ACTIONS(3001), - [sym__list_marker_star] = ACTIONS(3001), - [sym__list_marker_parenthesis] = ACTIONS(3001), - [sym__list_marker_dot] = ACTIONS(3001), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_example] = ACTIONS(3001), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3001), - [sym__fenced_code_block_start_backtick] = ACTIONS(3001), - [sym_minus_metadata] = ACTIONS(3001), - [sym__pipe_table_start] = ACTIONS(3001), - [sym__fenced_div_start] = ACTIONS(3001), - [sym_ref_id_specifier] = ACTIONS(3001), - [sym__code_span_start] = ACTIONS(3001), - [sym__html_comment] = ACTIONS(3001), - [sym__autolink] = ACTIONS(3001), - [sym__highlight_span_start] = ACTIONS(3001), - [sym__insert_span_start] = ACTIONS(3001), - [sym__delete_span_start] = ACTIONS(3001), - [sym__edit_comment_span_start] = ACTIONS(3001), - [sym__single_quote_span_open] = ACTIONS(3001), - [sym__double_quote_span_open] = ACTIONS(3001), - [sym__shortcode_open_escaped] = ACTIONS(3001), - [sym__shortcode_open] = ACTIONS(3001), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3001), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3001), - [sym__cite_author_in_text] = ACTIONS(3001), + [sym__cite_author_in_text] = ACTIONS(2999), [sym__cite_suppress_author] = ACTIONS(3001), - [sym__strikeout_open] = ACTIONS(3001), - [sym__subscript_open] = ACTIONS(3001), - [sym__superscript_open] = ACTIONS(3001), - [sym__inline_note_start_token] = ACTIONS(3001), - [sym__strong_emphasis_open_star] = ACTIONS(3001), - [sym__strong_emphasis_open_underscore] = ACTIONS(3001), - [sym__emphasis_open_star] = ACTIONS(3001), - [sym__emphasis_open_underscore] = ACTIONS(3001), - [sym_inline_note_reference] = ACTIONS(3001), - [sym_html_element] = ACTIONS(3001), - [sym__pandoc_line_break] = ACTIONS(3001), - }, - [STATE(506)] = { - [ts_builtin_sym_end] = ACTIONS(3005), - [anon_sym_COLON] = ACTIONS(3005), - [sym_entity_reference] = ACTIONS(3005), - [sym_numeric_character_reference] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_BANG_LBRACK] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [aux_sym_pandoc_str_token1] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3005), - [aux_sym__prose_punctuation_token1] = ACTIONS(3007), - [sym__line_ending] = ACTIONS(3005), - [sym__soft_line_ending] = ACTIONS(3005), - [sym__block_quote_start] = ACTIONS(3005), - [sym_atx_h1_marker] = ACTIONS(3005), - [sym_atx_h2_marker] = ACTIONS(3005), - [sym_atx_h3_marker] = ACTIONS(3005), - [sym_atx_h4_marker] = ACTIONS(3005), - [sym_atx_h5_marker] = ACTIONS(3005), - [sym_atx_h6_marker] = ACTIONS(3005), - [sym__thematic_break] = ACTIONS(3005), - [sym__list_marker_minus] = ACTIONS(3005), - [sym__list_marker_plus] = ACTIONS(3005), - [sym__list_marker_star] = ACTIONS(3005), - [sym__list_marker_parenthesis] = ACTIONS(3005), - [sym__list_marker_dot] = ACTIONS(3005), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_example] = ACTIONS(3005), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3005), - [sym__fenced_code_block_start_backtick] = ACTIONS(3005), - [sym_minus_metadata] = ACTIONS(3005), - [sym__pipe_table_start] = ACTIONS(3005), - [sym__fenced_div_start] = ACTIONS(3005), - [sym_ref_id_specifier] = ACTIONS(3005), - [sym__code_span_start] = ACTIONS(3005), - [sym__html_comment] = ACTIONS(3005), - [sym__autolink] = ACTIONS(3005), - [sym__highlight_span_start] = ACTIONS(3005), - [sym__insert_span_start] = ACTIONS(3005), - [sym__delete_span_start] = ACTIONS(3005), - [sym__edit_comment_span_start] = ACTIONS(3005), - [sym__single_quote_span_open] = ACTIONS(3005), - [sym__double_quote_span_open] = ACTIONS(3005), - [sym__shortcode_open_escaped] = ACTIONS(3005), - [sym__shortcode_open] = ACTIONS(3005), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3005), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3005), - [sym__cite_author_in_text] = ACTIONS(3005), - [sym__cite_suppress_author] = ACTIONS(3005), - [sym__strikeout_open] = ACTIONS(3005), + [sym__strikeout_open] = ACTIONS(3003), [sym__subscript_open] = ACTIONS(3005), - [sym__superscript_open] = ACTIONS(3005), - [sym__inline_note_start_token] = ACTIONS(3005), - [sym__strong_emphasis_open_star] = ACTIONS(3005), - [sym__strong_emphasis_open_underscore] = ACTIONS(3005), - [sym__emphasis_open_star] = ACTIONS(3005), - [sym__emphasis_open_underscore] = ACTIONS(3005), - [sym_inline_note_reference] = ACTIONS(3005), - [sym_html_element] = ACTIONS(3005), - [sym__pandoc_line_break] = ACTIONS(3005), - }, - [STATE(507)] = { - [sym__inlines] = STATE(2812), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1250), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3769), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(508)] = { - [sym__inlines] = STATE(2814), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1261), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3771), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(509)] = { - [anon_sym_COLON] = ACTIONS(2687), - [sym_entity_reference] = ACTIONS(2687), - [sym_numeric_character_reference] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2687), - [anon_sym_BANG_LBRACK] = ACTIONS(2687), - [anon_sym_DOLLAR] = ACTIONS(2689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2687), - [aux_sym_pandoc_str_token1] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2687), - [aux_sym__prose_punctuation_token1] = ACTIONS(2689), - [sym__line_ending] = ACTIONS(2687), - [sym__soft_line_ending] = ACTIONS(2687), - [sym__block_close] = ACTIONS(2687), - [sym__block_quote_start] = ACTIONS(2687), - [sym_atx_h1_marker] = ACTIONS(2687), - [sym_atx_h2_marker] = ACTIONS(2687), - [sym_atx_h3_marker] = ACTIONS(2687), - [sym_atx_h4_marker] = ACTIONS(2687), - [sym_atx_h5_marker] = ACTIONS(2687), - [sym_atx_h6_marker] = ACTIONS(2687), - [sym__thematic_break] = ACTIONS(2687), - [sym__list_marker_minus] = ACTIONS(2687), - [sym__list_marker_plus] = ACTIONS(2687), - [sym__list_marker_star] = ACTIONS(2687), - [sym__list_marker_parenthesis] = ACTIONS(2687), - [sym__list_marker_dot] = ACTIONS(2687), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2687), - [sym__list_marker_example] = ACTIONS(2687), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2687), - [sym__fenced_code_block_start_backtick] = ACTIONS(2687), - [sym_minus_metadata] = ACTIONS(2687), - [sym__pipe_table_start] = ACTIONS(2687), - [sym__fenced_div_start] = ACTIONS(2687), - [sym_ref_id_specifier] = ACTIONS(2687), - [sym__code_span_start] = ACTIONS(2687), - [sym__html_comment] = ACTIONS(2687), - [sym__autolink] = ACTIONS(2687), - [sym__highlight_span_start] = ACTIONS(2687), - [sym__insert_span_start] = ACTIONS(2687), - [sym__delete_span_start] = ACTIONS(2687), - [sym__edit_comment_span_start] = ACTIONS(2687), - [sym__single_quote_span_open] = ACTIONS(2687), - [sym__double_quote_span_open] = ACTIONS(2687), - [sym__shortcode_open_escaped] = ACTIONS(2687), - [sym__shortcode_open] = ACTIONS(2687), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2687), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2687), - [sym__cite_author_in_text] = ACTIONS(2687), - [sym__cite_suppress_author] = ACTIONS(2687), - [sym__strikeout_open] = ACTIONS(2687), - [sym__subscript_open] = ACTIONS(2687), - [sym__superscript_open] = ACTIONS(2687), - [sym__inline_note_start_token] = ACTIONS(2687), - [sym__strong_emphasis_open_star] = ACTIONS(2687), - [sym__strong_emphasis_open_underscore] = ACTIONS(2687), - [sym__emphasis_open_star] = ACTIONS(2687), - [sym__emphasis_open_underscore] = ACTIONS(2687), - [sym_inline_note_reference] = ACTIONS(2687), - [sym_html_element] = ACTIONS(2687), - [sym__pandoc_line_break] = ACTIONS(2687), - }, - [STATE(510)] = { - [anon_sym_COLON] = ACTIONS(3274), - [sym_entity_reference] = ACTIONS(3274), - [sym_numeric_character_reference] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_BANG_LBRACK] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3276), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [aux_sym_pandoc_str_token1] = ACTIONS(3276), - [anon_sym_PIPE] = ACTIONS(3274), - [aux_sym__prose_punctuation_token1] = ACTIONS(3276), - [sym__line_ending] = ACTIONS(3274), - [sym__soft_line_ending] = ACTIONS(3274), - [sym__block_close] = ACTIONS(3274), - [sym__block_quote_start] = ACTIONS(3274), - [sym_atx_h1_marker] = ACTIONS(3274), - [sym_atx_h2_marker] = ACTIONS(3274), - [sym_atx_h3_marker] = ACTIONS(3274), - [sym_atx_h4_marker] = ACTIONS(3274), - [sym_atx_h5_marker] = ACTIONS(3274), - [sym_atx_h6_marker] = ACTIONS(3274), - [sym__thematic_break] = ACTIONS(3274), - [sym__list_marker_minus] = ACTIONS(3274), - [sym__list_marker_plus] = ACTIONS(3274), - [sym__list_marker_star] = ACTIONS(3274), - [sym__list_marker_parenthesis] = ACTIONS(3274), - [sym__list_marker_dot] = ACTIONS(3274), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3274), - [sym__list_marker_example] = ACTIONS(3274), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3274), - [sym__fenced_code_block_start_backtick] = ACTIONS(3274), - [sym_minus_metadata] = ACTIONS(3274), - [sym__pipe_table_start] = ACTIONS(3274), - [sym__fenced_div_start] = ACTIONS(3274), - [sym_ref_id_specifier] = ACTIONS(3274), - [sym__code_span_start] = ACTIONS(3274), - [sym__html_comment] = ACTIONS(3274), - [sym__autolink] = ACTIONS(3274), - [sym__highlight_span_start] = ACTIONS(3274), - [sym__insert_span_start] = ACTIONS(3274), - [sym__delete_span_start] = ACTIONS(3274), - [sym__edit_comment_span_start] = ACTIONS(3274), - [sym__single_quote_span_open] = ACTIONS(3274), - [sym__double_quote_span_open] = ACTIONS(3274), - [sym__shortcode_open_escaped] = ACTIONS(3274), - [sym__shortcode_open] = ACTIONS(3274), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3274), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3274), - [sym__cite_author_in_text] = ACTIONS(3274), - [sym__cite_suppress_author] = ACTIONS(3274), - [sym__strikeout_open] = ACTIONS(3274), - [sym__subscript_open] = ACTIONS(3274), - [sym__superscript_open] = ACTIONS(3274), - [sym__inline_note_start_token] = ACTIONS(3274), - [sym__strong_emphasis_open_star] = ACTIONS(3274), - [sym__strong_emphasis_open_underscore] = ACTIONS(3274), - [sym__emphasis_open_star] = ACTIONS(3274), - [sym__emphasis_open_underscore] = ACTIONS(3274), - [sym_inline_note_reference] = ACTIONS(3274), - [sym_html_element] = ACTIONS(3274), - [sym__pandoc_line_break] = ACTIONS(3274), - }, - [STATE(511)] = { - [anon_sym_COLON] = ACTIONS(2693), - [sym_entity_reference] = ACTIONS(2693), - [sym_numeric_character_reference] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_BANG_LBRACK] = ACTIONS(2693), - [anon_sym_DOLLAR] = ACTIONS(2695), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [aux_sym_pandoc_str_token1] = ACTIONS(2695), - [anon_sym_PIPE] = ACTIONS(2693), - [aux_sym__prose_punctuation_token1] = ACTIONS(2695), - [sym__line_ending] = ACTIONS(2693), - [sym__soft_line_ending] = ACTIONS(2693), - [sym__block_close] = ACTIONS(2693), - [sym__block_quote_start] = ACTIONS(2693), - [sym_atx_h1_marker] = ACTIONS(2693), - [sym_atx_h2_marker] = ACTIONS(2693), - [sym_atx_h3_marker] = ACTIONS(2693), - [sym_atx_h4_marker] = ACTIONS(2693), - [sym_atx_h5_marker] = ACTIONS(2693), - [sym_atx_h6_marker] = ACTIONS(2693), - [sym__thematic_break] = ACTIONS(2693), - [sym__list_marker_minus] = ACTIONS(2693), - [sym__list_marker_plus] = ACTIONS(2693), - [sym__list_marker_star] = ACTIONS(2693), - [sym__list_marker_parenthesis] = ACTIONS(2693), - [sym__list_marker_dot] = ACTIONS(2693), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2693), - [sym__list_marker_example] = ACTIONS(2693), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2693), - [sym__fenced_code_block_start_backtick] = ACTIONS(2693), - [sym_minus_metadata] = ACTIONS(2693), - [sym__pipe_table_start] = ACTIONS(2693), - [sym__fenced_div_start] = ACTIONS(2693), - [sym_ref_id_specifier] = ACTIONS(2693), - [sym__code_span_start] = ACTIONS(2693), - [sym__html_comment] = ACTIONS(2693), - [sym__autolink] = ACTIONS(2693), - [sym__highlight_span_start] = ACTIONS(2693), - [sym__insert_span_start] = ACTIONS(2693), - [sym__delete_span_start] = ACTIONS(2693), - [sym__edit_comment_span_start] = ACTIONS(2693), - [sym__single_quote_span_open] = ACTIONS(2693), - [sym__double_quote_span_open] = ACTIONS(2693), - [sym__shortcode_open_escaped] = ACTIONS(2693), - [sym__shortcode_open] = ACTIONS(2693), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2693), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2693), - [sym__cite_author_in_text] = ACTIONS(2693), - [sym__cite_suppress_author] = ACTIONS(2693), - [sym__strikeout_open] = ACTIONS(2693), - [sym__subscript_open] = ACTIONS(2693), - [sym__superscript_open] = ACTIONS(2693), - [sym__inline_note_start_token] = ACTIONS(2693), - [sym__strong_emphasis_open_star] = ACTIONS(2693), - [sym__strong_emphasis_open_underscore] = ACTIONS(2693), - [sym__emphasis_open_star] = ACTIONS(2693), - [sym__emphasis_open_underscore] = ACTIONS(2693), - [sym_inline_note_reference] = ACTIONS(2693), - [sym_html_element] = ACTIONS(2693), - [sym__pandoc_line_break] = ACTIONS(2693), - }, - [STATE(512)] = { - [anon_sym_COLON] = ACTIONS(2969), - [sym_entity_reference] = ACTIONS(2969), - [sym_numeric_character_reference] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_BANG_LBRACK] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(2971), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2969), - [aux_sym_pandoc_str_token1] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2969), - [aux_sym__prose_punctuation_token1] = ACTIONS(2971), - [sym__line_ending] = ACTIONS(2969), - [sym__soft_line_ending] = ACTIONS(2969), - [sym__block_close] = ACTIONS(2969), - [sym__block_quote_start] = ACTIONS(2969), - [sym_atx_h1_marker] = ACTIONS(2969), - [sym_atx_h2_marker] = ACTIONS(2969), - [sym_atx_h3_marker] = ACTIONS(2969), - [sym_atx_h4_marker] = ACTIONS(2969), - [sym_atx_h5_marker] = ACTIONS(2969), - [sym_atx_h6_marker] = ACTIONS(2969), - [sym__thematic_break] = ACTIONS(2969), - [sym__list_marker_minus] = ACTIONS(2969), - [sym__list_marker_plus] = ACTIONS(2969), - [sym__list_marker_star] = ACTIONS(2969), - [sym__list_marker_parenthesis] = ACTIONS(2969), - [sym__list_marker_dot] = ACTIONS(2969), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2969), - [sym__list_marker_example] = ACTIONS(2969), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2969), - [sym__fenced_code_block_start_backtick] = ACTIONS(2969), - [sym_minus_metadata] = ACTIONS(2969), - [sym__pipe_table_start] = ACTIONS(2969), - [sym__fenced_div_start] = ACTIONS(2969), - [sym_ref_id_specifier] = ACTIONS(2969), - [sym__code_span_start] = ACTIONS(2969), - [sym__html_comment] = ACTIONS(2969), - [sym__autolink] = ACTIONS(2969), - [sym__highlight_span_start] = ACTIONS(2969), - [sym__insert_span_start] = ACTIONS(2969), - [sym__delete_span_start] = ACTIONS(2969), - [sym__edit_comment_span_start] = ACTIONS(2969), - [sym__single_quote_span_open] = ACTIONS(2969), - [sym__double_quote_span_open] = ACTIONS(2969), - [sym__shortcode_open_escaped] = ACTIONS(2969), - [sym__shortcode_open] = ACTIONS(2969), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2969), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2969), - [sym__cite_author_in_text] = ACTIONS(2969), - [sym__cite_suppress_author] = ACTIONS(2969), - [sym__strikeout_open] = ACTIONS(2969), - [sym__subscript_open] = ACTIONS(2969), - [sym__superscript_open] = ACTIONS(2969), - [sym__inline_note_start_token] = ACTIONS(2969), - [sym__strong_emphasis_open_star] = ACTIONS(2969), - [sym__strong_emphasis_open_underscore] = ACTIONS(2969), - [sym__emphasis_open_star] = ACTIONS(2969), - [sym__emphasis_open_underscore] = ACTIONS(2969), - [sym_inline_note_reference] = ACTIONS(2969), - [sym_html_element] = ACTIONS(2969), - [sym__pandoc_line_break] = ACTIONS(2969), - }, - [STATE(513)] = { - [ts_builtin_sym_end] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3009), - [sym_entity_reference] = ACTIONS(3009), - [sym_numeric_character_reference] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3009), - [anon_sym_BANG_LBRACK] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3009), - [aux_sym_pandoc_str_token1] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3009), - [aux_sym__prose_punctuation_token1] = ACTIONS(3011), - [sym__line_ending] = ACTIONS(3009), - [sym__soft_line_ending] = ACTIONS(3009), - [sym__block_quote_start] = ACTIONS(3009), - [sym_atx_h1_marker] = ACTIONS(3009), - [sym_atx_h2_marker] = ACTIONS(3009), - [sym_atx_h3_marker] = ACTIONS(3009), - [sym_atx_h4_marker] = ACTIONS(3009), - [sym_atx_h5_marker] = ACTIONS(3009), - [sym_atx_h6_marker] = ACTIONS(3009), - [sym__thematic_break] = ACTIONS(3009), - [sym__list_marker_minus] = ACTIONS(3009), - [sym__list_marker_plus] = ACTIONS(3009), - [sym__list_marker_star] = ACTIONS(3009), - [sym__list_marker_parenthesis] = ACTIONS(3009), - [sym__list_marker_dot] = ACTIONS(3009), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_example] = ACTIONS(3009), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3009), - [sym__fenced_code_block_start_backtick] = ACTIONS(3009), - [sym_minus_metadata] = ACTIONS(3009), - [sym__pipe_table_start] = ACTIONS(3009), - [sym__fenced_div_start] = ACTIONS(3009), - [sym_ref_id_specifier] = ACTIONS(3009), - [sym__code_span_start] = ACTIONS(3009), - [sym__html_comment] = ACTIONS(3009), - [sym__autolink] = ACTIONS(3009), - [sym__highlight_span_start] = ACTIONS(3009), - [sym__insert_span_start] = ACTIONS(3009), - [sym__delete_span_start] = ACTIONS(3009), - [sym__edit_comment_span_start] = ACTIONS(3009), - [sym__single_quote_span_open] = ACTIONS(3009), - [sym__double_quote_span_open] = ACTIONS(3009), - [sym__shortcode_open_escaped] = ACTIONS(3009), - [sym__shortcode_open] = ACTIONS(3009), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3009), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3009), - [sym__cite_author_in_text] = ACTIONS(3009), - [sym__cite_suppress_author] = ACTIONS(3009), - [sym__strikeout_open] = ACTIONS(3009), - [sym__subscript_open] = ACTIONS(3009), - [sym__superscript_open] = ACTIONS(3009), + [sym__superscript_open] = ACTIONS(3007), [sym__inline_note_start_token] = ACTIONS(3009), - [sym__strong_emphasis_open_star] = ACTIONS(3009), - [sym__strong_emphasis_open_underscore] = ACTIONS(3009), - [sym__emphasis_open_star] = ACTIONS(3009), - [sym__emphasis_open_underscore] = ACTIONS(3009), - [sym_inline_note_reference] = ACTIONS(3009), - [sym_html_element] = ACTIONS(3009), - [sym__pandoc_line_break] = ACTIONS(3009), - }, - [STATE(514)] = { - [ts_builtin_sym_end] = ACTIONS(3013), - [anon_sym_COLON] = ACTIONS(3013), - [sym_entity_reference] = ACTIONS(3013), - [sym_numeric_character_reference] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_BANG_LBRACK] = ACTIONS(3013), - [anon_sym_DOLLAR] = ACTIONS(3015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3013), - [aux_sym_pandoc_str_token1] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3013), - [aux_sym__prose_punctuation_token1] = ACTIONS(3015), - [sym__line_ending] = ACTIONS(3013), - [sym__soft_line_ending] = ACTIONS(3013), - [sym__block_quote_start] = ACTIONS(3013), - [sym_atx_h1_marker] = ACTIONS(3013), - [sym_atx_h2_marker] = ACTIONS(3013), - [sym_atx_h3_marker] = ACTIONS(3013), - [sym_atx_h4_marker] = ACTIONS(3013), - [sym_atx_h5_marker] = ACTIONS(3013), - [sym_atx_h6_marker] = ACTIONS(3013), - [sym__thematic_break] = ACTIONS(3013), - [sym__list_marker_minus] = ACTIONS(3013), - [sym__list_marker_plus] = ACTIONS(3013), - [sym__list_marker_star] = ACTIONS(3013), - [sym__list_marker_parenthesis] = ACTIONS(3013), - [sym__list_marker_dot] = ACTIONS(3013), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_example] = ACTIONS(3013), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3013), - [sym__fenced_code_block_start_backtick] = ACTIONS(3013), - [sym_minus_metadata] = ACTIONS(3013), - [sym__pipe_table_start] = ACTIONS(3013), - [sym__fenced_div_start] = ACTIONS(3013), - [sym_ref_id_specifier] = ACTIONS(3013), - [sym__code_span_start] = ACTIONS(3013), - [sym__html_comment] = ACTIONS(3013), - [sym__autolink] = ACTIONS(3013), - [sym__highlight_span_start] = ACTIONS(3013), - [sym__insert_span_start] = ACTIONS(3013), - [sym__delete_span_start] = ACTIONS(3013), - [sym__edit_comment_span_start] = ACTIONS(3013), - [sym__single_quote_span_open] = ACTIONS(3013), - [sym__double_quote_span_open] = ACTIONS(3013), - [sym__shortcode_open_escaped] = ACTIONS(3013), - [sym__shortcode_open] = ACTIONS(3013), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3013), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3013), - [sym__cite_author_in_text] = ACTIONS(3013), - [sym__cite_suppress_author] = ACTIONS(3013), - [sym__strikeout_open] = ACTIONS(3013), - [sym__subscript_open] = ACTIONS(3013), - [sym__superscript_open] = ACTIONS(3013), - [sym__inline_note_start_token] = ACTIONS(3013), - [sym__strong_emphasis_open_star] = ACTIONS(3013), + [sym__strong_emphasis_open_star] = ACTIONS(3011), [sym__strong_emphasis_open_underscore] = ACTIONS(3013), - [sym__emphasis_open_star] = ACTIONS(3013), - [sym__emphasis_open_underscore] = ACTIONS(3013), - [sym_inline_note_reference] = ACTIONS(3013), - [sym_html_element] = ACTIONS(3013), - [sym__pandoc_line_break] = ACTIONS(3013), - }, - [STATE(515)] = { - [sym__inlines] = STATE(2941), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1342), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3773), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(516)] = { - [sym__inlines] = STATE(2949), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1344), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3775), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(517)] = { - [anon_sym_COLON] = ACTIONS(2973), - [sym_entity_reference] = ACTIONS(2973), - [sym_numeric_character_reference] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_BANG_LBRACK] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [aux_sym_pandoc_str_token1] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2973), - [aux_sym__prose_punctuation_token1] = ACTIONS(2975), - [sym__line_ending] = ACTIONS(2973), - [sym__soft_line_ending] = ACTIONS(2973), - [sym__block_close] = ACTIONS(2973), - [sym__block_quote_start] = ACTIONS(2973), - [sym_atx_h1_marker] = ACTIONS(2973), - [sym_atx_h2_marker] = ACTIONS(2973), - [sym_atx_h3_marker] = ACTIONS(2973), - [sym_atx_h4_marker] = ACTIONS(2973), - [sym_atx_h5_marker] = ACTIONS(2973), - [sym_atx_h6_marker] = ACTIONS(2973), - [sym__thematic_break] = ACTIONS(2973), - [sym__list_marker_minus] = ACTIONS(2973), - [sym__list_marker_plus] = ACTIONS(2973), - [sym__list_marker_star] = ACTIONS(2973), - [sym__list_marker_parenthesis] = ACTIONS(2973), - [sym__list_marker_dot] = ACTIONS(2973), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2973), - [sym__list_marker_example] = ACTIONS(2973), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2973), - [sym__fenced_code_block_start_backtick] = ACTIONS(2973), - [sym_minus_metadata] = ACTIONS(2973), - [sym__pipe_table_start] = ACTIONS(2973), - [sym__fenced_div_start] = ACTIONS(2973), - [sym_ref_id_specifier] = ACTIONS(2973), - [sym__code_span_start] = ACTIONS(2973), - [sym__html_comment] = ACTIONS(2973), - [sym__autolink] = ACTIONS(2973), - [sym__highlight_span_start] = ACTIONS(2973), - [sym__insert_span_start] = ACTIONS(2973), - [sym__delete_span_start] = ACTIONS(2973), - [sym__edit_comment_span_start] = ACTIONS(2973), - [sym__single_quote_span_open] = ACTIONS(2973), - [sym__double_quote_span_open] = ACTIONS(2973), - [sym__shortcode_open_escaped] = ACTIONS(2973), - [sym__shortcode_open] = ACTIONS(2973), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2973), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2973), - [sym__cite_author_in_text] = ACTIONS(2973), - [sym__cite_suppress_author] = ACTIONS(2973), - [sym__strikeout_open] = ACTIONS(2973), - [sym__subscript_open] = ACTIONS(2973), - [sym__superscript_open] = ACTIONS(2973), - [sym__inline_note_start_token] = ACTIONS(2973), - [sym__strong_emphasis_open_star] = ACTIONS(2973), - [sym__strong_emphasis_open_underscore] = ACTIONS(2973), - [sym__emphasis_open_star] = ACTIONS(2973), - [sym__emphasis_open_underscore] = ACTIONS(2973), - [sym_inline_note_reference] = ACTIONS(2973), - [sym_html_element] = ACTIONS(2973), - [sym__pandoc_line_break] = ACTIONS(2973), - }, - [STATE(518)] = { - [ts_builtin_sym_end] = ACTIONS(3284), - [anon_sym_COLON] = ACTIONS(3284), - [sym_entity_reference] = ACTIONS(3284), - [sym_numeric_character_reference] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_BANG_LBRACK] = ACTIONS(3284), - [anon_sym_DOLLAR] = ACTIONS(3286), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [aux_sym_pandoc_str_token1] = ACTIONS(3286), - [anon_sym_PIPE] = ACTIONS(3284), - [aux_sym__prose_punctuation_token1] = ACTIONS(3286), - [sym__line_ending] = ACTIONS(3284), - [sym__soft_line_ending] = ACTIONS(3284), - [sym__block_quote_start] = ACTIONS(3284), - [sym_atx_h1_marker] = ACTIONS(3284), - [sym_atx_h2_marker] = ACTIONS(3284), - [sym_atx_h3_marker] = ACTIONS(3284), - [sym_atx_h4_marker] = ACTIONS(3284), - [sym_atx_h5_marker] = ACTIONS(3284), - [sym_atx_h6_marker] = ACTIONS(3284), - [sym__thematic_break] = ACTIONS(3284), - [sym__list_marker_minus] = ACTIONS(3284), - [sym__list_marker_plus] = ACTIONS(3284), - [sym__list_marker_star] = ACTIONS(3284), - [sym__list_marker_parenthesis] = ACTIONS(3284), - [sym__list_marker_dot] = ACTIONS(3284), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_example] = ACTIONS(3284), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3284), - [sym__fenced_code_block_start_backtick] = ACTIONS(3284), - [sym_minus_metadata] = ACTIONS(3284), - [sym__pipe_table_start] = ACTIONS(3284), - [sym__fenced_div_start] = ACTIONS(3284), - [sym_ref_id_specifier] = ACTIONS(3284), - [sym__code_span_start] = ACTIONS(3284), - [sym__html_comment] = ACTIONS(3284), - [sym__autolink] = ACTIONS(3284), - [sym__highlight_span_start] = ACTIONS(3284), - [sym__insert_span_start] = ACTIONS(3284), - [sym__delete_span_start] = ACTIONS(3284), - [sym__edit_comment_span_start] = ACTIONS(3284), - [sym__single_quote_span_open] = ACTIONS(3284), - [sym__double_quote_span_open] = ACTIONS(3284), - [sym__shortcode_open_escaped] = ACTIONS(3284), - [sym__shortcode_open] = ACTIONS(3284), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3284), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3284), - [sym__cite_author_in_text] = ACTIONS(3284), - [sym__cite_suppress_author] = ACTIONS(3284), - [sym__strikeout_open] = ACTIONS(3284), - [sym__subscript_open] = ACTIONS(3284), - [sym__superscript_open] = ACTIONS(3284), - [sym__inline_note_start_token] = ACTIONS(3284), - [sym__strong_emphasis_open_star] = ACTIONS(3284), - [sym__strong_emphasis_open_underscore] = ACTIONS(3284), - [sym__emphasis_open_star] = ACTIONS(3284), - [sym__emphasis_open_underscore] = ACTIONS(3284), - [sym_inline_note_reference] = ACTIONS(3284), - [sym_html_element] = ACTIONS(3284), - [sym__pandoc_line_break] = ACTIONS(3284), - }, - [STATE(519)] = { - [ts_builtin_sym_end] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3427), - [sym_entity_reference] = ACTIONS(3427), - [sym_numeric_character_reference] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_BANG_LBRACK] = ACTIONS(3427), - [anon_sym_DOLLAR] = ACTIONS(3429), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [aux_sym_pandoc_str_token1] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3427), - [aux_sym__prose_punctuation_token1] = ACTIONS(3429), - [sym__line_ending] = ACTIONS(3427), - [sym__soft_line_ending] = ACTIONS(3427), - [sym__block_quote_start] = ACTIONS(3427), - [sym_atx_h1_marker] = ACTIONS(3427), - [sym_atx_h2_marker] = ACTIONS(3427), - [sym_atx_h3_marker] = ACTIONS(3427), - [sym_atx_h4_marker] = ACTIONS(3427), - [sym_atx_h5_marker] = ACTIONS(3427), - [sym_atx_h6_marker] = ACTIONS(3427), - [sym__thematic_break] = ACTIONS(3427), - [sym__list_marker_minus] = ACTIONS(3427), - [sym__list_marker_plus] = ACTIONS(3427), - [sym__list_marker_star] = ACTIONS(3427), - [sym__list_marker_parenthesis] = ACTIONS(3427), - [sym__list_marker_dot] = ACTIONS(3427), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3427), - [sym__list_marker_example] = ACTIONS(3427), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3427), - [sym__fenced_code_block_start_backtick] = ACTIONS(3427), - [sym_minus_metadata] = ACTIONS(3427), - [sym__pipe_table_start] = ACTIONS(3427), - [sym__fenced_div_start] = ACTIONS(3427), - [sym_ref_id_specifier] = ACTIONS(3427), - [sym__code_span_start] = ACTIONS(3427), - [sym__html_comment] = ACTIONS(3427), - [sym__autolink] = ACTIONS(3427), - [sym__highlight_span_start] = ACTIONS(3427), - [sym__insert_span_start] = ACTIONS(3427), - [sym__delete_span_start] = ACTIONS(3427), - [sym__edit_comment_span_start] = ACTIONS(3427), - [sym__single_quote_span_open] = ACTIONS(3427), - [sym__double_quote_span_open] = ACTIONS(3427), - [sym__shortcode_open_escaped] = ACTIONS(3427), - [sym__shortcode_open] = ACTIONS(3427), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3427), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3427), - [sym__cite_author_in_text] = ACTIONS(3427), - [sym__cite_suppress_author] = ACTIONS(3427), - [sym__strikeout_open] = ACTIONS(3427), - [sym__subscript_open] = ACTIONS(3427), - [sym__superscript_open] = ACTIONS(3427), - [sym__inline_note_start_token] = ACTIONS(3427), - [sym__strong_emphasis_open_star] = ACTIONS(3427), - [sym__strong_emphasis_open_underscore] = ACTIONS(3427), - [sym__emphasis_open_star] = ACTIONS(3427), - [sym__emphasis_open_underscore] = ACTIONS(3427), - [sym_inline_note_reference] = ACTIONS(3427), - [sym_html_element] = ACTIONS(3427), - [sym__pandoc_line_break] = ACTIONS(3427), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, - [STATE(520)] = { - [anon_sym_COLON] = ACTIONS(2977), - [sym_entity_reference] = ACTIONS(2977), - [sym_numeric_character_reference] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_BANG_LBRACK] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(2979), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [aux_sym_pandoc_str_token1] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2977), - [aux_sym__prose_punctuation_token1] = ACTIONS(2979), - [sym__line_ending] = ACTIONS(2977), - [sym__soft_line_ending] = ACTIONS(2977), - [sym__block_close] = ACTIONS(2977), - [sym__block_quote_start] = ACTIONS(2977), - [sym_atx_h1_marker] = ACTIONS(2977), - [sym_atx_h2_marker] = ACTIONS(2977), - [sym_atx_h3_marker] = ACTIONS(2977), - [sym_atx_h4_marker] = ACTIONS(2977), - [sym_atx_h5_marker] = ACTIONS(2977), - [sym_atx_h6_marker] = ACTIONS(2977), - [sym__thematic_break] = ACTIONS(2977), - [sym__list_marker_minus] = ACTIONS(2977), - [sym__list_marker_plus] = ACTIONS(2977), - [sym__list_marker_star] = ACTIONS(2977), - [sym__list_marker_parenthesis] = ACTIONS(2977), - [sym__list_marker_dot] = ACTIONS(2977), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2977), - [sym__list_marker_example] = ACTIONS(2977), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2977), - [sym__fenced_code_block_start_backtick] = ACTIONS(2977), - [sym_minus_metadata] = ACTIONS(2977), - [sym__pipe_table_start] = ACTIONS(2977), - [sym__fenced_div_start] = ACTIONS(2977), - [sym_ref_id_specifier] = ACTIONS(2977), + [STATE(453)] = { + [sym__inlines] = STATE(4036), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(724), + [sym__inline_whitespace] = STATE(724), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3089), + [sym__soft_line_ending] = ACTIONS(2975), [sym__code_span_start] = ACTIONS(2977), - [sym__html_comment] = ACTIONS(2977), - [sym__autolink] = ACTIONS(2977), - [sym__highlight_span_start] = ACTIONS(2977), - [sym__insert_span_start] = ACTIONS(2977), - [sym__delete_span_start] = ACTIONS(2977), - [sym__edit_comment_span_start] = ACTIONS(2977), - [sym__single_quote_span_open] = ACTIONS(2977), - [sym__double_quote_span_open] = ACTIONS(2977), - [sym__shortcode_open_escaped] = ACTIONS(2977), - [sym__shortcode_open] = ACTIONS(2977), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2977), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2977), - [sym__cite_author_in_text] = ACTIONS(2977), - [sym__cite_suppress_author] = ACTIONS(2977), - [sym__strikeout_open] = ACTIONS(2977), - [sym__subscript_open] = ACTIONS(2977), - [sym__superscript_open] = ACTIONS(2977), - [sym__inline_note_start_token] = ACTIONS(2977), - [sym__strong_emphasis_open_star] = ACTIONS(2977), - [sym__strong_emphasis_open_underscore] = ACTIONS(2977), - [sym__emphasis_open_star] = ACTIONS(2977), - [sym__emphasis_open_underscore] = ACTIONS(2977), - [sym_inline_note_reference] = ACTIONS(2977), - [sym_html_element] = ACTIONS(2977), - [sym__pandoc_line_break] = ACTIONS(2977), - }, - [STATE(521)] = { - [ts_builtin_sym_end] = ACTIONS(3017), - [anon_sym_COLON] = ACTIONS(3017), - [sym_entity_reference] = ACTIONS(3017), - [sym_numeric_character_reference] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_BANG_LBRACK] = ACTIONS(3017), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [aux_sym_pandoc_str_token1] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3017), - [aux_sym__prose_punctuation_token1] = ACTIONS(3019), - [sym__line_ending] = ACTIONS(3017), - [sym__soft_line_ending] = ACTIONS(3017), - [sym__block_quote_start] = ACTIONS(3017), - [sym_atx_h1_marker] = ACTIONS(3017), - [sym_atx_h2_marker] = ACTIONS(3017), - [sym_atx_h3_marker] = ACTIONS(3017), - [sym_atx_h4_marker] = ACTIONS(3017), - [sym_atx_h5_marker] = ACTIONS(3017), - [sym_atx_h6_marker] = ACTIONS(3017), - [sym__thematic_break] = ACTIONS(3017), - [sym__list_marker_minus] = ACTIONS(3017), - [sym__list_marker_plus] = ACTIONS(3017), - [sym__list_marker_star] = ACTIONS(3017), - [sym__list_marker_parenthesis] = ACTIONS(3017), - [sym__list_marker_dot] = ACTIONS(3017), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_example] = ACTIONS(3017), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3017), - [sym__fenced_code_block_start_backtick] = ACTIONS(3017), - [sym_minus_metadata] = ACTIONS(3017), - [sym__pipe_table_start] = ACTIONS(3017), - [sym__fenced_div_start] = ACTIONS(3017), - [sym_ref_id_specifier] = ACTIONS(3017), - [sym__code_span_start] = ACTIONS(3017), - [sym__html_comment] = ACTIONS(3017), - [sym__autolink] = ACTIONS(3017), - [sym__highlight_span_start] = ACTIONS(3017), - [sym__insert_span_start] = ACTIONS(3017), - [sym__delete_span_start] = ACTIONS(3017), - [sym__edit_comment_span_start] = ACTIONS(3017), - [sym__single_quote_span_open] = ACTIONS(3017), - [sym__double_quote_span_open] = ACTIONS(3017), - [sym__shortcode_open_escaped] = ACTIONS(3017), - [sym__shortcode_open] = ACTIONS(3017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3017), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3017), - [sym__cite_author_in_text] = ACTIONS(3017), - [sym__cite_suppress_author] = ACTIONS(3017), - [sym__strikeout_open] = ACTIONS(3017), - [sym__subscript_open] = ACTIONS(3017), - [sym__superscript_open] = ACTIONS(3017), - [sym__inline_note_start_token] = ACTIONS(3017), - [sym__strong_emphasis_open_star] = ACTIONS(3017), - [sym__strong_emphasis_open_underscore] = ACTIONS(3017), - [sym__emphasis_open_star] = ACTIONS(3017), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), [sym__emphasis_open_underscore] = ACTIONS(3017), - [sym_inline_note_reference] = ACTIONS(3017), - [sym_html_element] = ACTIONS(3017), - [sym__pandoc_line_break] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, - [STATE(522)] = { - [anon_sym_COLON] = ACTIONS(2981), - [sym_entity_reference] = ACTIONS(2981), - [sym_numeric_character_reference] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_BANG_LBRACK] = ACTIONS(2981), - [anon_sym_DOLLAR] = ACTIONS(2983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [aux_sym_pandoc_str_token1] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2981), - [aux_sym__prose_punctuation_token1] = ACTIONS(2983), - [sym__line_ending] = ACTIONS(2981), - [sym__soft_line_ending] = ACTIONS(2981), - [sym__block_close] = ACTIONS(2981), - [sym__block_quote_start] = ACTIONS(2981), - [sym_atx_h1_marker] = ACTIONS(2981), - [sym_atx_h2_marker] = ACTIONS(2981), - [sym_atx_h3_marker] = ACTIONS(2981), - [sym_atx_h4_marker] = ACTIONS(2981), - [sym_atx_h5_marker] = ACTIONS(2981), - [sym_atx_h6_marker] = ACTIONS(2981), - [sym__thematic_break] = ACTIONS(2981), - [sym__list_marker_minus] = ACTIONS(2981), - [sym__list_marker_plus] = ACTIONS(2981), - [sym__list_marker_star] = ACTIONS(2981), - [sym__list_marker_parenthesis] = ACTIONS(2981), - [sym__list_marker_dot] = ACTIONS(2981), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2981), - [sym__list_marker_example] = ACTIONS(2981), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2981), - [sym__fenced_code_block_start_backtick] = ACTIONS(2981), - [sym_minus_metadata] = ACTIONS(2981), - [sym__pipe_table_start] = ACTIONS(2981), - [sym__fenced_div_start] = ACTIONS(2981), - [sym_ref_id_specifier] = ACTIONS(2981), - [sym__code_span_start] = ACTIONS(2981), - [sym__html_comment] = ACTIONS(2981), - [sym__autolink] = ACTIONS(2981), - [sym__highlight_span_start] = ACTIONS(2981), + [STATE(454)] = { + [sym__inlines] = STATE(4040), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(725), + [sym__inline_whitespace] = STATE(725), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3093), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), [sym__insert_span_start] = ACTIONS(2981), - [sym__delete_span_start] = ACTIONS(2981), - [sym__edit_comment_span_start] = ACTIONS(2981), - [sym__single_quote_span_open] = ACTIONS(2981), - [sym__double_quote_span_open] = ACTIONS(2981), - [sym__shortcode_open_escaped] = ACTIONS(2981), - [sym__shortcode_open] = ACTIONS(2981), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2981), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2981), - [sym__cite_author_in_text] = ACTIONS(2981), - [sym__cite_suppress_author] = ACTIONS(2981), - [sym__strikeout_open] = ACTIONS(2981), - [sym__subscript_open] = ACTIONS(2981), - [sym__superscript_open] = ACTIONS(2981), - [sym__inline_note_start_token] = ACTIONS(2981), - [sym__strong_emphasis_open_star] = ACTIONS(2981), - [sym__strong_emphasis_open_underscore] = ACTIONS(2981), - [sym__emphasis_open_star] = ACTIONS(2981), - [sym__emphasis_open_underscore] = ACTIONS(2981), - [sym_inline_note_reference] = ACTIONS(2981), - [sym_html_element] = ACTIONS(2981), - [sym__pandoc_line_break] = ACTIONS(2981), - }, - [STATE(523)] = { - [sym__inlines] = STATE(2736), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1377), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3777), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(524)] = { - [sym__inlines] = STATE(2737), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1379), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3779), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(525)] = { - [anon_sym_COLON] = ACTIONS(2985), - [sym_entity_reference] = ACTIONS(2985), - [sym_numeric_character_reference] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_BANG_LBRACK] = ACTIONS(2985), - [anon_sym_DOLLAR] = ACTIONS(2987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [aux_sym_pandoc_str_token1] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [aux_sym__prose_punctuation_token1] = ACTIONS(2987), - [sym__line_ending] = ACTIONS(2985), - [sym__soft_line_ending] = ACTIONS(2985), - [sym__block_close] = ACTIONS(2985), - [sym__block_quote_start] = ACTIONS(2985), - [sym_atx_h1_marker] = ACTIONS(2985), - [sym_atx_h2_marker] = ACTIONS(2985), - [sym_atx_h3_marker] = ACTIONS(2985), - [sym_atx_h4_marker] = ACTIONS(2985), - [sym_atx_h5_marker] = ACTIONS(2985), - [sym_atx_h6_marker] = ACTIONS(2985), - [sym__thematic_break] = ACTIONS(2985), - [sym__list_marker_minus] = ACTIONS(2985), - [sym__list_marker_plus] = ACTIONS(2985), - [sym__list_marker_star] = ACTIONS(2985), - [sym__list_marker_parenthesis] = ACTIONS(2985), - [sym__list_marker_dot] = ACTIONS(2985), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2985), - [sym__list_marker_example] = ACTIONS(2985), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2985), - [sym__fenced_code_block_start_backtick] = ACTIONS(2985), - [sym_minus_metadata] = ACTIONS(2985), - [sym__pipe_table_start] = ACTIONS(2985), - [sym__fenced_div_start] = ACTIONS(2985), - [sym_ref_id_specifier] = ACTIONS(2985), - [sym__code_span_start] = ACTIONS(2985), - [sym__html_comment] = ACTIONS(2985), - [sym__autolink] = ACTIONS(2985), - [sym__highlight_span_start] = ACTIONS(2985), - [sym__insert_span_start] = ACTIONS(2985), - [sym__delete_span_start] = ACTIONS(2985), + [sym__delete_span_start] = ACTIONS(2983), [sym__edit_comment_span_start] = ACTIONS(2985), - [sym__single_quote_span_open] = ACTIONS(2985), - [sym__double_quote_span_open] = ACTIONS(2985), - [sym__shortcode_open_escaped] = ACTIONS(2985), - [sym__shortcode_open] = ACTIONS(2985), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2985), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2985), - [sym__cite_author_in_text] = ACTIONS(2985), - [sym__cite_suppress_author] = ACTIONS(2985), - [sym__strikeout_open] = ACTIONS(2985), - [sym__subscript_open] = ACTIONS(2985), - [sym__superscript_open] = ACTIONS(2985), - [sym__inline_note_start_token] = ACTIONS(2985), - [sym__strong_emphasis_open_star] = ACTIONS(2985), - [sym__strong_emphasis_open_underscore] = ACTIONS(2985), - [sym__emphasis_open_star] = ACTIONS(2985), - [sym__emphasis_open_underscore] = ACTIONS(2985), - [sym_inline_note_reference] = ACTIONS(2985), - [sym_html_element] = ACTIONS(2985), - [sym__pandoc_line_break] = ACTIONS(2985), - }, - [STATE(526)] = { - [anon_sym_COLON] = ACTIONS(2989), - [sym_entity_reference] = ACTIONS(2989), - [sym_numeric_character_reference] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_BANG_LBRACK] = ACTIONS(2989), - [anon_sym_DOLLAR] = ACTIONS(2991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [aux_sym_pandoc_str_token1] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2989), - [aux_sym__prose_punctuation_token1] = ACTIONS(2991), - [sym__line_ending] = ACTIONS(2989), - [sym__soft_line_ending] = ACTIONS(2989), - [sym__block_close] = ACTIONS(2989), - [sym__block_quote_start] = ACTIONS(2989), - [sym_atx_h1_marker] = ACTIONS(2989), - [sym_atx_h2_marker] = ACTIONS(2989), - [sym_atx_h3_marker] = ACTIONS(2989), - [sym_atx_h4_marker] = ACTIONS(2989), - [sym_atx_h5_marker] = ACTIONS(2989), - [sym_atx_h6_marker] = ACTIONS(2989), - [sym__thematic_break] = ACTIONS(2989), - [sym__list_marker_minus] = ACTIONS(2989), - [sym__list_marker_plus] = ACTIONS(2989), - [sym__list_marker_star] = ACTIONS(2989), - [sym__list_marker_parenthesis] = ACTIONS(2989), - [sym__list_marker_dot] = ACTIONS(2989), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2989), - [sym__list_marker_example] = ACTIONS(2989), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2989), - [sym__fenced_code_block_start_backtick] = ACTIONS(2989), - [sym_minus_metadata] = ACTIONS(2989), - [sym__pipe_table_start] = ACTIONS(2989), - [sym__fenced_div_start] = ACTIONS(2989), - [sym_ref_id_specifier] = ACTIONS(2989), - [sym__code_span_start] = ACTIONS(2989), - [sym__html_comment] = ACTIONS(2989), - [sym__autolink] = ACTIONS(2989), - [sym__highlight_span_start] = ACTIONS(2989), - [sym__insert_span_start] = ACTIONS(2989), - [sym__delete_span_start] = ACTIONS(2989), - [sym__edit_comment_span_start] = ACTIONS(2989), - [sym__single_quote_span_open] = ACTIONS(2989), + [sym__single_quote_span_open] = ACTIONS(2987), [sym__double_quote_span_open] = ACTIONS(2989), - [sym__shortcode_open_escaped] = ACTIONS(2989), - [sym__shortcode_open] = ACTIONS(2989), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2989), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2989), - [sym__cite_author_in_text] = ACTIONS(2989), - [sym__cite_suppress_author] = ACTIONS(2989), - [sym__strikeout_open] = ACTIONS(2989), - [sym__subscript_open] = ACTIONS(2989), - [sym__superscript_open] = ACTIONS(2989), - [sym__inline_note_start_token] = ACTIONS(2989), - [sym__strong_emphasis_open_star] = ACTIONS(2989), - [sym__strong_emphasis_open_underscore] = ACTIONS(2989), - [sym__emphasis_open_star] = ACTIONS(2989), - [sym__emphasis_open_underscore] = ACTIONS(2989), - [sym_inline_note_reference] = ACTIONS(2989), - [sym_html_element] = ACTIONS(2989), - [sym__pandoc_line_break] = ACTIONS(2989), - }, - [STATE(527)] = { - [anon_sym_COLON] = ACTIONS(2993), - [sym_entity_reference] = ACTIONS(2993), - [sym_numeric_character_reference] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_BANG_LBRACK] = ACTIONS(2993), - [anon_sym_DOLLAR] = ACTIONS(2995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [aux_sym_pandoc_str_token1] = ACTIONS(2995), - [anon_sym_PIPE] = ACTIONS(2993), - [aux_sym__prose_punctuation_token1] = ACTIONS(2995), - [sym__line_ending] = ACTIONS(2993), - [sym__soft_line_ending] = ACTIONS(2993), - [sym__block_close] = ACTIONS(2993), - [sym__block_quote_start] = ACTIONS(2993), - [sym_atx_h1_marker] = ACTIONS(2993), - [sym_atx_h2_marker] = ACTIONS(2993), - [sym_atx_h3_marker] = ACTIONS(2993), - [sym_atx_h4_marker] = ACTIONS(2993), - [sym_atx_h5_marker] = ACTIONS(2993), - [sym_atx_h6_marker] = ACTIONS(2993), - [sym__thematic_break] = ACTIONS(2993), - [sym__list_marker_minus] = ACTIONS(2993), - [sym__list_marker_plus] = ACTIONS(2993), - [sym__list_marker_star] = ACTIONS(2993), - [sym__list_marker_parenthesis] = ACTIONS(2993), - [sym__list_marker_dot] = ACTIONS(2993), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2993), - [sym__list_marker_example] = ACTIONS(2993), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2993), - [sym__fenced_code_block_start_backtick] = ACTIONS(2993), - [sym_minus_metadata] = ACTIONS(2993), - [sym__pipe_table_start] = ACTIONS(2993), - [sym__fenced_div_start] = ACTIONS(2993), - [sym_ref_id_specifier] = ACTIONS(2993), - [sym__code_span_start] = ACTIONS(2993), - [sym__html_comment] = ACTIONS(2993), - [sym__autolink] = ACTIONS(2993), - [sym__highlight_span_start] = ACTIONS(2993), - [sym__insert_span_start] = ACTIONS(2993), - [sym__delete_span_start] = ACTIONS(2993), - [sym__edit_comment_span_start] = ACTIONS(2993), - [sym__single_quote_span_open] = ACTIONS(2993), - [sym__double_quote_span_open] = ACTIONS(2993), - [sym__shortcode_open_escaped] = ACTIONS(2993), + [sym__shortcode_open_escaped] = ACTIONS(2991), [sym__shortcode_open] = ACTIONS(2993), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2993), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2993), - [sym__cite_author_in_text] = ACTIONS(2993), - [sym__cite_suppress_author] = ACTIONS(2993), - [sym__strikeout_open] = ACTIONS(2993), - [sym__subscript_open] = ACTIONS(2993), - [sym__superscript_open] = ACTIONS(2993), - [sym__inline_note_start_token] = ACTIONS(2993), - [sym__strong_emphasis_open_star] = ACTIONS(2993), - [sym__strong_emphasis_open_underscore] = ACTIONS(2993), - [sym__emphasis_open_star] = ACTIONS(2993), - [sym__emphasis_open_underscore] = ACTIONS(2993), - [sym_inline_note_reference] = ACTIONS(2993), - [sym_html_element] = ACTIONS(2993), - [sym__pandoc_line_break] = ACTIONS(2993), - }, - [STATE(528)] = { - [ts_builtin_sym_end] = ACTIONS(3021), - [anon_sym_COLON] = ACTIONS(3021), - [sym_entity_reference] = ACTIONS(3021), - [sym_numeric_character_reference] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_BANG_LBRACK] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3021), - [aux_sym_pandoc_str_token1] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3021), - [aux_sym__prose_punctuation_token1] = ACTIONS(3023), - [sym__line_ending] = ACTIONS(3021), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__block_quote_start] = ACTIONS(3021), - [sym_atx_h1_marker] = ACTIONS(3021), - [sym_atx_h2_marker] = ACTIONS(3021), - [sym_atx_h3_marker] = ACTIONS(3021), - [sym_atx_h4_marker] = ACTIONS(3021), - [sym_atx_h5_marker] = ACTIONS(3021), - [sym_atx_h6_marker] = ACTIONS(3021), - [sym__thematic_break] = ACTIONS(3021), - [sym__list_marker_minus] = ACTIONS(3021), - [sym__list_marker_plus] = ACTIONS(3021), - [sym__list_marker_star] = ACTIONS(3021), - [sym__list_marker_parenthesis] = ACTIONS(3021), - [sym__list_marker_dot] = ACTIONS(3021), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_example] = ACTIONS(3021), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3021), - [sym__fenced_code_block_start_backtick] = ACTIONS(3021), - [sym_minus_metadata] = ACTIONS(3021), - [sym__pipe_table_start] = ACTIONS(3021), - [sym__fenced_div_start] = ACTIONS(3021), - [sym_ref_id_specifier] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3021), - [sym__html_comment] = ACTIONS(3021), - [sym__autolink] = ACTIONS(3021), - [sym__highlight_span_start] = ACTIONS(3021), - [sym__insert_span_start] = ACTIONS(3021), - [sym__delete_span_start] = ACTIONS(3021), - [sym__edit_comment_span_start] = ACTIONS(3021), - [sym__single_quote_span_open] = ACTIONS(3021), - [sym__double_quote_span_open] = ACTIONS(3021), - [sym__shortcode_open_escaped] = ACTIONS(3021), - [sym__shortcode_open] = ACTIONS(3021), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3021), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3021), - [sym__cite_author_in_text] = ACTIONS(3021), - [sym__cite_suppress_author] = ACTIONS(3021), - [sym__strikeout_open] = ACTIONS(3021), - [sym__subscript_open] = ACTIONS(3021), - [sym__superscript_open] = ACTIONS(3021), - [sym__inline_note_start_token] = ACTIONS(3021), - [sym__strong_emphasis_open_star] = ACTIONS(3021), - [sym__strong_emphasis_open_underscore] = ACTIONS(3021), - [sym__emphasis_open_star] = ACTIONS(3021), - [sym__emphasis_open_underscore] = ACTIONS(3021), - [sym_inline_note_reference] = ACTIONS(3021), - [sym_html_element] = ACTIONS(3021), - [sym__pandoc_line_break] = ACTIONS(3021), - }, - [STATE(529)] = { - [ts_builtin_sym_end] = ACTIONS(3025), - [anon_sym_COLON] = ACTIONS(3025), - [sym_entity_reference] = ACTIONS(3025), - [sym_numeric_character_reference] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3025), - [aux_sym_pandoc_str_token1] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3025), - [aux_sym__prose_punctuation_token1] = ACTIONS(3027), - [sym__line_ending] = ACTIONS(3025), - [sym__soft_line_ending] = ACTIONS(3025), - [sym__block_quote_start] = ACTIONS(3025), - [sym_atx_h1_marker] = ACTIONS(3025), - [sym_atx_h2_marker] = ACTIONS(3025), - [sym_atx_h3_marker] = ACTIONS(3025), - [sym_atx_h4_marker] = ACTIONS(3025), - [sym_atx_h5_marker] = ACTIONS(3025), - [sym_atx_h6_marker] = ACTIONS(3025), - [sym__thematic_break] = ACTIONS(3025), - [sym__list_marker_minus] = ACTIONS(3025), - [sym__list_marker_plus] = ACTIONS(3025), - [sym__list_marker_star] = ACTIONS(3025), - [sym__list_marker_parenthesis] = ACTIONS(3025), - [sym__list_marker_dot] = ACTIONS(3025), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_example] = ACTIONS(3025), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3025), - [sym__fenced_code_block_start_backtick] = ACTIONS(3025), - [sym_minus_metadata] = ACTIONS(3025), - [sym__pipe_table_start] = ACTIONS(3025), - [sym__fenced_div_start] = ACTIONS(3025), - [sym_ref_id_specifier] = ACTIONS(3025), - [sym__code_span_start] = ACTIONS(3025), - [sym__html_comment] = ACTIONS(3025), - [sym__autolink] = ACTIONS(3025), - [sym__highlight_span_start] = ACTIONS(3025), - [sym__insert_span_start] = ACTIONS(3025), - [sym__delete_span_start] = ACTIONS(3025), - [sym__edit_comment_span_start] = ACTIONS(3025), - [sym__single_quote_span_open] = ACTIONS(3025), - [sym__double_quote_span_open] = ACTIONS(3025), - [sym__shortcode_open_escaped] = ACTIONS(3025), - [sym__shortcode_open] = ACTIONS(3025), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3025), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3025), - [sym__cite_author_in_text] = ACTIONS(3025), - [sym__cite_suppress_author] = ACTIONS(3025), - [sym__strikeout_open] = ACTIONS(3025), - [sym__subscript_open] = ACTIONS(3025), - [sym__superscript_open] = ACTIONS(3025), - [sym__inline_note_start_token] = ACTIONS(3025), - [sym__strong_emphasis_open_star] = ACTIONS(3025), - [sym__strong_emphasis_open_underscore] = ACTIONS(3025), - [sym__emphasis_open_star] = ACTIONS(3025), - [sym__emphasis_open_underscore] = ACTIONS(3025), - [sym_inline_note_reference] = ACTIONS(3025), - [sym_html_element] = ACTIONS(3025), - [sym__pandoc_line_break] = ACTIONS(3025), - }, - [STATE(530)] = { - [sym__inlines] = STATE(2787), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1403), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3781), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(531)] = { - [sym__inlines] = STATE(2788), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1405), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3783), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(532)] = { - [anon_sym_COLON] = ACTIONS(2997), - [sym_entity_reference] = ACTIONS(2997), - [sym_numeric_character_reference] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_BANG_LBRACK] = ACTIONS(2997), - [anon_sym_DOLLAR] = ACTIONS(2999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [aux_sym_pandoc_str_token1] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(2997), - [aux_sym__prose_punctuation_token1] = ACTIONS(2999), - [sym__line_ending] = ACTIONS(2997), - [sym__soft_line_ending] = ACTIONS(2997), - [sym__block_close] = ACTIONS(2997), - [sym__block_quote_start] = ACTIONS(2997), - [sym_atx_h1_marker] = ACTIONS(2997), - [sym_atx_h2_marker] = ACTIONS(2997), - [sym_atx_h3_marker] = ACTIONS(2997), - [sym_atx_h4_marker] = ACTIONS(2997), - [sym_atx_h5_marker] = ACTIONS(2997), - [sym_atx_h6_marker] = ACTIONS(2997), - [sym__thematic_break] = ACTIONS(2997), - [sym__list_marker_minus] = ACTIONS(2997), - [sym__list_marker_plus] = ACTIONS(2997), - [sym__list_marker_star] = ACTIONS(2997), - [sym__list_marker_parenthesis] = ACTIONS(2997), - [sym__list_marker_dot] = ACTIONS(2997), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2997), - [sym__list_marker_example] = ACTIONS(2997), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2997), - [sym__fenced_code_block_start_backtick] = ACTIONS(2997), - [sym_minus_metadata] = ACTIONS(2997), - [sym__pipe_table_start] = ACTIONS(2997), - [sym__fenced_div_start] = ACTIONS(2997), - [sym_ref_id_specifier] = ACTIONS(2997), - [sym__code_span_start] = ACTIONS(2997), - [sym__html_comment] = ACTIONS(2997), - [sym__autolink] = ACTIONS(2997), - [sym__highlight_span_start] = ACTIONS(2997), - [sym__insert_span_start] = ACTIONS(2997), - [sym__delete_span_start] = ACTIONS(2997), - [sym__edit_comment_span_start] = ACTIONS(2997), - [sym__single_quote_span_open] = ACTIONS(2997), - [sym__double_quote_span_open] = ACTIONS(2997), - [sym__shortcode_open_escaped] = ACTIONS(2997), - [sym__shortcode_open] = ACTIONS(2997), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), - [sym__cite_author_in_text] = ACTIONS(2997), - [sym__cite_suppress_author] = ACTIONS(2997), - [sym__strikeout_open] = ACTIONS(2997), - [sym__subscript_open] = ACTIONS(2997), - [sym__superscript_open] = ACTIONS(2997), - [sym__inline_note_start_token] = ACTIONS(2997), - [sym__strong_emphasis_open_star] = ACTIONS(2997), - [sym__strong_emphasis_open_underscore] = ACTIONS(2997), - [sym__emphasis_open_star] = ACTIONS(2997), - [sym__emphasis_open_underscore] = ACTIONS(2997), - [sym_inline_note_reference] = ACTIONS(2997), - [sym_html_element] = ACTIONS(2997), - [sym__pandoc_line_break] = ACTIONS(2997), - }, - [STATE(533)] = { - [anon_sym_COLON] = ACTIONS(3001), - [sym_entity_reference] = ACTIONS(3001), - [sym_numeric_character_reference] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_BANG_LBRACK] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [aux_sym_pandoc_str_token1] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3001), - [aux_sym__prose_punctuation_token1] = ACTIONS(3003), - [sym__line_ending] = ACTIONS(3001), - [sym__soft_line_ending] = ACTIONS(3001), - [sym__block_close] = ACTIONS(3001), - [sym__block_quote_start] = ACTIONS(3001), - [sym_atx_h1_marker] = ACTIONS(3001), - [sym_atx_h2_marker] = ACTIONS(3001), - [sym_atx_h3_marker] = ACTIONS(3001), - [sym_atx_h4_marker] = ACTIONS(3001), - [sym_atx_h5_marker] = ACTIONS(3001), - [sym_atx_h6_marker] = ACTIONS(3001), - [sym__thematic_break] = ACTIONS(3001), - [sym__list_marker_minus] = ACTIONS(3001), - [sym__list_marker_plus] = ACTIONS(3001), - [sym__list_marker_star] = ACTIONS(3001), - [sym__list_marker_parenthesis] = ACTIONS(3001), - [sym__list_marker_dot] = ACTIONS(3001), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3001), - [sym__list_marker_example] = ACTIONS(3001), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3001), - [sym__fenced_code_block_start_backtick] = ACTIONS(3001), - [sym_minus_metadata] = ACTIONS(3001), - [sym__pipe_table_start] = ACTIONS(3001), - [sym__fenced_div_start] = ACTIONS(3001), - [sym_ref_id_specifier] = ACTIONS(3001), - [sym__code_span_start] = ACTIONS(3001), - [sym__html_comment] = ACTIONS(3001), - [sym__autolink] = ACTIONS(3001), - [sym__highlight_span_start] = ACTIONS(3001), - [sym__insert_span_start] = ACTIONS(3001), - [sym__delete_span_start] = ACTIONS(3001), - [sym__edit_comment_span_start] = ACTIONS(3001), - [sym__single_quote_span_open] = ACTIONS(3001), - [sym__double_quote_span_open] = ACTIONS(3001), - [sym__shortcode_open_escaped] = ACTIONS(3001), - [sym__shortcode_open] = ACTIONS(3001), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3001), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3001), - [sym__cite_author_in_text] = ACTIONS(3001), + [sym__cite_author_in_text] = ACTIONS(2999), [sym__cite_suppress_author] = ACTIONS(3001), - [sym__strikeout_open] = ACTIONS(3001), - [sym__subscript_open] = ACTIONS(3001), - [sym__superscript_open] = ACTIONS(3001), - [sym__inline_note_start_token] = ACTIONS(3001), - [sym__strong_emphasis_open_star] = ACTIONS(3001), - [sym__strong_emphasis_open_underscore] = ACTIONS(3001), - [sym__emphasis_open_star] = ACTIONS(3001), - [sym__emphasis_open_underscore] = ACTIONS(3001), - [sym_inline_note_reference] = ACTIONS(3001), - [sym_html_element] = ACTIONS(3001), - [sym__pandoc_line_break] = ACTIONS(3001), - }, - [STATE(534)] = { - [anon_sym_COLON] = ACTIONS(3005), - [sym_entity_reference] = ACTIONS(3005), - [sym_numeric_character_reference] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_BANG_LBRACK] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [aux_sym_pandoc_str_token1] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3005), - [aux_sym__prose_punctuation_token1] = ACTIONS(3007), - [sym__line_ending] = ACTIONS(3005), - [sym__soft_line_ending] = ACTIONS(3005), - [sym__block_close] = ACTIONS(3005), - [sym__block_quote_start] = ACTIONS(3005), - [sym_atx_h1_marker] = ACTIONS(3005), - [sym_atx_h2_marker] = ACTIONS(3005), - [sym_atx_h3_marker] = ACTIONS(3005), - [sym_atx_h4_marker] = ACTIONS(3005), - [sym_atx_h5_marker] = ACTIONS(3005), - [sym_atx_h6_marker] = ACTIONS(3005), - [sym__thematic_break] = ACTIONS(3005), - [sym__list_marker_minus] = ACTIONS(3005), - [sym__list_marker_plus] = ACTIONS(3005), - [sym__list_marker_star] = ACTIONS(3005), - [sym__list_marker_parenthesis] = ACTIONS(3005), - [sym__list_marker_dot] = ACTIONS(3005), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3005), - [sym__list_marker_example] = ACTIONS(3005), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3005), - [sym__fenced_code_block_start_backtick] = ACTIONS(3005), - [sym_minus_metadata] = ACTIONS(3005), - [sym__pipe_table_start] = ACTIONS(3005), - [sym__fenced_div_start] = ACTIONS(3005), - [sym_ref_id_specifier] = ACTIONS(3005), - [sym__code_span_start] = ACTIONS(3005), - [sym__html_comment] = ACTIONS(3005), - [sym__autolink] = ACTIONS(3005), - [sym__highlight_span_start] = ACTIONS(3005), - [sym__insert_span_start] = ACTIONS(3005), - [sym__delete_span_start] = ACTIONS(3005), - [sym__edit_comment_span_start] = ACTIONS(3005), - [sym__single_quote_span_open] = ACTIONS(3005), - [sym__double_quote_span_open] = ACTIONS(3005), - [sym__shortcode_open_escaped] = ACTIONS(3005), - [sym__shortcode_open] = ACTIONS(3005), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3005), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3005), - [sym__cite_author_in_text] = ACTIONS(3005), - [sym__cite_suppress_author] = ACTIONS(3005), - [sym__strikeout_open] = ACTIONS(3005), + [sym__strikeout_open] = ACTIONS(3003), [sym__subscript_open] = ACTIONS(3005), - [sym__superscript_open] = ACTIONS(3005), - [sym__inline_note_start_token] = ACTIONS(3005), - [sym__strong_emphasis_open_star] = ACTIONS(3005), - [sym__strong_emphasis_open_underscore] = ACTIONS(3005), - [sym__emphasis_open_star] = ACTIONS(3005), - [sym__emphasis_open_underscore] = ACTIONS(3005), - [sym_inline_note_reference] = ACTIONS(3005), - [sym_html_element] = ACTIONS(3005), - [sym__pandoc_line_break] = ACTIONS(3005), - }, - [STATE(535)] = { - [anon_sym_COLON] = ACTIONS(3009), - [sym_entity_reference] = ACTIONS(3009), - [sym_numeric_character_reference] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3009), - [anon_sym_BANG_LBRACK] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3009), - [aux_sym_pandoc_str_token1] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3009), - [aux_sym__prose_punctuation_token1] = ACTIONS(3011), - [sym__line_ending] = ACTIONS(3009), - [sym__soft_line_ending] = ACTIONS(3009), - [sym__block_close] = ACTIONS(3009), - [sym__block_quote_start] = ACTIONS(3009), - [sym_atx_h1_marker] = ACTIONS(3009), - [sym_atx_h2_marker] = ACTIONS(3009), - [sym_atx_h3_marker] = ACTIONS(3009), - [sym_atx_h4_marker] = ACTIONS(3009), - [sym_atx_h5_marker] = ACTIONS(3009), - [sym_atx_h6_marker] = ACTIONS(3009), - [sym__thematic_break] = ACTIONS(3009), - [sym__list_marker_minus] = ACTIONS(3009), - [sym__list_marker_plus] = ACTIONS(3009), - [sym__list_marker_star] = ACTIONS(3009), - [sym__list_marker_parenthesis] = ACTIONS(3009), - [sym__list_marker_dot] = ACTIONS(3009), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3009), - [sym__list_marker_example] = ACTIONS(3009), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3009), - [sym__fenced_code_block_start_backtick] = ACTIONS(3009), - [sym_minus_metadata] = ACTIONS(3009), - [sym__pipe_table_start] = ACTIONS(3009), - [sym__fenced_div_start] = ACTIONS(3009), - [sym_ref_id_specifier] = ACTIONS(3009), - [sym__code_span_start] = ACTIONS(3009), - [sym__html_comment] = ACTIONS(3009), - [sym__autolink] = ACTIONS(3009), - [sym__highlight_span_start] = ACTIONS(3009), - [sym__insert_span_start] = ACTIONS(3009), - [sym__delete_span_start] = ACTIONS(3009), - [sym__edit_comment_span_start] = ACTIONS(3009), - [sym__single_quote_span_open] = ACTIONS(3009), - [sym__double_quote_span_open] = ACTIONS(3009), - [sym__shortcode_open_escaped] = ACTIONS(3009), - [sym__shortcode_open] = ACTIONS(3009), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3009), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3009), - [sym__cite_author_in_text] = ACTIONS(3009), - [sym__cite_suppress_author] = ACTIONS(3009), - [sym__strikeout_open] = ACTIONS(3009), - [sym__subscript_open] = ACTIONS(3009), - [sym__superscript_open] = ACTIONS(3009), + [sym__superscript_open] = ACTIONS(3007), [sym__inline_note_start_token] = ACTIONS(3009), - [sym__strong_emphasis_open_star] = ACTIONS(3009), - [sym__strong_emphasis_open_underscore] = ACTIONS(3009), - [sym__emphasis_open_star] = ACTIONS(3009), - [sym__emphasis_open_underscore] = ACTIONS(3009), - [sym_inline_note_reference] = ACTIONS(3009), - [sym_html_element] = ACTIONS(3009), - [sym__pandoc_line_break] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, - [STATE(536)] = { - [ts_builtin_sym_end] = ACTIONS(3029), - [anon_sym_COLON] = ACTIONS(3029), - [sym_entity_reference] = ACTIONS(3029), - [sym_numeric_character_reference] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_BANG_LBRACK] = ACTIONS(3029), - [anon_sym_DOLLAR] = ACTIONS(3031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [aux_sym_pandoc_str_token1] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3029), - [aux_sym__prose_punctuation_token1] = ACTIONS(3031), - [sym__line_ending] = ACTIONS(3029), - [sym__soft_line_ending] = ACTIONS(3029), - [sym__block_quote_start] = ACTIONS(3029), - [sym_atx_h1_marker] = ACTIONS(3029), - [sym_atx_h2_marker] = ACTIONS(3029), - [sym_atx_h3_marker] = ACTIONS(3029), - [sym_atx_h4_marker] = ACTIONS(3029), - [sym_atx_h5_marker] = ACTIONS(3029), - [sym_atx_h6_marker] = ACTIONS(3029), - [sym__thematic_break] = ACTIONS(3029), - [sym__list_marker_minus] = ACTIONS(3029), - [sym__list_marker_plus] = ACTIONS(3029), - [sym__list_marker_star] = ACTIONS(3029), - [sym__list_marker_parenthesis] = ACTIONS(3029), - [sym__list_marker_dot] = ACTIONS(3029), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_example] = ACTIONS(3029), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3029), - [sym__fenced_code_block_start_backtick] = ACTIONS(3029), - [sym_minus_metadata] = ACTIONS(3029), - [sym__pipe_table_start] = ACTIONS(3029), - [sym__fenced_div_start] = ACTIONS(3029), - [sym_ref_id_specifier] = ACTIONS(3029), - [sym__code_span_start] = ACTIONS(3029), - [sym__html_comment] = ACTIONS(3029), - [sym__autolink] = ACTIONS(3029), - [sym__highlight_span_start] = ACTIONS(3029), - [sym__insert_span_start] = ACTIONS(3029), - [sym__delete_span_start] = ACTIONS(3029), - [sym__edit_comment_span_start] = ACTIONS(3029), - [sym__single_quote_span_open] = ACTIONS(3029), - [sym__double_quote_span_open] = ACTIONS(3029), - [sym__shortcode_open_escaped] = ACTIONS(3029), - [sym__shortcode_open] = ACTIONS(3029), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3029), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3029), - [sym__cite_author_in_text] = ACTIONS(3029), - [sym__cite_suppress_author] = ACTIONS(3029), - [sym__strikeout_open] = ACTIONS(3029), - [sym__subscript_open] = ACTIONS(3029), - [sym__superscript_open] = ACTIONS(3029), - [sym__inline_note_start_token] = ACTIONS(3029), - [sym__strong_emphasis_open_star] = ACTIONS(3029), - [sym__strong_emphasis_open_underscore] = ACTIONS(3029), - [sym__emphasis_open_star] = ACTIONS(3029), - [sym__emphasis_open_underscore] = ACTIONS(3029), - [sym_inline_note_reference] = ACTIONS(3029), - [sym_html_element] = ACTIONS(3029), - [sym__pandoc_line_break] = ACTIONS(3029), + [STATE(455)] = { + [sym__inlines] = STATE(4042), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(726), + [sym__inline_whitespace] = STATE(726), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3097), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, - [STATE(537)] = { - [ts_builtin_sym_end] = ACTIONS(3033), - [anon_sym_COLON] = ACTIONS(3033), - [sym_entity_reference] = ACTIONS(3033), - [sym_numeric_character_reference] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_BANG_LBRACK] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3033), - [aux_sym_pandoc_str_token1] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3033), - [aux_sym__prose_punctuation_token1] = ACTIONS(3035), - [sym__line_ending] = ACTIONS(3033), - [sym__soft_line_ending] = ACTIONS(3033), - [sym__block_quote_start] = ACTIONS(3033), - [sym_atx_h1_marker] = ACTIONS(3033), - [sym_atx_h2_marker] = ACTIONS(3033), - [sym_atx_h3_marker] = ACTIONS(3033), - [sym_atx_h4_marker] = ACTIONS(3033), - [sym_atx_h5_marker] = ACTIONS(3033), - [sym_atx_h6_marker] = ACTIONS(3033), - [sym__thematic_break] = ACTIONS(3033), - [sym__list_marker_minus] = ACTIONS(3033), - [sym__list_marker_plus] = ACTIONS(3033), - [sym__list_marker_star] = ACTIONS(3033), - [sym__list_marker_parenthesis] = ACTIONS(3033), - [sym__list_marker_dot] = ACTIONS(3033), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_example] = ACTIONS(3033), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3033), - [sym__fenced_code_block_start_backtick] = ACTIONS(3033), - [sym_minus_metadata] = ACTIONS(3033), - [sym__pipe_table_start] = ACTIONS(3033), - [sym__fenced_div_start] = ACTIONS(3033), - [sym_ref_id_specifier] = ACTIONS(3033), - [sym__code_span_start] = ACTIONS(3033), - [sym__html_comment] = ACTIONS(3033), - [sym__autolink] = ACTIONS(3033), - [sym__highlight_span_start] = ACTIONS(3033), - [sym__insert_span_start] = ACTIONS(3033), - [sym__delete_span_start] = ACTIONS(3033), - [sym__edit_comment_span_start] = ACTIONS(3033), - [sym__single_quote_span_open] = ACTIONS(3033), - [sym__double_quote_span_open] = ACTIONS(3033), - [sym__shortcode_open_escaped] = ACTIONS(3033), - [sym__shortcode_open] = ACTIONS(3033), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), - [sym__cite_author_in_text] = ACTIONS(3033), - [sym__cite_suppress_author] = ACTIONS(3033), - [sym__strikeout_open] = ACTIONS(3033), - [sym__subscript_open] = ACTIONS(3033), - [sym__superscript_open] = ACTIONS(3033), - [sym__inline_note_start_token] = ACTIONS(3033), - [sym__strong_emphasis_open_star] = ACTIONS(3033), - [sym__strong_emphasis_open_underscore] = ACTIONS(3033), - [sym__emphasis_open_star] = ACTIONS(3033), - [sym__emphasis_open_underscore] = ACTIONS(3033), - [sym_inline_note_reference] = ACTIONS(3033), - [sym_html_element] = ACTIONS(3033), - [sym__pandoc_line_break] = ACTIONS(3033), + [STATE(456)] = { + [ts_builtin_sym_end] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2809), + [sym_entity_reference] = ACTIONS(2809), + [sym_numeric_character_reference] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_BANG_LBRACK] = ACTIONS(2809), + [anon_sym_DOLLAR] = ACTIONS(2811), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), + [aux_sym_pandoc_str_token1] = ACTIONS(2811), + [anon_sym_PIPE] = ACTIONS(2809), + [sym__whitespace] = ACTIONS(2809), + [sym__line_ending] = ACTIONS(2809), + [sym__soft_line_ending] = ACTIONS(2809), + [sym__block_quote_start] = ACTIONS(2809), + [sym_atx_h1_marker] = ACTIONS(2809), + [sym_atx_h2_marker] = ACTIONS(2809), + [sym_atx_h3_marker] = ACTIONS(2809), + [sym_atx_h4_marker] = ACTIONS(2809), + [sym_atx_h5_marker] = ACTIONS(2809), + [sym_atx_h6_marker] = ACTIONS(2809), + [sym__thematic_break] = ACTIONS(2809), + [sym__list_marker_minus] = ACTIONS(2809), + [sym__list_marker_plus] = ACTIONS(2809), + [sym__list_marker_star] = ACTIONS(2809), + [sym__list_marker_parenthesis] = ACTIONS(2809), + [sym__list_marker_dot] = ACTIONS(2809), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2809), + [sym__list_marker_example] = ACTIONS(2809), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2809), + [sym__fenced_code_block_start_backtick] = ACTIONS(2809), + [sym_minus_metadata] = ACTIONS(2809), + [sym__pipe_table_start] = ACTIONS(2809), + [sym__fenced_div_start] = ACTIONS(2809), + [sym_ref_id_specifier] = ACTIONS(2809), + [sym__code_span_start] = ACTIONS(2809), + [sym__html_comment] = ACTIONS(2809), + [sym__autolink] = ACTIONS(2809), + [sym__highlight_span_start] = ACTIONS(2809), + [sym__insert_span_start] = ACTIONS(2809), + [sym__delete_span_start] = ACTIONS(2809), + [sym__edit_comment_span_start] = ACTIONS(2809), + [sym__single_quote_span_open] = ACTIONS(2809), + [sym__double_quote_span_open] = ACTIONS(2809), + [sym__shortcode_open_escaped] = ACTIONS(2809), + [sym__shortcode_open] = ACTIONS(2809), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2809), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2809), + [sym__cite_author_in_text] = ACTIONS(2809), + [sym__cite_suppress_author] = ACTIONS(2809), + [sym__strikeout_open] = ACTIONS(2809), + [sym__subscript_open] = ACTIONS(2809), + [sym__superscript_open] = ACTIONS(2809), + [sym__inline_note_start_token] = ACTIONS(2809), + [sym__strong_emphasis_open_star] = ACTIONS(2809), + [sym__strong_emphasis_open_underscore] = ACTIONS(2809), + [sym__emphasis_open_star] = ACTIONS(2809), + [sym__emphasis_open_underscore] = ACTIONS(2809), + [sym_inline_note_reference] = ACTIONS(2809), + [sym_html_element] = ACTIONS(2809), + [sym__pandoc_line_break] = ACTIONS(2809), }, - [STATE(538)] = { - [sym__inlines] = STATE(2840), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1435), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3785), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [STATE(457)] = { + [sym__inlines] = STATE(3749), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(744), + [sym__inline_whitespace] = STATE(744), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3101), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, - [STATE(539)] = { - [sym__inlines] = STATE(2843), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1437), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3787), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), + [STATE(458)] = { + [sym__inlines] = STATE(3757), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(653), + [sym__inline_whitespace] = STATE(653), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3105), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, - [STATE(540)] = { - [anon_sym_COLON] = ACTIONS(3013), - [sym_entity_reference] = ACTIONS(3013), - [sym_numeric_character_reference] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_BANG_LBRACK] = ACTIONS(3013), - [anon_sym_DOLLAR] = ACTIONS(3015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3013), - [aux_sym_pandoc_str_token1] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3013), - [aux_sym__prose_punctuation_token1] = ACTIONS(3015), - [sym__line_ending] = ACTIONS(3013), - [sym__soft_line_ending] = ACTIONS(3013), - [sym__block_close] = ACTIONS(3013), - [sym__block_quote_start] = ACTIONS(3013), - [sym_atx_h1_marker] = ACTIONS(3013), - [sym_atx_h2_marker] = ACTIONS(3013), - [sym_atx_h3_marker] = ACTIONS(3013), - [sym_atx_h4_marker] = ACTIONS(3013), - [sym_atx_h5_marker] = ACTIONS(3013), - [sym_atx_h6_marker] = ACTIONS(3013), - [sym__thematic_break] = ACTIONS(3013), - [sym__list_marker_minus] = ACTIONS(3013), - [sym__list_marker_plus] = ACTIONS(3013), - [sym__list_marker_star] = ACTIONS(3013), - [sym__list_marker_parenthesis] = ACTIONS(3013), - [sym__list_marker_dot] = ACTIONS(3013), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3013), - [sym__list_marker_example] = ACTIONS(3013), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3013), - [sym__fenced_code_block_start_backtick] = ACTIONS(3013), - [sym_minus_metadata] = ACTIONS(3013), - [sym__pipe_table_start] = ACTIONS(3013), - [sym__fenced_div_start] = ACTIONS(3013), - [sym_ref_id_specifier] = ACTIONS(3013), - [sym__code_span_start] = ACTIONS(3013), - [sym__html_comment] = ACTIONS(3013), - [sym__autolink] = ACTIONS(3013), - [sym__highlight_span_start] = ACTIONS(3013), - [sym__insert_span_start] = ACTIONS(3013), - [sym__delete_span_start] = ACTIONS(3013), - [sym__edit_comment_span_start] = ACTIONS(3013), - [sym__single_quote_span_open] = ACTIONS(3013), - [sym__double_quote_span_open] = ACTIONS(3013), - [sym__shortcode_open_escaped] = ACTIONS(3013), - [sym__shortcode_open] = ACTIONS(3013), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3013), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3013), - [sym__cite_author_in_text] = ACTIONS(3013), - [sym__cite_suppress_author] = ACTIONS(3013), - [sym__strikeout_open] = ACTIONS(3013), - [sym__subscript_open] = ACTIONS(3013), - [sym__superscript_open] = ACTIONS(3013), - [sym__inline_note_start_token] = ACTIONS(3013), - [sym__strong_emphasis_open_star] = ACTIONS(3013), + [STATE(459)] = { + [sym__inlines] = STATE(3874), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(693), + [sym__inline_whitespace] = STATE(693), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3109), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), [sym__strong_emphasis_open_underscore] = ACTIONS(3013), - [sym__emphasis_open_star] = ACTIONS(3013), - [sym__emphasis_open_underscore] = ACTIONS(3013), - [sym_inline_note_reference] = ACTIONS(3013), - [sym_html_element] = ACTIONS(3013), - [sym__pandoc_line_break] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, - [STATE(541)] = { - [anon_sym_COLON] = ACTIONS(3017), - [sym_entity_reference] = ACTIONS(3017), - [sym_numeric_character_reference] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_BANG_LBRACK] = ACTIONS(3017), - [anon_sym_DOLLAR] = ACTIONS(3019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [aux_sym_pandoc_str_token1] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3017), - [aux_sym__prose_punctuation_token1] = ACTIONS(3019), - [sym__line_ending] = ACTIONS(3017), - [sym__soft_line_ending] = ACTIONS(3017), - [sym__block_close] = ACTIONS(3017), - [sym__block_quote_start] = ACTIONS(3017), - [sym_atx_h1_marker] = ACTIONS(3017), - [sym_atx_h2_marker] = ACTIONS(3017), - [sym_atx_h3_marker] = ACTIONS(3017), - [sym_atx_h4_marker] = ACTIONS(3017), - [sym_atx_h5_marker] = ACTIONS(3017), - [sym_atx_h6_marker] = ACTIONS(3017), - [sym__thematic_break] = ACTIONS(3017), - [sym__list_marker_minus] = ACTIONS(3017), - [sym__list_marker_plus] = ACTIONS(3017), - [sym__list_marker_star] = ACTIONS(3017), - [sym__list_marker_parenthesis] = ACTIONS(3017), - [sym__list_marker_dot] = ACTIONS(3017), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3017), - [sym__list_marker_example] = ACTIONS(3017), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3017), - [sym__fenced_code_block_start_backtick] = ACTIONS(3017), - [sym_minus_metadata] = ACTIONS(3017), - [sym__pipe_table_start] = ACTIONS(3017), - [sym__fenced_div_start] = ACTIONS(3017), - [sym_ref_id_specifier] = ACTIONS(3017), - [sym__code_span_start] = ACTIONS(3017), - [sym__html_comment] = ACTIONS(3017), - [sym__autolink] = ACTIONS(3017), - [sym__highlight_span_start] = ACTIONS(3017), - [sym__insert_span_start] = ACTIONS(3017), - [sym__delete_span_start] = ACTIONS(3017), - [sym__edit_comment_span_start] = ACTIONS(3017), - [sym__single_quote_span_open] = ACTIONS(3017), - [sym__double_quote_span_open] = ACTIONS(3017), - [sym__shortcode_open_escaped] = ACTIONS(3017), - [sym__shortcode_open] = ACTIONS(3017), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3017), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3017), - [sym__cite_author_in_text] = ACTIONS(3017), - [sym__cite_suppress_author] = ACTIONS(3017), - [sym__strikeout_open] = ACTIONS(3017), - [sym__subscript_open] = ACTIONS(3017), - [sym__superscript_open] = ACTIONS(3017), - [sym__inline_note_start_token] = ACTIONS(3017), - [sym__strong_emphasis_open_star] = ACTIONS(3017), - [sym__strong_emphasis_open_underscore] = ACTIONS(3017), - [sym__emphasis_open_star] = ACTIONS(3017), + [STATE(460)] = { + [sym__inlines] = STATE(3910), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(735), + [sym__inline_whitespace] = STATE(735), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3113), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), [sym__emphasis_open_underscore] = ACTIONS(3017), - [sym_inline_note_reference] = ACTIONS(3017), - [sym_html_element] = ACTIONS(3017), - [sym__pandoc_line_break] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, - [STATE(542)] = { - [anon_sym_COLON] = ACTIONS(3021), - [sym_entity_reference] = ACTIONS(3021), - [sym_numeric_character_reference] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_BANG_LBRACK] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3021), - [aux_sym_pandoc_str_token1] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3021), - [aux_sym__prose_punctuation_token1] = ACTIONS(3023), - [sym__line_ending] = ACTIONS(3021), - [sym__soft_line_ending] = ACTIONS(3021), - [sym__block_close] = ACTIONS(3021), - [sym__block_quote_start] = ACTIONS(3021), - [sym_atx_h1_marker] = ACTIONS(3021), - [sym_atx_h2_marker] = ACTIONS(3021), - [sym_atx_h3_marker] = ACTIONS(3021), - [sym_atx_h4_marker] = ACTIONS(3021), - [sym_atx_h5_marker] = ACTIONS(3021), - [sym_atx_h6_marker] = ACTIONS(3021), - [sym__thematic_break] = ACTIONS(3021), - [sym__list_marker_minus] = ACTIONS(3021), - [sym__list_marker_plus] = ACTIONS(3021), - [sym__list_marker_star] = ACTIONS(3021), - [sym__list_marker_parenthesis] = ACTIONS(3021), - [sym__list_marker_dot] = ACTIONS(3021), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3021), - [sym__list_marker_example] = ACTIONS(3021), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3021), - [sym__fenced_code_block_start_backtick] = ACTIONS(3021), - [sym_minus_metadata] = ACTIONS(3021), - [sym__pipe_table_start] = ACTIONS(3021), - [sym__fenced_div_start] = ACTIONS(3021), - [sym_ref_id_specifier] = ACTIONS(3021), - [sym__code_span_start] = ACTIONS(3021), - [sym__html_comment] = ACTIONS(3021), - [sym__autolink] = ACTIONS(3021), - [sym__highlight_span_start] = ACTIONS(3021), - [sym__insert_span_start] = ACTIONS(3021), - [sym__delete_span_start] = ACTIONS(3021), - [sym__edit_comment_span_start] = ACTIONS(3021), - [sym__single_quote_span_open] = ACTIONS(3021), - [sym__double_quote_span_open] = ACTIONS(3021), - [sym__shortcode_open_escaped] = ACTIONS(3021), - [sym__shortcode_open] = ACTIONS(3021), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3021), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3021), - [sym__cite_author_in_text] = ACTIONS(3021), - [sym__cite_suppress_author] = ACTIONS(3021), - [sym__strikeout_open] = ACTIONS(3021), - [sym__subscript_open] = ACTIONS(3021), - [sym__superscript_open] = ACTIONS(3021), - [sym__inline_note_start_token] = ACTIONS(3021), - [sym__strong_emphasis_open_star] = ACTIONS(3021), - [sym__strong_emphasis_open_underscore] = ACTIONS(3021), - [sym__emphasis_open_star] = ACTIONS(3021), - [sym__emphasis_open_underscore] = ACTIONS(3021), - [sym_inline_note_reference] = ACTIONS(3021), - [sym_html_element] = ACTIONS(3021), - [sym__pandoc_line_break] = ACTIONS(3021), + [STATE(461)] = { + [ts_builtin_sym_end] = ACTIONS(2813), + [anon_sym_COLON] = ACTIONS(2813), + [sym_entity_reference] = ACTIONS(2813), + [sym_numeric_character_reference] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_BANG_LBRACK] = ACTIONS(2813), + [anon_sym_DOLLAR] = ACTIONS(2815), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2813), + [aux_sym_pandoc_str_token1] = ACTIONS(2815), + [anon_sym_PIPE] = ACTIONS(2813), + [sym__whitespace] = ACTIONS(2813), + [sym__line_ending] = ACTIONS(2813), + [sym__soft_line_ending] = ACTIONS(2813), + [sym__block_quote_start] = ACTIONS(2813), + [sym_atx_h1_marker] = ACTIONS(2813), + [sym_atx_h2_marker] = ACTIONS(2813), + [sym_atx_h3_marker] = ACTIONS(2813), + [sym_atx_h4_marker] = ACTIONS(2813), + [sym_atx_h5_marker] = ACTIONS(2813), + [sym_atx_h6_marker] = ACTIONS(2813), + [sym__thematic_break] = ACTIONS(2813), + [sym__list_marker_minus] = ACTIONS(2813), + [sym__list_marker_plus] = ACTIONS(2813), + [sym__list_marker_star] = ACTIONS(2813), + [sym__list_marker_parenthesis] = ACTIONS(2813), + [sym__list_marker_dot] = ACTIONS(2813), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2813), + [sym__list_marker_example] = ACTIONS(2813), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2813), + [sym__fenced_code_block_start_backtick] = ACTIONS(2813), + [sym_minus_metadata] = ACTIONS(2813), + [sym__pipe_table_start] = ACTIONS(2813), + [sym__fenced_div_start] = ACTIONS(2813), + [sym_ref_id_specifier] = ACTIONS(2813), + [sym__code_span_start] = ACTIONS(2813), + [sym__html_comment] = ACTIONS(2813), + [sym__autolink] = ACTIONS(2813), + [sym__highlight_span_start] = ACTIONS(2813), + [sym__insert_span_start] = ACTIONS(2813), + [sym__delete_span_start] = ACTIONS(2813), + [sym__edit_comment_span_start] = ACTIONS(2813), + [sym__single_quote_span_open] = ACTIONS(2813), + [sym__double_quote_span_open] = ACTIONS(2813), + [sym__shortcode_open_escaped] = ACTIONS(2813), + [sym__shortcode_open] = ACTIONS(2813), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2813), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2813), + [sym__cite_author_in_text] = ACTIONS(2813), + [sym__cite_suppress_author] = ACTIONS(2813), + [sym__strikeout_open] = ACTIONS(2813), + [sym__subscript_open] = ACTIONS(2813), + [sym__superscript_open] = ACTIONS(2813), + [sym__inline_note_start_token] = ACTIONS(2813), + [sym__strong_emphasis_open_star] = ACTIONS(2813), + [sym__strong_emphasis_open_underscore] = ACTIONS(2813), + [sym__emphasis_open_star] = ACTIONS(2813), + [sym__emphasis_open_underscore] = ACTIONS(2813), + [sym_inline_note_reference] = ACTIONS(2813), + [sym_html_element] = ACTIONS(2813), + [sym__pandoc_line_break] = ACTIONS(2813), }, - [STATE(543)] = { - [anon_sym_COLON] = ACTIONS(3025), - [sym_entity_reference] = ACTIONS(3025), - [sym_numeric_character_reference] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_BANG_LBRACK] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3025), - [aux_sym_pandoc_str_token1] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3025), - [aux_sym__prose_punctuation_token1] = ACTIONS(3027), - [sym__line_ending] = ACTIONS(3025), - [sym__soft_line_ending] = ACTIONS(3025), - [sym__block_close] = ACTIONS(3025), - [sym__block_quote_start] = ACTIONS(3025), - [sym_atx_h1_marker] = ACTIONS(3025), - [sym_atx_h2_marker] = ACTIONS(3025), - [sym_atx_h3_marker] = ACTIONS(3025), - [sym_atx_h4_marker] = ACTIONS(3025), - [sym_atx_h5_marker] = ACTIONS(3025), - [sym_atx_h6_marker] = ACTIONS(3025), - [sym__thematic_break] = ACTIONS(3025), - [sym__list_marker_minus] = ACTIONS(3025), - [sym__list_marker_plus] = ACTIONS(3025), - [sym__list_marker_star] = ACTIONS(3025), - [sym__list_marker_parenthesis] = ACTIONS(3025), - [sym__list_marker_dot] = ACTIONS(3025), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3025), - [sym__list_marker_example] = ACTIONS(3025), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3025), - [sym__fenced_code_block_start_backtick] = ACTIONS(3025), - [sym_minus_metadata] = ACTIONS(3025), - [sym__pipe_table_start] = ACTIONS(3025), - [sym__fenced_div_start] = ACTIONS(3025), - [sym_ref_id_specifier] = ACTIONS(3025), - [sym__code_span_start] = ACTIONS(3025), - [sym__html_comment] = ACTIONS(3025), - [sym__autolink] = ACTIONS(3025), - [sym__highlight_span_start] = ACTIONS(3025), - [sym__insert_span_start] = ACTIONS(3025), - [sym__delete_span_start] = ACTIONS(3025), - [sym__edit_comment_span_start] = ACTIONS(3025), - [sym__single_quote_span_open] = ACTIONS(3025), - [sym__double_quote_span_open] = ACTIONS(3025), - [sym__shortcode_open_escaped] = ACTIONS(3025), - [sym__shortcode_open] = ACTIONS(3025), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3025), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3025), - [sym__cite_author_in_text] = ACTIONS(3025), - [sym__cite_suppress_author] = ACTIONS(3025), - [sym__strikeout_open] = ACTIONS(3025), - [sym__subscript_open] = ACTIONS(3025), - [sym__superscript_open] = ACTIONS(3025), - [sym__inline_note_start_token] = ACTIONS(3025), - [sym__strong_emphasis_open_star] = ACTIONS(3025), - [sym__strong_emphasis_open_underscore] = ACTIONS(3025), - [sym__emphasis_open_star] = ACTIONS(3025), - [sym__emphasis_open_underscore] = ACTIONS(3025), - [sym_inline_note_reference] = ACTIONS(3025), - [sym_html_element] = ACTIONS(3025), - [sym__pandoc_line_break] = ACTIONS(3025), + [STATE(462)] = { + [ts_builtin_sym_end] = ACTIONS(2817), + [anon_sym_COLON] = ACTIONS(2817), + [sym_entity_reference] = ACTIONS(2817), + [sym_numeric_character_reference] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_BANG_LBRACK] = ACTIONS(2817), + [anon_sym_DOLLAR] = ACTIONS(2819), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2817), + [aux_sym_pandoc_str_token1] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2817), + [sym__whitespace] = ACTIONS(2817), + [sym__line_ending] = ACTIONS(2817), + [sym__soft_line_ending] = ACTIONS(2817), + [sym__block_quote_start] = ACTIONS(2817), + [sym_atx_h1_marker] = ACTIONS(2817), + [sym_atx_h2_marker] = ACTIONS(2817), + [sym_atx_h3_marker] = ACTIONS(2817), + [sym_atx_h4_marker] = ACTIONS(2817), + [sym_atx_h5_marker] = ACTIONS(2817), + [sym_atx_h6_marker] = ACTIONS(2817), + [sym__thematic_break] = ACTIONS(2817), + [sym__list_marker_minus] = ACTIONS(2817), + [sym__list_marker_plus] = ACTIONS(2817), + [sym__list_marker_star] = ACTIONS(2817), + [sym__list_marker_parenthesis] = ACTIONS(2817), + [sym__list_marker_dot] = ACTIONS(2817), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2817), + [sym__list_marker_example] = ACTIONS(2817), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2817), + [sym__fenced_code_block_start_backtick] = ACTIONS(2817), + [sym_minus_metadata] = ACTIONS(2817), + [sym__pipe_table_start] = ACTIONS(2817), + [sym__fenced_div_start] = ACTIONS(2817), + [sym_ref_id_specifier] = ACTIONS(2817), + [sym__code_span_start] = ACTIONS(2817), + [sym__html_comment] = ACTIONS(2817), + [sym__autolink] = ACTIONS(2817), + [sym__highlight_span_start] = ACTIONS(2817), + [sym__insert_span_start] = ACTIONS(2817), + [sym__delete_span_start] = ACTIONS(2817), + [sym__edit_comment_span_start] = ACTIONS(2817), + [sym__single_quote_span_open] = ACTIONS(2817), + [sym__double_quote_span_open] = ACTIONS(2817), + [sym__shortcode_open_escaped] = ACTIONS(2817), + [sym__shortcode_open] = ACTIONS(2817), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2817), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2817), + [sym__cite_author_in_text] = ACTIONS(2817), + [sym__cite_suppress_author] = ACTIONS(2817), + [sym__strikeout_open] = ACTIONS(2817), + [sym__subscript_open] = ACTIONS(2817), + [sym__superscript_open] = ACTIONS(2817), + [sym__inline_note_start_token] = ACTIONS(2817), + [sym__strong_emphasis_open_star] = ACTIONS(2817), + [sym__strong_emphasis_open_underscore] = ACTIONS(2817), + [sym__emphasis_open_star] = ACTIONS(2817), + [sym__emphasis_open_underscore] = ACTIONS(2817), + [sym_inline_note_reference] = ACTIONS(2817), + [sym_html_element] = ACTIONS(2817), + [sym__pandoc_line_break] = ACTIONS(2817), }, - [STATE(544)] = { - [anon_sym_COLON] = ACTIONS(3029), - [sym_entity_reference] = ACTIONS(3029), - [sym_numeric_character_reference] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_BANG_LBRACK] = ACTIONS(3029), - [anon_sym_DOLLAR] = ACTIONS(3031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [aux_sym_pandoc_str_token1] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3029), - [aux_sym__prose_punctuation_token1] = ACTIONS(3031), - [sym__line_ending] = ACTIONS(3029), - [sym__soft_line_ending] = ACTIONS(3029), - [sym__block_close] = ACTIONS(3029), - [sym__block_quote_start] = ACTIONS(3029), - [sym_atx_h1_marker] = ACTIONS(3029), - [sym_atx_h2_marker] = ACTIONS(3029), - [sym_atx_h3_marker] = ACTIONS(3029), - [sym_atx_h4_marker] = ACTIONS(3029), - [sym_atx_h5_marker] = ACTIONS(3029), - [sym_atx_h6_marker] = ACTIONS(3029), - [sym__thematic_break] = ACTIONS(3029), - [sym__list_marker_minus] = ACTIONS(3029), - [sym__list_marker_plus] = ACTIONS(3029), - [sym__list_marker_star] = ACTIONS(3029), - [sym__list_marker_parenthesis] = ACTIONS(3029), - [sym__list_marker_dot] = ACTIONS(3029), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3029), - [sym__list_marker_example] = ACTIONS(3029), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3029), - [sym__fenced_code_block_start_backtick] = ACTIONS(3029), - [sym_minus_metadata] = ACTIONS(3029), - [sym__pipe_table_start] = ACTIONS(3029), - [sym__fenced_div_start] = ACTIONS(3029), - [sym_ref_id_specifier] = ACTIONS(3029), - [sym__code_span_start] = ACTIONS(3029), - [sym__html_comment] = ACTIONS(3029), - [sym__autolink] = ACTIONS(3029), - [sym__highlight_span_start] = ACTIONS(3029), - [sym__insert_span_start] = ACTIONS(3029), - [sym__delete_span_start] = ACTIONS(3029), - [sym__edit_comment_span_start] = ACTIONS(3029), - [sym__single_quote_span_open] = ACTIONS(3029), - [sym__double_quote_span_open] = ACTIONS(3029), - [sym__shortcode_open_escaped] = ACTIONS(3029), - [sym__shortcode_open] = ACTIONS(3029), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3029), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3029), - [sym__cite_author_in_text] = ACTIONS(3029), - [sym__cite_suppress_author] = ACTIONS(3029), - [sym__strikeout_open] = ACTIONS(3029), - [sym__subscript_open] = ACTIONS(3029), - [sym__superscript_open] = ACTIONS(3029), - [sym__inline_note_start_token] = ACTIONS(3029), - [sym__strong_emphasis_open_star] = ACTIONS(3029), - [sym__strong_emphasis_open_underscore] = ACTIONS(3029), - [sym__emphasis_open_star] = ACTIONS(3029), - [sym__emphasis_open_underscore] = ACTIONS(3029), - [sym_inline_note_reference] = ACTIONS(3029), - [sym_html_element] = ACTIONS(3029), - [sym__pandoc_line_break] = ACTIONS(3029), + [STATE(463)] = { + [sym__inlines] = STATE(3607), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(694), + [sym__inline_whitespace] = STATE(694), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3117), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, - [STATE(545)] = { - [ts_builtin_sym_end] = ACTIONS(3037), - [anon_sym_COLON] = ACTIONS(3037), - [sym_entity_reference] = ACTIONS(3037), - [sym_numeric_character_reference] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_BANG_LBRACK] = ACTIONS(3037), - [anon_sym_DOLLAR] = ACTIONS(3039), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3037), - [aux_sym_pandoc_str_token1] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3037), - [aux_sym__prose_punctuation_token1] = ACTIONS(3039), - [sym__line_ending] = ACTIONS(3037), - [sym__soft_line_ending] = ACTIONS(3037), - [sym__block_quote_start] = ACTIONS(3037), - [sym_atx_h1_marker] = ACTIONS(3037), - [sym_atx_h2_marker] = ACTIONS(3037), - [sym_atx_h3_marker] = ACTIONS(3037), - [sym_atx_h4_marker] = ACTIONS(3037), - [sym_atx_h5_marker] = ACTIONS(3037), - [sym_atx_h6_marker] = ACTIONS(3037), - [sym__thematic_break] = ACTIONS(3037), - [sym__list_marker_minus] = ACTIONS(3037), - [sym__list_marker_plus] = ACTIONS(3037), - [sym__list_marker_star] = ACTIONS(3037), - [sym__list_marker_parenthesis] = ACTIONS(3037), - [sym__list_marker_dot] = ACTIONS(3037), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_example] = ACTIONS(3037), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3037), - [sym__fenced_code_block_start_backtick] = ACTIONS(3037), - [sym_minus_metadata] = ACTIONS(3037), - [sym__pipe_table_start] = ACTIONS(3037), - [sym__fenced_div_start] = ACTIONS(3037), - [sym_ref_id_specifier] = ACTIONS(3037), - [sym__code_span_start] = ACTIONS(3037), - [sym__html_comment] = ACTIONS(3037), - [sym__autolink] = ACTIONS(3037), - [sym__highlight_span_start] = ACTIONS(3037), - [sym__insert_span_start] = ACTIONS(3037), - [sym__delete_span_start] = ACTIONS(3037), - [sym__edit_comment_span_start] = ACTIONS(3037), - [sym__single_quote_span_open] = ACTIONS(3037), - [sym__double_quote_span_open] = ACTIONS(3037), - [sym__shortcode_open_escaped] = ACTIONS(3037), - [sym__shortcode_open] = ACTIONS(3037), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3037), - [sym__cite_author_in_text] = ACTIONS(3037), - [sym__cite_suppress_author] = ACTIONS(3037), - [sym__strikeout_open] = ACTIONS(3037), - [sym__subscript_open] = ACTIONS(3037), - [sym__superscript_open] = ACTIONS(3037), - [sym__inline_note_start_token] = ACTIONS(3037), - [sym__strong_emphasis_open_star] = ACTIONS(3037), - [sym__strong_emphasis_open_underscore] = ACTIONS(3037), - [sym__emphasis_open_star] = ACTIONS(3037), - [sym__emphasis_open_underscore] = ACTIONS(3037), - [sym_inline_note_reference] = ACTIONS(3037), - [sym_html_element] = ACTIONS(3037), - [sym__pandoc_line_break] = ACTIONS(3037), + [STATE(464)] = { + [sym__inlines] = STATE(3620), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(695), + [sym__inline_whitespace] = STATE(695), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3119), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3121), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), }, - [STATE(546)] = { - [sym__inlines] = STATE(2889), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1462), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3789), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(547)] = { - [sym__inlines] = STATE(2890), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1464), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3791), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(548)] = { - [anon_sym_COLON] = ACTIONS(3033), - [sym_entity_reference] = ACTIONS(3033), - [sym_numeric_character_reference] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_BANG_LBRACK] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3033), - [aux_sym_pandoc_str_token1] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3033), - [aux_sym__prose_punctuation_token1] = ACTIONS(3035), - [sym__line_ending] = ACTIONS(3033), - [sym__soft_line_ending] = ACTIONS(3033), - [sym__block_close] = ACTIONS(3033), - [sym__block_quote_start] = ACTIONS(3033), - [sym_atx_h1_marker] = ACTIONS(3033), - [sym_atx_h2_marker] = ACTIONS(3033), - [sym_atx_h3_marker] = ACTIONS(3033), - [sym_atx_h4_marker] = ACTIONS(3033), - [sym_atx_h5_marker] = ACTIONS(3033), - [sym_atx_h6_marker] = ACTIONS(3033), - [sym__thematic_break] = ACTIONS(3033), - [sym__list_marker_minus] = ACTIONS(3033), - [sym__list_marker_plus] = ACTIONS(3033), - [sym__list_marker_star] = ACTIONS(3033), - [sym__list_marker_parenthesis] = ACTIONS(3033), - [sym__list_marker_dot] = ACTIONS(3033), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3033), - [sym__list_marker_example] = ACTIONS(3033), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3033), - [sym__fenced_code_block_start_backtick] = ACTIONS(3033), - [sym_minus_metadata] = ACTIONS(3033), - [sym__pipe_table_start] = ACTIONS(3033), - [sym__fenced_div_start] = ACTIONS(3033), - [sym_ref_id_specifier] = ACTIONS(3033), - [sym__code_span_start] = ACTIONS(3033), - [sym__html_comment] = ACTIONS(3033), - [sym__autolink] = ACTIONS(3033), - [sym__highlight_span_start] = ACTIONS(3033), - [sym__insert_span_start] = ACTIONS(3033), - [sym__delete_span_start] = ACTIONS(3033), - [sym__edit_comment_span_start] = ACTIONS(3033), - [sym__single_quote_span_open] = ACTIONS(3033), - [sym__double_quote_span_open] = ACTIONS(3033), - [sym__shortcode_open_escaped] = ACTIONS(3033), - [sym__shortcode_open] = ACTIONS(3033), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3033), - [sym__cite_author_in_text] = ACTIONS(3033), - [sym__cite_suppress_author] = ACTIONS(3033), - [sym__strikeout_open] = ACTIONS(3033), - [sym__subscript_open] = ACTIONS(3033), - [sym__superscript_open] = ACTIONS(3033), - [sym__inline_note_start_token] = ACTIONS(3033), - [sym__strong_emphasis_open_star] = ACTIONS(3033), - [sym__strong_emphasis_open_underscore] = ACTIONS(3033), - [sym__emphasis_open_star] = ACTIONS(3033), - [sym__emphasis_open_underscore] = ACTIONS(3033), - [sym_inline_note_reference] = ACTIONS(3033), - [sym_html_element] = ACTIONS(3033), - [sym__pandoc_line_break] = ACTIONS(3033), - }, - [STATE(549)] = { - [anon_sym_COLON] = ACTIONS(3037), - [sym_entity_reference] = ACTIONS(3037), - [sym_numeric_character_reference] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_BANG_LBRACK] = ACTIONS(3037), - [anon_sym_DOLLAR] = ACTIONS(3039), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3037), - [aux_sym_pandoc_str_token1] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3037), - [aux_sym__prose_punctuation_token1] = ACTIONS(3039), - [sym__line_ending] = ACTIONS(3037), - [sym__soft_line_ending] = ACTIONS(3037), - [sym__block_close] = ACTIONS(3037), - [sym__block_quote_start] = ACTIONS(3037), - [sym_atx_h1_marker] = ACTIONS(3037), - [sym_atx_h2_marker] = ACTIONS(3037), - [sym_atx_h3_marker] = ACTIONS(3037), - [sym_atx_h4_marker] = ACTIONS(3037), - [sym_atx_h5_marker] = ACTIONS(3037), - [sym_atx_h6_marker] = ACTIONS(3037), - [sym__thematic_break] = ACTIONS(3037), - [sym__list_marker_minus] = ACTIONS(3037), - [sym__list_marker_plus] = ACTIONS(3037), - [sym__list_marker_star] = ACTIONS(3037), - [sym__list_marker_parenthesis] = ACTIONS(3037), - [sym__list_marker_dot] = ACTIONS(3037), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3037), - [sym__list_marker_example] = ACTIONS(3037), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3037), - [sym__fenced_code_block_start_backtick] = ACTIONS(3037), - [sym_minus_metadata] = ACTIONS(3037), - [sym__pipe_table_start] = ACTIONS(3037), - [sym__fenced_div_start] = ACTIONS(3037), - [sym_ref_id_specifier] = ACTIONS(3037), - [sym__code_span_start] = ACTIONS(3037), - [sym__html_comment] = ACTIONS(3037), - [sym__autolink] = ACTIONS(3037), - [sym__highlight_span_start] = ACTIONS(3037), - [sym__insert_span_start] = ACTIONS(3037), - [sym__delete_span_start] = ACTIONS(3037), - [sym__edit_comment_span_start] = ACTIONS(3037), - [sym__single_quote_span_open] = ACTIONS(3037), - [sym__double_quote_span_open] = ACTIONS(3037), - [sym__shortcode_open_escaped] = ACTIONS(3037), - [sym__shortcode_open] = ACTIONS(3037), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3037), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3037), - [sym__cite_author_in_text] = ACTIONS(3037), - [sym__cite_suppress_author] = ACTIONS(3037), - [sym__strikeout_open] = ACTIONS(3037), - [sym__subscript_open] = ACTIONS(3037), - [sym__superscript_open] = ACTIONS(3037), - [sym__inline_note_start_token] = ACTIONS(3037), - [sym__strong_emphasis_open_star] = ACTIONS(3037), - [sym__strong_emphasis_open_underscore] = ACTIONS(3037), - [sym__emphasis_open_star] = ACTIONS(3037), - [sym__emphasis_open_underscore] = ACTIONS(3037), - [sym_inline_note_reference] = ACTIONS(3037), - [sym_html_element] = ACTIONS(3037), - [sym__pandoc_line_break] = ACTIONS(3037), - }, - [STATE(550)] = { - [anon_sym_COLON] = ACTIONS(3041), - [sym_entity_reference] = ACTIONS(3041), - [sym_numeric_character_reference] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_BANG_LBRACK] = ACTIONS(3041), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [aux_sym_pandoc_str_token1] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3041), - [aux_sym__prose_punctuation_token1] = ACTIONS(3043), - [sym__line_ending] = ACTIONS(3041), - [sym__soft_line_ending] = ACTIONS(3041), - [sym__block_close] = ACTIONS(3041), - [sym__block_quote_start] = ACTIONS(3041), - [sym_atx_h1_marker] = ACTIONS(3041), - [sym_atx_h2_marker] = ACTIONS(3041), - [sym_atx_h3_marker] = ACTIONS(3041), - [sym_atx_h4_marker] = ACTIONS(3041), - [sym_atx_h5_marker] = ACTIONS(3041), - [sym_atx_h6_marker] = ACTIONS(3041), - [sym__thematic_break] = ACTIONS(3041), - [sym__list_marker_minus] = ACTIONS(3041), - [sym__list_marker_plus] = ACTIONS(3041), - [sym__list_marker_star] = ACTIONS(3041), - [sym__list_marker_parenthesis] = ACTIONS(3041), - [sym__list_marker_dot] = ACTIONS(3041), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_example] = ACTIONS(3041), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3041), - [sym__fenced_code_block_start_backtick] = ACTIONS(3041), - [sym_minus_metadata] = ACTIONS(3041), - [sym__pipe_table_start] = ACTIONS(3041), - [sym__fenced_div_start] = ACTIONS(3041), - [sym_ref_id_specifier] = ACTIONS(3041), - [sym__code_span_start] = ACTIONS(3041), - [sym__html_comment] = ACTIONS(3041), - [sym__autolink] = ACTIONS(3041), - [sym__highlight_span_start] = ACTIONS(3041), - [sym__insert_span_start] = ACTIONS(3041), - [sym__delete_span_start] = ACTIONS(3041), - [sym__edit_comment_span_start] = ACTIONS(3041), - [sym__single_quote_span_open] = ACTIONS(3041), - [sym__double_quote_span_open] = ACTIONS(3041), - [sym__shortcode_open_escaped] = ACTIONS(3041), - [sym__shortcode_open] = ACTIONS(3041), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3041), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3041), - [sym__cite_author_in_text] = ACTIONS(3041), - [sym__cite_suppress_author] = ACTIONS(3041), - [sym__strikeout_open] = ACTIONS(3041), - [sym__subscript_open] = ACTIONS(3041), - [sym__superscript_open] = ACTIONS(3041), - [sym__inline_note_start_token] = ACTIONS(3041), - [sym__strong_emphasis_open_star] = ACTIONS(3041), - [sym__strong_emphasis_open_underscore] = ACTIONS(3041), - [sym__emphasis_open_star] = ACTIONS(3041), - [sym__emphasis_open_underscore] = ACTIONS(3041), - [sym_inline_note_reference] = ACTIONS(3041), - [sym_html_element] = ACTIONS(3041), - [sym__pandoc_line_break] = ACTIONS(3041), - }, - [STATE(551)] = { - [anon_sym_COLON] = ACTIONS(3045), - [sym_entity_reference] = ACTIONS(3045), - [sym_numeric_character_reference] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_BANG_LBRACK] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [aux_sym_pandoc_str_token1] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3045), - [aux_sym__prose_punctuation_token1] = ACTIONS(3047), - [sym__line_ending] = ACTIONS(3045), - [sym__soft_line_ending] = ACTIONS(3045), - [sym__block_close] = ACTIONS(3045), - [sym__block_quote_start] = ACTIONS(3045), - [sym_atx_h1_marker] = ACTIONS(3045), - [sym_atx_h2_marker] = ACTIONS(3045), - [sym_atx_h3_marker] = ACTIONS(3045), - [sym_atx_h4_marker] = ACTIONS(3045), - [sym_atx_h5_marker] = ACTIONS(3045), - [sym_atx_h6_marker] = ACTIONS(3045), - [sym__thematic_break] = ACTIONS(3045), - [sym__list_marker_minus] = ACTIONS(3045), - [sym__list_marker_plus] = ACTIONS(3045), - [sym__list_marker_star] = ACTIONS(3045), - [sym__list_marker_parenthesis] = ACTIONS(3045), - [sym__list_marker_dot] = ACTIONS(3045), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_example] = ACTIONS(3045), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3045), - [sym__fenced_code_block_start_backtick] = ACTIONS(3045), - [sym_minus_metadata] = ACTIONS(3045), - [sym__pipe_table_start] = ACTIONS(3045), - [sym__fenced_div_start] = ACTIONS(3045), - [sym_ref_id_specifier] = ACTIONS(3045), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3045), - [sym__autolink] = ACTIONS(3045), - [sym__highlight_span_start] = ACTIONS(3045), - [sym__insert_span_start] = ACTIONS(3045), - [sym__delete_span_start] = ACTIONS(3045), - [sym__edit_comment_span_start] = ACTIONS(3045), - [sym__single_quote_span_open] = ACTIONS(3045), - [sym__double_quote_span_open] = ACTIONS(3045), - [sym__shortcode_open_escaped] = ACTIONS(3045), - [sym__shortcode_open] = ACTIONS(3045), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3045), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3045), - [sym__cite_author_in_text] = ACTIONS(3045), - [sym__cite_suppress_author] = ACTIONS(3045), - [sym__strikeout_open] = ACTIONS(3045), - [sym__subscript_open] = ACTIONS(3045), - [sym__superscript_open] = ACTIONS(3045), - [sym__inline_note_start_token] = ACTIONS(3045), - [sym__strong_emphasis_open_star] = ACTIONS(3045), - [sym__strong_emphasis_open_underscore] = ACTIONS(3045), - [sym__emphasis_open_star] = ACTIONS(3045), - [sym__emphasis_open_underscore] = ACTIONS(3045), - [sym_inline_note_reference] = ACTIONS(3045), - [sym_html_element] = ACTIONS(3045), - [sym__pandoc_line_break] = ACTIONS(3045), - }, - [STATE(552)] = { - [ts_builtin_sym_end] = ACTIONS(3041), - [anon_sym_COLON] = ACTIONS(3041), - [sym_entity_reference] = ACTIONS(3041), - [sym_numeric_character_reference] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3041), - [anon_sym_BANG_LBRACK] = ACTIONS(3041), - [anon_sym_DOLLAR] = ACTIONS(3043), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [aux_sym_pandoc_str_token1] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3041), - [aux_sym__prose_punctuation_token1] = ACTIONS(3043), - [sym__line_ending] = ACTIONS(3041), - [sym__soft_line_ending] = ACTIONS(3041), - [sym__block_quote_start] = ACTIONS(3041), - [sym_atx_h1_marker] = ACTIONS(3041), - [sym_atx_h2_marker] = ACTIONS(3041), - [sym_atx_h3_marker] = ACTIONS(3041), - [sym_atx_h4_marker] = ACTIONS(3041), - [sym_atx_h5_marker] = ACTIONS(3041), - [sym_atx_h6_marker] = ACTIONS(3041), - [sym__thematic_break] = ACTIONS(3041), - [sym__list_marker_minus] = ACTIONS(3041), - [sym__list_marker_plus] = ACTIONS(3041), - [sym__list_marker_star] = ACTIONS(3041), - [sym__list_marker_parenthesis] = ACTIONS(3041), - [sym__list_marker_dot] = ACTIONS(3041), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3041), - [sym__list_marker_example] = ACTIONS(3041), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3041), - [sym__fenced_code_block_start_backtick] = ACTIONS(3041), - [sym_minus_metadata] = ACTIONS(3041), - [sym__pipe_table_start] = ACTIONS(3041), - [sym__fenced_div_start] = ACTIONS(3041), - [sym_ref_id_specifier] = ACTIONS(3041), - [sym__code_span_start] = ACTIONS(3041), - [sym__html_comment] = ACTIONS(3041), - [sym__autolink] = ACTIONS(3041), - [sym__highlight_span_start] = ACTIONS(3041), - [sym__insert_span_start] = ACTIONS(3041), - [sym__delete_span_start] = ACTIONS(3041), - [sym__edit_comment_span_start] = ACTIONS(3041), - [sym__single_quote_span_open] = ACTIONS(3041), - [sym__double_quote_span_open] = ACTIONS(3041), - [sym__shortcode_open_escaped] = ACTIONS(3041), - [sym__shortcode_open] = ACTIONS(3041), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3041), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3041), - [sym__cite_author_in_text] = ACTIONS(3041), - [sym__cite_suppress_author] = ACTIONS(3041), - [sym__strikeout_open] = ACTIONS(3041), - [sym__subscript_open] = ACTIONS(3041), - [sym__superscript_open] = ACTIONS(3041), - [sym__inline_note_start_token] = ACTIONS(3041), - [sym__strong_emphasis_open_star] = ACTIONS(3041), - [sym__strong_emphasis_open_underscore] = ACTIONS(3041), - [sym__emphasis_open_star] = ACTIONS(3041), - [sym__emphasis_open_underscore] = ACTIONS(3041), - [sym_inline_note_reference] = ACTIONS(3041), - [sym_html_element] = ACTIONS(3041), - [sym__pandoc_line_break] = ACTIONS(3041), - }, - [STATE(553)] = { - [ts_builtin_sym_end] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3045), - [sym_entity_reference] = ACTIONS(3045), - [sym_numeric_character_reference] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_BANG_LBRACK] = ACTIONS(3045), - [anon_sym_DOLLAR] = ACTIONS(3047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [aux_sym_pandoc_str_token1] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3045), - [aux_sym__prose_punctuation_token1] = ACTIONS(3047), - [sym__line_ending] = ACTIONS(3045), - [sym__soft_line_ending] = ACTIONS(3045), - [sym__block_quote_start] = ACTIONS(3045), - [sym_atx_h1_marker] = ACTIONS(3045), - [sym_atx_h2_marker] = ACTIONS(3045), - [sym_atx_h3_marker] = ACTIONS(3045), - [sym_atx_h4_marker] = ACTIONS(3045), - [sym_atx_h5_marker] = ACTIONS(3045), - [sym_atx_h6_marker] = ACTIONS(3045), - [sym__thematic_break] = ACTIONS(3045), - [sym__list_marker_minus] = ACTIONS(3045), - [sym__list_marker_plus] = ACTIONS(3045), - [sym__list_marker_star] = ACTIONS(3045), - [sym__list_marker_parenthesis] = ACTIONS(3045), - [sym__list_marker_dot] = ACTIONS(3045), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3045), - [sym__list_marker_example] = ACTIONS(3045), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3045), - [sym__fenced_code_block_start_backtick] = ACTIONS(3045), - [sym_minus_metadata] = ACTIONS(3045), - [sym__pipe_table_start] = ACTIONS(3045), - [sym__fenced_div_start] = ACTIONS(3045), - [sym_ref_id_specifier] = ACTIONS(3045), - [sym__code_span_start] = ACTIONS(3045), - [sym__html_comment] = ACTIONS(3045), - [sym__autolink] = ACTIONS(3045), - [sym__highlight_span_start] = ACTIONS(3045), - [sym__insert_span_start] = ACTIONS(3045), - [sym__delete_span_start] = ACTIONS(3045), - [sym__edit_comment_span_start] = ACTIONS(3045), - [sym__single_quote_span_open] = ACTIONS(3045), - [sym__double_quote_span_open] = ACTIONS(3045), - [sym__shortcode_open_escaped] = ACTIONS(3045), - [sym__shortcode_open] = ACTIONS(3045), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3045), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3045), - [sym__cite_author_in_text] = ACTIONS(3045), - [sym__cite_suppress_author] = ACTIONS(3045), - [sym__strikeout_open] = ACTIONS(3045), - [sym__subscript_open] = ACTIONS(3045), - [sym__superscript_open] = ACTIONS(3045), - [sym__inline_note_start_token] = ACTIONS(3045), - [sym__strong_emphasis_open_star] = ACTIONS(3045), - [sym__strong_emphasis_open_underscore] = ACTIONS(3045), - [sym__emphasis_open_star] = ACTIONS(3045), - [sym__emphasis_open_underscore] = ACTIONS(3045), - [sym_inline_note_reference] = ACTIONS(3045), - [sym_html_element] = ACTIONS(3045), - [sym__pandoc_line_break] = ACTIONS(3045), - }, - [STATE(554)] = { - [sym__inlines] = STATE(2978), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1325), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3793), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(555)] = { - [sym__inlines] = STATE(2981), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1054), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3795), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(556)] = { - [anon_sym_COLON] = ACTIONS(3049), - [sym_entity_reference] = ACTIONS(3049), - [sym_numeric_character_reference] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_BANG_LBRACK] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3051), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [aux_sym_pandoc_str_token1] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3049), - [aux_sym__prose_punctuation_token1] = ACTIONS(3051), - [sym__line_ending] = ACTIONS(3049), - [sym__soft_line_ending] = ACTIONS(3049), - [sym__block_close] = ACTIONS(3049), - [sym__block_quote_start] = ACTIONS(3049), - [sym_atx_h1_marker] = ACTIONS(3049), - [sym_atx_h2_marker] = ACTIONS(3049), - [sym_atx_h3_marker] = ACTIONS(3049), - [sym_atx_h4_marker] = ACTIONS(3049), - [sym_atx_h5_marker] = ACTIONS(3049), - [sym_atx_h6_marker] = ACTIONS(3049), - [sym__thematic_break] = ACTIONS(3049), - [sym__list_marker_minus] = ACTIONS(3049), - [sym__list_marker_plus] = ACTIONS(3049), - [sym__list_marker_star] = ACTIONS(3049), - [sym__list_marker_parenthesis] = ACTIONS(3049), - [sym__list_marker_dot] = ACTIONS(3049), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_example] = ACTIONS(3049), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3049), - [sym__fenced_code_block_start_backtick] = ACTIONS(3049), - [sym_minus_metadata] = ACTIONS(3049), - [sym__pipe_table_start] = ACTIONS(3049), - [sym__fenced_div_start] = ACTIONS(3049), - [sym_ref_id_specifier] = ACTIONS(3049), - [sym__code_span_start] = ACTIONS(3049), - [sym__html_comment] = ACTIONS(3049), - [sym__autolink] = ACTIONS(3049), - [sym__highlight_span_start] = ACTIONS(3049), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3049), - [sym__edit_comment_span_start] = ACTIONS(3049), - [sym__single_quote_span_open] = ACTIONS(3049), - [sym__double_quote_span_open] = ACTIONS(3049), - [sym__shortcode_open_escaped] = ACTIONS(3049), - [sym__shortcode_open] = ACTIONS(3049), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3049), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3049), - [sym__cite_author_in_text] = ACTIONS(3049), - [sym__cite_suppress_author] = ACTIONS(3049), - [sym__strikeout_open] = ACTIONS(3049), - [sym__subscript_open] = ACTIONS(3049), - [sym__superscript_open] = ACTIONS(3049), - [sym__inline_note_start_token] = ACTIONS(3049), - [sym__strong_emphasis_open_star] = ACTIONS(3049), - [sym__strong_emphasis_open_underscore] = ACTIONS(3049), - [sym__emphasis_open_star] = ACTIONS(3049), - [sym__emphasis_open_underscore] = ACTIONS(3049), - [sym_inline_note_reference] = ACTIONS(3049), - [sym_html_element] = ACTIONS(3049), - [sym__pandoc_line_break] = ACTIONS(3049), - }, - [STATE(557)] = { - [anon_sym_COLON] = ACTIONS(3053), - [sym_entity_reference] = ACTIONS(3053), - [sym_numeric_character_reference] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_BANG_LBRACK] = ACTIONS(3053), - [anon_sym_DOLLAR] = ACTIONS(3055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [aux_sym_pandoc_str_token1] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(3053), - [aux_sym__prose_punctuation_token1] = ACTIONS(3055), - [sym__line_ending] = ACTIONS(3053), - [sym__soft_line_ending] = ACTIONS(3053), - [sym__block_close] = ACTIONS(3053), - [sym__block_quote_start] = ACTIONS(3053), - [sym_atx_h1_marker] = ACTIONS(3053), - [sym_atx_h2_marker] = ACTIONS(3053), - [sym_atx_h3_marker] = ACTIONS(3053), - [sym_atx_h4_marker] = ACTIONS(3053), - [sym_atx_h5_marker] = ACTIONS(3053), - [sym_atx_h6_marker] = ACTIONS(3053), - [sym__thematic_break] = ACTIONS(3053), - [sym__list_marker_minus] = ACTIONS(3053), - [sym__list_marker_plus] = ACTIONS(3053), - [sym__list_marker_star] = ACTIONS(3053), - [sym__list_marker_parenthesis] = ACTIONS(3053), - [sym__list_marker_dot] = ACTIONS(3053), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_example] = ACTIONS(3053), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3053), - [sym__fenced_code_block_start_backtick] = ACTIONS(3053), - [sym_minus_metadata] = ACTIONS(3053), - [sym__pipe_table_start] = ACTIONS(3053), - [sym__fenced_div_start] = ACTIONS(3053), - [sym_ref_id_specifier] = ACTIONS(3053), - [sym__code_span_start] = ACTIONS(3053), - [sym__html_comment] = ACTIONS(3053), - [sym__autolink] = ACTIONS(3053), - [sym__highlight_span_start] = ACTIONS(3053), - [sym__insert_span_start] = ACTIONS(3053), - [sym__delete_span_start] = ACTIONS(3053), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3053), - [sym__double_quote_span_open] = ACTIONS(3053), - [sym__shortcode_open_escaped] = ACTIONS(3053), - [sym__shortcode_open] = ACTIONS(3053), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3053), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3053), - [sym__cite_author_in_text] = ACTIONS(3053), - [sym__cite_suppress_author] = ACTIONS(3053), - [sym__strikeout_open] = ACTIONS(3053), - [sym__subscript_open] = ACTIONS(3053), - [sym__superscript_open] = ACTIONS(3053), - [sym__inline_note_start_token] = ACTIONS(3053), - [sym__strong_emphasis_open_star] = ACTIONS(3053), - [sym__strong_emphasis_open_underscore] = ACTIONS(3053), - [sym__emphasis_open_star] = ACTIONS(3053), - [sym__emphasis_open_underscore] = ACTIONS(3053), - [sym_inline_note_reference] = ACTIONS(3053), - [sym_html_element] = ACTIONS(3053), - [sym__pandoc_line_break] = ACTIONS(3053), - }, - [STATE(558)] = { - [anon_sym_COLON] = ACTIONS(3057), - [sym_entity_reference] = ACTIONS(3057), - [sym_numeric_character_reference] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_BANG_LBRACK] = ACTIONS(3057), - [anon_sym_DOLLAR] = ACTIONS(3059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [aux_sym_pandoc_str_token1] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3057), - [aux_sym__prose_punctuation_token1] = ACTIONS(3059), - [sym__line_ending] = ACTIONS(3057), - [sym__soft_line_ending] = ACTIONS(3057), - [sym__block_close] = ACTIONS(3057), - [sym__block_quote_start] = ACTIONS(3057), - [sym_atx_h1_marker] = ACTIONS(3057), - [sym_atx_h2_marker] = ACTIONS(3057), - [sym_atx_h3_marker] = ACTIONS(3057), - [sym_atx_h4_marker] = ACTIONS(3057), - [sym_atx_h5_marker] = ACTIONS(3057), - [sym_atx_h6_marker] = ACTIONS(3057), - [sym__thematic_break] = ACTIONS(3057), - [sym__list_marker_minus] = ACTIONS(3057), - [sym__list_marker_plus] = ACTIONS(3057), - [sym__list_marker_star] = ACTIONS(3057), - [sym__list_marker_parenthesis] = ACTIONS(3057), - [sym__list_marker_dot] = ACTIONS(3057), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_example] = ACTIONS(3057), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3057), - [sym__fenced_code_block_start_backtick] = ACTIONS(3057), - [sym_minus_metadata] = ACTIONS(3057), - [sym__pipe_table_start] = ACTIONS(3057), - [sym__fenced_div_start] = ACTIONS(3057), - [sym_ref_id_specifier] = ACTIONS(3057), - [sym__code_span_start] = ACTIONS(3057), - [sym__html_comment] = ACTIONS(3057), - [sym__autolink] = ACTIONS(3057), - [sym__highlight_span_start] = ACTIONS(3057), - [sym__insert_span_start] = ACTIONS(3057), - [sym__delete_span_start] = ACTIONS(3057), - [sym__edit_comment_span_start] = ACTIONS(3057), - [sym__single_quote_span_open] = ACTIONS(3057), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3057), - [sym__shortcode_open] = ACTIONS(3057), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3057), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3057), - [sym__cite_author_in_text] = ACTIONS(3057), - [sym__cite_suppress_author] = ACTIONS(3057), - [sym__strikeout_open] = ACTIONS(3057), - [sym__subscript_open] = ACTIONS(3057), - [sym__superscript_open] = ACTIONS(3057), - [sym__inline_note_start_token] = ACTIONS(3057), - [sym__strong_emphasis_open_star] = ACTIONS(3057), - [sym__strong_emphasis_open_underscore] = ACTIONS(3057), - [sym__emphasis_open_star] = ACTIONS(3057), - [sym__emphasis_open_underscore] = ACTIONS(3057), - [sym_inline_note_reference] = ACTIONS(3057), - [sym_html_element] = ACTIONS(3057), - [sym__pandoc_line_break] = ACTIONS(3057), - }, - [STATE(559)] = { - [anon_sym_COLON] = ACTIONS(3061), - [sym_entity_reference] = ACTIONS(3061), - [sym_numeric_character_reference] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3061), - [anon_sym_BANG_LBRACK] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3063), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [aux_sym_pandoc_str_token1] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3061), - [aux_sym__prose_punctuation_token1] = ACTIONS(3063), - [sym__line_ending] = ACTIONS(3061), - [sym__soft_line_ending] = ACTIONS(3061), - [sym__block_close] = ACTIONS(3061), - [sym__block_quote_start] = ACTIONS(3061), - [sym_atx_h1_marker] = ACTIONS(3061), - [sym_atx_h2_marker] = ACTIONS(3061), - [sym_atx_h3_marker] = ACTIONS(3061), - [sym_atx_h4_marker] = ACTIONS(3061), - [sym_atx_h5_marker] = ACTIONS(3061), - [sym_atx_h6_marker] = ACTIONS(3061), - [sym__thematic_break] = ACTIONS(3061), - [sym__list_marker_minus] = ACTIONS(3061), - [sym__list_marker_plus] = ACTIONS(3061), - [sym__list_marker_star] = ACTIONS(3061), - [sym__list_marker_parenthesis] = ACTIONS(3061), - [sym__list_marker_dot] = ACTIONS(3061), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_example] = ACTIONS(3061), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3061), - [sym__fenced_code_block_start_backtick] = ACTIONS(3061), - [sym_minus_metadata] = ACTIONS(3061), - [sym__pipe_table_start] = ACTIONS(3061), - [sym__fenced_div_start] = ACTIONS(3061), - [sym_ref_id_specifier] = ACTIONS(3061), - [sym__code_span_start] = ACTIONS(3061), - [sym__html_comment] = ACTIONS(3061), - [sym__autolink] = ACTIONS(3061), - [sym__highlight_span_start] = ACTIONS(3061), - [sym__insert_span_start] = ACTIONS(3061), - [sym__delete_span_start] = ACTIONS(3061), - [sym__edit_comment_span_start] = ACTIONS(3061), - [sym__single_quote_span_open] = ACTIONS(3061), - [sym__double_quote_span_open] = ACTIONS(3061), - [sym__shortcode_open_escaped] = ACTIONS(3061), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3061), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3061), - [sym__cite_author_in_text] = ACTIONS(3061), - [sym__cite_suppress_author] = ACTIONS(3061), - [sym__strikeout_open] = ACTIONS(3061), - [sym__subscript_open] = ACTIONS(3061), - [sym__superscript_open] = ACTIONS(3061), - [sym__inline_note_start_token] = ACTIONS(3061), - [sym__strong_emphasis_open_star] = ACTIONS(3061), - [sym__strong_emphasis_open_underscore] = ACTIONS(3061), - [sym__emphasis_open_star] = ACTIONS(3061), - [sym__emphasis_open_underscore] = ACTIONS(3061), - [sym_inline_note_reference] = ACTIONS(3061), - [sym_html_element] = ACTIONS(3061), - [sym__pandoc_line_break] = ACTIONS(3061), - }, - [STATE(560)] = { - [ts_builtin_sym_end] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3049), - [sym_entity_reference] = ACTIONS(3049), - [sym_numeric_character_reference] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_BANG_LBRACK] = ACTIONS(3049), - [anon_sym_DOLLAR] = ACTIONS(3051), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [aux_sym_pandoc_str_token1] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3049), - [aux_sym__prose_punctuation_token1] = ACTIONS(3051), - [sym__line_ending] = ACTIONS(3049), - [sym__soft_line_ending] = ACTIONS(3049), - [sym__block_quote_start] = ACTIONS(3049), - [sym_atx_h1_marker] = ACTIONS(3049), - [sym_atx_h2_marker] = ACTIONS(3049), - [sym_atx_h3_marker] = ACTIONS(3049), - [sym_atx_h4_marker] = ACTIONS(3049), - [sym_atx_h5_marker] = ACTIONS(3049), - [sym_atx_h6_marker] = ACTIONS(3049), - [sym__thematic_break] = ACTIONS(3049), - [sym__list_marker_minus] = ACTIONS(3049), - [sym__list_marker_plus] = ACTIONS(3049), - [sym__list_marker_star] = ACTIONS(3049), - [sym__list_marker_parenthesis] = ACTIONS(3049), - [sym__list_marker_dot] = ACTIONS(3049), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3049), - [sym__list_marker_example] = ACTIONS(3049), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3049), - [sym__fenced_code_block_start_backtick] = ACTIONS(3049), - [sym_minus_metadata] = ACTIONS(3049), - [sym__pipe_table_start] = ACTIONS(3049), - [sym__fenced_div_start] = ACTIONS(3049), - [sym_ref_id_specifier] = ACTIONS(3049), - [sym__code_span_start] = ACTIONS(3049), - [sym__html_comment] = ACTIONS(3049), - [sym__autolink] = ACTIONS(3049), - [sym__highlight_span_start] = ACTIONS(3049), - [sym__insert_span_start] = ACTIONS(3049), - [sym__delete_span_start] = ACTIONS(3049), - [sym__edit_comment_span_start] = ACTIONS(3049), - [sym__single_quote_span_open] = ACTIONS(3049), - [sym__double_quote_span_open] = ACTIONS(3049), - [sym__shortcode_open_escaped] = ACTIONS(3049), - [sym__shortcode_open] = ACTIONS(3049), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3049), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3049), - [sym__cite_author_in_text] = ACTIONS(3049), - [sym__cite_suppress_author] = ACTIONS(3049), - [sym__strikeout_open] = ACTIONS(3049), - [sym__subscript_open] = ACTIONS(3049), - [sym__superscript_open] = ACTIONS(3049), - [sym__inline_note_start_token] = ACTIONS(3049), - [sym__strong_emphasis_open_star] = ACTIONS(3049), - [sym__strong_emphasis_open_underscore] = ACTIONS(3049), - [sym__emphasis_open_star] = ACTIONS(3049), - [sym__emphasis_open_underscore] = ACTIONS(3049), - [sym_inline_note_reference] = ACTIONS(3049), - [sym_html_element] = ACTIONS(3049), - [sym__pandoc_line_break] = ACTIONS(3049), - }, - [STATE(561)] = { - [ts_builtin_sym_end] = ACTIONS(3053), - [anon_sym_COLON] = ACTIONS(3053), - [sym_entity_reference] = ACTIONS(3053), - [sym_numeric_character_reference] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_BANG_LBRACK] = ACTIONS(3053), - [anon_sym_DOLLAR] = ACTIONS(3055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [aux_sym_pandoc_str_token1] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(3053), - [aux_sym__prose_punctuation_token1] = ACTIONS(3055), - [sym__line_ending] = ACTIONS(3053), - [sym__soft_line_ending] = ACTIONS(3053), - [sym__block_quote_start] = ACTIONS(3053), - [sym_atx_h1_marker] = ACTIONS(3053), - [sym_atx_h2_marker] = ACTIONS(3053), - [sym_atx_h3_marker] = ACTIONS(3053), - [sym_atx_h4_marker] = ACTIONS(3053), - [sym_atx_h5_marker] = ACTIONS(3053), - [sym_atx_h6_marker] = ACTIONS(3053), - [sym__thematic_break] = ACTIONS(3053), - [sym__list_marker_minus] = ACTIONS(3053), - [sym__list_marker_plus] = ACTIONS(3053), - [sym__list_marker_star] = ACTIONS(3053), - [sym__list_marker_parenthesis] = ACTIONS(3053), - [sym__list_marker_dot] = ACTIONS(3053), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3053), - [sym__list_marker_example] = ACTIONS(3053), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3053), - [sym__fenced_code_block_start_backtick] = ACTIONS(3053), - [sym_minus_metadata] = ACTIONS(3053), - [sym__pipe_table_start] = ACTIONS(3053), - [sym__fenced_div_start] = ACTIONS(3053), - [sym_ref_id_specifier] = ACTIONS(3053), - [sym__code_span_start] = ACTIONS(3053), - [sym__html_comment] = ACTIONS(3053), - [sym__autolink] = ACTIONS(3053), - [sym__highlight_span_start] = ACTIONS(3053), - [sym__insert_span_start] = ACTIONS(3053), - [sym__delete_span_start] = ACTIONS(3053), - [sym__edit_comment_span_start] = ACTIONS(3053), - [sym__single_quote_span_open] = ACTIONS(3053), - [sym__double_quote_span_open] = ACTIONS(3053), - [sym__shortcode_open_escaped] = ACTIONS(3053), - [sym__shortcode_open] = ACTIONS(3053), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3053), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3053), - [sym__cite_author_in_text] = ACTIONS(3053), - [sym__cite_suppress_author] = ACTIONS(3053), - [sym__strikeout_open] = ACTIONS(3053), - [sym__subscript_open] = ACTIONS(3053), - [sym__superscript_open] = ACTIONS(3053), - [sym__inline_note_start_token] = ACTIONS(3053), - [sym__strong_emphasis_open_star] = ACTIONS(3053), - [sym__strong_emphasis_open_underscore] = ACTIONS(3053), - [sym__emphasis_open_star] = ACTIONS(3053), - [sym__emphasis_open_underscore] = ACTIONS(3053), - [sym_inline_note_reference] = ACTIONS(3053), - [sym_html_element] = ACTIONS(3053), - [sym__pandoc_line_break] = ACTIONS(3053), - }, - [STATE(562)] = { - [sym__inlines] = STATE(2734), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1134), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3797), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(563)] = { - [sym__inlines] = STATE(2735), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1136), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3799), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(564)] = { - [anon_sym_COLON] = ACTIONS(3065), - [sym_entity_reference] = ACTIONS(3065), - [sym_numeric_character_reference] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_BANG_LBRACK] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3065), - [aux_sym_pandoc_str_token1] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3065), - [aux_sym__prose_punctuation_token1] = ACTIONS(3067), - [sym__line_ending] = ACTIONS(3065), - [sym__soft_line_ending] = ACTIONS(3065), - [sym__block_close] = ACTIONS(3065), - [sym__block_quote_start] = ACTIONS(3065), - [sym_atx_h1_marker] = ACTIONS(3065), - [sym_atx_h2_marker] = ACTIONS(3065), - [sym_atx_h3_marker] = ACTIONS(3065), - [sym_atx_h4_marker] = ACTIONS(3065), - [sym_atx_h5_marker] = ACTIONS(3065), - [sym_atx_h6_marker] = ACTIONS(3065), - [sym__thematic_break] = ACTIONS(3065), - [sym__list_marker_minus] = ACTIONS(3065), - [sym__list_marker_plus] = ACTIONS(3065), - [sym__list_marker_star] = ACTIONS(3065), - [sym__list_marker_parenthesis] = ACTIONS(3065), - [sym__list_marker_dot] = ACTIONS(3065), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_example] = ACTIONS(3065), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3065), - [sym__fenced_code_block_start_backtick] = ACTIONS(3065), - [sym_minus_metadata] = ACTIONS(3065), - [sym__pipe_table_start] = ACTIONS(3065), - [sym__fenced_div_start] = ACTIONS(3065), - [sym_ref_id_specifier] = ACTIONS(3065), - [sym__code_span_start] = ACTIONS(3065), - [sym__html_comment] = ACTIONS(3065), - [sym__autolink] = ACTIONS(3065), - [sym__highlight_span_start] = ACTIONS(3065), - [sym__insert_span_start] = ACTIONS(3065), - [sym__delete_span_start] = ACTIONS(3065), - [sym__edit_comment_span_start] = ACTIONS(3065), - [sym__single_quote_span_open] = ACTIONS(3065), - [sym__double_quote_span_open] = ACTIONS(3065), - [sym__shortcode_open_escaped] = ACTIONS(3065), - [sym__shortcode_open] = ACTIONS(3065), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3065), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3065), - [sym__cite_suppress_author] = ACTIONS(3065), - [sym__strikeout_open] = ACTIONS(3065), - [sym__subscript_open] = ACTIONS(3065), - [sym__superscript_open] = ACTIONS(3065), - [sym__inline_note_start_token] = ACTIONS(3065), - [sym__strong_emphasis_open_star] = ACTIONS(3065), - [sym__strong_emphasis_open_underscore] = ACTIONS(3065), - [sym__emphasis_open_star] = ACTIONS(3065), - [sym__emphasis_open_underscore] = ACTIONS(3065), - [sym_inline_note_reference] = ACTIONS(3065), - [sym_html_element] = ACTIONS(3065), - [sym__pandoc_line_break] = ACTIONS(3065), - }, - [STATE(565)] = { - [anon_sym_COLON] = ACTIONS(3280), - [sym_entity_reference] = ACTIONS(3280), - [sym_numeric_character_reference] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_BANG_LBRACK] = ACTIONS(3280), - [anon_sym_DOLLAR] = ACTIONS(3282), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3280), - [aux_sym_pandoc_str_token1] = ACTIONS(3282), - [anon_sym_PIPE] = ACTIONS(3280), - [aux_sym__prose_punctuation_token1] = ACTIONS(3282), - [sym__line_ending] = ACTIONS(3280), - [sym__soft_line_ending] = ACTIONS(3280), - [sym__block_close] = ACTIONS(3280), - [sym__block_quote_start] = ACTIONS(3280), - [sym_atx_h1_marker] = ACTIONS(3280), - [sym_atx_h2_marker] = ACTIONS(3280), - [sym_atx_h3_marker] = ACTIONS(3280), - [sym_atx_h4_marker] = ACTIONS(3280), - [sym_atx_h5_marker] = ACTIONS(3280), - [sym_atx_h6_marker] = ACTIONS(3280), - [sym__thematic_break] = ACTIONS(3280), - [sym__list_marker_minus] = ACTIONS(3280), - [sym__list_marker_plus] = ACTIONS(3280), - [sym__list_marker_star] = ACTIONS(3280), - [sym__list_marker_parenthesis] = ACTIONS(3280), - [sym__list_marker_dot] = ACTIONS(3280), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3280), - [sym__list_marker_example] = ACTIONS(3280), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3280), - [sym__fenced_code_block_start_backtick] = ACTIONS(3280), - [sym_minus_metadata] = ACTIONS(3280), - [sym__pipe_table_start] = ACTIONS(3280), - [sym__fenced_div_start] = ACTIONS(3280), - [sym_ref_id_specifier] = ACTIONS(3280), - [sym__code_span_start] = ACTIONS(3280), - [sym__html_comment] = ACTIONS(3280), - [sym__autolink] = ACTIONS(3280), - [sym__highlight_span_start] = ACTIONS(3280), - [sym__insert_span_start] = ACTIONS(3280), - [sym__delete_span_start] = ACTIONS(3280), - [sym__edit_comment_span_start] = ACTIONS(3280), - [sym__single_quote_span_open] = ACTIONS(3280), - [sym__double_quote_span_open] = ACTIONS(3280), - [sym__shortcode_open_escaped] = ACTIONS(3280), - [sym__shortcode_open] = ACTIONS(3280), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3280), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3280), - [sym__cite_author_in_text] = ACTIONS(3280), - [sym__cite_suppress_author] = ACTIONS(3280), - [sym__strikeout_open] = ACTIONS(3280), - [sym__subscript_open] = ACTIONS(3280), - [sym__superscript_open] = ACTIONS(3280), - [sym__inline_note_start_token] = ACTIONS(3280), - [sym__strong_emphasis_open_star] = ACTIONS(3280), - [sym__strong_emphasis_open_underscore] = ACTIONS(3280), - [sym__emphasis_open_star] = ACTIONS(3280), - [sym__emphasis_open_underscore] = ACTIONS(3280), - [sym_inline_note_reference] = ACTIONS(3280), - [sym_html_element] = ACTIONS(3280), - [sym__pandoc_line_break] = ACTIONS(3280), - }, - [STATE(566)] = { - [anon_sym_COLON] = ACTIONS(3284), - [sym_entity_reference] = ACTIONS(3284), - [sym_numeric_character_reference] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_BANG_LBRACK] = ACTIONS(3284), - [anon_sym_DOLLAR] = ACTIONS(3286), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [aux_sym_pandoc_str_token1] = ACTIONS(3286), - [anon_sym_PIPE] = ACTIONS(3284), - [aux_sym__prose_punctuation_token1] = ACTIONS(3286), - [sym__line_ending] = ACTIONS(3284), - [sym__soft_line_ending] = ACTIONS(3284), - [sym__block_close] = ACTIONS(3284), - [sym__block_quote_start] = ACTIONS(3284), - [sym_atx_h1_marker] = ACTIONS(3284), - [sym_atx_h2_marker] = ACTIONS(3284), - [sym_atx_h3_marker] = ACTIONS(3284), - [sym_atx_h4_marker] = ACTIONS(3284), - [sym_atx_h5_marker] = ACTIONS(3284), - [sym_atx_h6_marker] = ACTIONS(3284), - [sym__thematic_break] = ACTIONS(3284), - [sym__list_marker_minus] = ACTIONS(3284), - [sym__list_marker_plus] = ACTIONS(3284), - [sym__list_marker_star] = ACTIONS(3284), - [sym__list_marker_parenthesis] = ACTIONS(3284), - [sym__list_marker_dot] = ACTIONS(3284), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3284), - [sym__list_marker_example] = ACTIONS(3284), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3284), - [sym__fenced_code_block_start_backtick] = ACTIONS(3284), - [sym_minus_metadata] = ACTIONS(3284), - [sym__pipe_table_start] = ACTIONS(3284), - [sym__fenced_div_start] = ACTIONS(3284), - [sym_ref_id_specifier] = ACTIONS(3284), - [sym__code_span_start] = ACTIONS(3284), - [sym__html_comment] = ACTIONS(3284), - [sym__autolink] = ACTIONS(3284), - [sym__highlight_span_start] = ACTIONS(3284), - [sym__insert_span_start] = ACTIONS(3284), - [sym__delete_span_start] = ACTIONS(3284), - [sym__edit_comment_span_start] = ACTIONS(3284), - [sym__single_quote_span_open] = ACTIONS(3284), - [sym__double_quote_span_open] = ACTIONS(3284), - [sym__shortcode_open_escaped] = ACTIONS(3284), - [sym__shortcode_open] = ACTIONS(3284), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3284), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3284), - [sym__cite_author_in_text] = ACTIONS(3284), - [sym__cite_suppress_author] = ACTIONS(3284), - [sym__strikeout_open] = ACTIONS(3284), - [sym__subscript_open] = ACTIONS(3284), - [sym__superscript_open] = ACTIONS(3284), - [sym__inline_note_start_token] = ACTIONS(3284), - [sym__strong_emphasis_open_star] = ACTIONS(3284), - [sym__strong_emphasis_open_underscore] = ACTIONS(3284), - [sym__emphasis_open_star] = ACTIONS(3284), - [sym__emphasis_open_underscore] = ACTIONS(3284), - [sym_inline_note_reference] = ACTIONS(3284), - [sym_html_element] = ACTIONS(3284), - [sym__pandoc_line_break] = ACTIONS(3284), - }, - [STATE(567)] = { - [anon_sym_COLON] = ACTIONS(3288), - [sym_entity_reference] = ACTIONS(3288), - [sym_numeric_character_reference] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_BANG_LBRACK] = ACTIONS(3288), - [anon_sym_DOLLAR] = ACTIONS(3290), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [aux_sym_pandoc_str_token1] = ACTIONS(3290), - [anon_sym_PIPE] = ACTIONS(3288), - [aux_sym__prose_punctuation_token1] = ACTIONS(3290), - [sym__line_ending] = ACTIONS(3288), - [sym__soft_line_ending] = ACTIONS(3288), - [sym__block_close] = ACTIONS(3288), - [sym__block_quote_start] = ACTIONS(3288), - [sym_atx_h1_marker] = ACTIONS(3288), - [sym_atx_h2_marker] = ACTIONS(3288), - [sym_atx_h3_marker] = ACTIONS(3288), - [sym_atx_h4_marker] = ACTIONS(3288), - [sym_atx_h5_marker] = ACTIONS(3288), - [sym_atx_h6_marker] = ACTIONS(3288), - [sym__thematic_break] = ACTIONS(3288), - [sym__list_marker_minus] = ACTIONS(3288), - [sym__list_marker_plus] = ACTIONS(3288), - [sym__list_marker_star] = ACTIONS(3288), - [sym__list_marker_parenthesis] = ACTIONS(3288), - [sym__list_marker_dot] = ACTIONS(3288), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_example] = ACTIONS(3288), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3288), - [sym__fenced_code_block_start_backtick] = ACTIONS(3288), - [sym_minus_metadata] = ACTIONS(3288), - [sym__pipe_table_start] = ACTIONS(3288), - [sym__fenced_div_start] = ACTIONS(3288), - [sym_ref_id_specifier] = ACTIONS(3288), - [sym__code_span_start] = ACTIONS(3288), - [sym__html_comment] = ACTIONS(3288), - [sym__autolink] = ACTIONS(3288), - [sym__highlight_span_start] = ACTIONS(3288), - [sym__insert_span_start] = ACTIONS(3288), - [sym__delete_span_start] = ACTIONS(3288), - [sym__edit_comment_span_start] = ACTIONS(3288), - [sym__single_quote_span_open] = ACTIONS(3288), - [sym__double_quote_span_open] = ACTIONS(3288), - [sym__shortcode_open_escaped] = ACTIONS(3288), - [sym__shortcode_open] = ACTIONS(3288), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3288), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3288), - [sym__cite_author_in_text] = ACTIONS(3288), - [sym__cite_suppress_author] = ACTIONS(3288), - [sym__strikeout_open] = ACTIONS(3288), - [sym__subscript_open] = ACTIONS(3288), - [sym__superscript_open] = ACTIONS(3288), - [sym__inline_note_start_token] = ACTIONS(3288), - [sym__strong_emphasis_open_star] = ACTIONS(3288), - [sym__strong_emphasis_open_underscore] = ACTIONS(3288), - [sym__emphasis_open_star] = ACTIONS(3288), - [sym__emphasis_open_underscore] = ACTIONS(3288), - [sym_inline_note_reference] = ACTIONS(3288), - [sym_html_element] = ACTIONS(3288), - [sym__pandoc_line_break] = ACTIONS(3288), - }, - [STATE(568)] = { - [ts_builtin_sym_end] = ACTIONS(3057), - [anon_sym_COLON] = ACTIONS(3057), - [sym_entity_reference] = ACTIONS(3057), - [sym_numeric_character_reference] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_BANG_LBRACK] = ACTIONS(3057), - [anon_sym_DOLLAR] = ACTIONS(3059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [aux_sym_pandoc_str_token1] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3057), - [aux_sym__prose_punctuation_token1] = ACTIONS(3059), - [sym__line_ending] = ACTIONS(3057), - [sym__soft_line_ending] = ACTIONS(3057), - [sym__block_quote_start] = ACTIONS(3057), - [sym_atx_h1_marker] = ACTIONS(3057), - [sym_atx_h2_marker] = ACTIONS(3057), - [sym_atx_h3_marker] = ACTIONS(3057), - [sym_atx_h4_marker] = ACTIONS(3057), - [sym_atx_h5_marker] = ACTIONS(3057), - [sym_atx_h6_marker] = ACTIONS(3057), - [sym__thematic_break] = ACTIONS(3057), - [sym__list_marker_minus] = ACTIONS(3057), - [sym__list_marker_plus] = ACTIONS(3057), - [sym__list_marker_star] = ACTIONS(3057), - [sym__list_marker_parenthesis] = ACTIONS(3057), - [sym__list_marker_dot] = ACTIONS(3057), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3057), - [sym__list_marker_example] = ACTIONS(3057), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3057), - [sym__fenced_code_block_start_backtick] = ACTIONS(3057), - [sym_minus_metadata] = ACTIONS(3057), - [sym__pipe_table_start] = ACTIONS(3057), - [sym__fenced_div_start] = ACTIONS(3057), - [sym_ref_id_specifier] = ACTIONS(3057), - [sym__code_span_start] = ACTIONS(3057), - [sym__html_comment] = ACTIONS(3057), - [sym__autolink] = ACTIONS(3057), - [sym__highlight_span_start] = ACTIONS(3057), - [sym__insert_span_start] = ACTIONS(3057), - [sym__delete_span_start] = ACTIONS(3057), - [sym__edit_comment_span_start] = ACTIONS(3057), - [sym__single_quote_span_open] = ACTIONS(3057), - [sym__double_quote_span_open] = ACTIONS(3057), - [sym__shortcode_open_escaped] = ACTIONS(3057), - [sym__shortcode_open] = ACTIONS(3057), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3057), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3057), - [sym__cite_author_in_text] = ACTIONS(3057), - [sym__cite_suppress_author] = ACTIONS(3057), - [sym__strikeout_open] = ACTIONS(3057), - [sym__subscript_open] = ACTIONS(3057), - [sym__superscript_open] = ACTIONS(3057), - [sym__inline_note_start_token] = ACTIONS(3057), - [sym__strong_emphasis_open_star] = ACTIONS(3057), - [sym__strong_emphasis_open_underscore] = ACTIONS(3057), - [sym__emphasis_open_star] = ACTIONS(3057), - [sym__emphasis_open_underscore] = ACTIONS(3057), - [sym_inline_note_reference] = ACTIONS(3057), - [sym_html_element] = ACTIONS(3057), - [sym__pandoc_line_break] = ACTIONS(3057), - }, - [STATE(569)] = { - [ts_builtin_sym_end] = ACTIONS(3061), - [anon_sym_COLON] = ACTIONS(3061), - [sym_entity_reference] = ACTIONS(3061), - [sym_numeric_character_reference] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3061), - [anon_sym_BANG_LBRACK] = ACTIONS(3061), - [anon_sym_DOLLAR] = ACTIONS(3063), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [aux_sym_pandoc_str_token1] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3061), - [aux_sym__prose_punctuation_token1] = ACTIONS(3063), - [sym__line_ending] = ACTIONS(3061), - [sym__soft_line_ending] = ACTIONS(3061), - [sym__block_quote_start] = ACTIONS(3061), - [sym_atx_h1_marker] = ACTIONS(3061), - [sym_atx_h2_marker] = ACTIONS(3061), - [sym_atx_h3_marker] = ACTIONS(3061), - [sym_atx_h4_marker] = ACTIONS(3061), - [sym_atx_h5_marker] = ACTIONS(3061), - [sym_atx_h6_marker] = ACTIONS(3061), - [sym__thematic_break] = ACTIONS(3061), - [sym__list_marker_minus] = ACTIONS(3061), - [sym__list_marker_plus] = ACTIONS(3061), - [sym__list_marker_star] = ACTIONS(3061), - [sym__list_marker_parenthesis] = ACTIONS(3061), - [sym__list_marker_dot] = ACTIONS(3061), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3061), - [sym__list_marker_example] = ACTIONS(3061), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3061), - [sym__fenced_code_block_start_backtick] = ACTIONS(3061), - [sym_minus_metadata] = ACTIONS(3061), - [sym__pipe_table_start] = ACTIONS(3061), - [sym__fenced_div_start] = ACTIONS(3061), - [sym_ref_id_specifier] = ACTIONS(3061), - [sym__code_span_start] = ACTIONS(3061), - [sym__html_comment] = ACTIONS(3061), - [sym__autolink] = ACTIONS(3061), - [sym__highlight_span_start] = ACTIONS(3061), - [sym__insert_span_start] = ACTIONS(3061), - [sym__delete_span_start] = ACTIONS(3061), - [sym__edit_comment_span_start] = ACTIONS(3061), - [sym__single_quote_span_open] = ACTIONS(3061), - [sym__double_quote_span_open] = ACTIONS(3061), - [sym__shortcode_open_escaped] = ACTIONS(3061), - [sym__shortcode_open] = ACTIONS(3061), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3061), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3061), - [sym__cite_author_in_text] = ACTIONS(3061), - [sym__cite_suppress_author] = ACTIONS(3061), - [sym__strikeout_open] = ACTIONS(3061), - [sym__subscript_open] = ACTIONS(3061), - [sym__superscript_open] = ACTIONS(3061), - [sym__inline_note_start_token] = ACTIONS(3061), - [sym__strong_emphasis_open_star] = ACTIONS(3061), - [sym__strong_emphasis_open_underscore] = ACTIONS(3061), - [sym__emphasis_open_star] = ACTIONS(3061), - [sym__emphasis_open_underscore] = ACTIONS(3061), - [sym_inline_note_reference] = ACTIONS(3061), - [sym_html_element] = ACTIONS(3061), - [sym__pandoc_line_break] = ACTIONS(3061), - }, - [STATE(570)] = { - [sym__inlines] = STATE(2754), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1173), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3801), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(571)] = { - [sym__inlines] = STATE(2755), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1175), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3803), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(572)] = { - [anon_sym_COLON] = ACTIONS(3292), - [sym_entity_reference] = ACTIONS(3292), - [sym_numeric_character_reference] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_BANG_LBRACK] = ACTIONS(3292), - [anon_sym_DOLLAR] = ACTIONS(3294), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [aux_sym_pandoc_str_token1] = ACTIONS(3294), - [anon_sym_PIPE] = ACTIONS(3292), - [aux_sym__prose_punctuation_token1] = ACTIONS(3294), - [sym__line_ending] = ACTIONS(3292), - [sym__soft_line_ending] = ACTIONS(3292), - [sym__block_close] = ACTIONS(3292), - [sym__block_quote_start] = ACTIONS(3292), - [sym_atx_h1_marker] = ACTIONS(3292), - [sym_atx_h2_marker] = ACTIONS(3292), - [sym_atx_h3_marker] = ACTIONS(3292), - [sym_atx_h4_marker] = ACTIONS(3292), - [sym_atx_h5_marker] = ACTIONS(3292), - [sym_atx_h6_marker] = ACTIONS(3292), - [sym__thematic_break] = ACTIONS(3292), - [sym__list_marker_minus] = ACTIONS(3292), - [sym__list_marker_plus] = ACTIONS(3292), - [sym__list_marker_star] = ACTIONS(3292), - [sym__list_marker_parenthesis] = ACTIONS(3292), - [sym__list_marker_dot] = ACTIONS(3292), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_example] = ACTIONS(3292), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3292), - [sym__fenced_code_block_start_backtick] = ACTIONS(3292), - [sym_minus_metadata] = ACTIONS(3292), - [sym__pipe_table_start] = ACTIONS(3292), - [sym__fenced_div_start] = ACTIONS(3292), - [sym_ref_id_specifier] = ACTIONS(3292), - [sym__code_span_start] = ACTIONS(3292), - [sym__html_comment] = ACTIONS(3292), - [sym__autolink] = ACTIONS(3292), - [sym__highlight_span_start] = ACTIONS(3292), - [sym__insert_span_start] = ACTIONS(3292), - [sym__delete_span_start] = ACTIONS(3292), - [sym__edit_comment_span_start] = ACTIONS(3292), - [sym__single_quote_span_open] = ACTIONS(3292), - [sym__double_quote_span_open] = ACTIONS(3292), - [sym__shortcode_open_escaped] = ACTIONS(3292), - [sym__shortcode_open] = ACTIONS(3292), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3292), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3292), - [sym__cite_author_in_text] = ACTIONS(3292), - [sym__cite_suppress_author] = ACTIONS(3292), - [sym__strikeout_open] = ACTIONS(3292), - [sym__subscript_open] = ACTIONS(3292), - [sym__superscript_open] = ACTIONS(3292), - [sym__inline_note_start_token] = ACTIONS(3292), - [sym__strong_emphasis_open_star] = ACTIONS(3292), - [sym__strong_emphasis_open_underscore] = ACTIONS(3292), - [sym__emphasis_open_star] = ACTIONS(3292), - [sym__emphasis_open_underscore] = ACTIONS(3292), - [sym_inline_note_reference] = ACTIONS(3292), - [sym_html_element] = ACTIONS(3292), - [sym__pandoc_line_break] = ACTIONS(3292), - }, - [STATE(573)] = { - [anon_sym_COLON] = ACTIONS(3296), - [sym_entity_reference] = ACTIONS(3296), - [sym_numeric_character_reference] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_BANG_LBRACK] = ACTIONS(3296), - [anon_sym_DOLLAR] = ACTIONS(3298), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [aux_sym_pandoc_str_token1] = ACTIONS(3298), - [anon_sym_PIPE] = ACTIONS(3296), - [aux_sym__prose_punctuation_token1] = ACTIONS(3298), - [sym__line_ending] = ACTIONS(3296), - [sym__soft_line_ending] = ACTIONS(3296), - [sym__block_close] = ACTIONS(3296), - [sym__block_quote_start] = ACTIONS(3296), - [sym_atx_h1_marker] = ACTIONS(3296), - [sym_atx_h2_marker] = ACTIONS(3296), - [sym_atx_h3_marker] = ACTIONS(3296), - [sym_atx_h4_marker] = ACTIONS(3296), - [sym_atx_h5_marker] = ACTIONS(3296), - [sym_atx_h6_marker] = ACTIONS(3296), - [sym__thematic_break] = ACTIONS(3296), - [sym__list_marker_minus] = ACTIONS(3296), - [sym__list_marker_plus] = ACTIONS(3296), - [sym__list_marker_star] = ACTIONS(3296), - [sym__list_marker_parenthesis] = ACTIONS(3296), - [sym__list_marker_dot] = ACTIONS(3296), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_example] = ACTIONS(3296), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3296), - [sym__fenced_code_block_start_backtick] = ACTIONS(3296), - [sym_minus_metadata] = ACTIONS(3296), - [sym__pipe_table_start] = ACTIONS(3296), - [sym__fenced_div_start] = ACTIONS(3296), - [sym_ref_id_specifier] = ACTIONS(3296), - [sym__code_span_start] = ACTIONS(3296), - [sym__html_comment] = ACTIONS(3296), - [sym__autolink] = ACTIONS(3296), - [sym__highlight_span_start] = ACTIONS(3296), - [sym__insert_span_start] = ACTIONS(3296), - [sym__delete_span_start] = ACTIONS(3296), - [sym__edit_comment_span_start] = ACTIONS(3296), - [sym__single_quote_span_open] = ACTIONS(3296), - [sym__double_quote_span_open] = ACTIONS(3296), - [sym__shortcode_open_escaped] = ACTIONS(3296), - [sym__shortcode_open] = ACTIONS(3296), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3296), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3296), - [sym__cite_author_in_text] = ACTIONS(3296), - [sym__cite_suppress_author] = ACTIONS(3296), - [sym__strikeout_open] = ACTIONS(3296), - [sym__subscript_open] = ACTIONS(3296), - [sym__superscript_open] = ACTIONS(3296), - [sym__inline_note_start_token] = ACTIONS(3296), - [sym__strong_emphasis_open_star] = ACTIONS(3296), - [sym__strong_emphasis_open_underscore] = ACTIONS(3296), - [sym__emphasis_open_star] = ACTIONS(3296), - [sym__emphasis_open_underscore] = ACTIONS(3296), - [sym_inline_note_reference] = ACTIONS(3296), - [sym_html_element] = ACTIONS(3296), - [sym__pandoc_line_break] = ACTIONS(3296), - }, - [STATE(574)] = { - [anon_sym_COLON] = ACTIONS(3300), - [sym_entity_reference] = ACTIONS(3300), - [sym_numeric_character_reference] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_BANG_LBRACK] = ACTIONS(3300), - [anon_sym_DOLLAR] = ACTIONS(3302), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [aux_sym_pandoc_str_token1] = ACTIONS(3302), - [anon_sym_PIPE] = ACTIONS(3300), - [aux_sym__prose_punctuation_token1] = ACTIONS(3302), - [sym__line_ending] = ACTIONS(3300), - [sym__soft_line_ending] = ACTIONS(3300), - [sym__block_close] = ACTIONS(3300), - [sym__block_quote_start] = ACTIONS(3300), - [sym_atx_h1_marker] = ACTIONS(3300), - [sym_atx_h2_marker] = ACTIONS(3300), - [sym_atx_h3_marker] = ACTIONS(3300), - [sym_atx_h4_marker] = ACTIONS(3300), - [sym_atx_h5_marker] = ACTIONS(3300), - [sym_atx_h6_marker] = ACTIONS(3300), - [sym__thematic_break] = ACTIONS(3300), - [sym__list_marker_minus] = ACTIONS(3300), - [sym__list_marker_plus] = ACTIONS(3300), - [sym__list_marker_star] = ACTIONS(3300), - [sym__list_marker_parenthesis] = ACTIONS(3300), - [sym__list_marker_dot] = ACTIONS(3300), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_example] = ACTIONS(3300), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3300), - [sym__fenced_code_block_start_backtick] = ACTIONS(3300), - [sym_minus_metadata] = ACTIONS(3300), - [sym__pipe_table_start] = ACTIONS(3300), - [sym__fenced_div_start] = ACTIONS(3300), - [sym_ref_id_specifier] = ACTIONS(3300), - [sym__code_span_start] = ACTIONS(3300), - [sym__html_comment] = ACTIONS(3300), - [sym__autolink] = ACTIONS(3300), - [sym__highlight_span_start] = ACTIONS(3300), - [sym__insert_span_start] = ACTIONS(3300), - [sym__delete_span_start] = ACTIONS(3300), - [sym__edit_comment_span_start] = ACTIONS(3300), - [sym__single_quote_span_open] = ACTIONS(3300), - [sym__double_quote_span_open] = ACTIONS(3300), - [sym__shortcode_open_escaped] = ACTIONS(3300), - [sym__shortcode_open] = ACTIONS(3300), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3300), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3300), - [sym__cite_author_in_text] = ACTIONS(3300), - [sym__cite_suppress_author] = ACTIONS(3300), - [sym__strikeout_open] = ACTIONS(3300), - [sym__subscript_open] = ACTIONS(3300), - [sym__superscript_open] = ACTIONS(3300), - [sym__inline_note_start_token] = ACTIONS(3300), - [sym__strong_emphasis_open_star] = ACTIONS(3300), - [sym__strong_emphasis_open_underscore] = ACTIONS(3300), - [sym__emphasis_open_star] = ACTIONS(3300), - [sym__emphasis_open_underscore] = ACTIONS(3300), - [sym_inline_note_reference] = ACTIONS(3300), - [sym_html_element] = ACTIONS(3300), - [sym__pandoc_line_break] = ACTIONS(3300), - }, - [STATE(575)] = { - [ts_builtin_sym_end] = ACTIONS(3252), - [anon_sym_COLON] = ACTIONS(3252), - [sym_entity_reference] = ACTIONS(3252), - [sym_numeric_character_reference] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_BANG_LBRACK] = ACTIONS(3252), - [anon_sym_DOLLAR] = ACTIONS(3254), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [aux_sym_pandoc_str_token1] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3252), - [aux_sym__prose_punctuation_token1] = ACTIONS(3254), - [sym__line_ending] = ACTIONS(3252), - [sym__soft_line_ending] = ACTIONS(3252), - [sym__block_quote_start] = ACTIONS(3252), - [sym_atx_h1_marker] = ACTIONS(3252), - [sym_atx_h2_marker] = ACTIONS(3252), - [sym_atx_h3_marker] = ACTIONS(3252), - [sym_atx_h4_marker] = ACTIONS(3252), - [sym_atx_h5_marker] = ACTIONS(3252), - [sym_atx_h6_marker] = ACTIONS(3252), - [sym__thematic_break] = ACTIONS(3252), - [sym__list_marker_minus] = ACTIONS(3252), - [sym__list_marker_plus] = ACTIONS(3252), - [sym__list_marker_star] = ACTIONS(3252), - [sym__list_marker_parenthesis] = ACTIONS(3252), - [sym__list_marker_dot] = ACTIONS(3252), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_example] = ACTIONS(3252), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3252), - [sym__fenced_code_block_start_backtick] = ACTIONS(3252), - [sym_minus_metadata] = ACTIONS(3252), - [sym__pipe_table_start] = ACTIONS(3252), - [sym__fenced_div_start] = ACTIONS(3252), - [sym_ref_id_specifier] = ACTIONS(3252), - [sym__code_span_start] = ACTIONS(3252), - [sym__html_comment] = ACTIONS(3252), - [sym__autolink] = ACTIONS(3252), - [sym__highlight_span_start] = ACTIONS(3252), - [sym__insert_span_start] = ACTIONS(3252), - [sym__delete_span_start] = ACTIONS(3252), - [sym__edit_comment_span_start] = ACTIONS(3252), - [sym__single_quote_span_open] = ACTIONS(3252), - [sym__double_quote_span_open] = ACTIONS(3252), - [sym__shortcode_open_escaped] = ACTIONS(3252), - [sym__shortcode_open] = ACTIONS(3252), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3252), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3252), - [sym__cite_author_in_text] = ACTIONS(3252), - [sym__cite_suppress_author] = ACTIONS(3252), - [sym__strikeout_open] = ACTIONS(3252), - [sym__subscript_open] = ACTIONS(3252), - [sym__superscript_open] = ACTIONS(3252), - [sym__inline_note_start_token] = ACTIONS(3252), - [sym__strong_emphasis_open_star] = ACTIONS(3252), - [sym__strong_emphasis_open_underscore] = ACTIONS(3252), - [sym__emphasis_open_star] = ACTIONS(3252), - [sym__emphasis_open_underscore] = ACTIONS(3252), - [sym_inline_note_reference] = ACTIONS(3252), - [sym_html_element] = ACTIONS(3252), - [sym__pandoc_line_break] = ACTIONS(3252), - }, - [STATE(576)] = { - [ts_builtin_sym_end] = ACTIONS(3065), - [anon_sym_COLON] = ACTIONS(3065), - [sym_entity_reference] = ACTIONS(3065), - [sym_numeric_character_reference] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_BANG_LBRACK] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3065), - [aux_sym_pandoc_str_token1] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3065), - [aux_sym__prose_punctuation_token1] = ACTIONS(3067), - [sym__line_ending] = ACTIONS(3065), - [sym__soft_line_ending] = ACTIONS(3065), - [sym__block_quote_start] = ACTIONS(3065), - [sym_atx_h1_marker] = ACTIONS(3065), - [sym_atx_h2_marker] = ACTIONS(3065), - [sym_atx_h3_marker] = ACTIONS(3065), - [sym_atx_h4_marker] = ACTIONS(3065), - [sym_atx_h5_marker] = ACTIONS(3065), - [sym_atx_h6_marker] = ACTIONS(3065), - [sym__thematic_break] = ACTIONS(3065), - [sym__list_marker_minus] = ACTIONS(3065), - [sym__list_marker_plus] = ACTIONS(3065), - [sym__list_marker_star] = ACTIONS(3065), - [sym__list_marker_parenthesis] = ACTIONS(3065), - [sym__list_marker_dot] = ACTIONS(3065), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3065), - [sym__list_marker_example] = ACTIONS(3065), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3065), - [sym__fenced_code_block_start_backtick] = ACTIONS(3065), - [sym_minus_metadata] = ACTIONS(3065), - [sym__pipe_table_start] = ACTIONS(3065), - [sym__fenced_div_start] = ACTIONS(3065), - [sym_ref_id_specifier] = ACTIONS(3065), - [sym__code_span_start] = ACTIONS(3065), - [sym__html_comment] = ACTIONS(3065), - [sym__autolink] = ACTIONS(3065), - [sym__highlight_span_start] = ACTIONS(3065), - [sym__insert_span_start] = ACTIONS(3065), - [sym__delete_span_start] = ACTIONS(3065), - [sym__edit_comment_span_start] = ACTIONS(3065), - [sym__single_quote_span_open] = ACTIONS(3065), - [sym__double_quote_span_open] = ACTIONS(3065), - [sym__shortcode_open_escaped] = ACTIONS(3065), - [sym__shortcode_open] = ACTIONS(3065), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3065), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3065), - [sym__cite_author_in_text] = ACTIONS(3065), - [sym__cite_suppress_author] = ACTIONS(3065), - [sym__strikeout_open] = ACTIONS(3065), - [sym__subscript_open] = ACTIONS(3065), - [sym__superscript_open] = ACTIONS(3065), - [sym__inline_note_start_token] = ACTIONS(3065), - [sym__strong_emphasis_open_star] = ACTIONS(3065), - [sym__strong_emphasis_open_underscore] = ACTIONS(3065), - [sym__emphasis_open_star] = ACTIONS(3065), - [sym__emphasis_open_underscore] = ACTIONS(3065), - [sym_inline_note_reference] = ACTIONS(3065), - [sym_html_element] = ACTIONS(3065), - [sym__pandoc_line_break] = ACTIONS(3065), - }, - [STATE(577)] = { - [anon_sym_COLON] = ACTIONS(3248), - [sym_entity_reference] = ACTIONS(3248), - [sym_numeric_character_reference] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_BANG_LBRACK] = ACTIONS(3248), - [anon_sym_DOLLAR] = ACTIONS(3250), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [aux_sym_pandoc_str_token1] = ACTIONS(3250), - [anon_sym_PIPE] = ACTIONS(3248), - [aux_sym__prose_punctuation_token1] = ACTIONS(3250), - [sym__line_ending] = ACTIONS(3248), - [sym__soft_line_ending] = ACTIONS(3248), - [sym__block_close] = ACTIONS(3248), - [sym__block_quote_start] = ACTIONS(3248), - [sym_atx_h1_marker] = ACTIONS(3248), - [sym_atx_h2_marker] = ACTIONS(3248), - [sym_atx_h3_marker] = ACTIONS(3248), - [sym_atx_h4_marker] = ACTIONS(3248), - [sym_atx_h5_marker] = ACTIONS(3248), - [sym_atx_h6_marker] = ACTIONS(3248), - [sym__thematic_break] = ACTIONS(3248), - [sym__list_marker_minus] = ACTIONS(3248), - [sym__list_marker_plus] = ACTIONS(3248), - [sym__list_marker_star] = ACTIONS(3248), - [sym__list_marker_parenthesis] = ACTIONS(3248), - [sym__list_marker_dot] = ACTIONS(3248), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3248), - [sym__list_marker_example] = ACTIONS(3248), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3248), - [sym__fenced_code_block_start_backtick] = ACTIONS(3248), - [sym_minus_metadata] = ACTIONS(3248), - [sym__pipe_table_start] = ACTIONS(3248), - [sym__fenced_div_start] = ACTIONS(3248), - [sym_ref_id_specifier] = ACTIONS(3248), - [sym__code_span_start] = ACTIONS(3248), - [sym__html_comment] = ACTIONS(3248), - [sym__autolink] = ACTIONS(3248), - [sym__highlight_span_start] = ACTIONS(3248), - [sym__insert_span_start] = ACTIONS(3248), - [sym__delete_span_start] = ACTIONS(3248), - [sym__edit_comment_span_start] = ACTIONS(3248), - [sym__single_quote_span_open] = ACTIONS(3248), - [sym__double_quote_span_open] = ACTIONS(3248), - [sym__shortcode_open_escaped] = ACTIONS(3248), - [sym__shortcode_open] = ACTIONS(3248), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3248), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3248), - [sym__cite_author_in_text] = ACTIONS(3248), - [sym__cite_suppress_author] = ACTIONS(3248), - [sym__strikeout_open] = ACTIONS(3248), - [sym__subscript_open] = ACTIONS(3248), - [sym__superscript_open] = ACTIONS(3248), - [sym__inline_note_start_token] = ACTIONS(3248), - [sym__strong_emphasis_open_star] = ACTIONS(3248), - [sym__strong_emphasis_open_underscore] = ACTIONS(3248), - [sym__emphasis_open_star] = ACTIONS(3248), - [sym__emphasis_open_underscore] = ACTIONS(3248), - [sym_inline_note_reference] = ACTIONS(3248), - [sym_html_element] = ACTIONS(3248), - [sym__pandoc_line_break] = ACTIONS(3248), - }, - [STATE(578)] = { - [sym__inlines] = STATE(2777), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(954), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3805), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(579)] = { - [sym__inlines] = STATE(2778), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(956), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3807), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(580)] = { - [ts_builtin_sym_end] = ACTIONS(3288), - [anon_sym_COLON] = ACTIONS(3288), - [sym_entity_reference] = ACTIONS(3288), - [sym_numeric_character_reference] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_BANG_LBRACK] = ACTIONS(3288), - [anon_sym_DOLLAR] = ACTIONS(3290), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [aux_sym_pandoc_str_token1] = ACTIONS(3290), - [anon_sym_PIPE] = ACTIONS(3288), - [aux_sym__prose_punctuation_token1] = ACTIONS(3290), - [sym__line_ending] = ACTIONS(3288), - [sym__soft_line_ending] = ACTIONS(3288), - [sym__block_quote_start] = ACTIONS(3288), - [sym_atx_h1_marker] = ACTIONS(3288), - [sym_atx_h2_marker] = ACTIONS(3288), - [sym_atx_h3_marker] = ACTIONS(3288), - [sym_atx_h4_marker] = ACTIONS(3288), - [sym_atx_h5_marker] = ACTIONS(3288), - [sym_atx_h6_marker] = ACTIONS(3288), - [sym__thematic_break] = ACTIONS(3288), - [sym__list_marker_minus] = ACTIONS(3288), - [sym__list_marker_plus] = ACTIONS(3288), - [sym__list_marker_star] = ACTIONS(3288), - [sym__list_marker_parenthesis] = ACTIONS(3288), - [sym__list_marker_dot] = ACTIONS(3288), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3288), - [sym__list_marker_example] = ACTIONS(3288), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3288), - [sym__fenced_code_block_start_backtick] = ACTIONS(3288), - [sym_minus_metadata] = ACTIONS(3288), - [sym__pipe_table_start] = ACTIONS(3288), - [sym__fenced_div_start] = ACTIONS(3288), - [sym_ref_id_specifier] = ACTIONS(3288), - [sym__code_span_start] = ACTIONS(3288), - [sym__html_comment] = ACTIONS(3288), - [sym__autolink] = ACTIONS(3288), - [sym__highlight_span_start] = ACTIONS(3288), - [sym__insert_span_start] = ACTIONS(3288), - [sym__delete_span_start] = ACTIONS(3288), - [sym__edit_comment_span_start] = ACTIONS(3288), - [sym__single_quote_span_open] = ACTIONS(3288), - [sym__double_quote_span_open] = ACTIONS(3288), - [sym__shortcode_open_escaped] = ACTIONS(3288), - [sym__shortcode_open] = ACTIONS(3288), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3288), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3288), - [sym__cite_author_in_text] = ACTIONS(3288), - [sym__cite_suppress_author] = ACTIONS(3288), - [sym__strikeout_open] = ACTIONS(3288), - [sym__subscript_open] = ACTIONS(3288), - [sym__superscript_open] = ACTIONS(3288), - [sym__inline_note_start_token] = ACTIONS(3288), - [sym__strong_emphasis_open_star] = ACTIONS(3288), - [sym__strong_emphasis_open_underscore] = ACTIONS(3288), - [sym__emphasis_open_star] = ACTIONS(3288), - [sym__emphasis_open_underscore] = ACTIONS(3288), - [sym_inline_note_reference] = ACTIONS(3288), - [sym_html_element] = ACTIONS(3288), - [sym__pandoc_line_break] = ACTIONS(3288), - }, - [STATE(581)] = { - [ts_builtin_sym_end] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(3292), - [sym_entity_reference] = ACTIONS(3292), - [sym_numeric_character_reference] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_BANG_LBRACK] = ACTIONS(3292), - [anon_sym_DOLLAR] = ACTIONS(3294), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [aux_sym_pandoc_str_token1] = ACTIONS(3294), - [anon_sym_PIPE] = ACTIONS(3292), - [aux_sym__prose_punctuation_token1] = ACTIONS(3294), - [sym__line_ending] = ACTIONS(3292), - [sym__soft_line_ending] = ACTIONS(3292), - [sym__block_quote_start] = ACTIONS(3292), - [sym_atx_h1_marker] = ACTIONS(3292), - [sym_atx_h2_marker] = ACTIONS(3292), - [sym_atx_h3_marker] = ACTIONS(3292), - [sym_atx_h4_marker] = ACTIONS(3292), - [sym_atx_h5_marker] = ACTIONS(3292), - [sym_atx_h6_marker] = ACTIONS(3292), - [sym__thematic_break] = ACTIONS(3292), - [sym__list_marker_minus] = ACTIONS(3292), - [sym__list_marker_plus] = ACTIONS(3292), - [sym__list_marker_star] = ACTIONS(3292), - [sym__list_marker_parenthesis] = ACTIONS(3292), - [sym__list_marker_dot] = ACTIONS(3292), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3292), - [sym__list_marker_example] = ACTIONS(3292), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3292), - [sym__fenced_code_block_start_backtick] = ACTIONS(3292), - [sym_minus_metadata] = ACTIONS(3292), - [sym__pipe_table_start] = ACTIONS(3292), - [sym__fenced_div_start] = ACTIONS(3292), - [sym_ref_id_specifier] = ACTIONS(3292), - [sym__code_span_start] = ACTIONS(3292), - [sym__html_comment] = ACTIONS(3292), - [sym__autolink] = ACTIONS(3292), - [sym__highlight_span_start] = ACTIONS(3292), - [sym__insert_span_start] = ACTIONS(3292), - [sym__delete_span_start] = ACTIONS(3292), - [sym__edit_comment_span_start] = ACTIONS(3292), - [sym__single_quote_span_open] = ACTIONS(3292), - [sym__double_quote_span_open] = ACTIONS(3292), - [sym__shortcode_open_escaped] = ACTIONS(3292), - [sym__shortcode_open] = ACTIONS(3292), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3292), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3292), - [sym__cite_author_in_text] = ACTIONS(3292), - [sym__cite_suppress_author] = ACTIONS(3292), - [sym__strikeout_open] = ACTIONS(3292), - [sym__subscript_open] = ACTIONS(3292), - [sym__superscript_open] = ACTIONS(3292), - [sym__inline_note_start_token] = ACTIONS(3292), - [sym__strong_emphasis_open_star] = ACTIONS(3292), - [sym__strong_emphasis_open_underscore] = ACTIONS(3292), - [sym__emphasis_open_star] = ACTIONS(3292), - [sym__emphasis_open_underscore] = ACTIONS(3292), - [sym_inline_note_reference] = ACTIONS(3292), - [sym_html_element] = ACTIONS(3292), - [sym__pandoc_line_break] = ACTIONS(3292), - }, - [STATE(582)] = { - [ts_builtin_sym_end] = ACTIONS(3296), - [anon_sym_COLON] = ACTIONS(3296), - [sym_entity_reference] = ACTIONS(3296), - [sym_numeric_character_reference] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_BANG_LBRACK] = ACTIONS(3296), - [anon_sym_DOLLAR] = ACTIONS(3298), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [aux_sym_pandoc_str_token1] = ACTIONS(3298), - [anon_sym_PIPE] = ACTIONS(3296), - [aux_sym__prose_punctuation_token1] = ACTIONS(3298), - [sym__line_ending] = ACTIONS(3296), - [sym__soft_line_ending] = ACTIONS(3296), - [sym__block_quote_start] = ACTIONS(3296), - [sym_atx_h1_marker] = ACTIONS(3296), - [sym_atx_h2_marker] = ACTIONS(3296), - [sym_atx_h3_marker] = ACTIONS(3296), - [sym_atx_h4_marker] = ACTIONS(3296), - [sym_atx_h5_marker] = ACTIONS(3296), - [sym_atx_h6_marker] = ACTIONS(3296), - [sym__thematic_break] = ACTIONS(3296), - [sym__list_marker_minus] = ACTIONS(3296), - [sym__list_marker_plus] = ACTIONS(3296), - [sym__list_marker_star] = ACTIONS(3296), - [sym__list_marker_parenthesis] = ACTIONS(3296), - [sym__list_marker_dot] = ACTIONS(3296), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3296), - [sym__list_marker_example] = ACTIONS(3296), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3296), - [sym__fenced_code_block_start_backtick] = ACTIONS(3296), - [sym_minus_metadata] = ACTIONS(3296), - [sym__pipe_table_start] = ACTIONS(3296), - [sym__fenced_div_start] = ACTIONS(3296), - [sym_ref_id_specifier] = ACTIONS(3296), - [sym__code_span_start] = ACTIONS(3296), - [sym__html_comment] = ACTIONS(3296), - [sym__autolink] = ACTIONS(3296), - [sym__highlight_span_start] = ACTIONS(3296), - [sym__insert_span_start] = ACTIONS(3296), - [sym__delete_span_start] = ACTIONS(3296), - [sym__edit_comment_span_start] = ACTIONS(3296), - [sym__single_quote_span_open] = ACTIONS(3296), - [sym__double_quote_span_open] = ACTIONS(3296), - [sym__shortcode_open_escaped] = ACTIONS(3296), - [sym__shortcode_open] = ACTIONS(3296), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3296), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3296), - [sym__cite_author_in_text] = ACTIONS(3296), - [sym__cite_suppress_author] = ACTIONS(3296), - [sym__strikeout_open] = ACTIONS(3296), - [sym__subscript_open] = ACTIONS(3296), - [sym__superscript_open] = ACTIONS(3296), - [sym__inline_note_start_token] = ACTIONS(3296), - [sym__strong_emphasis_open_star] = ACTIONS(3296), - [sym__strong_emphasis_open_underscore] = ACTIONS(3296), - [sym__emphasis_open_star] = ACTIONS(3296), - [sym__emphasis_open_underscore] = ACTIONS(3296), - [sym_inline_note_reference] = ACTIONS(3296), - [sym_html_element] = ACTIONS(3296), - [sym__pandoc_line_break] = ACTIONS(3296), - }, - [STATE(583)] = { - [ts_builtin_sym_end] = ACTIONS(3300), - [anon_sym_COLON] = ACTIONS(3300), - [sym_entity_reference] = ACTIONS(3300), - [sym_numeric_character_reference] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3300), - [anon_sym_BANG_LBRACK] = ACTIONS(3300), - [anon_sym_DOLLAR] = ACTIONS(3302), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3300), - [aux_sym_pandoc_str_token1] = ACTIONS(3302), - [anon_sym_PIPE] = ACTIONS(3300), - [aux_sym__prose_punctuation_token1] = ACTIONS(3302), - [sym__line_ending] = ACTIONS(3300), - [sym__soft_line_ending] = ACTIONS(3300), - [sym__block_quote_start] = ACTIONS(3300), - [sym_atx_h1_marker] = ACTIONS(3300), - [sym_atx_h2_marker] = ACTIONS(3300), - [sym_atx_h3_marker] = ACTIONS(3300), - [sym_atx_h4_marker] = ACTIONS(3300), - [sym_atx_h5_marker] = ACTIONS(3300), - [sym_atx_h6_marker] = ACTIONS(3300), - [sym__thematic_break] = ACTIONS(3300), - [sym__list_marker_minus] = ACTIONS(3300), - [sym__list_marker_plus] = ACTIONS(3300), - [sym__list_marker_star] = ACTIONS(3300), - [sym__list_marker_parenthesis] = ACTIONS(3300), - [sym__list_marker_dot] = ACTIONS(3300), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3300), - [sym__list_marker_example] = ACTIONS(3300), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3300), - [sym__fenced_code_block_start_backtick] = ACTIONS(3300), - [sym_minus_metadata] = ACTIONS(3300), - [sym__pipe_table_start] = ACTIONS(3300), - [sym__fenced_div_start] = ACTIONS(3300), - [sym_ref_id_specifier] = ACTIONS(3300), - [sym__code_span_start] = ACTIONS(3300), - [sym__html_comment] = ACTIONS(3300), - [sym__autolink] = ACTIONS(3300), - [sym__highlight_span_start] = ACTIONS(3300), - [sym__insert_span_start] = ACTIONS(3300), - [sym__delete_span_start] = ACTIONS(3300), - [sym__edit_comment_span_start] = ACTIONS(3300), - [sym__single_quote_span_open] = ACTIONS(3300), - [sym__double_quote_span_open] = ACTIONS(3300), - [sym__shortcode_open_escaped] = ACTIONS(3300), - [sym__shortcode_open] = ACTIONS(3300), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3300), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3300), - [sym__cite_author_in_text] = ACTIONS(3300), - [sym__cite_suppress_author] = ACTIONS(3300), - [sym__strikeout_open] = ACTIONS(3300), - [sym__subscript_open] = ACTIONS(3300), - [sym__superscript_open] = ACTIONS(3300), - [sym__inline_note_start_token] = ACTIONS(3300), - [sym__strong_emphasis_open_star] = ACTIONS(3300), - [sym__strong_emphasis_open_underscore] = ACTIONS(3300), - [sym__emphasis_open_star] = ACTIONS(3300), - [sym__emphasis_open_underscore] = ACTIONS(3300), - [sym_inline_note_reference] = ACTIONS(3300), - [sym_html_element] = ACTIONS(3300), - [sym__pandoc_line_break] = ACTIONS(3300), - }, - [STATE(584)] = { - [ts_builtin_sym_end] = ACTIONS(3242), - [anon_sym_COLON] = ACTIONS(3242), - [sym_entity_reference] = ACTIONS(3242), - [sym_numeric_character_reference] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_BANG_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [aux_sym_pandoc_str_token1] = ACTIONS(3244), - [anon_sym_PIPE] = ACTIONS(3242), - [aux_sym__prose_punctuation_token1] = ACTIONS(3244), - [sym__line_ending] = ACTIONS(3242), - [sym__soft_line_ending] = ACTIONS(3242), - [sym__block_quote_start] = ACTIONS(3242), - [sym_atx_h1_marker] = ACTIONS(3242), - [sym_atx_h2_marker] = ACTIONS(3242), - [sym_atx_h3_marker] = ACTIONS(3242), - [sym_atx_h4_marker] = ACTIONS(3242), - [sym_atx_h5_marker] = ACTIONS(3242), - [sym_atx_h6_marker] = ACTIONS(3242), - [sym__thematic_break] = ACTIONS(3242), - [sym__list_marker_minus] = ACTIONS(3242), - [sym__list_marker_plus] = ACTIONS(3242), - [sym__list_marker_star] = ACTIONS(3242), - [sym__list_marker_parenthesis] = ACTIONS(3242), - [sym__list_marker_dot] = ACTIONS(3242), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3242), - [sym__list_marker_example] = ACTIONS(3242), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3242), - [sym__fenced_code_block_start_backtick] = ACTIONS(3242), - [sym_minus_metadata] = ACTIONS(3242), - [sym__pipe_table_start] = ACTIONS(3242), - [sym__fenced_div_start] = ACTIONS(3242), - [sym_ref_id_specifier] = ACTIONS(3242), - [sym__code_span_start] = ACTIONS(3242), - [sym__html_comment] = ACTIONS(3242), - [sym__autolink] = ACTIONS(3242), - [sym__highlight_span_start] = ACTIONS(3242), - [sym__insert_span_start] = ACTIONS(3242), - [sym__delete_span_start] = ACTIONS(3242), - [sym__edit_comment_span_start] = ACTIONS(3242), - [sym__single_quote_span_open] = ACTIONS(3242), - [sym__double_quote_span_open] = ACTIONS(3242), - [sym__shortcode_open_escaped] = ACTIONS(3242), - [sym__shortcode_open] = ACTIONS(3242), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3242), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3242), - [sym__cite_author_in_text] = ACTIONS(3242), - [sym__cite_suppress_author] = ACTIONS(3242), - [sym__strikeout_open] = ACTIONS(3242), - [sym__subscript_open] = ACTIONS(3242), - [sym__superscript_open] = ACTIONS(3242), - [sym__inline_note_start_token] = ACTIONS(3242), - [sym__strong_emphasis_open_star] = ACTIONS(3242), - [sym__strong_emphasis_open_underscore] = ACTIONS(3242), - [sym__emphasis_open_star] = ACTIONS(3242), - [sym__emphasis_open_underscore] = ACTIONS(3242), - [sym_inline_note_reference] = ACTIONS(3242), - [sym_html_element] = ACTIONS(3242), - [sym__pandoc_line_break] = ACTIONS(3242), - }, - [STATE(585)] = { - [sym__inlines] = STATE(2800), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1756), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3809), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(586)] = { - [sym__inlines] = STATE(2801), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1758), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3811), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(587)] = { - [anon_sym_COLON] = ACTIONS(3399), - [sym_entity_reference] = ACTIONS(3399), - [sym_numeric_character_reference] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_BANG_LBRACK] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [aux_sym_pandoc_str_token1] = ACTIONS(3401), - [anon_sym_PIPE] = ACTIONS(3399), - [aux_sym__prose_punctuation_token1] = ACTIONS(3401), - [sym__line_ending] = ACTIONS(3399), - [sym__soft_line_ending] = ACTIONS(3399), - [sym__block_close] = ACTIONS(3399), - [sym__block_quote_start] = ACTIONS(3399), - [sym_atx_h1_marker] = ACTIONS(3399), - [sym_atx_h2_marker] = ACTIONS(3399), - [sym_atx_h3_marker] = ACTIONS(3399), - [sym_atx_h4_marker] = ACTIONS(3399), - [sym_atx_h5_marker] = ACTIONS(3399), - [sym_atx_h6_marker] = ACTIONS(3399), - [sym__thematic_break] = ACTIONS(3399), - [sym__list_marker_minus] = ACTIONS(3399), - [sym__list_marker_plus] = ACTIONS(3399), - [sym__list_marker_star] = ACTIONS(3399), - [sym__list_marker_parenthesis] = ACTIONS(3399), - [sym__list_marker_dot] = ACTIONS(3399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_example] = ACTIONS(3399), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3399), - [sym__fenced_code_block_start_backtick] = ACTIONS(3399), - [sym_minus_metadata] = ACTIONS(3399), - [sym__pipe_table_start] = ACTIONS(3399), - [sym__fenced_div_start] = ACTIONS(3399), - [sym_ref_id_specifier] = ACTIONS(3399), - [sym__code_span_start] = ACTIONS(3399), - [sym__html_comment] = ACTIONS(3399), - [sym__autolink] = ACTIONS(3399), - [sym__highlight_span_start] = ACTIONS(3399), - [sym__insert_span_start] = ACTIONS(3399), - [sym__delete_span_start] = ACTIONS(3399), - [sym__edit_comment_span_start] = ACTIONS(3399), - [sym__single_quote_span_open] = ACTIONS(3399), - [sym__double_quote_span_open] = ACTIONS(3399), - [sym__shortcode_open_escaped] = ACTIONS(3399), - [sym__shortcode_open] = ACTIONS(3399), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3399), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3399), - [sym__cite_author_in_text] = ACTIONS(3399), - [sym__cite_suppress_author] = ACTIONS(3399), - [sym__strikeout_open] = ACTIONS(3399), - [sym__subscript_open] = ACTIONS(3399), - [sym__superscript_open] = ACTIONS(3399), - [sym__inline_note_start_token] = ACTIONS(3399), - [sym__strong_emphasis_open_star] = ACTIONS(3399), - [sym__strong_emphasis_open_underscore] = ACTIONS(3399), - [sym__emphasis_open_star] = ACTIONS(3399), - [sym__emphasis_open_underscore] = ACTIONS(3399), - [sym_inline_note_reference] = ACTIONS(3399), - [sym_html_element] = ACTIONS(3399), - [sym__pandoc_line_break] = ACTIONS(3399), - }, - [STATE(588)] = { - [anon_sym_COLON] = ACTIONS(3252), - [sym_entity_reference] = ACTIONS(3252), - [sym_numeric_character_reference] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_BANG_LBRACK] = ACTIONS(3252), - [anon_sym_DOLLAR] = ACTIONS(3254), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [aux_sym_pandoc_str_token1] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3252), - [aux_sym__prose_punctuation_token1] = ACTIONS(3254), - [sym__line_ending] = ACTIONS(3252), - [sym__soft_line_ending] = ACTIONS(3252), - [sym__block_close] = ACTIONS(3252), - [sym__block_quote_start] = ACTIONS(3252), - [sym_atx_h1_marker] = ACTIONS(3252), - [sym_atx_h2_marker] = ACTIONS(3252), - [sym_atx_h3_marker] = ACTIONS(3252), - [sym_atx_h4_marker] = ACTIONS(3252), - [sym_atx_h5_marker] = ACTIONS(3252), - [sym_atx_h6_marker] = ACTIONS(3252), - [sym__thematic_break] = ACTIONS(3252), - [sym__list_marker_minus] = ACTIONS(3252), - [sym__list_marker_plus] = ACTIONS(3252), - [sym__list_marker_star] = ACTIONS(3252), - [sym__list_marker_parenthesis] = ACTIONS(3252), - [sym__list_marker_dot] = ACTIONS(3252), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3252), - [sym__list_marker_example] = ACTIONS(3252), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3252), - [sym__fenced_code_block_start_backtick] = ACTIONS(3252), - [sym_minus_metadata] = ACTIONS(3252), - [sym__pipe_table_start] = ACTIONS(3252), - [sym__fenced_div_start] = ACTIONS(3252), - [sym_ref_id_specifier] = ACTIONS(3252), - [sym__code_span_start] = ACTIONS(3252), - [sym__html_comment] = ACTIONS(3252), - [sym__autolink] = ACTIONS(3252), - [sym__highlight_span_start] = ACTIONS(3252), - [sym__insert_span_start] = ACTIONS(3252), - [sym__delete_span_start] = ACTIONS(3252), - [sym__edit_comment_span_start] = ACTIONS(3252), - [sym__single_quote_span_open] = ACTIONS(3252), - [sym__double_quote_span_open] = ACTIONS(3252), - [sym__shortcode_open_escaped] = ACTIONS(3252), - [sym__shortcode_open] = ACTIONS(3252), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3252), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3252), - [sym__cite_author_in_text] = ACTIONS(3252), - [sym__cite_suppress_author] = ACTIONS(3252), - [sym__strikeout_open] = ACTIONS(3252), - [sym__subscript_open] = ACTIONS(3252), - [sym__superscript_open] = ACTIONS(3252), - [sym__inline_note_start_token] = ACTIONS(3252), - [sym__strong_emphasis_open_star] = ACTIONS(3252), - [sym__strong_emphasis_open_underscore] = ACTIONS(3252), - [sym__emphasis_open_star] = ACTIONS(3252), - [sym__emphasis_open_underscore] = ACTIONS(3252), - [sym_inline_note_reference] = ACTIONS(3252), - [sym_html_element] = ACTIONS(3252), - [sym__pandoc_line_break] = ACTIONS(3252), - }, - [STATE(589)] = { - [sym__inlines] = STATE(2823), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(928), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3813), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(590)] = { - [sym__inlines] = STATE(2824), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(908), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3815), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(591)] = { - [sym_pandoc_span] = STATE(610), - [sym_pandoc_image] = STATE(610), - [sym_pandoc_math] = STATE(610), - [sym_pandoc_display_math] = STATE(610), - [sym_pandoc_code_span] = STATE(610), - [sym_pandoc_single_quote] = STATE(610), - [sym_pandoc_double_quote] = STATE(610), - [sym_insert] = STATE(610), - [sym_delete] = STATE(610), - [sym_edit_comment] = STATE(610), - [sym_highlight] = STATE(610), - [sym__pandoc_attr_specifier] = STATE(610), - [sym__inline_element] = STATE(610), - [sym_shortcode_escaped] = STATE(610), - [sym_shortcode] = STATE(610), - [sym_citation] = STATE(610), - [sym_inline_note] = STATE(610), - [sym_pandoc_superscript] = STATE(610), - [sym_pandoc_subscript] = STATE(610), - [sym_pandoc_strikeout] = STATE(610), - [sym_pandoc_emph] = STATE(610), - [sym_pandoc_strong] = STATE(610), - [sym_pandoc_str] = STATE(610), - [sym__prose_punctuation] = STATE(610), - [aux_sym__line_repeat1] = STATE(610), - [sym_entity_reference] = ACTIONS(3817), - [sym_numeric_character_reference] = ACTIONS(3817), + [STATE(465)] = { + [sym__inlines] = STATE(3648), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(749), + [sym__inline_whitespace] = STATE(749), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3123), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3125), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(466)] = { + [sym__inlines] = STATE(3653), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(672), + [sym__inline_whitespace] = STATE(672), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3127), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3129), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(467)] = { + [ts_builtin_sym_end] = ACTIONS(2821), + [anon_sym_COLON] = ACTIONS(2821), + [sym_entity_reference] = ACTIONS(2821), + [sym_numeric_character_reference] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_BANG_LBRACK] = ACTIONS(2821), + [anon_sym_DOLLAR] = ACTIONS(2823), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [aux_sym_pandoc_str_token1] = ACTIONS(2823), + [anon_sym_PIPE] = ACTIONS(2821), + [sym__whitespace] = ACTIONS(2821), + [sym__line_ending] = ACTIONS(2821), + [sym__soft_line_ending] = ACTIONS(2821), + [sym__block_quote_start] = ACTIONS(2821), + [sym_atx_h1_marker] = ACTIONS(2821), + [sym_atx_h2_marker] = ACTIONS(2821), + [sym_atx_h3_marker] = ACTIONS(2821), + [sym_atx_h4_marker] = ACTIONS(2821), + [sym_atx_h5_marker] = ACTIONS(2821), + [sym_atx_h6_marker] = ACTIONS(2821), + [sym__thematic_break] = ACTIONS(2821), + [sym__list_marker_minus] = ACTIONS(2821), + [sym__list_marker_plus] = ACTIONS(2821), + [sym__list_marker_star] = ACTIONS(2821), + [sym__list_marker_parenthesis] = ACTIONS(2821), + [sym__list_marker_dot] = ACTIONS(2821), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2821), + [sym__list_marker_example] = ACTIONS(2821), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2821), + [sym__fenced_code_block_start_backtick] = ACTIONS(2821), + [sym_minus_metadata] = ACTIONS(2821), + [sym__pipe_table_start] = ACTIONS(2821), + [sym__fenced_div_start] = ACTIONS(2821), + [sym_ref_id_specifier] = ACTIONS(2821), + [sym__code_span_start] = ACTIONS(2821), + [sym__html_comment] = ACTIONS(2821), + [sym__autolink] = ACTIONS(2821), + [sym__highlight_span_start] = ACTIONS(2821), + [sym__insert_span_start] = ACTIONS(2821), + [sym__delete_span_start] = ACTIONS(2821), + [sym__edit_comment_span_start] = ACTIONS(2821), + [sym__single_quote_span_open] = ACTIONS(2821), + [sym__double_quote_span_open] = ACTIONS(2821), + [sym__shortcode_open_escaped] = ACTIONS(2821), + [sym__shortcode_open] = ACTIONS(2821), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2821), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2821), + [sym__cite_author_in_text] = ACTIONS(2821), + [sym__cite_suppress_author] = ACTIONS(2821), + [sym__strikeout_open] = ACTIONS(2821), + [sym__subscript_open] = ACTIONS(2821), + [sym__superscript_open] = ACTIONS(2821), + [sym__inline_note_start_token] = ACTIONS(2821), + [sym__strong_emphasis_open_star] = ACTIONS(2821), + [sym__strong_emphasis_open_underscore] = ACTIONS(2821), + [sym__emphasis_open_star] = ACTIONS(2821), + [sym__emphasis_open_underscore] = ACTIONS(2821), + [sym_inline_note_reference] = ACTIONS(2821), + [sym_html_element] = ACTIONS(2821), + [sym__pandoc_line_break] = ACTIONS(2821), + }, + [STATE(468)] = { + [ts_builtin_sym_end] = ACTIONS(2825), + [anon_sym_COLON] = ACTIONS(2825), + [sym_entity_reference] = ACTIONS(2825), + [sym_numeric_character_reference] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_BANG_LBRACK] = ACTIONS(2825), + [anon_sym_DOLLAR] = ACTIONS(2827), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2825), + [aux_sym_pandoc_str_token1] = ACTIONS(2827), + [anon_sym_PIPE] = ACTIONS(2825), + [sym__whitespace] = ACTIONS(2825), + [sym__line_ending] = ACTIONS(2825), + [sym__soft_line_ending] = ACTIONS(2825), + [sym__block_quote_start] = ACTIONS(2825), + [sym_atx_h1_marker] = ACTIONS(2825), + [sym_atx_h2_marker] = ACTIONS(2825), + [sym_atx_h3_marker] = ACTIONS(2825), + [sym_atx_h4_marker] = ACTIONS(2825), + [sym_atx_h5_marker] = ACTIONS(2825), + [sym_atx_h6_marker] = ACTIONS(2825), + [sym__thematic_break] = ACTIONS(2825), + [sym__list_marker_minus] = ACTIONS(2825), + [sym__list_marker_plus] = ACTIONS(2825), + [sym__list_marker_star] = ACTIONS(2825), + [sym__list_marker_parenthesis] = ACTIONS(2825), + [sym__list_marker_dot] = ACTIONS(2825), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2825), + [sym__list_marker_example] = ACTIONS(2825), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2825), + [sym__fenced_code_block_start_backtick] = ACTIONS(2825), + [sym_minus_metadata] = ACTIONS(2825), + [sym__pipe_table_start] = ACTIONS(2825), + [sym__fenced_div_start] = ACTIONS(2825), + [sym_ref_id_specifier] = ACTIONS(2825), + [sym__code_span_start] = ACTIONS(2825), + [sym__html_comment] = ACTIONS(2825), + [sym__autolink] = ACTIONS(2825), + [sym__highlight_span_start] = ACTIONS(2825), + [sym__insert_span_start] = ACTIONS(2825), + [sym__delete_span_start] = ACTIONS(2825), + [sym__edit_comment_span_start] = ACTIONS(2825), + [sym__single_quote_span_open] = ACTIONS(2825), + [sym__double_quote_span_open] = ACTIONS(2825), + [sym__shortcode_open_escaped] = ACTIONS(2825), + [sym__shortcode_open] = ACTIONS(2825), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2825), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2825), + [sym__cite_author_in_text] = ACTIONS(2825), + [sym__cite_suppress_author] = ACTIONS(2825), + [sym__strikeout_open] = ACTIONS(2825), + [sym__subscript_open] = ACTIONS(2825), + [sym__superscript_open] = ACTIONS(2825), + [sym__inline_note_start_token] = ACTIONS(2825), + [sym__strong_emphasis_open_star] = ACTIONS(2825), + [sym__strong_emphasis_open_underscore] = ACTIONS(2825), + [sym__emphasis_open_star] = ACTIONS(2825), + [sym__emphasis_open_underscore] = ACTIONS(2825), + [sym_inline_note_reference] = ACTIONS(2825), + [sym_html_element] = ACTIONS(2825), + [sym__pandoc_line_break] = ACTIONS(2825), + }, + [STATE(469)] = { + [sym__inlines] = STATE(4140), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(746), + [sym__inline_whitespace] = STATE(746), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3131), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3133), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(470)] = { + [sym__inlines] = STATE(4144), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(696), + [sym__inline_whitespace] = STATE(696), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3135), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3137), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(471)] = { + [sym__inlines] = STATE(4146), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(697), + [sym__inline_whitespace] = STATE(697), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3139), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3141), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(472)] = { + [sym__inlines] = STATE(4150), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(673), + [sym__inline_whitespace] = STATE(673), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3145), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(473)] = { + [ts_builtin_sym_end] = ACTIONS(2829), + [anon_sym_COLON] = ACTIONS(2829), + [sym_entity_reference] = ACTIONS(2829), + [sym_numeric_character_reference] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_BANG_LBRACK] = ACTIONS(2829), + [anon_sym_DOLLAR] = ACTIONS(2831), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [aux_sym_pandoc_str_token1] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2829), + [sym__whitespace] = ACTIONS(2829), + [sym__line_ending] = ACTIONS(2829), + [sym__soft_line_ending] = ACTIONS(2829), + [sym__block_quote_start] = ACTIONS(2829), + [sym_atx_h1_marker] = ACTIONS(2829), + [sym_atx_h2_marker] = ACTIONS(2829), + [sym_atx_h3_marker] = ACTIONS(2829), + [sym_atx_h4_marker] = ACTIONS(2829), + [sym_atx_h5_marker] = ACTIONS(2829), + [sym_atx_h6_marker] = ACTIONS(2829), + [sym__thematic_break] = ACTIONS(2829), + [sym__list_marker_minus] = ACTIONS(2829), + [sym__list_marker_plus] = ACTIONS(2829), + [sym__list_marker_star] = ACTIONS(2829), + [sym__list_marker_parenthesis] = ACTIONS(2829), + [sym__list_marker_dot] = ACTIONS(2829), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2829), + [sym__list_marker_example] = ACTIONS(2829), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2829), + [sym__fenced_code_block_start_backtick] = ACTIONS(2829), + [sym_minus_metadata] = ACTIONS(2829), + [sym__pipe_table_start] = ACTIONS(2829), + [sym__fenced_div_start] = ACTIONS(2829), + [sym_ref_id_specifier] = ACTIONS(2829), + [sym__code_span_start] = ACTIONS(2829), + [sym__html_comment] = ACTIONS(2829), + [sym__autolink] = ACTIONS(2829), + [sym__highlight_span_start] = ACTIONS(2829), + [sym__insert_span_start] = ACTIONS(2829), + [sym__delete_span_start] = ACTIONS(2829), + [sym__edit_comment_span_start] = ACTIONS(2829), + [sym__single_quote_span_open] = ACTIONS(2829), + [sym__double_quote_span_open] = ACTIONS(2829), + [sym__shortcode_open_escaped] = ACTIONS(2829), + [sym__shortcode_open] = ACTIONS(2829), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2829), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2829), + [sym__cite_author_in_text] = ACTIONS(2829), + [sym__cite_suppress_author] = ACTIONS(2829), + [sym__strikeout_open] = ACTIONS(2829), + [sym__subscript_open] = ACTIONS(2829), + [sym__superscript_open] = ACTIONS(2829), + [sym__inline_note_start_token] = ACTIONS(2829), + [sym__strong_emphasis_open_star] = ACTIONS(2829), + [sym__strong_emphasis_open_underscore] = ACTIONS(2829), + [sym__emphasis_open_star] = ACTIONS(2829), + [sym__emphasis_open_underscore] = ACTIONS(2829), + [sym_inline_note_reference] = ACTIONS(2829), + [sym_html_element] = ACTIONS(2829), + [sym__pandoc_line_break] = ACTIONS(2829), + }, + [STATE(474)] = { + [sym__inlines] = STATE(3449), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(678), + [sym__inline_whitespace] = STATE(678), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3149), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(475)] = { + [sym__inlines] = STATE(3459), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(679), + [sym__inline_whitespace] = STATE(679), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3153), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(476)] = { + [sym__inlines] = STATE(3461), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(681), + [sym__inline_whitespace] = STATE(681), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3157), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(477)] = { + [sym__inlines] = STATE(3465), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(683), + [sym__inline_whitespace] = STATE(683), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3161), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(478)] = { + [ts_builtin_sym_end] = ACTIONS(2833), + [anon_sym_COLON] = ACTIONS(2833), + [sym_entity_reference] = ACTIONS(2833), + [sym_numeric_character_reference] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_BANG_LBRACK] = ACTIONS(2833), + [anon_sym_DOLLAR] = ACTIONS(2835), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [aux_sym_pandoc_str_token1] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2833), + [sym__whitespace] = ACTIONS(2833), + [sym__line_ending] = ACTIONS(2833), + [sym__soft_line_ending] = ACTIONS(2833), + [sym__block_quote_start] = ACTIONS(2833), + [sym_atx_h1_marker] = ACTIONS(2833), + [sym_atx_h2_marker] = ACTIONS(2833), + [sym_atx_h3_marker] = ACTIONS(2833), + [sym_atx_h4_marker] = ACTIONS(2833), + [sym_atx_h5_marker] = ACTIONS(2833), + [sym_atx_h6_marker] = ACTIONS(2833), + [sym__thematic_break] = ACTIONS(2833), + [sym__list_marker_minus] = ACTIONS(2833), + [sym__list_marker_plus] = ACTIONS(2833), + [sym__list_marker_star] = ACTIONS(2833), + [sym__list_marker_parenthesis] = ACTIONS(2833), + [sym__list_marker_dot] = ACTIONS(2833), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2833), + [sym__list_marker_example] = ACTIONS(2833), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2833), + [sym__fenced_code_block_start_backtick] = ACTIONS(2833), + [sym_minus_metadata] = ACTIONS(2833), + [sym__pipe_table_start] = ACTIONS(2833), + [sym__fenced_div_start] = ACTIONS(2833), + [sym_ref_id_specifier] = ACTIONS(2833), + [sym__code_span_start] = ACTIONS(2833), + [sym__html_comment] = ACTIONS(2833), + [sym__autolink] = ACTIONS(2833), + [sym__highlight_span_start] = ACTIONS(2833), + [sym__insert_span_start] = ACTIONS(2833), + [sym__delete_span_start] = ACTIONS(2833), + [sym__edit_comment_span_start] = ACTIONS(2833), + [sym__single_quote_span_open] = ACTIONS(2833), + [sym__double_quote_span_open] = ACTIONS(2833), + [sym__shortcode_open_escaped] = ACTIONS(2833), + [sym__shortcode_open] = ACTIONS(2833), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2833), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2833), + [sym__cite_author_in_text] = ACTIONS(2833), + [sym__cite_suppress_author] = ACTIONS(2833), + [sym__strikeout_open] = ACTIONS(2833), + [sym__subscript_open] = ACTIONS(2833), + [sym__superscript_open] = ACTIONS(2833), + [sym__inline_note_start_token] = ACTIONS(2833), + [sym__strong_emphasis_open_star] = ACTIONS(2833), + [sym__strong_emphasis_open_underscore] = ACTIONS(2833), + [sym__emphasis_open_star] = ACTIONS(2833), + [sym__emphasis_open_underscore] = ACTIONS(2833), + [sym_inline_note_reference] = ACTIONS(2833), + [sym_html_element] = ACTIONS(2833), + [sym__pandoc_line_break] = ACTIONS(2833), + }, + [STATE(479)] = { + [ts_builtin_sym_end] = ACTIONS(2837), + [anon_sym_COLON] = ACTIONS(2837), + [sym_entity_reference] = ACTIONS(2837), + [sym_numeric_character_reference] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_BANG_LBRACK] = ACTIONS(2837), + [anon_sym_DOLLAR] = ACTIONS(2839), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [aux_sym_pandoc_str_token1] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2837), + [sym__whitespace] = ACTIONS(2837), + [sym__line_ending] = ACTIONS(2837), + [sym__soft_line_ending] = ACTIONS(2837), + [sym__block_quote_start] = ACTIONS(2837), + [sym_atx_h1_marker] = ACTIONS(2837), + [sym_atx_h2_marker] = ACTIONS(2837), + [sym_atx_h3_marker] = ACTIONS(2837), + [sym_atx_h4_marker] = ACTIONS(2837), + [sym_atx_h5_marker] = ACTIONS(2837), + [sym_atx_h6_marker] = ACTIONS(2837), + [sym__thematic_break] = ACTIONS(2837), + [sym__list_marker_minus] = ACTIONS(2837), + [sym__list_marker_plus] = ACTIONS(2837), + [sym__list_marker_star] = ACTIONS(2837), + [sym__list_marker_parenthesis] = ACTIONS(2837), + [sym__list_marker_dot] = ACTIONS(2837), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2837), + [sym__list_marker_example] = ACTIONS(2837), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2837), + [sym__fenced_code_block_start_backtick] = ACTIONS(2837), + [sym_minus_metadata] = ACTIONS(2837), + [sym__pipe_table_start] = ACTIONS(2837), + [sym__fenced_div_start] = ACTIONS(2837), + [sym_ref_id_specifier] = ACTIONS(2837), + [sym__code_span_start] = ACTIONS(2837), + [sym__html_comment] = ACTIONS(2837), + [sym__autolink] = ACTIONS(2837), + [sym__highlight_span_start] = ACTIONS(2837), + [sym__insert_span_start] = ACTIONS(2837), + [sym__delete_span_start] = ACTIONS(2837), + [sym__edit_comment_span_start] = ACTIONS(2837), + [sym__single_quote_span_open] = ACTIONS(2837), + [sym__double_quote_span_open] = ACTIONS(2837), + [sym__shortcode_open_escaped] = ACTIONS(2837), + [sym__shortcode_open] = ACTIONS(2837), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2837), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2837), + [sym__cite_author_in_text] = ACTIONS(2837), + [sym__cite_suppress_author] = ACTIONS(2837), + [sym__strikeout_open] = ACTIONS(2837), + [sym__subscript_open] = ACTIONS(2837), + [sym__superscript_open] = ACTIONS(2837), + [sym__inline_note_start_token] = ACTIONS(2837), + [sym__strong_emphasis_open_star] = ACTIONS(2837), + [sym__strong_emphasis_open_underscore] = ACTIONS(2837), + [sym__emphasis_open_star] = ACTIONS(2837), + [sym__emphasis_open_underscore] = ACTIONS(2837), + [sym_inline_note_reference] = ACTIONS(2837), + [sym_html_element] = ACTIONS(2837), + [sym__pandoc_line_break] = ACTIONS(2837), + }, + [STATE(480)] = { + [sym__inlines] = STATE(3657), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(727), + [sym__inline_whitespace] = STATE(727), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3165), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(481)] = { + [sym__inlines] = STATE(3659), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(728), + [sym__inline_whitespace] = STATE(728), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3169), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(482)] = { + [sym__inlines] = STATE(3661), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(729), + [sym__inline_whitespace] = STATE(729), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3173), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(483)] = { + [sym__inlines] = STATE(3664), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(734), + [sym__inline_whitespace] = STATE(734), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3177), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(484)] = { + [ts_builtin_sym_end] = ACTIONS(2841), + [anon_sym_COLON] = ACTIONS(2841), + [sym_entity_reference] = ACTIONS(2841), + [sym_numeric_character_reference] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_BANG_LBRACK] = ACTIONS(2841), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [aux_sym_pandoc_str_token1] = ACTIONS(2843), + [anon_sym_PIPE] = ACTIONS(2841), + [sym__whitespace] = ACTIONS(2841), + [sym__line_ending] = ACTIONS(2841), + [sym__soft_line_ending] = ACTIONS(2841), + [sym__block_quote_start] = ACTIONS(2841), + [sym_atx_h1_marker] = ACTIONS(2841), + [sym_atx_h2_marker] = ACTIONS(2841), + [sym_atx_h3_marker] = ACTIONS(2841), + [sym_atx_h4_marker] = ACTIONS(2841), + [sym_atx_h5_marker] = ACTIONS(2841), + [sym_atx_h6_marker] = ACTIONS(2841), + [sym__thematic_break] = ACTIONS(2841), + [sym__list_marker_minus] = ACTIONS(2841), + [sym__list_marker_plus] = ACTIONS(2841), + [sym__list_marker_star] = ACTIONS(2841), + [sym__list_marker_parenthesis] = ACTIONS(2841), + [sym__list_marker_dot] = ACTIONS(2841), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2841), + [sym__list_marker_example] = ACTIONS(2841), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2841), + [sym__fenced_code_block_start_backtick] = ACTIONS(2841), + [sym_minus_metadata] = ACTIONS(2841), + [sym__pipe_table_start] = ACTIONS(2841), + [sym__fenced_div_start] = ACTIONS(2841), + [sym_ref_id_specifier] = ACTIONS(2841), + [sym__code_span_start] = ACTIONS(2841), + [sym__html_comment] = ACTIONS(2841), + [sym__autolink] = ACTIONS(2841), + [sym__highlight_span_start] = ACTIONS(2841), + [sym__insert_span_start] = ACTIONS(2841), + [sym__delete_span_start] = ACTIONS(2841), + [sym__edit_comment_span_start] = ACTIONS(2841), + [sym__single_quote_span_open] = ACTIONS(2841), + [sym__double_quote_span_open] = ACTIONS(2841), + [sym__shortcode_open_escaped] = ACTIONS(2841), + [sym__shortcode_open] = ACTIONS(2841), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2841), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2841), + [sym__cite_author_in_text] = ACTIONS(2841), + [sym__cite_suppress_author] = ACTIONS(2841), + [sym__strikeout_open] = ACTIONS(2841), + [sym__subscript_open] = ACTIONS(2841), + [sym__superscript_open] = ACTIONS(2841), + [sym__inline_note_start_token] = ACTIONS(2841), + [sym__strong_emphasis_open_star] = ACTIONS(2841), + [sym__strong_emphasis_open_underscore] = ACTIONS(2841), + [sym__emphasis_open_star] = ACTIONS(2841), + [sym__emphasis_open_underscore] = ACTIONS(2841), + [sym_inline_note_reference] = ACTIONS(2841), + [sym_html_element] = ACTIONS(2841), + [sym__pandoc_line_break] = ACTIONS(2841), + }, + [STATE(485)] = { + [ts_builtin_sym_end] = ACTIONS(2845), + [anon_sym_COLON] = ACTIONS(2845), + [sym_entity_reference] = ACTIONS(2845), + [sym_numeric_character_reference] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_BANG_LBRACK] = ACTIONS(2845), + [anon_sym_DOLLAR] = ACTIONS(2847), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2845), + [aux_sym_pandoc_str_token1] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2845), + [sym__whitespace] = ACTIONS(2845), + [sym__line_ending] = ACTIONS(2845), + [sym__soft_line_ending] = ACTIONS(2845), + [sym__block_quote_start] = ACTIONS(2845), + [sym_atx_h1_marker] = ACTIONS(2845), + [sym_atx_h2_marker] = ACTIONS(2845), + [sym_atx_h3_marker] = ACTIONS(2845), + [sym_atx_h4_marker] = ACTIONS(2845), + [sym_atx_h5_marker] = ACTIONS(2845), + [sym_atx_h6_marker] = ACTIONS(2845), + [sym__thematic_break] = ACTIONS(2845), + [sym__list_marker_minus] = ACTIONS(2845), + [sym__list_marker_plus] = ACTIONS(2845), + [sym__list_marker_star] = ACTIONS(2845), + [sym__list_marker_parenthesis] = ACTIONS(2845), + [sym__list_marker_dot] = ACTIONS(2845), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2845), + [sym__list_marker_example] = ACTIONS(2845), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2845), + [sym__fenced_code_block_start_backtick] = ACTIONS(2845), + [sym_minus_metadata] = ACTIONS(2845), + [sym__pipe_table_start] = ACTIONS(2845), + [sym__fenced_div_start] = ACTIONS(2845), + [sym_ref_id_specifier] = ACTIONS(2845), + [sym__code_span_start] = ACTIONS(2845), + [sym__html_comment] = ACTIONS(2845), + [sym__autolink] = ACTIONS(2845), + [sym__highlight_span_start] = ACTIONS(2845), + [sym__insert_span_start] = ACTIONS(2845), + [sym__delete_span_start] = ACTIONS(2845), + [sym__edit_comment_span_start] = ACTIONS(2845), + [sym__single_quote_span_open] = ACTIONS(2845), + [sym__double_quote_span_open] = ACTIONS(2845), + [sym__shortcode_open_escaped] = ACTIONS(2845), + [sym__shortcode_open] = ACTIONS(2845), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2845), + [sym__cite_author_in_text] = ACTIONS(2845), + [sym__cite_suppress_author] = ACTIONS(2845), + [sym__strikeout_open] = ACTIONS(2845), + [sym__subscript_open] = ACTIONS(2845), + [sym__superscript_open] = ACTIONS(2845), + [sym__inline_note_start_token] = ACTIONS(2845), + [sym__strong_emphasis_open_star] = ACTIONS(2845), + [sym__strong_emphasis_open_underscore] = ACTIONS(2845), + [sym__emphasis_open_star] = ACTIONS(2845), + [sym__emphasis_open_underscore] = ACTIONS(2845), + [sym_inline_note_reference] = ACTIONS(2845), + [sym_html_element] = ACTIONS(2845), + [sym__pandoc_line_break] = ACTIONS(2845), + }, + [STATE(486)] = { + [sym__inlines] = STATE(3800), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(747), + [sym__inline_whitespace] = STATE(747), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3181), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(487)] = { + [sym__inlines] = STATE(3809), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(705), + [sym__inline_whitespace] = STATE(705), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3185), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(488)] = { + [sym__inlines] = STATE(3819), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(655), + [sym__inline_whitespace] = STATE(655), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3189), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(489)] = { + [sym__inlines] = STATE(3821), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(680), + [sym__inline_whitespace] = STATE(680), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3193), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(490)] = { + [ts_builtin_sym_end] = ACTIONS(2849), + [anon_sym_COLON] = ACTIONS(2849), + [sym_entity_reference] = ACTIONS(2849), + [sym_numeric_character_reference] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_BANG_LBRACK] = ACTIONS(2849), + [anon_sym_DOLLAR] = ACTIONS(2851), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [aux_sym_pandoc_str_token1] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2849), + [sym__whitespace] = ACTIONS(2849), + [sym__line_ending] = ACTIONS(2849), + [sym__soft_line_ending] = ACTIONS(2849), + [sym__block_quote_start] = ACTIONS(2849), + [sym_atx_h1_marker] = ACTIONS(2849), + [sym_atx_h2_marker] = ACTIONS(2849), + [sym_atx_h3_marker] = ACTIONS(2849), + [sym_atx_h4_marker] = ACTIONS(2849), + [sym_atx_h5_marker] = ACTIONS(2849), + [sym_atx_h6_marker] = ACTIONS(2849), + [sym__thematic_break] = ACTIONS(2849), + [sym__list_marker_minus] = ACTIONS(2849), + [sym__list_marker_plus] = ACTIONS(2849), + [sym__list_marker_star] = ACTIONS(2849), + [sym__list_marker_parenthesis] = ACTIONS(2849), + [sym__list_marker_dot] = ACTIONS(2849), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2849), + [sym__list_marker_example] = ACTIONS(2849), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2849), + [sym__fenced_code_block_start_backtick] = ACTIONS(2849), + [sym_minus_metadata] = ACTIONS(2849), + [sym__pipe_table_start] = ACTIONS(2849), + [sym__fenced_div_start] = ACTIONS(2849), + [sym_ref_id_specifier] = ACTIONS(2849), + [sym__code_span_start] = ACTIONS(2849), + [sym__html_comment] = ACTIONS(2849), + [sym__autolink] = ACTIONS(2849), + [sym__highlight_span_start] = ACTIONS(2849), + [sym__insert_span_start] = ACTIONS(2849), + [sym__delete_span_start] = ACTIONS(2849), + [sym__edit_comment_span_start] = ACTIONS(2849), + [sym__single_quote_span_open] = ACTIONS(2849), + [sym__double_quote_span_open] = ACTIONS(2849), + [sym__shortcode_open_escaped] = ACTIONS(2849), + [sym__shortcode_open] = ACTIONS(2849), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2849), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2849), + [sym__cite_author_in_text] = ACTIONS(2849), + [sym__cite_suppress_author] = ACTIONS(2849), + [sym__strikeout_open] = ACTIONS(2849), + [sym__subscript_open] = ACTIONS(2849), + [sym__superscript_open] = ACTIONS(2849), + [sym__inline_note_start_token] = ACTIONS(2849), + [sym__strong_emphasis_open_star] = ACTIONS(2849), + [sym__strong_emphasis_open_underscore] = ACTIONS(2849), + [sym__emphasis_open_star] = ACTIONS(2849), + [sym__emphasis_open_underscore] = ACTIONS(2849), + [sym_inline_note_reference] = ACTIONS(2849), + [sym_html_element] = ACTIONS(2849), + [sym__pandoc_line_break] = ACTIONS(2849), + }, + [STATE(491)] = { + [ts_builtin_sym_end] = ACTIONS(2853), + [anon_sym_COLON] = ACTIONS(2853), + [sym_entity_reference] = ACTIONS(2853), + [sym_numeric_character_reference] = ACTIONS(2853), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_BANG_LBRACK] = ACTIONS(2853), + [anon_sym_DOLLAR] = ACTIONS(2855), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2853), + [aux_sym_pandoc_str_token1] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2853), + [sym__whitespace] = ACTIONS(2853), + [sym__line_ending] = ACTIONS(2853), + [sym__soft_line_ending] = ACTIONS(2853), + [sym__block_quote_start] = ACTIONS(2853), + [sym_atx_h1_marker] = ACTIONS(2853), + [sym_atx_h2_marker] = ACTIONS(2853), + [sym_atx_h3_marker] = ACTIONS(2853), + [sym_atx_h4_marker] = ACTIONS(2853), + [sym_atx_h5_marker] = ACTIONS(2853), + [sym_atx_h6_marker] = ACTIONS(2853), + [sym__thematic_break] = ACTIONS(2853), + [sym__list_marker_minus] = ACTIONS(2853), + [sym__list_marker_plus] = ACTIONS(2853), + [sym__list_marker_star] = ACTIONS(2853), + [sym__list_marker_parenthesis] = ACTIONS(2853), + [sym__list_marker_dot] = ACTIONS(2853), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2853), + [sym__list_marker_example] = ACTIONS(2853), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2853), + [sym__fenced_code_block_start_backtick] = ACTIONS(2853), + [sym_minus_metadata] = ACTIONS(2853), + [sym__pipe_table_start] = ACTIONS(2853), + [sym__fenced_div_start] = ACTIONS(2853), + [sym_ref_id_specifier] = ACTIONS(2853), + [sym__code_span_start] = ACTIONS(2853), + [sym__html_comment] = ACTIONS(2853), + [sym__autolink] = ACTIONS(2853), + [sym__highlight_span_start] = ACTIONS(2853), + [sym__insert_span_start] = ACTIONS(2853), + [sym__delete_span_start] = ACTIONS(2853), + [sym__edit_comment_span_start] = ACTIONS(2853), + [sym__single_quote_span_open] = ACTIONS(2853), + [sym__double_quote_span_open] = ACTIONS(2853), + [sym__shortcode_open_escaped] = ACTIONS(2853), + [sym__shortcode_open] = ACTIONS(2853), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2853), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2853), + [sym__cite_author_in_text] = ACTIONS(2853), + [sym__cite_suppress_author] = ACTIONS(2853), + [sym__strikeout_open] = ACTIONS(2853), + [sym__subscript_open] = ACTIONS(2853), + [sym__superscript_open] = ACTIONS(2853), + [sym__inline_note_start_token] = ACTIONS(2853), + [sym__strong_emphasis_open_star] = ACTIONS(2853), + [sym__strong_emphasis_open_underscore] = ACTIONS(2853), + [sym__emphasis_open_star] = ACTIONS(2853), + [sym__emphasis_open_underscore] = ACTIONS(2853), + [sym_inline_note_reference] = ACTIONS(2853), + [sym_html_element] = ACTIONS(2853), + [sym__pandoc_line_break] = ACTIONS(2853), + }, + [STATE(492)] = { + [sym__inlines] = STATE(3994), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(682), + [sym__inline_whitespace] = STATE(682), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3197), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(493)] = { + [sym__inlines] = STATE(3999), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(686), + [sym__inline_whitespace] = STATE(686), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3201), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(494)] = { + [sym__inlines] = STATE(4002), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(687), + [sym__inline_whitespace] = STATE(687), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3205), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(495)] = { + [sym__inlines] = STATE(4008), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(692), + [sym__inline_whitespace] = STATE(692), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3209), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(496)] = { + [ts_builtin_sym_end] = ACTIONS(2857), + [anon_sym_COLON] = ACTIONS(2857), + [sym_entity_reference] = ACTIONS(2857), + [sym_numeric_character_reference] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_BANG_LBRACK] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(2859), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2857), + [aux_sym_pandoc_str_token1] = ACTIONS(2859), + [anon_sym_PIPE] = ACTIONS(2857), + [sym__whitespace] = ACTIONS(2857), + [sym__line_ending] = ACTIONS(2857), + [sym__soft_line_ending] = ACTIONS(2857), + [sym__block_quote_start] = ACTIONS(2857), + [sym_atx_h1_marker] = ACTIONS(2857), + [sym_atx_h2_marker] = ACTIONS(2857), + [sym_atx_h3_marker] = ACTIONS(2857), + [sym_atx_h4_marker] = ACTIONS(2857), + [sym_atx_h5_marker] = ACTIONS(2857), + [sym_atx_h6_marker] = ACTIONS(2857), + [sym__thematic_break] = ACTIONS(2857), + [sym__list_marker_minus] = ACTIONS(2857), + [sym__list_marker_plus] = ACTIONS(2857), + [sym__list_marker_star] = ACTIONS(2857), + [sym__list_marker_parenthesis] = ACTIONS(2857), + [sym__list_marker_dot] = ACTIONS(2857), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2857), + [sym__list_marker_example] = ACTIONS(2857), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2857), + [sym__fenced_code_block_start_backtick] = ACTIONS(2857), + [sym_minus_metadata] = ACTIONS(2857), + [sym__pipe_table_start] = ACTIONS(2857), + [sym__fenced_div_start] = ACTIONS(2857), + [sym_ref_id_specifier] = ACTIONS(2857), + [sym__code_span_start] = ACTIONS(2857), + [sym__html_comment] = ACTIONS(2857), + [sym__autolink] = ACTIONS(2857), + [sym__highlight_span_start] = ACTIONS(2857), + [sym__insert_span_start] = ACTIONS(2857), + [sym__delete_span_start] = ACTIONS(2857), + [sym__edit_comment_span_start] = ACTIONS(2857), + [sym__single_quote_span_open] = ACTIONS(2857), + [sym__double_quote_span_open] = ACTIONS(2857), + [sym__shortcode_open_escaped] = ACTIONS(2857), + [sym__shortcode_open] = ACTIONS(2857), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2857), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2857), + [sym__cite_author_in_text] = ACTIONS(2857), + [sym__cite_suppress_author] = ACTIONS(2857), + [sym__strikeout_open] = ACTIONS(2857), + [sym__subscript_open] = ACTIONS(2857), + [sym__superscript_open] = ACTIONS(2857), + [sym__inline_note_start_token] = ACTIONS(2857), + [sym__strong_emphasis_open_star] = ACTIONS(2857), + [sym__strong_emphasis_open_underscore] = ACTIONS(2857), + [sym__emphasis_open_star] = ACTIONS(2857), + [sym__emphasis_open_underscore] = ACTIONS(2857), + [sym_inline_note_reference] = ACTIONS(2857), + [sym_html_element] = ACTIONS(2857), + [sym__pandoc_line_break] = ACTIONS(2857), + }, + [STATE(497)] = { + [sym__atx_heading_content] = STATE(3199), + [sym__inlines] = STATE(3199), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(357), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), [anon_sym_BANG_LBRACK] = ACTIONS(11), [anon_sym_DOLLAR] = ACTIONS(13), @@ -69561,14 +64456,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(3819), - [sym__whitespace] = ACTIONS(3821), - [sym__line_ending] = ACTIONS(3487), - [sym__soft_line_ending] = ACTIONS(3487), - [sym__eof] = ACTIONS(3487), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(25), + [sym__eof] = ACTIONS(3211), [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(3817), - [sym__autolink] = ACTIONS(3817), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), [sym__highlight_span_start] = ACTIONS(69), [sym__insert_span_start] = ACTIONS(71), [sym__delete_span_start] = ACTIONS(73), @@ -69589,1244 +64482,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(103), [sym__emphasis_open_star] = ACTIONS(105), [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(3817), - [sym_html_element] = ACTIONS(3817), - [sym__pandoc_line_break] = ACTIONS(3817), - }, - [STATE(592)] = { - [ts_builtin_sym_end] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3399), - [sym_entity_reference] = ACTIONS(3399), - [sym_numeric_character_reference] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_BANG_LBRACK] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [aux_sym_pandoc_str_token1] = ACTIONS(3401), - [anon_sym_PIPE] = ACTIONS(3399), - [aux_sym__prose_punctuation_token1] = ACTIONS(3401), - [sym__line_ending] = ACTIONS(3399), - [sym__soft_line_ending] = ACTIONS(3399), - [sym__block_quote_start] = ACTIONS(3399), - [sym_atx_h1_marker] = ACTIONS(3399), - [sym_atx_h2_marker] = ACTIONS(3399), - [sym_atx_h3_marker] = ACTIONS(3399), - [sym_atx_h4_marker] = ACTIONS(3399), - [sym_atx_h5_marker] = ACTIONS(3399), - [sym_atx_h6_marker] = ACTIONS(3399), - [sym__thematic_break] = ACTIONS(3399), - [sym__list_marker_minus] = ACTIONS(3399), - [sym__list_marker_plus] = ACTIONS(3399), - [sym__list_marker_star] = ACTIONS(3399), - [sym__list_marker_parenthesis] = ACTIONS(3399), - [sym__list_marker_dot] = ACTIONS(3399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3399), - [sym__list_marker_example] = ACTIONS(3399), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3399), - [sym__fenced_code_block_start_backtick] = ACTIONS(3399), - [sym_minus_metadata] = ACTIONS(3399), - [sym__pipe_table_start] = ACTIONS(3399), - [sym__fenced_div_start] = ACTIONS(3399), - [sym_ref_id_specifier] = ACTIONS(3399), - [sym__code_span_start] = ACTIONS(3399), - [sym__html_comment] = ACTIONS(3399), - [sym__autolink] = ACTIONS(3399), - [sym__highlight_span_start] = ACTIONS(3399), - [sym__insert_span_start] = ACTIONS(3399), - [sym__delete_span_start] = ACTIONS(3399), - [sym__edit_comment_span_start] = ACTIONS(3399), - [sym__single_quote_span_open] = ACTIONS(3399), - [sym__double_quote_span_open] = ACTIONS(3399), - [sym__shortcode_open_escaped] = ACTIONS(3399), - [sym__shortcode_open] = ACTIONS(3399), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3399), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3399), - [sym__cite_author_in_text] = ACTIONS(3399), - [sym__cite_suppress_author] = ACTIONS(3399), - [sym__strikeout_open] = ACTIONS(3399), - [sym__subscript_open] = ACTIONS(3399), - [sym__superscript_open] = ACTIONS(3399), - [sym__inline_note_start_token] = ACTIONS(3399), - [sym__strong_emphasis_open_star] = ACTIONS(3399), - [sym__strong_emphasis_open_underscore] = ACTIONS(3399), - [sym__emphasis_open_star] = ACTIONS(3399), - [sym__emphasis_open_underscore] = ACTIONS(3399), - [sym_inline_note_reference] = ACTIONS(3399), - [sym_html_element] = ACTIONS(3399), - [sym__pandoc_line_break] = ACTIONS(3399), - }, - [STATE(593)] = { - [ts_builtin_sym_end] = ACTIONS(2615), - [anon_sym_COLON] = ACTIONS(2615), - [sym_entity_reference] = ACTIONS(2615), - [sym_numeric_character_reference] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_BANG_LBRACK] = ACTIONS(2615), - [anon_sym_DOLLAR] = ACTIONS(2617), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [aux_sym_pandoc_str_token1] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2615), - [aux_sym__prose_punctuation_token1] = ACTIONS(2617), - [sym__line_ending] = ACTIONS(2615), - [sym__soft_line_ending] = ACTIONS(2615), - [sym__block_quote_start] = ACTIONS(2615), - [sym_atx_h1_marker] = ACTIONS(2615), - [sym_atx_h2_marker] = ACTIONS(2615), - [sym_atx_h3_marker] = ACTIONS(2615), - [sym_atx_h4_marker] = ACTIONS(2615), - [sym_atx_h5_marker] = ACTIONS(2615), - [sym_atx_h6_marker] = ACTIONS(2615), - [sym__thematic_break] = ACTIONS(2615), - [sym__list_marker_minus] = ACTIONS(2615), - [sym__list_marker_plus] = ACTIONS(2615), - [sym__list_marker_star] = ACTIONS(2615), - [sym__list_marker_parenthesis] = ACTIONS(2615), - [sym__list_marker_dot] = ACTIONS(2615), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2615), - [sym__list_marker_example] = ACTIONS(2615), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2615), - [sym__fenced_code_block_start_backtick] = ACTIONS(2615), - [sym_minus_metadata] = ACTIONS(2615), - [sym__pipe_table_start] = ACTIONS(2615), - [sym__fenced_div_start] = ACTIONS(2615), - [sym_ref_id_specifier] = ACTIONS(2615), - [sym__code_span_start] = ACTIONS(2615), - [sym__html_comment] = ACTIONS(2615), - [sym__autolink] = ACTIONS(2615), - [sym__highlight_span_start] = ACTIONS(2615), - [sym__insert_span_start] = ACTIONS(2615), - [sym__delete_span_start] = ACTIONS(2615), - [sym__edit_comment_span_start] = ACTIONS(2615), - [sym__single_quote_span_open] = ACTIONS(2615), - [sym__double_quote_span_open] = ACTIONS(2615), - [sym__shortcode_open_escaped] = ACTIONS(2615), - [sym__shortcode_open] = ACTIONS(2615), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2615), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2615), - [sym__cite_author_in_text] = ACTIONS(2615), - [sym__cite_suppress_author] = ACTIONS(2615), - [sym__strikeout_open] = ACTIONS(2615), - [sym__subscript_open] = ACTIONS(2615), - [sym__superscript_open] = ACTIONS(2615), - [sym__inline_note_start_token] = ACTIONS(2615), - [sym__strong_emphasis_open_star] = ACTIONS(2615), - [sym__strong_emphasis_open_underscore] = ACTIONS(2615), - [sym__emphasis_open_star] = ACTIONS(2615), - [sym__emphasis_open_underscore] = ACTIONS(2615), - [sym_inline_note_reference] = ACTIONS(2615), - [sym_html_element] = ACTIONS(2615), - [sym__pandoc_line_break] = ACTIONS(2615), - }, - [STATE(594)] = { - [ts_builtin_sym_end] = ACTIONS(3256), - [anon_sym_COLON] = ACTIONS(3256), - [sym_entity_reference] = ACTIONS(3256), - [sym_numeric_character_reference] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_BANG_LBRACK] = ACTIONS(3256), - [anon_sym_DOLLAR] = ACTIONS(3258), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3256), - [aux_sym_pandoc_str_token1] = ACTIONS(3258), - [anon_sym_PIPE] = ACTIONS(3256), - [aux_sym__prose_punctuation_token1] = ACTIONS(3258), - [sym__line_ending] = ACTIONS(3256), - [sym__soft_line_ending] = ACTIONS(3256), - [sym__block_quote_start] = ACTIONS(3256), - [sym_atx_h1_marker] = ACTIONS(3256), - [sym_atx_h2_marker] = ACTIONS(3256), - [sym_atx_h3_marker] = ACTIONS(3256), - [sym_atx_h4_marker] = ACTIONS(3256), - [sym_atx_h5_marker] = ACTIONS(3256), - [sym_atx_h6_marker] = ACTIONS(3256), - [sym__thematic_break] = ACTIONS(3256), - [sym__list_marker_minus] = ACTIONS(3256), - [sym__list_marker_plus] = ACTIONS(3256), - [sym__list_marker_star] = ACTIONS(3256), - [sym__list_marker_parenthesis] = ACTIONS(3256), - [sym__list_marker_dot] = ACTIONS(3256), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_example] = ACTIONS(3256), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3256), - [sym__fenced_code_block_start_backtick] = ACTIONS(3256), - [sym_minus_metadata] = ACTIONS(3256), - [sym__pipe_table_start] = ACTIONS(3256), - [sym__fenced_div_start] = ACTIONS(3256), - [sym_ref_id_specifier] = ACTIONS(3256), - [sym__code_span_start] = ACTIONS(3256), - [sym__html_comment] = ACTIONS(3256), - [sym__autolink] = ACTIONS(3256), - [sym__highlight_span_start] = ACTIONS(3256), - [sym__insert_span_start] = ACTIONS(3256), - [sym__delete_span_start] = ACTIONS(3256), - [sym__edit_comment_span_start] = ACTIONS(3256), - [sym__single_quote_span_open] = ACTIONS(3256), - [sym__double_quote_span_open] = ACTIONS(3256), - [sym__shortcode_open_escaped] = ACTIONS(3256), - [sym__shortcode_open] = ACTIONS(3256), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3256), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3256), - [sym__cite_author_in_text] = ACTIONS(3256), - [sym__cite_suppress_author] = ACTIONS(3256), - [sym__strikeout_open] = ACTIONS(3256), - [sym__subscript_open] = ACTIONS(3256), - [sym__superscript_open] = ACTIONS(3256), - [sym__inline_note_start_token] = ACTIONS(3256), - [sym__strong_emphasis_open_star] = ACTIONS(3256), - [sym__strong_emphasis_open_underscore] = ACTIONS(3256), - [sym__emphasis_open_star] = ACTIONS(3256), - [sym__emphasis_open_underscore] = ACTIONS(3256), - [sym_inline_note_reference] = ACTIONS(3256), - [sym_html_element] = ACTIONS(3256), - [sym__pandoc_line_break] = ACTIONS(3256), - }, - [STATE(595)] = { - [anon_sym_COLON] = ACTIONS(3155), - [sym_entity_reference] = ACTIONS(3155), - [sym_numeric_character_reference] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_BANG_LBRACK] = ACTIONS(3155), - [anon_sym_DOLLAR] = ACTIONS(3157), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [aux_sym_pandoc_str_token1] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3155), - [aux_sym__prose_punctuation_token1] = ACTIONS(3157), - [sym__line_ending] = ACTIONS(3155), - [sym__soft_line_ending] = ACTIONS(3155), - [sym__block_close] = ACTIONS(3155), - [sym__block_quote_start] = ACTIONS(3155), - [sym_atx_h1_marker] = ACTIONS(3155), - [sym_atx_h2_marker] = ACTIONS(3155), - [sym_atx_h3_marker] = ACTIONS(3155), - [sym_atx_h4_marker] = ACTIONS(3155), - [sym_atx_h5_marker] = ACTIONS(3155), - [sym_atx_h6_marker] = ACTIONS(3155), - [sym__thematic_break] = ACTIONS(3155), - [sym__list_marker_minus] = ACTIONS(3155), - [sym__list_marker_plus] = ACTIONS(3155), - [sym__list_marker_star] = ACTIONS(3155), - [sym__list_marker_parenthesis] = ACTIONS(3155), - [sym__list_marker_dot] = ACTIONS(3155), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3155), - [sym__list_marker_example] = ACTIONS(3155), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3155), - [sym__fenced_code_block_start_backtick] = ACTIONS(3155), - [sym_minus_metadata] = ACTIONS(3155), - [sym__pipe_table_start] = ACTIONS(3155), - [sym__fenced_div_start] = ACTIONS(3155), - [sym_ref_id_specifier] = ACTIONS(3155), - [sym__code_span_start] = ACTIONS(3155), - [sym__html_comment] = ACTIONS(3155), - [sym__autolink] = ACTIONS(3155), - [sym__highlight_span_start] = ACTIONS(3155), - [sym__insert_span_start] = ACTIONS(3155), - [sym__delete_span_start] = ACTIONS(3155), - [sym__edit_comment_span_start] = ACTIONS(3155), - [sym__single_quote_span_open] = ACTIONS(3155), - [sym__double_quote_span_open] = ACTIONS(3155), - [sym__shortcode_open_escaped] = ACTIONS(3155), - [sym__shortcode_open] = ACTIONS(3155), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3155), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3155), - [sym__cite_author_in_text] = ACTIONS(3155), - [sym__cite_suppress_author] = ACTIONS(3155), - [sym__strikeout_open] = ACTIONS(3155), - [sym__subscript_open] = ACTIONS(3155), - [sym__superscript_open] = ACTIONS(3155), - [sym__inline_note_start_token] = ACTIONS(3155), - [sym__strong_emphasis_open_star] = ACTIONS(3155), - [sym__strong_emphasis_open_underscore] = ACTIONS(3155), - [sym__emphasis_open_star] = ACTIONS(3155), - [sym__emphasis_open_underscore] = ACTIONS(3155), - [sym_inline_note_reference] = ACTIONS(3155), - [sym_html_element] = ACTIONS(3155), - [sym__pandoc_line_break] = ACTIONS(3155), - }, - [STATE(596)] = { - [anon_sym_COLON] = ACTIONS(3169), - [sym_entity_reference] = ACTIONS(3169), - [sym_numeric_character_reference] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_BANG_LBRACK] = ACTIONS(3169), - [anon_sym_DOLLAR] = ACTIONS(3171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [aux_sym_pandoc_str_token1] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3169), - [aux_sym__prose_punctuation_token1] = ACTIONS(3171), - [sym__line_ending] = ACTIONS(3169), - [sym__soft_line_ending] = ACTIONS(3169), - [sym__block_close] = ACTIONS(3169), - [sym__block_quote_start] = ACTIONS(3169), - [sym_atx_h1_marker] = ACTIONS(3169), - [sym_atx_h2_marker] = ACTIONS(3169), - [sym_atx_h3_marker] = ACTIONS(3169), - [sym_atx_h4_marker] = ACTIONS(3169), - [sym_atx_h5_marker] = ACTIONS(3169), - [sym_atx_h6_marker] = ACTIONS(3169), - [sym__thematic_break] = ACTIONS(3169), - [sym__list_marker_minus] = ACTIONS(3169), - [sym__list_marker_plus] = ACTIONS(3169), - [sym__list_marker_star] = ACTIONS(3169), - [sym__list_marker_parenthesis] = ACTIONS(3169), - [sym__list_marker_dot] = ACTIONS(3169), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3169), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3169), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3169), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3169), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3169), - [sym__list_marker_example] = ACTIONS(3169), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3169), - [sym__fenced_code_block_start_backtick] = ACTIONS(3169), - [sym_minus_metadata] = ACTIONS(3169), - [sym__pipe_table_start] = ACTIONS(3169), - [sym__fenced_div_start] = ACTIONS(3169), - [sym_ref_id_specifier] = ACTIONS(3169), - [sym__code_span_start] = ACTIONS(3169), - [sym__html_comment] = ACTIONS(3169), - [sym__autolink] = ACTIONS(3169), - [sym__highlight_span_start] = ACTIONS(3169), - [sym__insert_span_start] = ACTIONS(3169), - [sym__delete_span_start] = ACTIONS(3169), - [sym__edit_comment_span_start] = ACTIONS(3169), - [sym__single_quote_span_open] = ACTIONS(3169), - [sym__double_quote_span_open] = ACTIONS(3169), - [sym__shortcode_open_escaped] = ACTIONS(3169), - [sym__shortcode_open] = ACTIONS(3169), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3169), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3169), - [sym__cite_author_in_text] = ACTIONS(3169), - [sym__cite_suppress_author] = ACTIONS(3169), - [sym__strikeout_open] = ACTIONS(3169), - [sym__subscript_open] = ACTIONS(3169), - [sym__superscript_open] = ACTIONS(3169), - [sym__inline_note_start_token] = ACTIONS(3169), - [sym__strong_emphasis_open_star] = ACTIONS(3169), - [sym__strong_emphasis_open_underscore] = ACTIONS(3169), - [sym__emphasis_open_star] = ACTIONS(3169), - [sym__emphasis_open_underscore] = ACTIONS(3169), - [sym_inline_note_reference] = ACTIONS(3169), - [sym_html_element] = ACTIONS(3169), - [sym__pandoc_line_break] = ACTIONS(3169), - }, - [STATE(597)] = { - [anon_sym_COLON] = ACTIONS(3179), - [sym_entity_reference] = ACTIONS(3179), - [sym_numeric_character_reference] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_BANG_LBRACK] = ACTIONS(3179), - [anon_sym_DOLLAR] = ACTIONS(3181), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [aux_sym_pandoc_str_token1] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3179), - [aux_sym__prose_punctuation_token1] = ACTIONS(3181), - [sym__line_ending] = ACTIONS(3179), - [sym__soft_line_ending] = ACTIONS(3179), - [sym__block_close] = ACTIONS(3179), - [sym__block_quote_start] = ACTIONS(3179), - [sym_atx_h1_marker] = ACTIONS(3179), - [sym_atx_h2_marker] = ACTIONS(3179), - [sym_atx_h3_marker] = ACTIONS(3179), - [sym_atx_h4_marker] = ACTIONS(3179), - [sym_atx_h5_marker] = ACTIONS(3179), - [sym_atx_h6_marker] = ACTIONS(3179), - [sym__thematic_break] = ACTIONS(3179), - [sym__list_marker_minus] = ACTIONS(3179), - [sym__list_marker_plus] = ACTIONS(3179), - [sym__list_marker_star] = ACTIONS(3179), - [sym__list_marker_parenthesis] = ACTIONS(3179), - [sym__list_marker_dot] = ACTIONS(3179), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3179), - [sym__list_marker_example] = ACTIONS(3179), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3179), - [sym__fenced_code_block_start_backtick] = ACTIONS(3179), - [sym_minus_metadata] = ACTIONS(3179), - [sym__pipe_table_start] = ACTIONS(3179), - [sym__fenced_div_start] = ACTIONS(3179), - [sym_ref_id_specifier] = ACTIONS(3179), - [sym__code_span_start] = ACTIONS(3179), - [sym__html_comment] = ACTIONS(3179), - [sym__autolink] = ACTIONS(3179), - [sym__highlight_span_start] = ACTIONS(3179), - [sym__insert_span_start] = ACTIONS(3179), - [sym__delete_span_start] = ACTIONS(3179), - [sym__edit_comment_span_start] = ACTIONS(3179), - [sym__single_quote_span_open] = ACTIONS(3179), - [sym__double_quote_span_open] = ACTIONS(3179), - [sym__shortcode_open_escaped] = ACTIONS(3179), - [sym__shortcode_open] = ACTIONS(3179), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3179), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3179), - [sym__cite_author_in_text] = ACTIONS(3179), - [sym__cite_suppress_author] = ACTIONS(3179), - [sym__strikeout_open] = ACTIONS(3179), - [sym__subscript_open] = ACTIONS(3179), - [sym__superscript_open] = ACTIONS(3179), - [sym__inline_note_start_token] = ACTIONS(3179), - [sym__strong_emphasis_open_star] = ACTIONS(3179), - [sym__strong_emphasis_open_underscore] = ACTIONS(3179), - [sym__emphasis_open_star] = ACTIONS(3179), - [sym__emphasis_open_underscore] = ACTIONS(3179), - [sym_inline_note_reference] = ACTIONS(3179), - [sym_html_element] = ACTIONS(3179), - [sym__pandoc_line_break] = ACTIONS(3179), - }, - [STATE(598)] = { - [ts_builtin_sym_end] = ACTIONS(3073), - [anon_sym_COLON] = ACTIONS(3073), - [sym_entity_reference] = ACTIONS(3073), - [sym_numeric_character_reference] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_BANG_LBRACK] = ACTIONS(3073), - [anon_sym_DOLLAR] = ACTIONS(3075), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3073), - [aux_sym_pandoc_str_token1] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3073), - [aux_sym__prose_punctuation_token1] = ACTIONS(3075), - [sym__line_ending] = ACTIONS(3073), - [sym__soft_line_ending] = ACTIONS(3073), - [sym__block_quote_start] = ACTIONS(3073), - [sym_atx_h1_marker] = ACTIONS(3073), - [sym_atx_h2_marker] = ACTIONS(3073), - [sym_atx_h3_marker] = ACTIONS(3073), - [sym_atx_h4_marker] = ACTIONS(3073), - [sym_atx_h5_marker] = ACTIONS(3073), - [sym_atx_h6_marker] = ACTIONS(3073), - [sym__thematic_break] = ACTIONS(3073), - [sym__list_marker_minus] = ACTIONS(3073), - [sym__list_marker_plus] = ACTIONS(3073), - [sym__list_marker_star] = ACTIONS(3073), - [sym__list_marker_parenthesis] = ACTIONS(3073), - [sym__list_marker_dot] = ACTIONS(3073), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_example] = ACTIONS(3073), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3073), - [sym__fenced_code_block_start_backtick] = ACTIONS(3073), - [sym_minus_metadata] = ACTIONS(3073), - [sym__pipe_table_start] = ACTIONS(3073), - [sym__fenced_div_start] = ACTIONS(3073), - [sym_ref_id_specifier] = ACTIONS(3073), - [sym__code_span_start] = ACTIONS(3073), - [sym__html_comment] = ACTIONS(3073), - [sym__autolink] = ACTIONS(3073), - [sym__highlight_span_start] = ACTIONS(3073), - [sym__insert_span_start] = ACTIONS(3073), - [sym__delete_span_start] = ACTIONS(3073), - [sym__edit_comment_span_start] = ACTIONS(3073), - [sym__single_quote_span_open] = ACTIONS(3073), - [sym__double_quote_span_open] = ACTIONS(3073), - [sym__shortcode_open_escaped] = ACTIONS(3073), - [sym__shortcode_open] = ACTIONS(3073), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3073), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3073), - [sym__cite_author_in_text] = ACTIONS(3073), - [sym__cite_suppress_author] = ACTIONS(3073), - [sym__strikeout_open] = ACTIONS(3073), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3073), - [sym__inline_note_start_token] = ACTIONS(3073), - [sym__strong_emphasis_open_star] = ACTIONS(3073), - [sym__strong_emphasis_open_underscore] = ACTIONS(3073), - [sym__emphasis_open_star] = ACTIONS(3073), - [sym__emphasis_open_underscore] = ACTIONS(3073), - [sym_inline_note_reference] = ACTIONS(3073), - [sym_html_element] = ACTIONS(3073), - [sym__pandoc_line_break] = ACTIONS(3073), - }, - [STATE(599)] = { - [sym__inlines] = STATE(2747), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1030), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3823), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2042), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(600)] = { - [sym__inlines] = STATE(2772), - [sym_pandoc_span] = STATE(450), - [sym_pandoc_image] = STATE(450), - [sym_target] = STATE(1032), - [sym_pandoc_math] = STATE(450), - [sym_pandoc_display_math] = STATE(450), - [sym_pandoc_code_span] = STATE(450), - [sym_pandoc_single_quote] = STATE(450), - [sym_pandoc_double_quote] = STATE(450), - [sym_insert] = STATE(450), - [sym_delete] = STATE(450), - [sym_edit_comment] = STATE(450), - [sym_highlight] = STATE(450), - [sym__pandoc_attr_specifier] = STATE(450), - [sym__line] = STATE(2610), - [sym__inline_element] = STATE(450), - [sym_shortcode_escaped] = STATE(450), - [sym_shortcode] = STATE(450), - [sym_citation] = STATE(450), - [sym_inline_note] = STATE(450), - [sym_pandoc_superscript] = STATE(450), - [sym_pandoc_subscript] = STATE(450), - [sym_pandoc_strikeout] = STATE(450), - [sym_pandoc_emph] = STATE(450), - [sym_pandoc_strong] = STATE(450), - [sym_pandoc_str] = STATE(450), - [sym__prose_punctuation] = STATE(450), - [sym_entity_reference] = ACTIONS(2034), - [sym_numeric_character_reference] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2036), - [aux_sym_pandoc_span_token1] = ACTIONS(3825), - [anon_sym_BANG_LBRACK] = ACTIONS(2040), - [aux_sym_target_token1] = ACTIONS(2042), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [aux_sym_pandoc_str_token1] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2052), - [aux_sym__prose_punctuation_token1] = ACTIONS(2054), - [sym__code_span_start] = ACTIONS(2060), - [sym__html_comment] = ACTIONS(2034), - [sym__autolink] = ACTIONS(2034), - [sym__highlight_span_start] = ACTIONS(2062), - [sym__insert_span_start] = ACTIONS(2064), - [sym__delete_span_start] = ACTIONS(2066), - [sym__edit_comment_span_start] = ACTIONS(2068), - [sym__single_quote_span_open] = ACTIONS(2070), - [sym__double_quote_span_open] = ACTIONS(2072), - [sym__shortcode_open_escaped] = ACTIONS(2074), - [sym__shortcode_open] = ACTIONS(2076), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2078), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2080), - [sym__cite_author_in_text] = ACTIONS(2082), - [sym__cite_suppress_author] = ACTIONS(2084), - [sym__strikeout_open] = ACTIONS(2086), - [sym__subscript_open] = ACTIONS(2088), - [sym__superscript_open] = ACTIONS(2090), - [sym__inline_note_start_token] = ACTIONS(2092), - [sym__strong_emphasis_open_star] = ACTIONS(2094), - [sym__strong_emphasis_open_underscore] = ACTIONS(2096), - [sym__emphasis_open_star] = ACTIONS(2098), - [sym__emphasis_open_underscore] = ACTIONS(2100), - [sym_inline_note_reference] = ACTIONS(2034), - [sym_html_element] = ACTIONS(2034), - [sym__pandoc_line_break] = ACTIONS(2034), - }, - [STATE(601)] = { - [ts_builtin_sym_end] = ACTIONS(3232), - [anon_sym_COLON] = ACTIONS(3232), - [sym_entity_reference] = ACTIONS(3232), - [sym_numeric_character_reference] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_BANG_LBRACK] = ACTIONS(3232), - [anon_sym_DOLLAR] = ACTIONS(3234), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [aux_sym_pandoc_str_token1] = ACTIONS(3234), - [anon_sym_PIPE] = ACTIONS(3232), - [aux_sym__prose_punctuation_token1] = ACTIONS(3234), - [sym__line_ending] = ACTIONS(3232), - [sym__soft_line_ending] = ACTIONS(3232), - [sym__block_quote_start] = ACTIONS(3232), - [sym_atx_h1_marker] = ACTIONS(3232), - [sym_atx_h2_marker] = ACTIONS(3232), - [sym_atx_h3_marker] = ACTIONS(3232), - [sym_atx_h4_marker] = ACTIONS(3232), - [sym_atx_h5_marker] = ACTIONS(3232), - [sym_atx_h6_marker] = ACTIONS(3232), - [sym__thematic_break] = ACTIONS(3232), - [sym__list_marker_minus] = ACTIONS(3232), - [sym__list_marker_plus] = ACTIONS(3232), - [sym__list_marker_star] = ACTIONS(3232), - [sym__list_marker_parenthesis] = ACTIONS(3232), - [sym__list_marker_dot] = ACTIONS(3232), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3232), - [sym__list_marker_example] = ACTIONS(3232), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3232), - [sym__fenced_code_block_start_backtick] = ACTIONS(3232), - [sym_minus_metadata] = ACTIONS(3232), - [sym__pipe_table_start] = ACTIONS(3232), - [sym__fenced_div_start] = ACTIONS(3232), - [sym_ref_id_specifier] = ACTIONS(3232), - [sym__code_span_start] = ACTIONS(3232), - [sym__html_comment] = ACTIONS(3232), - [sym__autolink] = ACTIONS(3232), - [sym__highlight_span_start] = ACTIONS(3232), - [sym__insert_span_start] = ACTIONS(3232), - [sym__delete_span_start] = ACTIONS(3232), - [sym__edit_comment_span_start] = ACTIONS(3232), - [sym__single_quote_span_open] = ACTIONS(3232), - [sym__double_quote_span_open] = ACTIONS(3232), - [sym__shortcode_open_escaped] = ACTIONS(3232), - [sym__shortcode_open] = ACTIONS(3232), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3232), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3232), - [sym__cite_author_in_text] = ACTIONS(3232), - [sym__cite_suppress_author] = ACTIONS(3232), - [sym__strikeout_open] = ACTIONS(3232), - [sym__subscript_open] = ACTIONS(3232), - [sym__superscript_open] = ACTIONS(3232), - [sym__inline_note_start_token] = ACTIONS(3232), - [sym__strong_emphasis_open_star] = ACTIONS(3232), - [sym__strong_emphasis_open_underscore] = ACTIONS(3232), - [sym__emphasis_open_star] = ACTIONS(3232), - [sym__emphasis_open_underscore] = ACTIONS(3232), - [sym_inline_note_reference] = ACTIONS(3232), - [sym_html_element] = ACTIONS(3232), - [sym__pandoc_line_break] = ACTIONS(3232), - }, - [STATE(602)] = { - [ts_builtin_sym_end] = ACTIONS(3238), - [anon_sym_COLON] = ACTIONS(3238), - [sym_entity_reference] = ACTIONS(3238), - [sym_numeric_character_reference] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_BANG_LBRACK] = ACTIONS(3238), - [anon_sym_DOLLAR] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3238), - [aux_sym_pandoc_str_token1] = ACTIONS(3240), - [anon_sym_PIPE] = ACTIONS(3238), - [aux_sym__prose_punctuation_token1] = ACTIONS(3240), - [sym__line_ending] = ACTIONS(3238), - [sym__soft_line_ending] = ACTIONS(3238), - [sym__block_quote_start] = ACTIONS(3238), - [sym_atx_h1_marker] = ACTIONS(3238), - [sym_atx_h2_marker] = ACTIONS(3238), - [sym_atx_h3_marker] = ACTIONS(3238), - [sym_atx_h4_marker] = ACTIONS(3238), - [sym_atx_h5_marker] = ACTIONS(3238), - [sym_atx_h6_marker] = ACTIONS(3238), - [sym__thematic_break] = ACTIONS(3238), - [sym__list_marker_minus] = ACTIONS(3238), - [sym__list_marker_plus] = ACTIONS(3238), - [sym__list_marker_star] = ACTIONS(3238), - [sym__list_marker_parenthesis] = ACTIONS(3238), - [sym__list_marker_dot] = ACTIONS(3238), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3238), - [sym__list_marker_example] = ACTIONS(3238), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3238), - [sym__fenced_code_block_start_backtick] = ACTIONS(3238), - [sym_minus_metadata] = ACTIONS(3238), - [sym__pipe_table_start] = ACTIONS(3238), - [sym__fenced_div_start] = ACTIONS(3238), - [sym_ref_id_specifier] = ACTIONS(3238), - [sym__code_span_start] = ACTIONS(3238), - [sym__html_comment] = ACTIONS(3238), - [sym__autolink] = ACTIONS(3238), - [sym__highlight_span_start] = ACTIONS(3238), - [sym__insert_span_start] = ACTIONS(3238), - [sym__delete_span_start] = ACTIONS(3238), - [sym__edit_comment_span_start] = ACTIONS(3238), - [sym__single_quote_span_open] = ACTIONS(3238), - [sym__double_quote_span_open] = ACTIONS(3238), - [sym__shortcode_open_escaped] = ACTIONS(3238), - [sym__shortcode_open] = ACTIONS(3238), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3238), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3238), - [sym__cite_author_in_text] = ACTIONS(3238), - [sym__cite_suppress_author] = ACTIONS(3238), - [sym__strikeout_open] = ACTIONS(3238), - [sym__subscript_open] = ACTIONS(3238), - [sym__superscript_open] = ACTIONS(3238), - [sym__inline_note_start_token] = ACTIONS(3238), - [sym__strong_emphasis_open_star] = ACTIONS(3238), - [sym__strong_emphasis_open_underscore] = ACTIONS(3238), - [sym__emphasis_open_star] = ACTIONS(3238), - [sym__emphasis_open_underscore] = ACTIONS(3238), - [sym_inline_note_reference] = ACTIONS(3238), - [sym_html_element] = ACTIONS(3238), - [sym__pandoc_line_break] = ACTIONS(3238), - }, - [STATE(603)] = { - [anon_sym_COLON] = ACTIONS(3256), - [sym_entity_reference] = ACTIONS(3256), - [sym_numeric_character_reference] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_BANG_LBRACK] = ACTIONS(3256), - [anon_sym_DOLLAR] = ACTIONS(3258), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3256), - [aux_sym_pandoc_str_token1] = ACTIONS(3258), - [anon_sym_PIPE] = ACTIONS(3256), - [aux_sym__prose_punctuation_token1] = ACTIONS(3258), - [sym__line_ending] = ACTIONS(3256), - [sym__soft_line_ending] = ACTIONS(3256), - [sym__block_close] = ACTIONS(3256), - [sym__block_quote_start] = ACTIONS(3256), - [sym_atx_h1_marker] = ACTIONS(3256), - [sym_atx_h2_marker] = ACTIONS(3256), - [sym_atx_h3_marker] = ACTIONS(3256), - [sym_atx_h4_marker] = ACTIONS(3256), - [sym_atx_h5_marker] = ACTIONS(3256), - [sym_atx_h6_marker] = ACTIONS(3256), - [sym__thematic_break] = ACTIONS(3256), - [sym__list_marker_minus] = ACTIONS(3256), - [sym__list_marker_plus] = ACTIONS(3256), - [sym__list_marker_star] = ACTIONS(3256), - [sym__list_marker_parenthesis] = ACTIONS(3256), - [sym__list_marker_dot] = ACTIONS(3256), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3256), - [sym__list_marker_example] = ACTIONS(3256), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3256), - [sym__fenced_code_block_start_backtick] = ACTIONS(3256), - [sym_minus_metadata] = ACTIONS(3256), - [sym__pipe_table_start] = ACTIONS(3256), - [sym__fenced_div_start] = ACTIONS(3256), - [sym_ref_id_specifier] = ACTIONS(3256), - [sym__code_span_start] = ACTIONS(3256), - [sym__html_comment] = ACTIONS(3256), - [sym__autolink] = ACTIONS(3256), - [sym__highlight_span_start] = ACTIONS(3256), - [sym__insert_span_start] = ACTIONS(3256), - [sym__delete_span_start] = ACTIONS(3256), - [sym__edit_comment_span_start] = ACTIONS(3256), - [sym__single_quote_span_open] = ACTIONS(3256), - [sym__double_quote_span_open] = ACTIONS(3256), - [sym__shortcode_open_escaped] = ACTIONS(3256), - [sym__shortcode_open] = ACTIONS(3256), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3256), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3256), - [sym__cite_author_in_text] = ACTIONS(3256), - [sym__cite_suppress_author] = ACTIONS(3256), - [sym__strikeout_open] = ACTIONS(3256), - [sym__subscript_open] = ACTIONS(3256), - [sym__superscript_open] = ACTIONS(3256), - [sym__inline_note_start_token] = ACTIONS(3256), - [sym__strong_emphasis_open_star] = ACTIONS(3256), - [sym__strong_emphasis_open_underscore] = ACTIONS(3256), - [sym__emphasis_open_star] = ACTIONS(3256), - [sym__emphasis_open_underscore] = ACTIONS(3256), - [sym_inline_note_reference] = ACTIONS(3256), - [sym_html_element] = ACTIONS(3256), - [sym__pandoc_line_break] = ACTIONS(3256), - }, - [STATE(604)] = { - [anon_sym_COLON] = ACTIONS(3073), - [sym_entity_reference] = ACTIONS(3073), - [sym_numeric_character_reference] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_BANG_LBRACK] = ACTIONS(3073), - [anon_sym_DOLLAR] = ACTIONS(3075), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3073), - [aux_sym_pandoc_str_token1] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3073), - [aux_sym__prose_punctuation_token1] = ACTIONS(3075), - [sym__line_ending] = ACTIONS(3073), - [sym__soft_line_ending] = ACTIONS(3073), - [sym__block_close] = ACTIONS(3073), - [sym__block_quote_start] = ACTIONS(3073), - [sym_atx_h1_marker] = ACTIONS(3073), - [sym_atx_h2_marker] = ACTIONS(3073), - [sym_atx_h3_marker] = ACTIONS(3073), - [sym_atx_h4_marker] = ACTIONS(3073), - [sym_atx_h5_marker] = ACTIONS(3073), - [sym_atx_h6_marker] = ACTIONS(3073), - [sym__thematic_break] = ACTIONS(3073), - [sym__list_marker_minus] = ACTIONS(3073), - [sym__list_marker_plus] = ACTIONS(3073), - [sym__list_marker_star] = ACTIONS(3073), - [sym__list_marker_parenthesis] = ACTIONS(3073), - [sym__list_marker_dot] = ACTIONS(3073), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3073), - [sym__list_marker_example] = ACTIONS(3073), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3073), - [sym__fenced_code_block_start_backtick] = ACTIONS(3073), - [sym_minus_metadata] = ACTIONS(3073), - [sym__pipe_table_start] = ACTIONS(3073), - [sym__fenced_div_start] = ACTIONS(3073), - [sym_ref_id_specifier] = ACTIONS(3073), - [sym__code_span_start] = ACTIONS(3073), - [sym__html_comment] = ACTIONS(3073), - [sym__autolink] = ACTIONS(3073), - [sym__highlight_span_start] = ACTIONS(3073), - [sym__insert_span_start] = ACTIONS(3073), - [sym__delete_span_start] = ACTIONS(3073), - [sym__edit_comment_span_start] = ACTIONS(3073), - [sym__single_quote_span_open] = ACTIONS(3073), - [sym__double_quote_span_open] = ACTIONS(3073), - [sym__shortcode_open_escaped] = ACTIONS(3073), - [sym__shortcode_open] = ACTIONS(3073), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3073), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3073), - [sym__cite_author_in_text] = ACTIONS(3073), - [sym__cite_suppress_author] = ACTIONS(3073), - [sym__strikeout_open] = ACTIONS(3073), - [sym__subscript_open] = ACTIONS(3073), - [sym__superscript_open] = ACTIONS(3073), - [sym__inline_note_start_token] = ACTIONS(3073), - [sym__strong_emphasis_open_star] = ACTIONS(3073), - [sym__strong_emphasis_open_underscore] = ACTIONS(3073), - [sym__emphasis_open_star] = ACTIONS(3073), - [sym__emphasis_open_underscore] = ACTIONS(3073), - [sym_inline_note_reference] = ACTIONS(3073), - [sym_html_element] = ACTIONS(3073), - [sym__pandoc_line_break] = ACTIONS(3073), - }, - [STATE(605)] = { - [anon_sym_COLON] = ACTIONS(3081), - [sym_entity_reference] = ACTIONS(3081), - [sym_numeric_character_reference] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_BANG_LBRACK] = ACTIONS(3081), - [anon_sym_DOLLAR] = ACTIONS(3083), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [aux_sym_pandoc_str_token1] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3081), - [aux_sym__prose_punctuation_token1] = ACTIONS(3083), - [sym__line_ending] = ACTIONS(3081), - [sym__soft_line_ending] = ACTIONS(3081), - [sym__block_close] = ACTIONS(3081), - [sym__block_quote_start] = ACTIONS(3081), - [sym_atx_h1_marker] = ACTIONS(3081), - [sym_atx_h2_marker] = ACTIONS(3081), - [sym_atx_h3_marker] = ACTIONS(3081), - [sym_atx_h4_marker] = ACTIONS(3081), - [sym_atx_h5_marker] = ACTIONS(3081), - [sym_atx_h6_marker] = ACTIONS(3081), - [sym__thematic_break] = ACTIONS(3081), - [sym__list_marker_minus] = ACTIONS(3081), - [sym__list_marker_plus] = ACTIONS(3081), - [sym__list_marker_star] = ACTIONS(3081), - [sym__list_marker_parenthesis] = ACTIONS(3081), - [sym__list_marker_dot] = ACTIONS(3081), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3081), - [sym__list_marker_example] = ACTIONS(3081), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3081), - [sym__fenced_code_block_start_backtick] = ACTIONS(3081), - [sym_minus_metadata] = ACTIONS(3081), - [sym__pipe_table_start] = ACTIONS(3081), - [sym__fenced_div_start] = ACTIONS(3081), - [sym_ref_id_specifier] = ACTIONS(3081), - [sym__code_span_start] = ACTIONS(3081), - [sym__html_comment] = ACTIONS(3081), - [sym__autolink] = ACTIONS(3081), - [sym__highlight_span_start] = ACTIONS(3081), - [sym__insert_span_start] = ACTIONS(3081), - [sym__delete_span_start] = ACTIONS(3081), - [sym__edit_comment_span_start] = ACTIONS(3081), - [sym__single_quote_span_open] = ACTIONS(3081), - [sym__double_quote_span_open] = ACTIONS(3081), - [sym__shortcode_open_escaped] = ACTIONS(3081), - [sym__shortcode_open] = ACTIONS(3081), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3081), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3081), - [sym__cite_author_in_text] = ACTIONS(3081), - [sym__cite_suppress_author] = ACTIONS(3081), - [sym__strikeout_open] = ACTIONS(3081), - [sym__subscript_open] = ACTIONS(3081), - [sym__superscript_open] = ACTIONS(3081), - [sym__inline_note_start_token] = ACTIONS(3081), - [sym__strong_emphasis_open_star] = ACTIONS(3081), - [sym__strong_emphasis_open_underscore] = ACTIONS(3081), - [sym__emphasis_open_star] = ACTIONS(3081), - [sym__emphasis_open_underscore] = ACTIONS(3081), - [sym_inline_note_reference] = ACTIONS(3081), - [sym_html_element] = ACTIONS(3081), - [sym__pandoc_line_break] = ACTIONS(3081), - }, - [STATE(606)] = { - [anon_sym_COLON] = ACTIONS(3198), - [sym_entity_reference] = ACTIONS(3198), - [sym_numeric_character_reference] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_BANG_LBRACK] = ACTIONS(3198), - [anon_sym_DOLLAR] = ACTIONS(3200), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [aux_sym_pandoc_str_token1] = ACTIONS(3200), - [anon_sym_PIPE] = ACTIONS(3198), - [aux_sym__prose_punctuation_token1] = ACTIONS(3200), - [sym__line_ending] = ACTIONS(3198), - [sym__soft_line_ending] = ACTIONS(3198), - [sym__block_close] = ACTIONS(3198), - [sym__block_quote_start] = ACTIONS(3198), - [sym_atx_h1_marker] = ACTIONS(3198), - [sym_atx_h2_marker] = ACTIONS(3198), - [sym_atx_h3_marker] = ACTIONS(3198), - [sym_atx_h4_marker] = ACTIONS(3198), - [sym_atx_h5_marker] = ACTIONS(3198), - [sym_atx_h6_marker] = ACTIONS(3198), - [sym__thematic_break] = ACTIONS(3198), - [sym__list_marker_minus] = ACTIONS(3198), - [sym__list_marker_plus] = ACTIONS(3198), - [sym__list_marker_star] = ACTIONS(3198), - [sym__list_marker_parenthesis] = ACTIONS(3198), - [sym__list_marker_dot] = ACTIONS(3198), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3198), - [sym__list_marker_example] = ACTIONS(3198), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3198), - [sym__fenced_code_block_start_backtick] = ACTIONS(3198), - [sym_minus_metadata] = ACTIONS(3198), - [sym__pipe_table_start] = ACTIONS(3198), - [sym__fenced_div_start] = ACTIONS(3198), - [sym_ref_id_specifier] = ACTIONS(3198), - [sym__code_span_start] = ACTIONS(3198), - [sym__html_comment] = ACTIONS(3198), - [sym__autolink] = ACTIONS(3198), - [sym__highlight_span_start] = ACTIONS(3198), - [sym__insert_span_start] = ACTIONS(3198), - [sym__delete_span_start] = ACTIONS(3198), - [sym__edit_comment_span_start] = ACTIONS(3198), - [sym__single_quote_span_open] = ACTIONS(3198), - [sym__double_quote_span_open] = ACTIONS(3198), - [sym__shortcode_open_escaped] = ACTIONS(3198), - [sym__shortcode_open] = ACTIONS(3198), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3198), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3198), - [sym__cite_author_in_text] = ACTIONS(3198), - [sym__cite_suppress_author] = ACTIONS(3198), - [sym__strikeout_open] = ACTIONS(3198), - [sym__subscript_open] = ACTIONS(3198), - [sym__superscript_open] = ACTIONS(3198), - [sym__inline_note_start_token] = ACTIONS(3198), - [sym__strong_emphasis_open_star] = ACTIONS(3198), - [sym__strong_emphasis_open_underscore] = ACTIONS(3198), - [sym__emphasis_open_star] = ACTIONS(3198), - [sym__emphasis_open_underscore] = ACTIONS(3198), - [sym_inline_note_reference] = ACTIONS(3198), - [sym_html_element] = ACTIONS(3198), - [sym__pandoc_line_break] = ACTIONS(3198), - }, - [STATE(607)] = { - [anon_sym_COLON] = ACTIONS(3202), - [sym_entity_reference] = ACTIONS(3202), - [sym_numeric_character_reference] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_BANG_LBRACK] = ACTIONS(3202), - [anon_sym_DOLLAR] = ACTIONS(3204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [aux_sym_pandoc_str_token1] = ACTIONS(3204), - [anon_sym_PIPE] = ACTIONS(3202), - [aux_sym__prose_punctuation_token1] = ACTIONS(3204), - [sym__line_ending] = ACTIONS(3202), - [sym__soft_line_ending] = ACTIONS(3202), - [sym__block_close] = ACTIONS(3202), - [sym__block_quote_start] = ACTIONS(3202), - [sym_atx_h1_marker] = ACTIONS(3202), - [sym_atx_h2_marker] = ACTIONS(3202), - [sym_atx_h3_marker] = ACTIONS(3202), - [sym_atx_h4_marker] = ACTIONS(3202), - [sym_atx_h5_marker] = ACTIONS(3202), - [sym_atx_h6_marker] = ACTIONS(3202), - [sym__thematic_break] = ACTIONS(3202), - [sym__list_marker_minus] = ACTIONS(3202), - [sym__list_marker_plus] = ACTIONS(3202), - [sym__list_marker_star] = ACTIONS(3202), - [sym__list_marker_parenthesis] = ACTIONS(3202), - [sym__list_marker_dot] = ACTIONS(3202), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3202), - [sym__list_marker_example] = ACTIONS(3202), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3202), - [sym__fenced_code_block_start_backtick] = ACTIONS(3202), - [sym_minus_metadata] = ACTIONS(3202), - [sym__pipe_table_start] = ACTIONS(3202), - [sym__fenced_div_start] = ACTIONS(3202), - [sym_ref_id_specifier] = ACTIONS(3202), - [sym__code_span_start] = ACTIONS(3202), - [sym__html_comment] = ACTIONS(3202), - [sym__autolink] = ACTIONS(3202), - [sym__highlight_span_start] = ACTIONS(3202), - [sym__insert_span_start] = ACTIONS(3202), - [sym__delete_span_start] = ACTIONS(3202), - [sym__edit_comment_span_start] = ACTIONS(3202), - [sym__single_quote_span_open] = ACTIONS(3202), - [sym__double_quote_span_open] = ACTIONS(3202), - [sym__shortcode_open_escaped] = ACTIONS(3202), - [sym__shortcode_open] = ACTIONS(3202), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3202), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3202), - [sym__cite_author_in_text] = ACTIONS(3202), - [sym__cite_suppress_author] = ACTIONS(3202), - [sym__strikeout_open] = ACTIONS(3202), - [sym__subscript_open] = ACTIONS(3202), - [sym__superscript_open] = ACTIONS(3202), - [sym__inline_note_start_token] = ACTIONS(3202), - [sym__strong_emphasis_open_star] = ACTIONS(3202), - [sym__strong_emphasis_open_underscore] = ACTIONS(3202), - [sym__emphasis_open_star] = ACTIONS(3202), - [sym__emphasis_open_underscore] = ACTIONS(3202), - [sym_inline_note_reference] = ACTIONS(3202), - [sym_html_element] = ACTIONS(3202), - [sym__pandoc_line_break] = ACTIONS(3202), - }, - [STATE(608)] = { - [anon_sym_COLON] = ACTIONS(3206), - [sym_entity_reference] = ACTIONS(3206), - [sym_numeric_character_reference] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_BANG_LBRACK] = ACTIONS(3206), - [anon_sym_DOLLAR] = ACTIONS(3208), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3206), - [aux_sym_pandoc_str_token1] = ACTIONS(3208), - [anon_sym_PIPE] = ACTIONS(3206), - [aux_sym__prose_punctuation_token1] = ACTIONS(3208), - [sym__line_ending] = ACTIONS(3206), - [sym__soft_line_ending] = ACTIONS(3206), - [sym__block_close] = ACTIONS(3206), - [sym__block_quote_start] = ACTIONS(3206), - [sym_atx_h1_marker] = ACTIONS(3206), - [sym_atx_h2_marker] = ACTIONS(3206), - [sym_atx_h3_marker] = ACTIONS(3206), - [sym_atx_h4_marker] = ACTIONS(3206), - [sym_atx_h5_marker] = ACTIONS(3206), - [sym_atx_h6_marker] = ACTIONS(3206), - [sym__thematic_break] = ACTIONS(3206), - [sym__list_marker_minus] = ACTIONS(3206), - [sym__list_marker_plus] = ACTIONS(3206), - [sym__list_marker_star] = ACTIONS(3206), - [sym__list_marker_parenthesis] = ACTIONS(3206), - [sym__list_marker_dot] = ACTIONS(3206), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3206), - [sym__list_marker_example] = ACTIONS(3206), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3206), - [sym__fenced_code_block_start_backtick] = ACTIONS(3206), - [sym_minus_metadata] = ACTIONS(3206), - [sym__pipe_table_start] = ACTIONS(3206), - [sym__fenced_div_start] = ACTIONS(3206), - [sym_ref_id_specifier] = ACTIONS(3206), - [sym__code_span_start] = ACTIONS(3206), - [sym__html_comment] = ACTIONS(3206), - [sym__autolink] = ACTIONS(3206), - [sym__highlight_span_start] = ACTIONS(3206), - [sym__insert_span_start] = ACTIONS(3206), - [sym__delete_span_start] = ACTIONS(3206), - [sym__edit_comment_span_start] = ACTIONS(3206), - [sym__single_quote_span_open] = ACTIONS(3206), - [sym__double_quote_span_open] = ACTIONS(3206), - [sym__shortcode_open_escaped] = ACTIONS(3206), - [sym__shortcode_open] = ACTIONS(3206), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3206), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3206), - [sym__cite_author_in_text] = ACTIONS(3206), - [sym__cite_suppress_author] = ACTIONS(3206), - [sym__strikeout_open] = ACTIONS(3206), - [sym__subscript_open] = ACTIONS(3206), - [sym__superscript_open] = ACTIONS(3206), - [sym__inline_note_start_token] = ACTIONS(3206), - [sym__strong_emphasis_open_star] = ACTIONS(3206), - [sym__strong_emphasis_open_underscore] = ACTIONS(3206), - [sym__emphasis_open_star] = ACTIONS(3206), - [sym__emphasis_open_underscore] = ACTIONS(3206), - [sym_inline_note_reference] = ACTIONS(3206), - [sym_html_element] = ACTIONS(3206), - [sym__pandoc_line_break] = ACTIONS(3206), - }, - [STATE(609)] = { - [anon_sym_COLON] = ACTIONS(3210), - [sym_entity_reference] = ACTIONS(3210), - [sym_numeric_character_reference] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_BANG_LBRACK] = ACTIONS(3210), - [anon_sym_DOLLAR] = ACTIONS(3212), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [aux_sym_pandoc_str_token1] = ACTIONS(3212), - [anon_sym_PIPE] = ACTIONS(3210), - [aux_sym__prose_punctuation_token1] = ACTIONS(3212), - [sym__line_ending] = ACTIONS(3210), - [sym__soft_line_ending] = ACTIONS(3210), - [sym__block_close] = ACTIONS(3210), - [sym__block_quote_start] = ACTIONS(3210), - [sym_atx_h1_marker] = ACTIONS(3210), - [sym_atx_h2_marker] = ACTIONS(3210), - [sym_atx_h3_marker] = ACTIONS(3210), - [sym_atx_h4_marker] = ACTIONS(3210), - [sym_atx_h5_marker] = ACTIONS(3210), - [sym_atx_h6_marker] = ACTIONS(3210), - [sym__thematic_break] = ACTIONS(3210), - [sym__list_marker_minus] = ACTIONS(3210), - [sym__list_marker_plus] = ACTIONS(3210), - [sym__list_marker_star] = ACTIONS(3210), - [sym__list_marker_parenthesis] = ACTIONS(3210), - [sym__list_marker_dot] = ACTIONS(3210), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3210), - [sym__list_marker_example] = ACTIONS(3210), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3210), - [sym__fenced_code_block_start_backtick] = ACTIONS(3210), - [sym_minus_metadata] = ACTIONS(3210), - [sym__pipe_table_start] = ACTIONS(3210), - [sym__fenced_div_start] = ACTIONS(3210), - [sym_ref_id_specifier] = ACTIONS(3210), - [sym__code_span_start] = ACTIONS(3210), - [sym__html_comment] = ACTIONS(3210), - [sym__autolink] = ACTIONS(3210), - [sym__highlight_span_start] = ACTIONS(3210), - [sym__insert_span_start] = ACTIONS(3210), - [sym__delete_span_start] = ACTIONS(3210), - [sym__edit_comment_span_start] = ACTIONS(3210), - [sym__single_quote_span_open] = ACTIONS(3210), - [sym__double_quote_span_open] = ACTIONS(3210), - [sym__shortcode_open_escaped] = ACTIONS(3210), - [sym__shortcode_open] = ACTIONS(3210), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3210), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3210), - [sym__cite_author_in_text] = ACTIONS(3210), - [sym__cite_suppress_author] = ACTIONS(3210), - [sym__strikeout_open] = ACTIONS(3210), - [sym__subscript_open] = ACTIONS(3210), - [sym__superscript_open] = ACTIONS(3210), - [sym__inline_note_start_token] = ACTIONS(3210), - [sym__strong_emphasis_open_star] = ACTIONS(3210), - [sym__strong_emphasis_open_underscore] = ACTIONS(3210), - [sym__emphasis_open_star] = ACTIONS(3210), - [sym__emphasis_open_underscore] = ACTIONS(3210), - [sym_inline_note_reference] = ACTIONS(3210), - [sym_html_element] = ACTIONS(3210), - [sym__pandoc_line_break] = ACTIONS(3210), - }, - [STATE(610)] = { - [sym_pandoc_span] = STATE(475), - [sym_pandoc_image] = STATE(475), - [sym_pandoc_math] = STATE(475), - [sym_pandoc_display_math] = STATE(475), - [sym_pandoc_code_span] = STATE(475), - [sym_pandoc_single_quote] = STATE(475), - [sym_pandoc_double_quote] = STATE(475), - [sym_insert] = STATE(475), - [sym_delete] = STATE(475), - [sym_edit_comment] = STATE(475), - [sym_highlight] = STATE(475), - [sym__pandoc_attr_specifier] = STATE(475), - [sym__inline_element] = STATE(475), - [sym_shortcode_escaped] = STATE(475), - [sym_shortcode] = STATE(475), - [sym_citation] = STATE(475), - [sym_inline_note] = STATE(475), - [sym_pandoc_superscript] = STATE(475), - [sym_pandoc_subscript] = STATE(475), - [sym_pandoc_strikeout] = STATE(475), - [sym_pandoc_emph] = STATE(475), - [sym_pandoc_strong] = STATE(475), - [sym_pandoc_str] = STATE(475), - [sym__prose_punctuation] = STATE(475), - [aux_sym__line_repeat1] = STATE(475), - [sym_entity_reference] = ACTIONS(3827), - [sym_numeric_character_reference] = ACTIONS(3827), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(498)] = { + [sym__inlines] = STATE(4158), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(709), + [sym__inline_whitespace] = STATE(709), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3215), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(499)] = { + [sym__inlines] = STATE(3826), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(714), + [sym__inline_whitespace] = STATE(714), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3219), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(500)] = { + [sym__inlines] = STATE(3417), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(720), + [sym__inline_whitespace] = STATE(720), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3223), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(501)] = { + [sym__inlines] = STATE(3619), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(730), + [sym__inline_whitespace] = STATE(730), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3227), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(502)] = { + [ts_builtin_sym_end] = ACTIONS(2333), + [anon_sym_COLON] = ACTIONS(2333), + [sym_entity_reference] = ACTIONS(2333), + [sym_numeric_character_reference] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_BANG_LBRACK] = ACTIONS(2333), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [aux_sym_pandoc_str_token1] = ACTIONS(2335), + [anon_sym_PIPE] = ACTIONS(2333), + [sym__whitespace] = ACTIONS(2333), + [sym__line_ending] = ACTIONS(2333), + [sym__soft_line_ending] = ACTIONS(2333), + [sym__block_quote_start] = ACTIONS(2333), + [sym_atx_h1_marker] = ACTIONS(2333), + [sym_atx_h2_marker] = ACTIONS(2333), + [sym_atx_h3_marker] = ACTIONS(2333), + [sym_atx_h4_marker] = ACTIONS(2333), + [sym_atx_h5_marker] = ACTIONS(2333), + [sym_atx_h6_marker] = ACTIONS(2333), + [sym__thematic_break] = ACTIONS(2333), + [sym__list_marker_minus] = ACTIONS(2333), + [sym__list_marker_plus] = ACTIONS(2333), + [sym__list_marker_star] = ACTIONS(2333), + [sym__list_marker_parenthesis] = ACTIONS(2333), + [sym__list_marker_dot] = ACTIONS(2333), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2333), + [sym__list_marker_example] = ACTIONS(2333), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2333), + [sym__fenced_code_block_start_backtick] = ACTIONS(2333), + [sym_minus_metadata] = ACTIONS(2333), + [sym__pipe_table_start] = ACTIONS(2333), + [sym__fenced_div_start] = ACTIONS(2333), + [sym_ref_id_specifier] = ACTIONS(2333), + [sym__code_span_start] = ACTIONS(2333), + [sym__html_comment] = ACTIONS(2333), + [sym__autolink] = ACTIONS(2333), + [sym__highlight_span_start] = ACTIONS(2333), + [sym__insert_span_start] = ACTIONS(2333), + [sym__delete_span_start] = ACTIONS(2333), + [sym__edit_comment_span_start] = ACTIONS(2333), + [sym__single_quote_span_open] = ACTIONS(2333), + [sym__double_quote_span_open] = ACTIONS(2333), + [sym__shortcode_open_escaped] = ACTIONS(2333), + [sym__shortcode_open] = ACTIONS(2333), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2333), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2333), + [sym__cite_author_in_text] = ACTIONS(2333), + [sym__cite_suppress_author] = ACTIONS(2333), + [sym__strikeout_open] = ACTIONS(2333), + [sym__subscript_open] = ACTIONS(2333), + [sym__superscript_open] = ACTIONS(2333), + [sym__inline_note_start_token] = ACTIONS(2333), + [sym__strong_emphasis_open_star] = ACTIONS(2333), + [sym__strong_emphasis_open_underscore] = ACTIONS(2333), + [sym__emphasis_open_star] = ACTIONS(2333), + [sym__emphasis_open_underscore] = ACTIONS(2333), + [sym_inline_note_reference] = ACTIONS(2333), + [sym_html_element] = ACTIONS(2333), + [sym__pandoc_line_break] = ACTIONS(2333), + }, + [STATE(503)] = { + [sym__atx_heading_content] = STATE(3101), + [sym__inlines] = STATE(3101), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(536), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), [anon_sym_BANG_LBRACK] = ACTIONS(11), [anon_sym_DOLLAR] = ACTIONS(13), @@ -70834,14 +64858,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(17), [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), - [aux_sym__prose_punctuation_token1] = ACTIONS(3829), - [sym__whitespace] = ACTIONS(3821), - [sym__line_ending] = ACTIONS(3497), - [sym__soft_line_ending] = ACTIONS(3497), - [sym__eof] = ACTIONS(3497), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(113), + [sym__eof] = ACTIONS(3229), [sym__code_span_start] = ACTIONS(67), - [sym__html_comment] = ACTIONS(3827), - [sym__autolink] = ACTIONS(3827), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), [sym__highlight_span_start] = ACTIONS(69), [sym__insert_span_start] = ACTIONS(71), [sym__delete_span_start] = ACTIONS(73), @@ -70862,157 +64884,19217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__strong_emphasis_open_underscore] = ACTIONS(103), [sym__emphasis_open_star] = ACTIONS(105), [sym__emphasis_open_underscore] = ACTIONS(107), - [sym_inline_note_reference] = ACTIONS(3827), - [sym_html_element] = ACTIONS(3827), - [sym__pandoc_line_break] = ACTIONS(3827), - }, - [STATE(611)] = { - [anon_sym_COLON] = ACTIONS(3214), - [sym_entity_reference] = ACTIONS(3214), - [sym_numeric_character_reference] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_BANG_LBRACK] = ACTIONS(3214), - [anon_sym_DOLLAR] = ACTIONS(3216), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [aux_sym_pandoc_str_token1] = ACTIONS(3216), - [anon_sym_PIPE] = ACTIONS(3214), - [aux_sym__prose_punctuation_token1] = ACTIONS(3216), - [sym__line_ending] = ACTIONS(3214), - [sym__soft_line_ending] = ACTIONS(3214), - [sym__block_close] = ACTIONS(3214), - [sym__block_quote_start] = ACTIONS(3214), - [sym_atx_h1_marker] = ACTIONS(3214), - [sym_atx_h2_marker] = ACTIONS(3214), - [sym_atx_h3_marker] = ACTIONS(3214), - [sym_atx_h4_marker] = ACTIONS(3214), - [sym_atx_h5_marker] = ACTIONS(3214), - [sym_atx_h6_marker] = ACTIONS(3214), - [sym__thematic_break] = ACTIONS(3214), - [sym__list_marker_minus] = ACTIONS(3214), - [sym__list_marker_plus] = ACTIONS(3214), - [sym__list_marker_star] = ACTIONS(3214), - [sym__list_marker_parenthesis] = ACTIONS(3214), - [sym__list_marker_dot] = ACTIONS(3214), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3214), - [sym__list_marker_example] = ACTIONS(3214), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3214), - [sym__fenced_code_block_start_backtick] = ACTIONS(3214), - [sym_minus_metadata] = ACTIONS(3214), - [sym__pipe_table_start] = ACTIONS(3214), - [sym__fenced_div_start] = ACTIONS(3214), - [sym_ref_id_specifier] = ACTIONS(3214), - [sym__code_span_start] = ACTIONS(3214), - [sym__html_comment] = ACTIONS(3214), - [sym__autolink] = ACTIONS(3214), - [sym__highlight_span_start] = ACTIONS(3214), - [sym__insert_span_start] = ACTIONS(3214), - [sym__delete_span_start] = ACTIONS(3214), - [sym__edit_comment_span_start] = ACTIONS(3214), - [sym__single_quote_span_open] = ACTIONS(3214), - [sym__double_quote_span_open] = ACTIONS(3214), - [sym__shortcode_open_escaped] = ACTIONS(3214), - [sym__shortcode_open] = ACTIONS(3214), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3214), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3214), - [sym__cite_author_in_text] = ACTIONS(3214), - [sym__cite_suppress_author] = ACTIONS(3214), - [sym__strikeout_open] = ACTIONS(3214), - [sym__subscript_open] = ACTIONS(3214), - [sym__superscript_open] = ACTIONS(3214), - [sym__inline_note_start_token] = ACTIONS(3214), - [sym__strong_emphasis_open_star] = ACTIONS(3214), - [sym__strong_emphasis_open_underscore] = ACTIONS(3214), - [sym__emphasis_open_star] = ACTIONS(3214), - [sym__emphasis_open_underscore] = ACTIONS(3214), - [sym_inline_note_reference] = ACTIONS(3214), - [sym_html_element] = ACTIONS(3214), - [sym__pandoc_line_break] = ACTIONS(3214), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 33, - ACTIONS(3834), 1, - anon_sym_LBRACK, - ACTIONS(3837), 1, - anon_sym_BANG_LBRACK, - ACTIONS(3840), 1, - anon_sym_DOLLAR, - ACTIONS(3843), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(3846), 1, - anon_sym_LBRACE, - ACTIONS(3849), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3852), 1, - anon_sym_PIPE, - ACTIONS(3855), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3858), 1, - sym__whitespace, - ACTIONS(3861), 1, - sym__code_span_start, - ACTIONS(3864), 1, - sym__highlight_span_start, - ACTIONS(3867), 1, - sym__insert_span_start, - ACTIONS(3870), 1, - sym__delete_span_start, - ACTIONS(3873), 1, - sym__edit_comment_span_start, - ACTIONS(3876), 1, - sym__single_quote_span_open, - ACTIONS(3879), 1, - sym__double_quote_span_open, - ACTIONS(3882), 1, - sym__shortcode_open_escaped, - ACTIONS(3885), 1, - sym__shortcode_open, - ACTIONS(3888), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(3891), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(3894), 1, - sym__cite_author_in_text, - ACTIONS(3897), 1, - sym__cite_suppress_author, - ACTIONS(3900), 1, - sym__strikeout_open, - ACTIONS(3903), 1, - sym__subscript_open, - ACTIONS(3906), 1, - sym__superscript_open, - ACTIONS(3909), 1, - sym__inline_note_start_token, - ACTIONS(3912), 1, - sym__strong_emphasis_open_star, - ACTIONS(3915), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(3918), 1, - sym__emphasis_open_star, - ACTIONS(3921), 1, - sym__emphasis_open_underscore, - ACTIONS(3334), 2, - sym__line_ending, - sym__pipe_table_delimiter, - ACTIONS(3831), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(612), 25, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, + [STATE(504)] = { + [sym__inlines] = STATE(3713), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(660), + [sym__inline_whitespace] = STATE(660), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3233), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(505)] = { + [sym__inlines] = STATE(3719), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(661), + [sym__inline_whitespace] = STATE(661), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3237), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(506)] = { + [sym__inlines] = STATE(3748), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(662), + [sym__inline_whitespace] = STATE(662), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3241), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(507)] = { + [sym__inlines] = STATE(3758), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(663), + [sym__inline_whitespace] = STATE(663), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3245), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(508)] = { + [sym__atx_heading_content] = STATE(3102), + [sym__inlines] = STATE(3102), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(537), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(113), + [sym__eof] = ACTIONS(3247), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(509)] = { + [sym__atx_heading_content] = STATE(3111), + [sym__inlines] = STATE(3111), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(538), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(113), + [sym__eof] = ACTIONS(3249), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(510)] = { + [sym__inlines] = STATE(4136), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(674), + [sym__inline_whitespace] = STATE(674), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3253), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(511)] = { + [sym__inlines] = STATE(4148), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(675), + [sym__inline_whitespace] = STATE(675), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3257), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(512)] = { + [sym__inlines] = STATE(4156), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(676), + [sym__inline_whitespace] = STATE(676), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3261), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(513)] = { + [sym__inlines] = STATE(3400), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(677), + [sym__inline_whitespace] = STATE(677), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3265), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(514)] = { + [sym__atx_heading_content] = STATE(3137), + [sym__inlines] = STATE(3137), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(539), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(113), + [sym__eof] = ACTIONS(3267), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(515)] = { + [sym__atx_heading_content] = STATE(3140), + [sym__inlines] = STATE(3140), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(540), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(113), + [sym__eof] = ACTIONS(3269), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(516)] = { + [sym__inlines] = STATE(3462), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(688), + [sym__inline_whitespace] = STATE(688), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3273), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(517)] = { + [sym__inlines] = STATE(3464), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(689), + [sym__inline_whitespace] = STATE(689), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3277), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(518)] = { + [sym__inlines] = STATE(3466), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(690), + [sym__inline_whitespace] = STATE(690), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3281), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(519)] = { + [sym__inlines] = STATE(3468), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(691), + [sym__inline_whitespace] = STATE(691), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3285), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(520)] = { + [sym__atx_heading_content] = STATE(3145), + [sym__inlines] = STATE(3145), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(541), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(113), + [sym__eof] = ACTIONS(3287), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(521)] = { + [anon_sym_COLON] = ACTIONS(2631), + [sym_entity_reference] = ACTIONS(2631), + [sym_numeric_character_reference] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_BANG_LBRACK] = ACTIONS(2631), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [aux_sym_pandoc_str_token1] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2631), + [sym__whitespace] = ACTIONS(2631), + [sym__line_ending] = ACTIONS(2631), + [sym__soft_line_ending] = ACTIONS(2631), + [sym__block_close] = ACTIONS(2631), + [sym__block_quote_start] = ACTIONS(2631), + [sym_atx_h1_marker] = ACTIONS(2631), + [sym_atx_h2_marker] = ACTIONS(2631), + [sym_atx_h3_marker] = ACTIONS(2631), + [sym_atx_h4_marker] = ACTIONS(2631), + [sym_atx_h5_marker] = ACTIONS(2631), + [sym_atx_h6_marker] = ACTIONS(2631), + [sym__thematic_break] = ACTIONS(2631), + [sym__list_marker_minus] = ACTIONS(2631), + [sym__list_marker_plus] = ACTIONS(2631), + [sym__list_marker_star] = ACTIONS(2631), + [sym__list_marker_parenthesis] = ACTIONS(2631), + [sym__list_marker_dot] = ACTIONS(2631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2631), + [sym__list_marker_example] = ACTIONS(2631), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2631), + [sym__fenced_code_block_start_backtick] = ACTIONS(2631), + [sym_minus_metadata] = ACTIONS(2631), + [sym__pipe_table_start] = ACTIONS(2631), + [sym__fenced_div_start] = ACTIONS(2631), + [sym_ref_id_specifier] = ACTIONS(2631), + [sym__code_span_start] = ACTIONS(2631), + [sym__html_comment] = ACTIONS(2631), + [sym__autolink] = ACTIONS(2631), + [sym__highlight_span_start] = ACTIONS(2631), + [sym__insert_span_start] = ACTIONS(2631), + [sym__delete_span_start] = ACTIONS(2631), + [sym__edit_comment_span_start] = ACTIONS(2631), + [sym__single_quote_span_open] = ACTIONS(2631), + [sym__double_quote_span_open] = ACTIONS(2631), + [sym__shortcode_open_escaped] = ACTIONS(2631), + [sym__shortcode_open] = ACTIONS(2631), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2631), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2631), + [sym__cite_author_in_text] = ACTIONS(2631), + [sym__cite_suppress_author] = ACTIONS(2631), + [sym__strikeout_open] = ACTIONS(2631), + [sym__subscript_open] = ACTIONS(2631), + [sym__superscript_open] = ACTIONS(2631), + [sym__inline_note_start_token] = ACTIONS(2631), + [sym__strong_emphasis_open_star] = ACTIONS(2631), + [sym__strong_emphasis_open_underscore] = ACTIONS(2631), + [sym__emphasis_open_star] = ACTIONS(2631), + [sym__emphasis_open_underscore] = ACTIONS(2631), + [sym_inline_note_reference] = ACTIONS(2631), + [sym_html_element] = ACTIONS(2631), + [sym__pandoc_line_break] = ACTIONS(2631), + }, + [STATE(522)] = { + [sym__inlines] = STATE(3530), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(702), + [sym__inline_whitespace] = STATE(702), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3291), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(523)] = { + [sym__inlines] = STATE(3532), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(703), + [sym__inline_whitespace] = STATE(703), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3295), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(524)] = { + [sym__inlines] = STATE(3534), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(704), + [sym__inline_whitespace] = STATE(704), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3299), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(525)] = { + [sym__inlines] = STATE(3536), + [sym_pandoc_span] = STATE(646), + [sym_pandoc_image] = STATE(646), + [sym_pandoc_math] = STATE(646), + [sym_pandoc_display_math] = STATE(646), + [sym_pandoc_code_span] = STATE(646), + [sym_pandoc_single_quote] = STATE(646), + [sym_pandoc_double_quote] = STATE(646), + [sym_insert] = STATE(646), + [sym_delete] = STATE(646), + [sym_edit_comment] = STATE(646), + [sym_highlight] = STATE(646), + [sym__pandoc_attr_specifier] = STATE(646), + [sym__line] = STATE(2911), + [sym__inline_element] = STATE(646), + [sym_shortcode_escaped] = STATE(646), + [sym_shortcode] = STATE(646), + [sym_citation] = STATE(646), + [sym_inline_note] = STATE(646), + [sym_pandoc_superscript] = STATE(646), + [sym_pandoc_subscript] = STATE(646), + [sym_pandoc_strikeout] = STATE(646), + [sym_pandoc_emph] = STATE(646), + [sym_pandoc_strong] = STATE(646), + [sym_pandoc_str] = STATE(646), + [sym__soft_line_break] = STATE(750), + [sym__inline_whitespace] = STATE(750), + [sym_entity_reference] = ACTIONS(2955), + [sym_numeric_character_reference] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_BANG_LBRACK] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2963), + [aux_sym_insert_token1] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(2967), + [aux_sym_pandoc_str_token1] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [sym__whitespace] = ACTIONS(3303), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(2977), + [sym__html_comment] = ACTIONS(2955), + [sym__autolink] = ACTIONS(2955), + [sym__highlight_span_start] = ACTIONS(2979), + [sym__insert_span_start] = ACTIONS(2981), + [sym__delete_span_start] = ACTIONS(2983), + [sym__edit_comment_span_start] = ACTIONS(2985), + [sym__single_quote_span_open] = ACTIONS(2987), + [sym__double_quote_span_open] = ACTIONS(2989), + [sym__shortcode_open_escaped] = ACTIONS(2991), + [sym__shortcode_open] = ACTIONS(2993), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2995), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2997), + [sym__cite_author_in_text] = ACTIONS(2999), + [sym__cite_suppress_author] = ACTIONS(3001), + [sym__strikeout_open] = ACTIONS(3003), + [sym__subscript_open] = ACTIONS(3005), + [sym__superscript_open] = ACTIONS(3007), + [sym__inline_note_start_token] = ACTIONS(3009), + [sym__strong_emphasis_open_star] = ACTIONS(3011), + [sym__strong_emphasis_open_underscore] = ACTIONS(3013), + [sym__emphasis_open_star] = ACTIONS(3015), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(2955), + [sym_html_element] = ACTIONS(2955), + [sym__pandoc_line_break] = ACTIONS(2955), + }, + [STATE(526)] = { + [anon_sym_COLON] = ACTIONS(2635), + [sym_entity_reference] = ACTIONS(2635), + [sym_numeric_character_reference] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_BANG_LBRACK] = ACTIONS(2635), + [anon_sym_DOLLAR] = ACTIONS(2637), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [aux_sym_pandoc_str_token1] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2635), + [sym__whitespace] = ACTIONS(2635), + [sym__line_ending] = ACTIONS(2635), + [sym__soft_line_ending] = ACTIONS(2635), + [sym__block_close] = ACTIONS(2635), + [sym__block_quote_start] = ACTIONS(2635), + [sym_atx_h1_marker] = ACTIONS(2635), + [sym_atx_h2_marker] = ACTIONS(2635), + [sym_atx_h3_marker] = ACTIONS(2635), + [sym_atx_h4_marker] = ACTIONS(2635), + [sym_atx_h5_marker] = ACTIONS(2635), + [sym_atx_h6_marker] = ACTIONS(2635), + [sym__thematic_break] = ACTIONS(2635), + [sym__list_marker_minus] = ACTIONS(2635), + [sym__list_marker_plus] = ACTIONS(2635), + [sym__list_marker_star] = ACTIONS(2635), + [sym__list_marker_parenthesis] = ACTIONS(2635), + [sym__list_marker_dot] = ACTIONS(2635), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2635), + [sym__list_marker_example] = ACTIONS(2635), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2635), + [sym__fenced_code_block_start_backtick] = ACTIONS(2635), + [sym_minus_metadata] = ACTIONS(2635), + [sym__pipe_table_start] = ACTIONS(2635), + [sym__fenced_div_start] = ACTIONS(2635), + [sym_ref_id_specifier] = ACTIONS(2635), + [sym__code_span_start] = ACTIONS(2635), + [sym__html_comment] = ACTIONS(2635), + [sym__autolink] = ACTIONS(2635), + [sym__highlight_span_start] = ACTIONS(2635), + [sym__insert_span_start] = ACTIONS(2635), + [sym__delete_span_start] = ACTIONS(2635), + [sym__edit_comment_span_start] = ACTIONS(2635), + [sym__single_quote_span_open] = ACTIONS(2635), + [sym__double_quote_span_open] = ACTIONS(2635), + [sym__shortcode_open_escaped] = ACTIONS(2635), + [sym__shortcode_open] = ACTIONS(2635), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2635), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2635), + [sym__cite_author_in_text] = ACTIONS(2635), + [sym__cite_suppress_author] = ACTIONS(2635), + [sym__strikeout_open] = ACTIONS(2635), + [sym__subscript_open] = ACTIONS(2635), + [sym__superscript_open] = ACTIONS(2635), + [sym__inline_note_start_token] = ACTIONS(2635), + [sym__strong_emphasis_open_star] = ACTIONS(2635), + [sym__strong_emphasis_open_underscore] = ACTIONS(2635), + [sym__emphasis_open_star] = ACTIONS(2635), + [sym__emphasis_open_underscore] = ACTIONS(2635), + [sym_inline_note_reference] = ACTIONS(2635), + [sym_html_element] = ACTIONS(2635), + [sym__pandoc_line_break] = ACTIONS(2635), + }, + [STATE(527)] = { + [sym_pandoc_paragraph] = STATE(352), + [sym__inlines] = STATE(3171), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__soft_line_break] = STATE(765), + [sym__inline_whitespace] = STATE(765), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(23), + [sym__soft_line_ending] = ACTIONS(2975), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(528)] = { + [anon_sym_COLON] = ACTIONS(2641), + [sym_entity_reference] = ACTIONS(2641), + [sym_numeric_character_reference] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_BANG_LBRACK] = ACTIONS(2641), + [anon_sym_DOLLAR] = ACTIONS(2643), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [aux_sym_pandoc_str_token1] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2641), + [sym__whitespace] = ACTIONS(2641), + [sym__line_ending] = ACTIONS(2641), + [sym__soft_line_ending] = ACTIONS(2641), + [sym__block_close] = ACTIONS(2641), + [sym__block_quote_start] = ACTIONS(2641), + [sym_atx_h1_marker] = ACTIONS(2641), + [sym_atx_h2_marker] = ACTIONS(2641), + [sym_atx_h3_marker] = ACTIONS(2641), + [sym_atx_h4_marker] = ACTIONS(2641), + [sym_atx_h5_marker] = ACTIONS(2641), + [sym_atx_h6_marker] = ACTIONS(2641), + [sym__thematic_break] = ACTIONS(2641), + [sym__list_marker_minus] = ACTIONS(2641), + [sym__list_marker_plus] = ACTIONS(2641), + [sym__list_marker_star] = ACTIONS(2641), + [sym__list_marker_parenthesis] = ACTIONS(2641), + [sym__list_marker_dot] = ACTIONS(2641), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2641), + [sym__list_marker_example] = ACTIONS(2641), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2641), + [sym__fenced_code_block_start_backtick] = ACTIONS(2641), + [sym_minus_metadata] = ACTIONS(2641), + [sym__pipe_table_start] = ACTIONS(2641), + [sym__fenced_div_start] = ACTIONS(2641), + [sym_ref_id_specifier] = ACTIONS(2641), + [sym__code_span_start] = ACTIONS(2641), + [sym__html_comment] = ACTIONS(2641), + [sym__autolink] = ACTIONS(2641), + [sym__highlight_span_start] = ACTIONS(2641), + [sym__insert_span_start] = ACTIONS(2641), + [sym__delete_span_start] = ACTIONS(2641), + [sym__edit_comment_span_start] = ACTIONS(2641), + [sym__single_quote_span_open] = ACTIONS(2641), + [sym__double_quote_span_open] = ACTIONS(2641), + [sym__shortcode_open_escaped] = ACTIONS(2641), + [sym__shortcode_open] = ACTIONS(2641), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2641), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2641), + [sym__cite_author_in_text] = ACTIONS(2641), + [sym__cite_suppress_author] = ACTIONS(2641), + [sym__strikeout_open] = ACTIONS(2641), + [sym__subscript_open] = ACTIONS(2641), + [sym__superscript_open] = ACTIONS(2641), + [sym__inline_note_start_token] = ACTIONS(2641), + [sym__strong_emphasis_open_star] = ACTIONS(2641), + [sym__strong_emphasis_open_underscore] = ACTIONS(2641), + [sym__emphasis_open_star] = ACTIONS(2641), + [sym__emphasis_open_underscore] = ACTIONS(2641), + [sym_inline_note_reference] = ACTIONS(2641), + [sym_html_element] = ACTIONS(2641), + [sym__pandoc_line_break] = ACTIONS(2641), + }, + [STATE(529)] = { + [ts_builtin_sym_end] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(2673), + [sym_entity_reference] = ACTIONS(2673), + [sym_numeric_character_reference] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_BANG_LBRACK] = ACTIONS(2673), + [anon_sym_DOLLAR] = ACTIONS(2675), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2673), + [aux_sym_pandoc_str_token1] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2673), + [sym__whitespace] = ACTIONS(2673), + [sym__line_ending] = ACTIONS(2673), + [sym__soft_line_ending] = ACTIONS(2673), + [sym__block_quote_start] = ACTIONS(2673), + [sym_atx_h1_marker] = ACTIONS(2673), + [sym_atx_h2_marker] = ACTIONS(2673), + [sym_atx_h3_marker] = ACTIONS(2673), + [sym_atx_h4_marker] = ACTIONS(2673), + [sym_atx_h5_marker] = ACTIONS(2673), + [sym_atx_h6_marker] = ACTIONS(2673), + [sym__thematic_break] = ACTIONS(2673), + [sym__list_marker_minus] = ACTIONS(2673), + [sym__list_marker_plus] = ACTIONS(2673), + [sym__list_marker_star] = ACTIONS(2673), + [sym__list_marker_parenthesis] = ACTIONS(2673), + [sym__list_marker_dot] = ACTIONS(2673), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2673), + [sym__list_marker_example] = ACTIONS(2673), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2673), + [sym__fenced_code_block_start_backtick] = ACTIONS(2673), + [sym_minus_metadata] = ACTIONS(2673), + [sym__pipe_table_start] = ACTIONS(2673), + [sym__fenced_div_start] = ACTIONS(2673), + [sym_ref_id_specifier] = ACTIONS(2673), + [sym__code_span_start] = ACTIONS(2673), + [sym__html_comment] = ACTIONS(2673), + [sym__autolink] = ACTIONS(2673), + [sym__highlight_span_start] = ACTIONS(2673), + [sym__insert_span_start] = ACTIONS(2673), + [sym__delete_span_start] = ACTIONS(2673), + [sym__edit_comment_span_start] = ACTIONS(2673), + [sym__single_quote_span_open] = ACTIONS(2673), + [sym__double_quote_span_open] = ACTIONS(2673), + [sym__shortcode_open_escaped] = ACTIONS(2673), + [sym__shortcode_open] = ACTIONS(2673), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2673), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2673), + [sym__cite_author_in_text] = ACTIONS(2673), + [sym__cite_suppress_author] = ACTIONS(2673), + [sym__strikeout_open] = ACTIONS(2673), + [sym__subscript_open] = ACTIONS(2673), + [sym__superscript_open] = ACTIONS(2673), + [sym__inline_note_start_token] = ACTIONS(2673), + [sym__strong_emphasis_open_star] = ACTIONS(2673), + [sym__strong_emphasis_open_underscore] = ACTIONS(2673), + [sym__emphasis_open_star] = ACTIONS(2673), + [sym__emphasis_open_underscore] = ACTIONS(2673), + [sym_inline_note_reference] = ACTIONS(2673), + [sym_html_element] = ACTIONS(2673), + [sym__pandoc_line_break] = ACTIONS(2673), + }, + [STATE(530)] = { + [sym__atx_heading_content] = STATE(3099), + [sym__inlines] = STATE(3099), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(414), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(25), + [sym__eof] = ACTIONS(3305), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(531)] = { + [ts_builtin_sym_end] = ACTIONS(2677), + [anon_sym_COLON] = ACTIONS(2677), + [sym_entity_reference] = ACTIONS(2677), + [sym_numeric_character_reference] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_BANG_LBRACK] = ACTIONS(2677), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2677), + [aux_sym_pandoc_str_token1] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2677), + [sym__whitespace] = ACTIONS(2677), + [sym__line_ending] = ACTIONS(2677), + [sym__soft_line_ending] = ACTIONS(2677), + [sym__block_quote_start] = ACTIONS(2677), + [sym_atx_h1_marker] = ACTIONS(2677), + [sym_atx_h2_marker] = ACTIONS(2677), + [sym_atx_h3_marker] = ACTIONS(2677), + [sym_atx_h4_marker] = ACTIONS(2677), + [sym_atx_h5_marker] = ACTIONS(2677), + [sym_atx_h6_marker] = ACTIONS(2677), + [sym__thematic_break] = ACTIONS(2677), + [sym__list_marker_minus] = ACTIONS(2677), + [sym__list_marker_plus] = ACTIONS(2677), + [sym__list_marker_star] = ACTIONS(2677), + [sym__list_marker_parenthesis] = ACTIONS(2677), + [sym__list_marker_dot] = ACTIONS(2677), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2677), + [sym__list_marker_example] = ACTIONS(2677), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2677), + [sym__fenced_code_block_start_backtick] = ACTIONS(2677), + [sym_minus_metadata] = ACTIONS(2677), + [sym__pipe_table_start] = ACTIONS(2677), + [sym__fenced_div_start] = ACTIONS(2677), + [sym_ref_id_specifier] = ACTIONS(2677), + [sym__code_span_start] = ACTIONS(2677), + [sym__html_comment] = ACTIONS(2677), + [sym__autolink] = ACTIONS(2677), + [sym__highlight_span_start] = ACTIONS(2677), + [sym__insert_span_start] = ACTIONS(2677), + [sym__delete_span_start] = ACTIONS(2677), + [sym__edit_comment_span_start] = ACTIONS(2677), + [sym__single_quote_span_open] = ACTIONS(2677), + [sym__double_quote_span_open] = ACTIONS(2677), + [sym__shortcode_open_escaped] = ACTIONS(2677), + [sym__shortcode_open] = ACTIONS(2677), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2677), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2677), + [sym__cite_author_in_text] = ACTIONS(2677), + [sym__cite_suppress_author] = ACTIONS(2677), + [sym__strikeout_open] = ACTIONS(2677), + [sym__subscript_open] = ACTIONS(2677), + [sym__superscript_open] = ACTIONS(2677), + [sym__inline_note_start_token] = ACTIONS(2677), + [sym__strong_emphasis_open_star] = ACTIONS(2677), + [sym__strong_emphasis_open_underscore] = ACTIONS(2677), + [sym__emphasis_open_star] = ACTIONS(2677), + [sym__emphasis_open_underscore] = ACTIONS(2677), + [sym_inline_note_reference] = ACTIONS(2677), + [sym_html_element] = ACTIONS(2677), + [sym__pandoc_line_break] = ACTIONS(2677), + }, + [STATE(532)] = { + [sym__atx_heading_content] = STATE(3033), + [sym__inlines] = STATE(3033), + [sym_pandoc_span] = STATE(613), + [sym_pandoc_image] = STATE(613), + [sym_pandoc_math] = STATE(613), + [sym_pandoc_display_math] = STATE(613), + [sym_pandoc_code_span] = STATE(613), + [sym_pandoc_single_quote] = STATE(613), + [sym_pandoc_double_quote] = STATE(613), + [sym_insert] = STATE(613), + [sym_delete] = STATE(613), + [sym_edit_comment] = STATE(613), + [sym_highlight] = STATE(613), + [sym__pandoc_attr_specifier] = STATE(613), + [sym__line] = STATE(2844), + [sym__inline_element] = STATE(613), + [sym_shortcode_escaped] = STATE(613), + [sym_shortcode] = STATE(613), + [sym_citation] = STATE(613), + [sym_inline_note] = STATE(613), + [sym_pandoc_superscript] = STATE(613), + [sym_pandoc_subscript] = STATE(613), + [sym_pandoc_strikeout] = STATE(613), + [sym_pandoc_emph] = STATE(613), + [sym_pandoc_strong] = STATE(613), + [sym_pandoc_str] = STATE(613), + [sym__newline] = STATE(416), + [sym_entity_reference] = ACTIONS(7), + [sym_numeric_character_reference] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(9), + [anon_sym_BANG_LBRACK] = ACTIONS(11), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [aux_sym_pandoc_str_token1] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(21), + [sym__whitespace] = ACTIONS(3031), + [sym__line_ending] = ACTIONS(25), + [sym__eof] = ACTIONS(3307), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(7), + [sym__autolink] = ACTIONS(7), + [sym__highlight_span_start] = ACTIONS(69), + [sym__insert_span_start] = ACTIONS(71), + [sym__delete_span_start] = ACTIONS(73), + [sym__edit_comment_span_start] = ACTIONS(75), + [sym__single_quote_span_open] = ACTIONS(77), + [sym__double_quote_span_open] = ACTIONS(79), + [sym__shortcode_open_escaped] = ACTIONS(81), + [sym__shortcode_open] = ACTIONS(83), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(85), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(87), + [sym__cite_author_in_text] = ACTIONS(89), + [sym__cite_suppress_author] = ACTIONS(91), + [sym__strikeout_open] = ACTIONS(93), + [sym__subscript_open] = ACTIONS(95), + [sym__superscript_open] = ACTIONS(97), + [sym__inline_note_start_token] = ACTIONS(99), + [sym__strong_emphasis_open_star] = ACTIONS(101), + [sym__strong_emphasis_open_underscore] = ACTIONS(103), + [sym__emphasis_open_star] = ACTIONS(105), + [sym__emphasis_open_underscore] = ACTIONS(107), + [sym_inline_note_reference] = ACTIONS(7), + [sym_html_element] = ACTIONS(7), + [sym__pandoc_line_break] = ACTIONS(7), + }, + [STATE(533)] = { + [anon_sym_COLON] = ACTIONS(2861), + [sym_entity_reference] = ACTIONS(2861), + [sym_numeric_character_reference] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_BANG_LBRACK] = ACTIONS(2861), + [anon_sym_DOLLAR] = ACTIONS(2863), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2861), + [aux_sym_pandoc_str_token1] = ACTIONS(2863), + [anon_sym_PIPE] = ACTIONS(2861), + [sym__whitespace] = ACTIONS(2861), + [sym__line_ending] = ACTIONS(2861), + [sym__soft_line_ending] = ACTIONS(2861), + [sym__block_close] = ACTIONS(2861), + [sym__block_quote_start] = ACTIONS(2861), + [sym_atx_h1_marker] = ACTIONS(2861), + [sym_atx_h2_marker] = ACTIONS(2861), + [sym_atx_h3_marker] = ACTIONS(2861), + [sym_atx_h4_marker] = ACTIONS(2861), + [sym_atx_h5_marker] = ACTIONS(2861), + [sym_atx_h6_marker] = ACTIONS(2861), + [sym__thematic_break] = ACTIONS(2861), + [sym__list_marker_minus] = ACTIONS(2861), + [sym__list_marker_plus] = ACTIONS(2861), + [sym__list_marker_star] = ACTIONS(2861), + [sym__list_marker_parenthesis] = ACTIONS(2861), + [sym__list_marker_dot] = ACTIONS(2861), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2861), + [sym__list_marker_example] = ACTIONS(2861), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2861), + [sym__fenced_code_block_start_backtick] = ACTIONS(2861), + [sym_minus_metadata] = ACTIONS(2861), + [sym__pipe_table_start] = ACTIONS(2861), + [sym__fenced_div_start] = ACTIONS(2861), + [sym_ref_id_specifier] = ACTIONS(2861), + [sym__code_span_start] = ACTIONS(2861), + [sym__html_comment] = ACTIONS(2861), + [sym__autolink] = ACTIONS(2861), + [sym__highlight_span_start] = ACTIONS(2861), + [sym__insert_span_start] = ACTIONS(2861), + [sym__delete_span_start] = ACTIONS(2861), + [sym__edit_comment_span_start] = ACTIONS(2861), + [sym__single_quote_span_open] = ACTIONS(2861), + [sym__double_quote_span_open] = ACTIONS(2861), + [sym__shortcode_open_escaped] = ACTIONS(2861), + [sym__shortcode_open] = ACTIONS(2861), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2861), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2861), + [sym__cite_author_in_text] = ACTIONS(2861), + [sym__cite_suppress_author] = ACTIONS(2861), + [sym__strikeout_open] = ACTIONS(2861), + [sym__subscript_open] = ACTIONS(2861), + [sym__superscript_open] = ACTIONS(2861), + [sym__inline_note_start_token] = ACTIONS(2861), + [sym__strong_emphasis_open_star] = ACTIONS(2861), + [sym__strong_emphasis_open_underscore] = ACTIONS(2861), + [sym__emphasis_open_star] = ACTIONS(2861), + [sym__emphasis_open_underscore] = ACTIONS(2861), + [sym_inline_note_reference] = ACTIONS(2861), + [sym_html_element] = ACTIONS(2861), + [sym__pandoc_line_break] = ACTIONS(2861), + }, + [STATE(534)] = { + [anon_sym_COLON] = ACTIONS(2865), + [sym_entity_reference] = ACTIONS(2865), + [sym_numeric_character_reference] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_BANG_LBRACK] = ACTIONS(2865), + [anon_sym_DOLLAR] = ACTIONS(2867), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2865), + [aux_sym_pandoc_str_token1] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2865), + [sym__whitespace] = ACTIONS(2865), + [sym__line_ending] = ACTIONS(2865), + [sym__soft_line_ending] = ACTIONS(2865), + [sym__block_close] = ACTIONS(2865), + [sym__block_quote_start] = ACTIONS(2865), + [sym_atx_h1_marker] = ACTIONS(2865), + [sym_atx_h2_marker] = ACTIONS(2865), + [sym_atx_h3_marker] = ACTIONS(2865), + [sym_atx_h4_marker] = ACTIONS(2865), + [sym_atx_h5_marker] = ACTIONS(2865), + [sym_atx_h6_marker] = ACTIONS(2865), + [sym__thematic_break] = ACTIONS(2865), + [sym__list_marker_minus] = ACTIONS(2865), + [sym__list_marker_plus] = ACTIONS(2865), + [sym__list_marker_star] = ACTIONS(2865), + [sym__list_marker_parenthesis] = ACTIONS(2865), + [sym__list_marker_dot] = ACTIONS(2865), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2865), + [sym__list_marker_example] = ACTIONS(2865), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2865), + [sym__fenced_code_block_start_backtick] = ACTIONS(2865), + [sym_minus_metadata] = ACTIONS(2865), + [sym__pipe_table_start] = ACTIONS(2865), + [sym__fenced_div_start] = ACTIONS(2865), + [sym_ref_id_specifier] = ACTIONS(2865), + [sym__code_span_start] = ACTIONS(2865), + [sym__html_comment] = ACTIONS(2865), + [sym__autolink] = ACTIONS(2865), + [sym__highlight_span_start] = ACTIONS(2865), + [sym__insert_span_start] = ACTIONS(2865), + [sym__delete_span_start] = ACTIONS(2865), + [sym__edit_comment_span_start] = ACTIONS(2865), + [sym__single_quote_span_open] = ACTIONS(2865), + [sym__double_quote_span_open] = ACTIONS(2865), + [sym__shortcode_open_escaped] = ACTIONS(2865), + [sym__shortcode_open] = ACTIONS(2865), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2865), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2865), + [sym__cite_author_in_text] = ACTIONS(2865), + [sym__cite_suppress_author] = ACTIONS(2865), + [sym__strikeout_open] = ACTIONS(2865), + [sym__subscript_open] = ACTIONS(2865), + [sym__superscript_open] = ACTIONS(2865), + [sym__inline_note_start_token] = ACTIONS(2865), + [sym__strong_emphasis_open_star] = ACTIONS(2865), + [sym__strong_emphasis_open_underscore] = ACTIONS(2865), + [sym__emphasis_open_star] = ACTIONS(2865), + [sym__emphasis_open_underscore] = ACTIONS(2865), + [sym_inline_note_reference] = ACTIONS(2865), + [sym_html_element] = ACTIONS(2865), + [sym__pandoc_line_break] = ACTIONS(2865), + }, + [STATE(535)] = { + [anon_sym_COLON] = ACTIONS(2689), + [sym_entity_reference] = ACTIONS(2689), + [sym_numeric_character_reference] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_BANG_LBRACK] = ACTIONS(2689), + [anon_sym_DOLLAR] = ACTIONS(2691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [aux_sym_pandoc_str_token1] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2689), + [sym__whitespace] = ACTIONS(2689), + [sym__line_ending] = ACTIONS(2689), + [sym__soft_line_ending] = ACTIONS(2689), + [sym__block_close] = ACTIONS(2689), + [sym__block_quote_start] = ACTIONS(2689), + [sym_atx_h1_marker] = ACTIONS(2689), + [sym_atx_h2_marker] = ACTIONS(2689), + [sym_atx_h3_marker] = ACTIONS(2689), + [sym_atx_h4_marker] = ACTIONS(2689), + [sym_atx_h5_marker] = ACTIONS(2689), + [sym_atx_h6_marker] = ACTIONS(2689), + [sym__thematic_break] = ACTIONS(2689), + [sym__list_marker_minus] = ACTIONS(2689), + [sym__list_marker_plus] = ACTIONS(2689), + [sym__list_marker_star] = ACTIONS(2689), + [sym__list_marker_parenthesis] = ACTIONS(2689), + [sym__list_marker_dot] = ACTIONS(2689), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_example] = ACTIONS(2689), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2689), + [sym__fenced_code_block_start_backtick] = ACTIONS(2689), + [sym_minus_metadata] = ACTIONS(2689), + [sym__pipe_table_start] = ACTIONS(2689), + [sym__fenced_div_start] = ACTIONS(2689), + [sym_ref_id_specifier] = ACTIONS(2689), + [sym__code_span_start] = ACTIONS(2689), + [sym__html_comment] = ACTIONS(2689), + [sym__autolink] = ACTIONS(2689), + [sym__highlight_span_start] = ACTIONS(2689), + [sym__insert_span_start] = ACTIONS(2689), + [sym__delete_span_start] = ACTIONS(2689), + [sym__edit_comment_span_start] = ACTIONS(2689), + [sym__single_quote_span_open] = ACTIONS(2689), + [sym__double_quote_span_open] = ACTIONS(2689), + [sym__shortcode_open_escaped] = ACTIONS(2689), + [sym__shortcode_open] = ACTIONS(2689), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2689), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2689), + [sym__cite_author_in_text] = ACTIONS(2689), + [sym__cite_suppress_author] = ACTIONS(2689), + [sym__strikeout_open] = ACTIONS(2689), + [sym__subscript_open] = ACTIONS(2689), + [sym__superscript_open] = ACTIONS(2689), + [sym__inline_note_start_token] = ACTIONS(2689), + [sym__strong_emphasis_open_star] = ACTIONS(2689), + [sym__strong_emphasis_open_underscore] = ACTIONS(2689), + [sym__emphasis_open_star] = ACTIONS(2689), + [sym__emphasis_open_underscore] = ACTIONS(2689), + [sym_inline_note_reference] = ACTIONS(2689), + [sym_html_element] = ACTIONS(2689), + [sym__pandoc_line_break] = ACTIONS(2689), + }, + [STATE(536)] = { + [anon_sym_COLON] = ACTIONS(2645), + [sym_entity_reference] = ACTIONS(2645), + [sym_numeric_character_reference] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_BANG_LBRACK] = ACTIONS(2645), + [anon_sym_DOLLAR] = ACTIONS(2647), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [aux_sym_pandoc_str_token1] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2645), + [sym__whitespace] = ACTIONS(2645), + [sym__line_ending] = ACTIONS(2645), + [sym__soft_line_ending] = ACTIONS(2645), + [sym__block_close] = ACTIONS(2645), + [sym__block_quote_start] = ACTIONS(2645), + [sym_atx_h1_marker] = ACTIONS(2645), + [sym_atx_h2_marker] = ACTIONS(2645), + [sym_atx_h3_marker] = ACTIONS(2645), + [sym_atx_h4_marker] = ACTIONS(2645), + [sym_atx_h5_marker] = ACTIONS(2645), + [sym_atx_h6_marker] = ACTIONS(2645), + [sym__thematic_break] = ACTIONS(2645), + [sym__list_marker_minus] = ACTIONS(2645), + [sym__list_marker_plus] = ACTIONS(2645), + [sym__list_marker_star] = ACTIONS(2645), + [sym__list_marker_parenthesis] = ACTIONS(2645), + [sym__list_marker_dot] = ACTIONS(2645), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2645), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2645), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2645), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2645), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2645), + [sym__list_marker_example] = ACTIONS(2645), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2645), + [sym__fenced_code_block_start_backtick] = ACTIONS(2645), + [sym_minus_metadata] = ACTIONS(2645), + [sym__pipe_table_start] = ACTIONS(2645), + [sym__fenced_div_start] = ACTIONS(2645), + [sym_ref_id_specifier] = ACTIONS(2645), + [sym__code_span_start] = ACTIONS(2645), + [sym__html_comment] = ACTIONS(2645), + [sym__autolink] = ACTIONS(2645), + [sym__highlight_span_start] = ACTIONS(2645), + [sym__insert_span_start] = ACTIONS(2645), + [sym__delete_span_start] = ACTIONS(2645), + [sym__edit_comment_span_start] = ACTIONS(2645), + [sym__single_quote_span_open] = ACTIONS(2645), + [sym__double_quote_span_open] = ACTIONS(2645), + [sym__shortcode_open_escaped] = ACTIONS(2645), + [sym__shortcode_open] = ACTIONS(2645), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2645), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2645), + [sym__cite_author_in_text] = ACTIONS(2645), + [sym__cite_suppress_author] = ACTIONS(2645), + [sym__strikeout_open] = ACTIONS(2645), + [sym__subscript_open] = ACTIONS(2645), + [sym__superscript_open] = ACTIONS(2645), + [sym__inline_note_start_token] = ACTIONS(2645), + [sym__strong_emphasis_open_star] = ACTIONS(2645), + [sym__strong_emphasis_open_underscore] = ACTIONS(2645), + [sym__emphasis_open_star] = ACTIONS(2645), + [sym__emphasis_open_underscore] = ACTIONS(2645), + [sym_inline_note_reference] = ACTIONS(2645), + [sym_html_element] = ACTIONS(2645), + [sym__pandoc_line_break] = ACTIONS(2645), + }, + [STATE(537)] = { + [anon_sym_COLON] = ACTIONS(2649), + [sym_entity_reference] = ACTIONS(2649), + [sym_numeric_character_reference] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_BANG_LBRACK] = ACTIONS(2649), + [anon_sym_DOLLAR] = ACTIONS(2651), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [aux_sym_pandoc_str_token1] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2649), + [sym__whitespace] = ACTIONS(2649), + [sym__line_ending] = ACTIONS(2649), + [sym__soft_line_ending] = ACTIONS(2649), + [sym__block_close] = ACTIONS(2649), + [sym__block_quote_start] = ACTIONS(2649), + [sym_atx_h1_marker] = ACTIONS(2649), + [sym_atx_h2_marker] = ACTIONS(2649), + [sym_atx_h3_marker] = ACTIONS(2649), + [sym_atx_h4_marker] = ACTIONS(2649), + [sym_atx_h5_marker] = ACTIONS(2649), + [sym_atx_h6_marker] = ACTIONS(2649), + [sym__thematic_break] = ACTIONS(2649), + [sym__list_marker_minus] = ACTIONS(2649), + [sym__list_marker_plus] = ACTIONS(2649), + [sym__list_marker_star] = ACTIONS(2649), + [sym__list_marker_parenthesis] = ACTIONS(2649), + [sym__list_marker_dot] = ACTIONS(2649), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2649), + [sym__list_marker_example] = ACTIONS(2649), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2649), + [sym__fenced_code_block_start_backtick] = ACTIONS(2649), + [sym_minus_metadata] = ACTIONS(2649), + [sym__pipe_table_start] = ACTIONS(2649), + [sym__fenced_div_start] = ACTIONS(2649), + [sym_ref_id_specifier] = ACTIONS(2649), + [sym__code_span_start] = ACTIONS(2649), + [sym__html_comment] = ACTIONS(2649), + [sym__autolink] = ACTIONS(2649), + [sym__highlight_span_start] = ACTIONS(2649), + [sym__insert_span_start] = ACTIONS(2649), + [sym__delete_span_start] = ACTIONS(2649), + [sym__edit_comment_span_start] = ACTIONS(2649), + [sym__single_quote_span_open] = ACTIONS(2649), + [sym__double_quote_span_open] = ACTIONS(2649), + [sym__shortcode_open_escaped] = ACTIONS(2649), + [sym__shortcode_open] = ACTIONS(2649), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2649), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2649), + [sym__cite_author_in_text] = ACTIONS(2649), + [sym__cite_suppress_author] = ACTIONS(2649), + [sym__strikeout_open] = ACTIONS(2649), + [sym__subscript_open] = ACTIONS(2649), + [sym__superscript_open] = ACTIONS(2649), + [sym__inline_note_start_token] = ACTIONS(2649), + [sym__strong_emphasis_open_star] = ACTIONS(2649), + [sym__strong_emphasis_open_underscore] = ACTIONS(2649), + [sym__emphasis_open_star] = ACTIONS(2649), + [sym__emphasis_open_underscore] = ACTIONS(2649), + [sym_inline_note_reference] = ACTIONS(2649), + [sym_html_element] = ACTIONS(2649), + [sym__pandoc_line_break] = ACTIONS(2649), + }, + [STATE(538)] = { + [anon_sym_COLON] = ACTIONS(2653), + [sym_entity_reference] = ACTIONS(2653), + [sym_numeric_character_reference] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_BANG_LBRACK] = ACTIONS(2653), + [anon_sym_DOLLAR] = ACTIONS(2655), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [aux_sym_pandoc_str_token1] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2653), + [sym__whitespace] = ACTIONS(2653), + [sym__line_ending] = ACTIONS(2653), + [sym__soft_line_ending] = ACTIONS(2653), + [sym__block_close] = ACTIONS(2653), + [sym__block_quote_start] = ACTIONS(2653), + [sym_atx_h1_marker] = ACTIONS(2653), + [sym_atx_h2_marker] = ACTIONS(2653), + [sym_atx_h3_marker] = ACTIONS(2653), + [sym_atx_h4_marker] = ACTIONS(2653), + [sym_atx_h5_marker] = ACTIONS(2653), + [sym_atx_h6_marker] = ACTIONS(2653), + [sym__thematic_break] = ACTIONS(2653), + [sym__list_marker_minus] = ACTIONS(2653), + [sym__list_marker_plus] = ACTIONS(2653), + [sym__list_marker_star] = ACTIONS(2653), + [sym__list_marker_parenthesis] = ACTIONS(2653), + [sym__list_marker_dot] = ACTIONS(2653), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2653), + [sym__list_marker_example] = ACTIONS(2653), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2653), + [sym__fenced_code_block_start_backtick] = ACTIONS(2653), + [sym_minus_metadata] = ACTIONS(2653), + [sym__pipe_table_start] = ACTIONS(2653), + [sym__fenced_div_start] = ACTIONS(2653), + [sym_ref_id_specifier] = ACTIONS(2653), + [sym__code_span_start] = ACTIONS(2653), + [sym__html_comment] = ACTIONS(2653), + [sym__autolink] = ACTIONS(2653), + [sym__highlight_span_start] = ACTIONS(2653), + [sym__insert_span_start] = ACTIONS(2653), + [sym__delete_span_start] = ACTIONS(2653), + [sym__edit_comment_span_start] = ACTIONS(2653), + [sym__single_quote_span_open] = ACTIONS(2653), + [sym__double_quote_span_open] = ACTIONS(2653), + [sym__shortcode_open_escaped] = ACTIONS(2653), + [sym__shortcode_open] = ACTIONS(2653), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2653), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2653), + [sym__cite_author_in_text] = ACTIONS(2653), + [sym__cite_suppress_author] = ACTIONS(2653), + [sym__strikeout_open] = ACTIONS(2653), + [sym__subscript_open] = ACTIONS(2653), + [sym__superscript_open] = ACTIONS(2653), + [sym__inline_note_start_token] = ACTIONS(2653), + [sym__strong_emphasis_open_star] = ACTIONS(2653), + [sym__strong_emphasis_open_underscore] = ACTIONS(2653), + [sym__emphasis_open_star] = ACTIONS(2653), + [sym__emphasis_open_underscore] = ACTIONS(2653), + [sym_inline_note_reference] = ACTIONS(2653), + [sym_html_element] = ACTIONS(2653), + [sym__pandoc_line_break] = ACTIONS(2653), + }, + [STATE(539)] = { + [anon_sym_COLON] = ACTIONS(2657), + [sym_entity_reference] = ACTIONS(2657), + [sym_numeric_character_reference] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_BANG_LBRACK] = ACTIONS(2657), + [anon_sym_DOLLAR] = ACTIONS(2659), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [aux_sym_pandoc_str_token1] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2657), + [sym__whitespace] = ACTIONS(2657), + [sym__line_ending] = ACTIONS(2657), + [sym__soft_line_ending] = ACTIONS(2657), + [sym__block_close] = ACTIONS(2657), + [sym__block_quote_start] = ACTIONS(2657), + [sym_atx_h1_marker] = ACTIONS(2657), + [sym_atx_h2_marker] = ACTIONS(2657), + [sym_atx_h3_marker] = ACTIONS(2657), + [sym_atx_h4_marker] = ACTIONS(2657), + [sym_atx_h5_marker] = ACTIONS(2657), + [sym_atx_h6_marker] = ACTIONS(2657), + [sym__thematic_break] = ACTIONS(2657), + [sym__list_marker_minus] = ACTIONS(2657), + [sym__list_marker_plus] = ACTIONS(2657), + [sym__list_marker_star] = ACTIONS(2657), + [sym__list_marker_parenthesis] = ACTIONS(2657), + [sym__list_marker_dot] = ACTIONS(2657), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2657), + [sym__list_marker_example] = ACTIONS(2657), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2657), + [sym__fenced_code_block_start_backtick] = ACTIONS(2657), + [sym_minus_metadata] = ACTIONS(2657), + [sym__pipe_table_start] = ACTIONS(2657), + [sym__fenced_div_start] = ACTIONS(2657), + [sym_ref_id_specifier] = ACTIONS(2657), + [sym__code_span_start] = ACTIONS(2657), + [sym__html_comment] = ACTIONS(2657), + [sym__autolink] = ACTIONS(2657), + [sym__highlight_span_start] = ACTIONS(2657), + [sym__insert_span_start] = ACTIONS(2657), + [sym__delete_span_start] = ACTIONS(2657), + [sym__edit_comment_span_start] = ACTIONS(2657), + [sym__single_quote_span_open] = ACTIONS(2657), + [sym__double_quote_span_open] = ACTIONS(2657), + [sym__shortcode_open_escaped] = ACTIONS(2657), + [sym__shortcode_open] = ACTIONS(2657), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2657), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2657), + [sym__cite_author_in_text] = ACTIONS(2657), + [sym__cite_suppress_author] = ACTIONS(2657), + [sym__strikeout_open] = ACTIONS(2657), + [sym__subscript_open] = ACTIONS(2657), + [sym__superscript_open] = ACTIONS(2657), + [sym__inline_note_start_token] = ACTIONS(2657), + [sym__strong_emphasis_open_star] = ACTIONS(2657), + [sym__strong_emphasis_open_underscore] = ACTIONS(2657), + [sym__emphasis_open_star] = ACTIONS(2657), + [sym__emphasis_open_underscore] = ACTIONS(2657), + [sym_inline_note_reference] = ACTIONS(2657), + [sym_html_element] = ACTIONS(2657), + [sym__pandoc_line_break] = ACTIONS(2657), + }, + [STATE(540)] = { + [anon_sym_COLON] = ACTIONS(2661), + [sym_entity_reference] = ACTIONS(2661), + [sym_numeric_character_reference] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_BANG_LBRACK] = ACTIONS(2661), + [anon_sym_DOLLAR] = ACTIONS(2663), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [aux_sym_pandoc_str_token1] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2661), + [sym__whitespace] = ACTIONS(2661), + [sym__line_ending] = ACTIONS(2661), + [sym__soft_line_ending] = ACTIONS(2661), + [sym__block_close] = ACTIONS(2661), + [sym__block_quote_start] = ACTIONS(2661), + [sym_atx_h1_marker] = ACTIONS(2661), + [sym_atx_h2_marker] = ACTIONS(2661), + [sym_atx_h3_marker] = ACTIONS(2661), + [sym_atx_h4_marker] = ACTIONS(2661), + [sym_atx_h5_marker] = ACTIONS(2661), + [sym_atx_h6_marker] = ACTIONS(2661), + [sym__thematic_break] = ACTIONS(2661), + [sym__list_marker_minus] = ACTIONS(2661), + [sym__list_marker_plus] = ACTIONS(2661), + [sym__list_marker_star] = ACTIONS(2661), + [sym__list_marker_parenthesis] = ACTIONS(2661), + [sym__list_marker_dot] = ACTIONS(2661), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2661), + [sym__list_marker_example] = ACTIONS(2661), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2661), + [sym__fenced_code_block_start_backtick] = ACTIONS(2661), + [sym_minus_metadata] = ACTIONS(2661), + [sym__pipe_table_start] = ACTIONS(2661), + [sym__fenced_div_start] = ACTIONS(2661), + [sym_ref_id_specifier] = ACTIONS(2661), + [sym__code_span_start] = ACTIONS(2661), + [sym__html_comment] = ACTIONS(2661), + [sym__autolink] = ACTIONS(2661), + [sym__highlight_span_start] = ACTIONS(2661), + [sym__insert_span_start] = ACTIONS(2661), + [sym__delete_span_start] = ACTIONS(2661), + [sym__edit_comment_span_start] = ACTIONS(2661), + [sym__single_quote_span_open] = ACTIONS(2661), + [sym__double_quote_span_open] = ACTIONS(2661), + [sym__shortcode_open_escaped] = ACTIONS(2661), + [sym__shortcode_open] = ACTIONS(2661), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2661), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2661), + [sym__cite_author_in_text] = ACTIONS(2661), + [sym__cite_suppress_author] = ACTIONS(2661), + [sym__strikeout_open] = ACTIONS(2661), + [sym__subscript_open] = ACTIONS(2661), + [sym__superscript_open] = ACTIONS(2661), + [sym__inline_note_start_token] = ACTIONS(2661), + [sym__strong_emphasis_open_star] = ACTIONS(2661), + [sym__strong_emphasis_open_underscore] = ACTIONS(2661), + [sym__emphasis_open_star] = ACTIONS(2661), + [sym__emphasis_open_underscore] = ACTIONS(2661), + [sym_inline_note_reference] = ACTIONS(2661), + [sym_html_element] = ACTIONS(2661), + [sym__pandoc_line_break] = ACTIONS(2661), + }, + [STATE(541)] = { + [anon_sym_COLON] = ACTIONS(2665), + [sym_entity_reference] = ACTIONS(2665), + [sym_numeric_character_reference] = ACTIONS(2665), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_BANG_LBRACK] = ACTIONS(2665), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2665), + [aux_sym_pandoc_str_token1] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2665), + [sym__whitespace] = ACTIONS(2665), + [sym__line_ending] = ACTIONS(2665), + [sym__soft_line_ending] = ACTIONS(2665), + [sym__block_close] = ACTIONS(2665), + [sym__block_quote_start] = ACTIONS(2665), + [sym_atx_h1_marker] = ACTIONS(2665), + [sym_atx_h2_marker] = ACTIONS(2665), + [sym_atx_h3_marker] = ACTIONS(2665), + [sym_atx_h4_marker] = ACTIONS(2665), + [sym_atx_h5_marker] = ACTIONS(2665), + [sym_atx_h6_marker] = ACTIONS(2665), + [sym__thematic_break] = ACTIONS(2665), + [sym__list_marker_minus] = ACTIONS(2665), + [sym__list_marker_plus] = ACTIONS(2665), + [sym__list_marker_star] = ACTIONS(2665), + [sym__list_marker_parenthesis] = ACTIONS(2665), + [sym__list_marker_dot] = ACTIONS(2665), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2665), + [sym__list_marker_example] = ACTIONS(2665), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2665), + [sym__fenced_code_block_start_backtick] = ACTIONS(2665), + [sym_minus_metadata] = ACTIONS(2665), + [sym__pipe_table_start] = ACTIONS(2665), + [sym__fenced_div_start] = ACTIONS(2665), + [sym_ref_id_specifier] = ACTIONS(2665), + [sym__code_span_start] = ACTIONS(2665), + [sym__html_comment] = ACTIONS(2665), + [sym__autolink] = ACTIONS(2665), + [sym__highlight_span_start] = ACTIONS(2665), + [sym__insert_span_start] = ACTIONS(2665), + [sym__delete_span_start] = ACTIONS(2665), + [sym__edit_comment_span_start] = ACTIONS(2665), + [sym__single_quote_span_open] = ACTIONS(2665), + [sym__double_quote_span_open] = ACTIONS(2665), + [sym__shortcode_open_escaped] = ACTIONS(2665), + [sym__shortcode_open] = ACTIONS(2665), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2665), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2665), + [sym__cite_author_in_text] = ACTIONS(2665), + [sym__cite_suppress_author] = ACTIONS(2665), + [sym__strikeout_open] = ACTIONS(2665), + [sym__subscript_open] = ACTIONS(2665), + [sym__superscript_open] = ACTIONS(2665), + [sym__inline_note_start_token] = ACTIONS(2665), + [sym__strong_emphasis_open_star] = ACTIONS(2665), + [sym__strong_emphasis_open_underscore] = ACTIONS(2665), + [sym__emphasis_open_star] = ACTIONS(2665), + [sym__emphasis_open_underscore] = ACTIONS(2665), + [sym_inline_note_reference] = ACTIONS(2665), + [sym_html_element] = ACTIONS(2665), + [sym__pandoc_line_break] = ACTIONS(2665), + }, + [STATE(542)] = { + [anon_sym_COLON] = ACTIONS(2669), + [sym_entity_reference] = ACTIONS(2669), + [sym_numeric_character_reference] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_BANG_LBRACK] = ACTIONS(2669), + [anon_sym_DOLLAR] = ACTIONS(2671), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [aux_sym_pandoc_str_token1] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2669), + [sym__whitespace] = ACTIONS(2669), + [sym__line_ending] = ACTIONS(2669), + [sym__soft_line_ending] = ACTIONS(2669), + [sym__block_close] = ACTIONS(2669), + [sym__block_quote_start] = ACTIONS(2669), + [sym_atx_h1_marker] = ACTIONS(2669), + [sym_atx_h2_marker] = ACTIONS(2669), + [sym_atx_h3_marker] = ACTIONS(2669), + [sym_atx_h4_marker] = ACTIONS(2669), + [sym_atx_h5_marker] = ACTIONS(2669), + [sym_atx_h6_marker] = ACTIONS(2669), + [sym__thematic_break] = ACTIONS(2669), + [sym__list_marker_minus] = ACTIONS(2669), + [sym__list_marker_plus] = ACTIONS(2669), + [sym__list_marker_star] = ACTIONS(2669), + [sym__list_marker_parenthesis] = ACTIONS(2669), + [sym__list_marker_dot] = ACTIONS(2669), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2669), + [sym__list_marker_example] = ACTIONS(2669), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2669), + [sym__fenced_code_block_start_backtick] = ACTIONS(2669), + [sym_minus_metadata] = ACTIONS(2669), + [sym__pipe_table_start] = ACTIONS(2669), + [sym__fenced_div_start] = ACTIONS(2669), + [sym_ref_id_specifier] = ACTIONS(2669), + [sym__code_span_start] = ACTIONS(2669), + [sym__html_comment] = ACTIONS(2669), + [sym__autolink] = ACTIONS(2669), + [sym__highlight_span_start] = ACTIONS(2669), + [sym__insert_span_start] = ACTIONS(2669), + [sym__delete_span_start] = ACTIONS(2669), + [sym__edit_comment_span_start] = ACTIONS(2669), + [sym__single_quote_span_open] = ACTIONS(2669), + [sym__double_quote_span_open] = ACTIONS(2669), + [sym__shortcode_open_escaped] = ACTIONS(2669), + [sym__shortcode_open] = ACTIONS(2669), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2669), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2669), + [sym__cite_author_in_text] = ACTIONS(2669), + [sym__cite_suppress_author] = ACTIONS(2669), + [sym__strikeout_open] = ACTIONS(2669), + [sym__subscript_open] = ACTIONS(2669), + [sym__superscript_open] = ACTIONS(2669), + [sym__inline_note_start_token] = ACTIONS(2669), + [sym__strong_emphasis_open_star] = ACTIONS(2669), + [sym__strong_emphasis_open_underscore] = ACTIONS(2669), + [sym__emphasis_open_star] = ACTIONS(2669), + [sym__emphasis_open_underscore] = ACTIONS(2669), + [sym_inline_note_reference] = ACTIONS(2669), + [sym_html_element] = ACTIONS(2669), + [sym__pandoc_line_break] = ACTIONS(2669), + }, + [STATE(543)] = { + [ts_builtin_sym_end] = ACTIONS(2689), + [anon_sym_COLON] = ACTIONS(2689), + [sym_entity_reference] = ACTIONS(2689), + [sym_numeric_character_reference] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_BANG_LBRACK] = ACTIONS(2689), + [anon_sym_DOLLAR] = ACTIONS(2691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [aux_sym_pandoc_str_token1] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2689), + [sym__whitespace] = ACTIONS(2689), + [sym__line_ending] = ACTIONS(2689), + [sym__soft_line_ending] = ACTIONS(2689), + [sym__block_quote_start] = ACTIONS(2689), + [sym_atx_h1_marker] = ACTIONS(2689), + [sym_atx_h2_marker] = ACTIONS(2689), + [sym_atx_h3_marker] = ACTIONS(2689), + [sym_atx_h4_marker] = ACTIONS(2689), + [sym_atx_h5_marker] = ACTIONS(2689), + [sym_atx_h6_marker] = ACTIONS(2689), + [sym__thematic_break] = ACTIONS(2689), + [sym__list_marker_minus] = ACTIONS(2689), + [sym__list_marker_plus] = ACTIONS(2689), + [sym__list_marker_star] = ACTIONS(2689), + [sym__list_marker_parenthesis] = ACTIONS(2689), + [sym__list_marker_dot] = ACTIONS(2689), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2689), + [sym__list_marker_example] = ACTIONS(2689), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2689), + [sym__fenced_code_block_start_backtick] = ACTIONS(2689), + [sym_minus_metadata] = ACTIONS(2689), + [sym__pipe_table_start] = ACTIONS(2689), + [sym__fenced_div_start] = ACTIONS(2689), + [sym_ref_id_specifier] = ACTIONS(2689), + [sym__code_span_start] = ACTIONS(2689), + [sym__html_comment] = ACTIONS(2689), + [sym__autolink] = ACTIONS(2689), + [sym__highlight_span_start] = ACTIONS(2689), + [sym__insert_span_start] = ACTIONS(2689), + [sym__delete_span_start] = ACTIONS(2689), + [sym__edit_comment_span_start] = ACTIONS(2689), + [sym__single_quote_span_open] = ACTIONS(2689), + [sym__double_quote_span_open] = ACTIONS(2689), + [sym__shortcode_open_escaped] = ACTIONS(2689), + [sym__shortcode_open] = ACTIONS(2689), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2689), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2689), + [sym__cite_author_in_text] = ACTIONS(2689), + [sym__cite_suppress_author] = ACTIONS(2689), + [sym__strikeout_open] = ACTIONS(2689), + [sym__subscript_open] = ACTIONS(2689), + [sym__superscript_open] = ACTIONS(2689), + [sym__inline_note_start_token] = ACTIONS(2689), + [sym__strong_emphasis_open_star] = ACTIONS(2689), + [sym__strong_emphasis_open_underscore] = ACTIONS(2689), + [sym__emphasis_open_star] = ACTIONS(2689), + [sym__emphasis_open_underscore] = ACTIONS(2689), + [sym_inline_note_reference] = ACTIONS(2689), + [sym_html_element] = ACTIONS(2689), + [sym__pandoc_line_break] = ACTIONS(2689), + }, + [STATE(544)] = { + [sym_pipe_table_row] = STATE(3300), + [sym_pipe_table_cell] = STATE(3168), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line_with_maybe_spaces] = STATE(3087), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [aux_sym_pipe_table_row_repeat1] = STATE(551), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(641), + [sym_entity_reference] = ACTIONS(2893), + [sym_numeric_character_reference] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_BANG_LBRACK] = ACTIONS(2897), + [anon_sym_DOLLAR] = ACTIONS(2899), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [aux_sym_pandoc_str_token1] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2907), + [sym__whitespace] = ACTIONS(2909), + [sym__code_span_start] = ACTIONS(2911), + [sym__html_comment] = ACTIONS(2893), + [sym__autolink] = ACTIONS(2893), + [sym__highlight_span_start] = ACTIONS(2913), + [sym__insert_span_start] = ACTIONS(2915), + [sym__delete_span_start] = ACTIONS(2917), + [sym__edit_comment_span_start] = ACTIONS(2919), + [sym__single_quote_span_open] = ACTIONS(2921), + [sym__double_quote_span_open] = ACTIONS(2923), + [sym__shortcode_open_escaped] = ACTIONS(2925), + [sym__shortcode_open] = ACTIONS(2927), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2929), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2931), + [sym__cite_author_in_text] = ACTIONS(2933), + [sym__cite_suppress_author] = ACTIONS(2935), + [sym__strikeout_open] = ACTIONS(2937), + [sym__subscript_open] = ACTIONS(2939), + [sym__superscript_open] = ACTIONS(2941), + [sym__inline_note_start_token] = ACTIONS(2943), + [sym__strong_emphasis_open_star] = ACTIONS(2945), + [sym__strong_emphasis_open_underscore] = ACTIONS(2947), + [sym__emphasis_open_star] = ACTIONS(2949), + [sym__emphasis_open_underscore] = ACTIONS(2951), + [sym_inline_note_reference] = ACTIONS(2893), + [sym_html_element] = ACTIONS(2893), + [sym__pipe_table_delimiter] = ACTIONS(2953), + [sym__pandoc_line_break] = ACTIONS(2893), + }, + [STATE(545)] = { + [sym_pipe_table_row] = STATE(3318), + [sym_pipe_table_cell] = STATE(3168), + [sym_pandoc_span] = STATE(641), + [sym_pandoc_image] = STATE(641), + [sym_pandoc_math] = STATE(641), + [sym_pandoc_display_math] = STATE(641), + [sym_pandoc_code_span] = STATE(641), + [sym_pandoc_single_quote] = STATE(641), + [sym_pandoc_double_quote] = STATE(641), + [sym_insert] = STATE(641), + [sym_delete] = STATE(641), + [sym_edit_comment] = STATE(641), + [sym_highlight] = STATE(641), + [sym__pandoc_attr_specifier] = STATE(641), + [sym__line_with_maybe_spaces] = STATE(3087), + [sym__inline_element] = STATE(641), + [sym_shortcode_escaped] = STATE(641), + [sym_shortcode] = STATE(641), + [sym_citation] = STATE(641), + [sym_inline_note] = STATE(641), + [sym_pandoc_superscript] = STATE(641), + [sym_pandoc_subscript] = STATE(641), + [sym_pandoc_strikeout] = STATE(641), + [sym_pandoc_emph] = STATE(641), + [sym_pandoc_strong] = STATE(641), + [sym_pandoc_str] = STATE(641), + [aux_sym_pipe_table_row_repeat1] = STATE(551), + [aux_sym__line_with_maybe_spaces_repeat1] = STATE(641), + [sym_entity_reference] = ACTIONS(2893), + [sym_numeric_character_reference] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_BANG_LBRACK] = ACTIONS(2897), + [anon_sym_DOLLAR] = ACTIONS(2899), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [aux_sym_pandoc_str_token1] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2907), + [sym__whitespace] = ACTIONS(2909), + [sym__code_span_start] = ACTIONS(2911), + [sym__html_comment] = ACTIONS(2893), + [sym__autolink] = ACTIONS(2893), + [sym__highlight_span_start] = ACTIONS(2913), + [sym__insert_span_start] = ACTIONS(2915), + [sym__delete_span_start] = ACTIONS(2917), + [sym__edit_comment_span_start] = ACTIONS(2919), + [sym__single_quote_span_open] = ACTIONS(2921), + [sym__double_quote_span_open] = ACTIONS(2923), + [sym__shortcode_open_escaped] = ACTIONS(2925), + [sym__shortcode_open] = ACTIONS(2927), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2929), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2931), + [sym__cite_author_in_text] = ACTIONS(2933), + [sym__cite_suppress_author] = ACTIONS(2935), + [sym__strikeout_open] = ACTIONS(2937), + [sym__subscript_open] = ACTIONS(2939), + [sym__superscript_open] = ACTIONS(2941), + [sym__inline_note_start_token] = ACTIONS(2943), + [sym__strong_emphasis_open_star] = ACTIONS(2945), + [sym__strong_emphasis_open_underscore] = ACTIONS(2947), + [sym__emphasis_open_star] = ACTIONS(2949), + [sym__emphasis_open_underscore] = ACTIONS(2951), + [sym_inline_note_reference] = ACTIONS(2893), + [sym_html_element] = ACTIONS(2893), + [sym__pipe_table_delimiter] = ACTIONS(2953), + [sym__pandoc_line_break] = ACTIONS(2893), + }, + [STATE(546)] = { + [ts_builtin_sym_end] = ACTIONS(2801), + [anon_sym_COLON] = ACTIONS(2801), + [sym_entity_reference] = ACTIONS(2801), + [sym_numeric_character_reference] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_BANG_LBRACK] = ACTIONS(2801), + [anon_sym_DOLLAR] = ACTIONS(2803), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2801), + [aux_sym_pandoc_str_token1] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(2801), + [sym__whitespace] = ACTIONS(2801), + [sym__line_ending] = ACTIONS(2801), + [sym__soft_line_ending] = ACTIONS(2801), + [sym__block_quote_start] = ACTIONS(2801), + [sym_atx_h1_marker] = ACTIONS(2801), + [sym_atx_h2_marker] = ACTIONS(2801), + [sym_atx_h3_marker] = ACTIONS(2801), + [sym_atx_h4_marker] = ACTIONS(2801), + [sym_atx_h5_marker] = ACTIONS(2801), + [sym_atx_h6_marker] = ACTIONS(2801), + [sym__thematic_break] = ACTIONS(2801), + [sym__list_marker_minus] = ACTIONS(2801), + [sym__list_marker_plus] = ACTIONS(2801), + [sym__list_marker_star] = ACTIONS(2801), + [sym__list_marker_parenthesis] = ACTIONS(2801), + [sym__list_marker_dot] = ACTIONS(2801), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2801), + [sym__list_marker_example] = ACTIONS(2801), + [sym__list_marker_example_dont_interrupt] = ACTIONS(2801), + [sym__fenced_code_block_start_backtick] = ACTIONS(2801), + [sym_minus_metadata] = ACTIONS(2801), + [sym__pipe_table_start] = ACTIONS(2801), + [sym__fenced_div_start] = ACTIONS(2801), + [sym_ref_id_specifier] = ACTIONS(2801), + [sym__code_span_start] = ACTIONS(2801), + [sym__html_comment] = ACTIONS(2801), + [sym__autolink] = ACTIONS(2801), + [sym__highlight_span_start] = ACTIONS(2801), + [sym__insert_span_start] = ACTIONS(2801), + [sym__delete_span_start] = ACTIONS(2801), + [sym__edit_comment_span_start] = ACTIONS(2801), + [sym__single_quote_span_open] = ACTIONS(2801), + [sym__double_quote_span_open] = ACTIONS(2801), + [sym__shortcode_open_escaped] = ACTIONS(2801), + [sym__shortcode_open] = ACTIONS(2801), + [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2801), + [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2801), + [sym__cite_author_in_text] = ACTIONS(2801), + [sym__cite_suppress_author] = ACTIONS(2801), + [sym__strikeout_open] = ACTIONS(2801), + [sym__subscript_open] = ACTIONS(2801), + [sym__superscript_open] = ACTIONS(2801), + [sym__inline_note_start_token] = ACTIONS(2801), + [sym__strong_emphasis_open_star] = ACTIONS(2801), + [sym__strong_emphasis_open_underscore] = ACTIONS(2801), + [sym__emphasis_open_star] = ACTIONS(2801), + [sym__emphasis_open_underscore] = ACTIONS(2801), + [sym_inline_note_reference] = ACTIONS(2801), + [sym_html_element] = ACTIONS(2801), + [sym__pandoc_line_break] = ACTIONS(2801), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3325), 1, + sym__whitespace, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + STATE(2749), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(840), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [135] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3369), 1, + sym__whitespace, + STATE(2772), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(879), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [270] = 35, + ACTIONS(2613), 1, + sym__line_ending, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2899), 1, + anon_sym_DOLLAR, + ACTIONS(2901), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2903), 1, + anon_sym_LBRACE, + ACTIONS(2905), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2907), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, + sym__code_span_start, + ACTIONS(2913), 1, + sym__highlight_span_start, + ACTIONS(2915), 1, + sym__insert_span_start, + ACTIONS(2917), 1, + sym__delete_span_start, + ACTIONS(2919), 1, + sym__edit_comment_span_start, + ACTIONS(2921), 1, + sym__single_quote_span_open, + ACTIONS(2923), 1, + sym__double_quote_span_open, + ACTIONS(2925), 1, + sym__shortcode_open_escaped, + ACTIONS(2927), 1, + sym__shortcode_open, + ACTIONS(2929), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2931), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2933), 1, + sym__cite_author_in_text, + ACTIONS(2935), 1, + sym__cite_suppress_author, + ACTIONS(2937), 1, + sym__strikeout_open, + ACTIONS(2939), 1, + sym__subscript_open, + ACTIONS(2941), 1, + sym__superscript_open, + ACTIONS(2943), 1, + sym__inline_note_start_token, + ACTIONS(2945), 1, + sym__strong_emphasis_open_star, + ACTIONS(2947), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2949), 1, + sym__emphasis_open_star, + ACTIONS(2951), 1, + sym__emphasis_open_underscore, + ACTIONS(3371), 1, + sym__whitespace, + ACTIONS(3373), 1, + sym__pipe_table_delimiter, + STATE(3085), 1, + sym_pipe_table_cell, + STATE(3087), 1, + sym__line_with_maybe_spaces, + ACTIONS(2893), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(641), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [405] = 35, + ACTIONS(2495), 1, + sym__line_ending, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2899), 1, + anon_sym_DOLLAR, + ACTIONS(2901), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2903), 1, + anon_sym_LBRACE, + ACTIONS(2905), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2907), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, + sym__code_span_start, + ACTIONS(2913), 1, + sym__highlight_span_start, + ACTIONS(2915), 1, + sym__insert_span_start, + ACTIONS(2917), 1, + sym__delete_span_start, + ACTIONS(2919), 1, + sym__edit_comment_span_start, + ACTIONS(2921), 1, + sym__single_quote_span_open, + ACTIONS(2923), 1, + sym__double_quote_span_open, + ACTIONS(2925), 1, + sym__shortcode_open_escaped, + ACTIONS(2927), 1, + sym__shortcode_open, + ACTIONS(2929), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2931), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2933), 1, + sym__cite_author_in_text, + ACTIONS(2935), 1, + sym__cite_suppress_author, + ACTIONS(2937), 1, + sym__strikeout_open, + ACTIONS(2939), 1, + sym__subscript_open, + ACTIONS(2941), 1, + sym__superscript_open, + ACTIONS(2943), 1, + sym__inline_note_start_token, + ACTIONS(2945), 1, + sym__strong_emphasis_open_star, + ACTIONS(2947), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2949), 1, + sym__emphasis_open_star, + ACTIONS(2951), 1, + sym__emphasis_open_underscore, + ACTIONS(3371), 1, + sym__whitespace, + ACTIONS(3373), 1, + sym__pipe_table_delimiter, + STATE(3085), 1, + sym_pipe_table_cell, + STATE(3087), 1, + sym__line_with_maybe_spaces, + ACTIONS(2893), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(641), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [540] = 35, + ACTIONS(2737), 1, + sym__line_ending, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2899), 1, + anon_sym_DOLLAR, + ACTIONS(2901), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2903), 1, + anon_sym_LBRACE, + ACTIONS(2905), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2907), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, + sym__code_span_start, + ACTIONS(2913), 1, + sym__highlight_span_start, + ACTIONS(2915), 1, + sym__insert_span_start, + ACTIONS(2917), 1, + sym__delete_span_start, + ACTIONS(2919), 1, + sym__edit_comment_span_start, + ACTIONS(2921), 1, + sym__single_quote_span_open, + ACTIONS(2923), 1, + sym__double_quote_span_open, + ACTIONS(2925), 1, + sym__shortcode_open_escaped, + ACTIONS(2927), 1, + sym__shortcode_open, + ACTIONS(2929), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2931), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2933), 1, + sym__cite_author_in_text, + ACTIONS(2935), 1, + sym__cite_suppress_author, + ACTIONS(2937), 1, + sym__strikeout_open, + ACTIONS(2939), 1, + sym__subscript_open, + ACTIONS(2941), 1, + sym__superscript_open, + ACTIONS(2943), 1, + sym__inline_note_start_token, + ACTIONS(2945), 1, + sym__strong_emphasis_open_star, + ACTIONS(2947), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2949), 1, + sym__emphasis_open_star, + ACTIONS(2951), 1, + sym__emphasis_open_underscore, + ACTIONS(3375), 1, + sym__whitespace, + STATE(557), 1, + aux_sym_pipe_table_row_repeat1, + STATE(3087), 1, + sym__line_with_maybe_spaces, + STATE(3193), 1, + sym_pipe_table_cell, + ACTIONS(2893), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(641), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [675] = 35, + ACTIONS(2613), 1, + sym__line_ending, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2899), 1, + anon_sym_DOLLAR, + ACTIONS(2901), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2903), 1, + anon_sym_LBRACE, + ACTIONS(2905), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2907), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, + sym__code_span_start, + ACTIONS(2913), 1, + sym__highlight_span_start, + ACTIONS(2915), 1, + sym__insert_span_start, + ACTIONS(2917), 1, + sym__delete_span_start, + ACTIONS(2919), 1, + sym__edit_comment_span_start, + ACTIONS(2921), 1, + sym__single_quote_span_open, + ACTIONS(2923), 1, + sym__double_quote_span_open, + ACTIONS(2925), 1, + sym__shortcode_open_escaped, + ACTIONS(2927), 1, + sym__shortcode_open, + ACTIONS(2929), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2931), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2933), 1, + sym__cite_author_in_text, + ACTIONS(2935), 1, + sym__cite_suppress_author, + ACTIONS(2937), 1, + sym__strikeout_open, + ACTIONS(2939), 1, + sym__subscript_open, + ACTIONS(2941), 1, + sym__superscript_open, + ACTIONS(2943), 1, + sym__inline_note_start_token, + ACTIONS(2945), 1, + sym__strong_emphasis_open_star, + ACTIONS(2947), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2949), 1, + sym__emphasis_open_star, + ACTIONS(2951), 1, + sym__emphasis_open_underscore, + ACTIONS(3377), 1, + sym__whitespace, + STATE(557), 1, + aux_sym_pipe_table_row_repeat1, + STATE(3087), 1, + sym__line_with_maybe_spaces, + STATE(3183), 1, + sym_pipe_table_cell, + ACTIONS(2893), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(641), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [810] = 35, + ACTIONS(2495), 1, + sym__line_ending, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2899), 1, + anon_sym_DOLLAR, + ACTIONS(2901), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2903), 1, + anon_sym_LBRACE, + ACTIONS(2905), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2907), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, + sym__code_span_start, + ACTIONS(2913), 1, + sym__highlight_span_start, + ACTIONS(2915), 1, + sym__insert_span_start, + ACTIONS(2917), 1, + sym__delete_span_start, + ACTIONS(2919), 1, + sym__edit_comment_span_start, + ACTIONS(2921), 1, + sym__single_quote_span_open, + ACTIONS(2923), 1, + sym__double_quote_span_open, + ACTIONS(2925), 1, + sym__shortcode_open_escaped, + ACTIONS(2927), 1, + sym__shortcode_open, + ACTIONS(2929), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2931), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2933), 1, + sym__cite_author_in_text, + ACTIONS(2935), 1, + sym__cite_suppress_author, + ACTIONS(2937), 1, + sym__strikeout_open, + ACTIONS(2939), 1, + sym__subscript_open, + ACTIONS(2941), 1, + sym__superscript_open, + ACTIONS(2943), 1, + sym__inline_note_start_token, + ACTIONS(2945), 1, + sym__strong_emphasis_open_star, + ACTIONS(2947), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2949), 1, + sym__emphasis_open_star, + ACTIONS(2951), 1, + sym__emphasis_open_underscore, + ACTIONS(3371), 1, + sym__whitespace, + ACTIONS(3373), 1, + sym__pipe_table_delimiter, + STATE(3066), 1, + sym_pipe_table_cell, + STATE(3087), 1, + sym__line_with_maybe_spaces, + ACTIONS(2893), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(641), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [945] = 35, + ACTIONS(2501), 1, + sym__line_ending, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2899), 1, + anon_sym_DOLLAR, + ACTIONS(2901), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2903), 1, + anon_sym_LBRACE, + ACTIONS(2905), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2907), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, + sym__code_span_start, + ACTIONS(2913), 1, + sym__highlight_span_start, + ACTIONS(2915), 1, + sym__insert_span_start, + ACTIONS(2917), 1, + sym__delete_span_start, + ACTIONS(2919), 1, + sym__edit_comment_span_start, + ACTIONS(2921), 1, + sym__single_quote_span_open, + ACTIONS(2923), 1, + sym__double_quote_span_open, + ACTIONS(2925), 1, + sym__shortcode_open_escaped, + ACTIONS(2927), 1, + sym__shortcode_open, + ACTIONS(2929), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2931), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2933), 1, + sym__cite_author_in_text, + ACTIONS(2935), 1, + sym__cite_suppress_author, + ACTIONS(2937), 1, + sym__strikeout_open, + ACTIONS(2939), 1, + sym__subscript_open, + ACTIONS(2941), 1, + sym__superscript_open, + ACTIONS(2943), 1, + sym__inline_note_start_token, + ACTIONS(2945), 1, + sym__strong_emphasis_open_star, + ACTIONS(2947), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2949), 1, + sym__emphasis_open_star, + ACTIONS(2951), 1, + sym__emphasis_open_underscore, + ACTIONS(3379), 1, + sym__whitespace, + STATE(557), 1, + aux_sym_pipe_table_row_repeat1, + STATE(3084), 1, + sym_pipe_table_cell, + STATE(3087), 1, + sym__line_with_maybe_spaces, + ACTIONS(2893), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(641), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [1080] = 35, + ACTIONS(2505), 1, + sym__line_ending, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2899), 1, + anon_sym_DOLLAR, + ACTIONS(2901), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2903), 1, + anon_sym_LBRACE, + ACTIONS(2905), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2907), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, + sym__code_span_start, + ACTIONS(2913), 1, + sym__highlight_span_start, + ACTIONS(2915), 1, + sym__insert_span_start, + ACTIONS(2917), 1, + sym__delete_span_start, + ACTIONS(2919), 1, + sym__edit_comment_span_start, + ACTIONS(2921), 1, + sym__single_quote_span_open, + ACTIONS(2923), 1, + sym__double_quote_span_open, + ACTIONS(2925), 1, + sym__shortcode_open_escaped, + ACTIONS(2927), 1, + sym__shortcode_open, + ACTIONS(2929), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2931), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2933), 1, + sym__cite_author_in_text, + ACTIONS(2935), 1, + sym__cite_suppress_author, + ACTIONS(2937), 1, + sym__strikeout_open, + ACTIONS(2939), 1, + sym__subscript_open, + ACTIONS(2941), 1, + sym__superscript_open, + ACTIONS(2943), 1, + sym__inline_note_start_token, + ACTIONS(2945), 1, + sym__strong_emphasis_open_star, + ACTIONS(2947), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2949), 1, + sym__emphasis_open_star, + ACTIONS(2951), 1, + sym__emphasis_open_underscore, + ACTIONS(3381), 1, + sym__whitespace, + STATE(552), 1, + aux_sym_pipe_table_row_repeat1, + STATE(3084), 1, + sym_pipe_table_cell, + STATE(3087), 1, + sym__line_with_maybe_spaces, + ACTIONS(2893), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(641), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [1215] = 35, + ACTIONS(2501), 1, + sym__line_ending, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2899), 1, + anon_sym_DOLLAR, + ACTIONS(2901), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2903), 1, + anon_sym_LBRACE, + ACTIONS(2905), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2907), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, + sym__code_span_start, + ACTIONS(2913), 1, + sym__highlight_span_start, + ACTIONS(2915), 1, + sym__insert_span_start, + ACTIONS(2917), 1, + sym__delete_span_start, + ACTIONS(2919), 1, + sym__edit_comment_span_start, + ACTIONS(2921), 1, + sym__single_quote_span_open, + ACTIONS(2923), 1, + sym__double_quote_span_open, + ACTIONS(2925), 1, + sym__shortcode_open_escaped, + ACTIONS(2927), 1, + sym__shortcode_open, + ACTIONS(2929), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2931), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2933), 1, + sym__cite_author_in_text, + ACTIONS(2935), 1, + sym__cite_suppress_author, + ACTIONS(2937), 1, + sym__strikeout_open, + ACTIONS(2939), 1, + sym__subscript_open, + ACTIONS(2941), 1, + sym__superscript_open, + ACTIONS(2943), 1, + sym__inline_note_start_token, + ACTIONS(2945), 1, + sym__strong_emphasis_open_star, + ACTIONS(2947), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2949), 1, + sym__emphasis_open_star, + ACTIONS(2951), 1, + sym__emphasis_open_underscore, + ACTIONS(3371), 1, + sym__whitespace, + ACTIONS(3373), 1, + sym__pipe_table_delimiter, + STATE(3066), 1, + sym_pipe_table_cell, + STATE(3087), 1, + sym__line_with_maybe_spaces, + ACTIONS(2893), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(641), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [1350] = 35, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2513), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2516), 1, + anon_sym_DOLLAR, + ACTIONS(2519), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2522), 1, + anon_sym_LBRACE, + ACTIONS(2525), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2528), 1, + anon_sym_PIPE, + ACTIONS(2534), 1, + sym__line_ending, + ACTIONS(2536), 1, + sym__code_span_start, + ACTIONS(2539), 1, + sym__highlight_span_start, + ACTIONS(2542), 1, + sym__insert_span_start, + ACTIONS(2545), 1, + sym__delete_span_start, + ACTIONS(2548), 1, + sym__edit_comment_span_start, + ACTIONS(2551), 1, + sym__single_quote_span_open, + ACTIONS(2554), 1, + sym__double_quote_span_open, + ACTIONS(2557), 1, + sym__shortcode_open_escaped, + ACTIONS(2560), 1, + sym__shortcode_open, + ACTIONS(2563), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2566), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2569), 1, + sym__cite_author_in_text, + ACTIONS(2572), 1, + sym__cite_suppress_author, + ACTIONS(2575), 1, + sym__strikeout_open, + ACTIONS(2578), 1, + sym__subscript_open, + ACTIONS(2581), 1, + sym__superscript_open, + ACTIONS(2584), 1, + sym__inline_note_start_token, + ACTIONS(2587), 1, + sym__strong_emphasis_open_star, + ACTIONS(2590), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2593), 1, + sym__emphasis_open_star, + ACTIONS(2596), 1, + sym__emphasis_open_underscore, + ACTIONS(3383), 1, + sym__whitespace, + STATE(557), 1, + aux_sym_pipe_table_row_repeat1, + STATE(3259), 1, + sym__line_with_maybe_spaces, + STATE(3372), 1, + sym_pipe_table_cell, + ACTIONS(2507), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(740), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [1485] = 35, + ACTIONS(2629), 1, + sym__line_ending, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2899), 1, + anon_sym_DOLLAR, + ACTIONS(2901), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2903), 1, + anon_sym_LBRACE, + ACTIONS(2905), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2907), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, + sym__code_span_start, + ACTIONS(2913), 1, + sym__highlight_span_start, + ACTIONS(2915), 1, + sym__insert_span_start, + ACTIONS(2917), 1, + sym__delete_span_start, + ACTIONS(2919), 1, + sym__edit_comment_span_start, + ACTIONS(2921), 1, + sym__single_quote_span_open, + ACTIONS(2923), 1, + sym__double_quote_span_open, + ACTIONS(2925), 1, + sym__shortcode_open_escaped, + ACTIONS(2927), 1, + sym__shortcode_open, + ACTIONS(2929), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2931), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2933), 1, + sym__cite_author_in_text, + ACTIONS(2935), 1, + sym__cite_suppress_author, + ACTIONS(2937), 1, + sym__strikeout_open, + ACTIONS(2939), 1, + sym__subscript_open, + ACTIONS(2941), 1, + sym__superscript_open, + ACTIONS(2943), 1, + sym__inline_note_start_token, + ACTIONS(2945), 1, + sym__strong_emphasis_open_star, + ACTIONS(2947), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2949), 1, + sym__emphasis_open_star, + ACTIONS(2951), 1, + sym__emphasis_open_underscore, + ACTIONS(3371), 1, + sym__whitespace, + ACTIONS(3373), 1, + sym__pipe_table_delimiter, + STATE(3087), 1, + sym__line_with_maybe_spaces, + STATE(3105), 1, + sym_pipe_table_cell, + ACTIONS(2893), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(641), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [1620] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3386), 1, + sym__whitespace, + STATE(2775), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(798), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [1755] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3388), 1, + sym__whitespace, + STATE(2716), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(766), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [1890] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3390), 1, + sym__whitespace, + STATE(2770), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(776), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [2025] = 32, + ACTIONS(3395), 1, + anon_sym_LBRACK, + ACTIONS(3398), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3401), 1, + anon_sym_DOLLAR, + ACTIONS(3404), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3410), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3413), 1, + anon_sym_PIPE, + ACTIONS(3416), 1, + sym__whitespace, + ACTIONS(3421), 1, + sym__code_span_start, + ACTIONS(3424), 1, + sym__highlight_span_start, + ACTIONS(3427), 1, + sym__insert_span_start, + ACTIONS(3430), 1, + sym__delete_span_start, + ACTIONS(3433), 1, + sym__edit_comment_span_start, + ACTIONS(3436), 1, + sym__single_quote_span_open, + ACTIONS(3439), 1, + sym__double_quote_span_open, + ACTIONS(3442), 1, + sym__shortcode_open_escaped, + ACTIONS(3445), 1, + sym__shortcode_open, + ACTIONS(3448), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3451), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3454), 1, + sym__cite_author_in_text, + ACTIONS(3457), 1, + sym__cite_suppress_author, + ACTIONS(3460), 1, + sym__strikeout_open, + ACTIONS(3463), 1, + sym__subscript_open, + ACTIONS(3466), 1, + sym__superscript_open, + ACTIONS(3469), 1, + sym__inline_note_start_token, + ACTIONS(3472), 1, + sym__strong_emphasis_open_star, + ACTIONS(3475), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3478), 1, + sym__emphasis_open_star, + ACTIONS(3481), 1, + sym__emphasis_open_underscore, + ACTIONS(3419), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__pipe_table_delimiter, + ACTIONS(3392), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(562), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [2154] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3484), 1, + sym__whitespace, + STATE(2808), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(784), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [2289] = 35, + ACTIONS(2495), 1, + sym__line_ending, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2899), 1, + anon_sym_DOLLAR, + ACTIONS(2901), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2903), 1, + anon_sym_LBRACE, + ACTIONS(2905), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2907), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, + sym__code_span_start, + ACTIONS(2913), 1, + sym__highlight_span_start, + ACTIONS(2915), 1, + sym__insert_span_start, + ACTIONS(2917), 1, + sym__delete_span_start, + ACTIONS(2919), 1, + sym__edit_comment_span_start, + ACTIONS(2921), 1, + sym__single_quote_span_open, + ACTIONS(2923), 1, + sym__double_quote_span_open, + ACTIONS(2925), 1, + sym__shortcode_open_escaped, + ACTIONS(2927), 1, + sym__shortcode_open, + ACTIONS(2929), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2931), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2933), 1, + sym__cite_author_in_text, + ACTIONS(2935), 1, + sym__cite_suppress_author, + ACTIONS(2937), 1, + sym__strikeout_open, + ACTIONS(2939), 1, + sym__subscript_open, + ACTIONS(2941), 1, + sym__superscript_open, + ACTIONS(2943), 1, + sym__inline_note_start_token, + ACTIONS(2945), 1, + sym__strong_emphasis_open_star, + ACTIONS(2947), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2949), 1, + sym__emphasis_open_star, + ACTIONS(2951), 1, + sym__emphasis_open_underscore, + ACTIONS(3371), 1, + sym__whitespace, + ACTIONS(3486), 1, + sym__pipe_table_delimiter, + STATE(3058), 1, + sym_pipe_table_cell, + STATE(3087), 1, + sym__line_with_maybe_spaces, + ACTIONS(2893), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(641), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [2424] = 32, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2015), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2017), 1, + anon_sym_DOLLAR, + ACTIONS(2019), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2021), 1, + anon_sym_LBRACE, + ACTIONS(2023), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2025), 1, + anon_sym_PIPE, + ACTIONS(2031), 1, + sym__code_span_start, + ACTIONS(2033), 1, + sym__highlight_span_start, + ACTIONS(2035), 1, + sym__insert_span_start, + ACTIONS(2037), 1, + sym__delete_span_start, + ACTIONS(2039), 1, + sym__edit_comment_span_start, + ACTIONS(2041), 1, + sym__single_quote_span_open, + ACTIONS(2043), 1, + sym__double_quote_span_open, + ACTIONS(2045), 1, + sym__shortcode_open_escaped, + ACTIONS(2047), 1, + sym__shortcode_open, + ACTIONS(2049), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2051), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2053), 1, + sym__cite_author_in_text, + ACTIONS(2055), 1, + sym__cite_suppress_author, + ACTIONS(2057), 1, + sym__strikeout_open, + ACTIONS(2059), 1, + sym__subscript_open, + ACTIONS(2061), 1, + sym__superscript_open, + ACTIONS(2063), 1, + sym__inline_note_start_token, + ACTIONS(2065), 1, + sym__strong_emphasis_open_star, + ACTIONS(2067), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2069), 1, + sym__emphasis_open_star, + ACTIONS(2071), 1, + sym__emphasis_open_underscore, + ACTIONS(2493), 1, + sym__whitespace, + ACTIONS(3490), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__pipe_table_delimiter, + ACTIONS(3488), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(562), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [2553] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3492), 1, + sym__whitespace, + STATE(2836), 1, + sym__line, + STATE(2869), 1, + sym__inlines, + STATE(792), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [2688] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3494), 1, + sym__whitespace, + STATE(2719), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(800), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [2823] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3496), 1, + sym__whitespace, + STATE(2724), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(808), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [2958] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3498), 1, + sym__whitespace, + STATE(2731), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(816), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [3093] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3500), 1, + sym__whitespace, + STATE(2739), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(824), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [3228] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3502), 1, + sym__whitespace, + STATE(2744), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(832), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [3363] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3504), 1, + sym__whitespace, + STATE(2752), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(848), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [3498] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3506), 1, + sym__whitespace, + STATE(2755), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(856), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [3633] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3508), 1, + sym__whitespace, + STATE(2762), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(864), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [3768] = 35, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(3510), 1, + sym__whitespace, + STATE(2768), 1, + sym__inlines, + STATE(2836), 1, + sym__line, + STATE(872), 2, + sym__soft_line_break, + sym__inline_whitespace, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [3903] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2275), 1, + aux_sym_target_token1, + ACTIONS(3512), 1, + aux_sym_pandoc_span_token1, + STATE(1382), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3159), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [4037] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2255), 1, + aux_sym_target_token1, + ACTIONS(3514), 1, + aux_sym_pandoc_span_token1, + STATE(1159), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3092), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [4171] = 33, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(3518), 1, + aux_sym_pandoc_span_token1, + ACTIONS(3522), 1, + sym__whitespace, + ACTIONS(3520), 2, + sym__soft_line_ending, + aux_sym_target_token1, + ACTIONS(3516), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(581), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [4301] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2265), 1, + aux_sym_target_token1, + ACTIONS(3524), 1, + aux_sym_pandoc_span_token1, + STATE(1255), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3123), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [4435] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2265), 1, + aux_sym_target_token1, + ACTIONS(3526), 1, + aux_sym_pandoc_span_token1, + STATE(1271), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3127), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [4569] = 33, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(3522), 1, + sym__whitespace, + ACTIONS(3530), 1, + aux_sym_pandoc_span_token1, + ACTIONS(3532), 2, + sym__soft_line_ending, + aux_sym_target_token1, + ACTIONS(3528), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(598), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [4699] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2275), 1, + aux_sym_target_token1, + ACTIONS(3534), 1, + aux_sym_pandoc_span_token1, + STATE(1380), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3157), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [4833] = 34, + ACTIONS(2497), 1, + sym__pipe_table_delimiter, + ACTIONS(3538), 1, + anon_sym_LBRACK, + ACTIONS(3540), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3542), 1, + anon_sym_DOLLAR, + ACTIONS(3544), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3546), 1, + anon_sym_LBRACE, + ACTIONS(3548), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3550), 1, + anon_sym_PIPE, + ACTIONS(3552), 1, + sym__whitespace, + ACTIONS(3554), 1, + sym__code_span_start, + ACTIONS(3556), 1, + sym__highlight_span_start, + ACTIONS(3558), 1, + sym__insert_span_start, + ACTIONS(3560), 1, + sym__delete_span_start, + ACTIONS(3562), 1, + sym__edit_comment_span_start, + ACTIONS(3564), 1, + sym__single_quote_span_open, + ACTIONS(3566), 1, + sym__double_quote_span_open, + ACTIONS(3568), 1, + sym__shortcode_open_escaped, + ACTIONS(3570), 1, + sym__shortcode_open, + ACTIONS(3572), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3574), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3576), 1, + sym__cite_author_in_text, + ACTIONS(3578), 1, + sym__cite_suppress_author, + ACTIONS(3580), 1, + sym__strikeout_open, + ACTIONS(3582), 1, + sym__subscript_open, + ACTIONS(3584), 1, + sym__superscript_open, + ACTIONS(3586), 1, + sym__inline_note_start_token, + ACTIONS(3588), 1, + sym__strong_emphasis_open_star, + ACTIONS(3590), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3592), 1, + sym__emphasis_open_star, + ACTIONS(3594), 1, + sym__emphasis_open_underscore, + STATE(3259), 1, + sym__line_with_maybe_spaces, + STATE(3283), 1, + sym_pipe_table_cell, + ACTIONS(3536), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(740), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [4965] = 32, + ACTIONS(9), 1, + anon_sym_LBRACK, + ACTIONS(11), 1, + anon_sym_BANG_LBRACK, + ACTIONS(13), 1, + anon_sym_DOLLAR, + ACTIONS(15), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + aux_sym_pandoc_str_token1, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(67), 1, + sym__code_span_start, + ACTIONS(69), 1, + sym__highlight_span_start, + ACTIONS(71), 1, + sym__insert_span_start, + ACTIONS(73), 1, + sym__delete_span_start, + ACTIONS(75), 1, + sym__edit_comment_span_start, + ACTIONS(77), 1, + sym__single_quote_span_open, + ACTIONS(79), 1, + sym__double_quote_span_open, + ACTIONS(81), 1, + sym__shortcode_open_escaped, + ACTIONS(83), 1, + sym__shortcode_open, + ACTIONS(85), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(87), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(89), 1, + sym__cite_author_in_text, + ACTIONS(91), 1, + sym__cite_suppress_author, + ACTIONS(93), 1, + sym__strikeout_open, + ACTIONS(95), 1, + sym__subscript_open, + ACTIONS(97), 1, + sym__superscript_open, + ACTIONS(99), 1, + sym__inline_note_start_token, + ACTIONS(101), 1, + sym__strong_emphasis_open_star, + ACTIONS(103), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(105), 1, + sym__emphasis_open_star, + ACTIONS(107), 1, + sym__emphasis_open_underscore, + ACTIONS(3598), 1, + sym__whitespace, + ACTIONS(3532), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(3596), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(615), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [5093] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2285), 1, + aux_sym_target_token1, + ACTIONS(3600), 1, + aux_sym_pandoc_span_token1, + STATE(1412), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3195), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [5227] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2285), 1, + aux_sym_target_token1, + ACTIONS(3602), 1, + aux_sym_pandoc_span_token1, + STATE(1414), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3196), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [5361] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2341), 1, + aux_sym_target_token1, + ACTIONS(3604), 1, + aux_sym_pandoc_span_token1, + STATE(1138), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3256), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [5495] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2341), 1, + aux_sym_target_token1, + ACTIONS(3606), 1, + aux_sym_pandoc_span_token1, + STATE(1141), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3143), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [5629] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2295), 1, + aux_sym_target_token1, + ACTIONS(3608), 1, + aux_sym_pandoc_span_token1, + STATE(1050), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3219), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [5763] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2295), 1, + aux_sym_target_token1, + ACTIONS(3610), 1, + aux_sym_pandoc_span_token1, + STATE(1052), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3220), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [5897] = 34, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2899), 1, + anon_sym_DOLLAR, + ACTIONS(2901), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2903), 1, + anon_sym_LBRACE, + ACTIONS(2905), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2907), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, + sym__code_span_start, + ACTIONS(2913), 1, + sym__highlight_span_start, + ACTIONS(2915), 1, + sym__insert_span_start, + ACTIONS(2917), 1, + sym__delete_span_start, + ACTIONS(2919), 1, + sym__edit_comment_span_start, + ACTIONS(2921), 1, + sym__single_quote_span_open, + ACTIONS(2923), 1, + sym__double_quote_span_open, + ACTIONS(2925), 1, + sym__shortcode_open_escaped, + ACTIONS(2927), 1, + sym__shortcode_open, + ACTIONS(2929), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2931), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2933), 1, + sym__cite_author_in_text, + ACTIONS(2935), 1, + sym__cite_suppress_author, + ACTIONS(2937), 1, + sym__strikeout_open, + ACTIONS(2939), 1, + sym__subscript_open, + ACTIONS(2941), 1, + sym__superscript_open, + ACTIONS(2943), 1, + sym__inline_note_start_token, + ACTIONS(2945), 1, + sym__strong_emphasis_open_star, + ACTIONS(2947), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2949), 1, + sym__emphasis_open_star, + ACTIONS(2951), 1, + sym__emphasis_open_underscore, + ACTIONS(3612), 1, + sym__whitespace, + STATE(554), 1, + aux_sym_pipe_table_row_repeat1, + STATE(3087), 1, + sym__line_with_maybe_spaces, + STATE(3193), 1, + sym_pipe_table_cell, + ACTIONS(2893), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(641), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [6029] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2225), 1, + aux_sym_target_token1, + ACTIONS(3614), 1, + aux_sym_pandoc_span_token1, + STATE(1325), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3139), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [6163] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2305), 1, + aux_sym_target_token1, + ACTIONS(3616), 1, + aux_sym_pandoc_span_token1, + STATE(2006), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3238), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [6297] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2305), 1, + aux_sym_target_token1, + ACTIONS(3618), 1, + aux_sym_pandoc_span_token1, + STATE(2008), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3239), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [6431] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2315), 1, + aux_sym_target_token1, + ACTIONS(3620), 1, + aux_sym_pandoc_span_token1, + STATE(924), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3008), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [6565] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2209), 1, + aux_sym_target_token1, + ACTIONS(3622), 1, + aux_sym_pandoc_span_token1, + STATE(1267), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3100), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [6699] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2225), 1, + aux_sym_target_token1, + ACTIONS(3624), 1, + aux_sym_pandoc_span_token1, + STATE(1327), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3146), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [6833] = 33, + ACTIONS(3629), 1, + anon_sym_LBRACK, + ACTIONS(3632), 1, + aux_sym_pandoc_span_token1, + ACTIONS(3634), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3639), 1, + anon_sym_DOLLAR, + ACTIONS(3642), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3645), 1, + anon_sym_LBRACE, + ACTIONS(3648), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3651), 1, + anon_sym_PIPE, + ACTIONS(3654), 1, + sym__whitespace, + ACTIONS(3657), 1, + sym__code_span_start, + ACTIONS(3660), 1, + sym__highlight_span_start, + ACTIONS(3663), 1, + sym__insert_span_start, + ACTIONS(3666), 1, + sym__delete_span_start, + ACTIONS(3669), 1, + sym__edit_comment_span_start, + ACTIONS(3672), 1, + sym__single_quote_span_open, + ACTIONS(3675), 1, + sym__double_quote_span_open, + ACTIONS(3678), 1, + sym__shortcode_open_escaped, + ACTIONS(3681), 1, + sym__shortcode_open, + ACTIONS(3684), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3687), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3690), 1, + sym__cite_author_in_text, + ACTIONS(3693), 1, + sym__cite_suppress_author, + ACTIONS(3696), 1, + sym__strikeout_open, + ACTIONS(3699), 1, + sym__subscript_open, + ACTIONS(3702), 1, + sym__superscript_open, + ACTIONS(3705), 1, + sym__inline_note_start_token, + ACTIONS(3708), 1, + sym__strong_emphasis_open_star, + ACTIONS(3711), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3714), 1, + sym__emphasis_open_star, + ACTIONS(3717), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 2, + sym__soft_line_ending, + aux_sym_target_token1, + ACTIONS(3626), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(598), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [6963] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2149), 1, + aux_sym_target_token1, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(3720), 1, + aux_sym_pandoc_span_token1, + STATE(1018), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3184), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [7097] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2149), 1, + aux_sym_target_token1, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(3722), 1, + aux_sym_pandoc_span_token1, + STATE(1020), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3204), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [7231] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2215), 1, + aux_sym_target_token1, + ACTIONS(3724), 1, + aux_sym_pandoc_span_token1, + STATE(1490), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3237), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [7365] = 34, + ACTIONS(3373), 1, + sym__pipe_table_delimiter, + ACTIONS(3538), 1, + anon_sym_LBRACK, + ACTIONS(3540), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3542), 1, + anon_sym_DOLLAR, + ACTIONS(3544), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3546), 1, + anon_sym_LBRACE, + ACTIONS(3548), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3550), 1, + anon_sym_PIPE, + ACTIONS(3552), 1, + sym__whitespace, + ACTIONS(3554), 1, + sym__code_span_start, + ACTIONS(3556), 1, + sym__highlight_span_start, + ACTIONS(3558), 1, + sym__insert_span_start, + ACTIONS(3560), 1, + sym__delete_span_start, + ACTIONS(3562), 1, + sym__edit_comment_span_start, + ACTIONS(3564), 1, + sym__single_quote_span_open, + ACTIONS(3566), 1, + sym__double_quote_span_open, + ACTIONS(3568), 1, + sym__shortcode_open_escaped, + ACTIONS(3570), 1, + sym__shortcode_open, + ACTIONS(3572), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3574), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3576), 1, + sym__cite_author_in_text, + ACTIONS(3578), 1, + sym__cite_suppress_author, + ACTIONS(3580), 1, + sym__strikeout_open, + ACTIONS(3582), 1, + sym__subscript_open, + ACTIONS(3584), 1, + sym__superscript_open, + ACTIONS(3586), 1, + sym__inline_note_start_token, + ACTIONS(3588), 1, + sym__strong_emphasis_open_star, + ACTIONS(3590), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3592), 1, + sym__emphasis_open_star, + ACTIONS(3594), 1, + sym__emphasis_open_underscore, + STATE(3259), 1, + sym__line_with_maybe_spaces, + STATE(3397), 1, + sym_pipe_table_cell, + ACTIONS(3536), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(740), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [7497] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2433), 1, + aux_sym_target_token1, + ACTIONS(3726), 1, + aux_sym_pandoc_span_token1, + STATE(1233), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3178), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [7631] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2433), 1, + aux_sym_target_token1, + ACTIONS(3728), 1, + aux_sym_pandoc_span_token1, + STATE(1235), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3181), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [7765] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2235), 1, + aux_sym_target_token1, + ACTIONS(3730), 1, + aux_sym_pandoc_span_token1, + STATE(1369), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3214), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [7899] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2235), 1, + aux_sym_target_token1, + ACTIONS(3732), 1, + aux_sym_pandoc_span_token1, + STATE(1374), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3215), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [8033] = 34, + ACTIONS(2013), 1, + anon_sym_LBRACK, + ACTIONS(2015), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2017), 1, + anon_sym_DOLLAR, + ACTIONS(2019), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2021), 1, + anon_sym_LBRACE, + ACTIONS(2023), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2025), 1, + anon_sym_PIPE, + ACTIONS(2031), 1, + sym__code_span_start, + ACTIONS(2033), 1, + sym__highlight_span_start, + ACTIONS(2035), 1, + sym__insert_span_start, + ACTIONS(2037), 1, + sym__delete_span_start, + ACTIONS(2039), 1, + sym__edit_comment_span_start, + ACTIONS(2041), 1, + sym__single_quote_span_open, + ACTIONS(2043), 1, + sym__double_quote_span_open, + ACTIONS(2045), 1, + sym__shortcode_open_escaped, + ACTIONS(2047), 1, + sym__shortcode_open, + ACTIONS(2049), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2051), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2053), 1, + sym__cite_author_in_text, + ACTIONS(2055), 1, + sym__cite_suppress_author, + ACTIONS(2057), 1, + sym__strikeout_open, + ACTIONS(2059), 1, + sym__subscript_open, + ACTIONS(2061), 1, + sym__superscript_open, + ACTIONS(2063), 1, + sym__inline_note_start_token, + ACTIONS(2065), 1, + sym__strong_emphasis_open_star, + ACTIONS(2067), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2069), 1, + sym__emphasis_open_star, + ACTIONS(2071), 1, + sym__emphasis_open_underscore, + ACTIONS(3734), 1, + sym__whitespace, + STATE(229), 1, + aux_sym_pipe_table_row_repeat1, + STATE(2713), 1, + sym_pipe_table_cell, + STATE(2780), 1, + sym__line_with_maybe_spaces, + ACTIONS(2011), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(565), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [8165] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2215), 1, + aux_sym_target_token1, + ACTIONS(3736), 1, + aux_sym_pandoc_span_token1, + STATE(1299), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3248), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [8299] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2245), 1, + aux_sym_target_token1, + ACTIONS(3738), 1, + aux_sym_pandoc_span_token1, + STATE(1446), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3031), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [8433] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2245), 1, + aux_sym_target_token1, + ACTIONS(3740), 1, + aux_sym_pandoc_span_token1, + STATE(1450), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3032), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [8567] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2439), 1, + aux_sym_target_token1, + ACTIONS(3742), 1, + aux_sym_pandoc_span_token1, + STATE(1142), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3142), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [8701] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2439), 1, + aux_sym_target_token1, + ACTIONS(3744), 1, + aux_sym_pandoc_span_token1, + STATE(1146), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3007), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [8835] = 32, + ACTIONS(9), 1, + anon_sym_LBRACK, + ACTIONS(11), 1, + anon_sym_BANG_LBRACK, + ACTIONS(13), 1, + anon_sym_DOLLAR, + ACTIONS(15), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + aux_sym_pandoc_str_token1, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(67), 1, + sym__code_span_start, + ACTIONS(69), 1, + sym__highlight_span_start, + ACTIONS(71), 1, + sym__insert_span_start, + ACTIONS(73), 1, + sym__delete_span_start, + ACTIONS(75), 1, + sym__edit_comment_span_start, + ACTIONS(77), 1, + sym__single_quote_span_open, + ACTIONS(79), 1, + sym__double_quote_span_open, + ACTIONS(81), 1, + sym__shortcode_open_escaped, + ACTIONS(83), 1, + sym__shortcode_open, + ACTIONS(85), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(87), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(89), 1, + sym__cite_author_in_text, + ACTIONS(91), 1, + sym__cite_suppress_author, + ACTIONS(93), 1, + sym__strikeout_open, + ACTIONS(95), 1, + sym__subscript_open, + ACTIONS(97), 1, + sym__superscript_open, + ACTIONS(99), 1, + sym__inline_note_start_token, + ACTIONS(101), 1, + sym__strong_emphasis_open_star, + ACTIONS(103), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(105), 1, + sym__emphasis_open_star, + ACTIONS(107), 1, + sym__emphasis_open_underscore, + ACTIONS(3598), 1, + sym__whitespace, + ACTIONS(3520), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(3746), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(584), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [8963] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2209), 1, + aux_sym_target_token1, + ACTIONS(3748), 1, + aux_sym_pandoc_span_token1, + STATE(1269), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3103), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [9097] = 32, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3756), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3759), 1, + anon_sym_DOLLAR, + ACTIONS(3762), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(3768), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3771), 1, + anon_sym_PIPE, + ACTIONS(3774), 1, + sym__whitespace, + ACTIONS(3777), 1, + sym__code_span_start, + ACTIONS(3780), 1, + sym__highlight_span_start, + ACTIONS(3783), 1, + sym__insert_span_start, + ACTIONS(3786), 1, + sym__delete_span_start, + ACTIONS(3789), 1, + sym__edit_comment_span_start, + ACTIONS(3792), 1, + sym__single_quote_span_open, + ACTIONS(3795), 1, + sym__double_quote_span_open, + ACTIONS(3798), 1, + sym__shortcode_open_escaped, + ACTIONS(3801), 1, + sym__shortcode_open, + ACTIONS(3804), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3807), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3810), 1, + sym__cite_author_in_text, + ACTIONS(3813), 1, + sym__cite_suppress_author, + ACTIONS(3816), 1, + sym__strikeout_open, + ACTIONS(3819), 1, + sym__subscript_open, + ACTIONS(3822), 1, + sym__superscript_open, + ACTIONS(3825), 1, + sym__inline_note_start_token, + ACTIONS(3828), 1, + sym__strong_emphasis_open_star, + ACTIONS(3831), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3834), 1, + sym__emphasis_open_star, + ACTIONS(3837), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(3750), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(615), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [9225] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2255), 1, + aux_sym_target_token1, + ACTIONS(3840), 1, + aux_sym_pandoc_span_token1, + STATE(1144), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3091), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [9359] = 35, + ACTIONS(2143), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2151), 1, + anon_sym_DOLLAR, + ACTIONS(2153), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2155), 1, + anon_sym_LBRACE, + ACTIONS(2157), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2159), 1, + anon_sym_PIPE, + ACTIONS(2165), 1, + sym__code_span_start, + ACTIONS(2167), 1, + sym__highlight_span_start, + ACTIONS(2169), 1, + sym__insert_span_start, + ACTIONS(2171), 1, + sym__delete_span_start, + ACTIONS(2173), 1, + sym__edit_comment_span_start, + ACTIONS(2175), 1, + sym__single_quote_span_open, + ACTIONS(2177), 1, + sym__double_quote_span_open, + ACTIONS(2179), 1, + sym__shortcode_open_escaped, + ACTIONS(2181), 1, + sym__shortcode_open, + ACTIONS(2183), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2185), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2187), 1, + sym__cite_author_in_text, + ACTIONS(2189), 1, + sym__cite_suppress_author, + ACTIONS(2191), 1, + sym__strikeout_open, + ACTIONS(2193), 1, + sym__subscript_open, + ACTIONS(2195), 1, + sym__superscript_open, + ACTIONS(2197), 1, + sym__inline_note_start_token, + ACTIONS(2199), 1, + sym__strong_emphasis_open_star, + ACTIONS(2201), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2203), 1, + sym__emphasis_open_star, + ACTIONS(2205), 1, + sym__emphasis_open_underscore, + ACTIONS(2315), 1, + aux_sym_target_token1, + ACTIONS(3842), 1, + aux_sym_pandoc_span_token1, + STATE(930), 1, + sym_target, + STATE(2853), 1, + sym__line, + STATE(3009), 1, + sym__inlines, + ACTIONS(2141), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(578), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [9493] = 32, + ACTIONS(3847), 1, + anon_sym_LBRACK, + ACTIONS(3850), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3853), 1, + anon_sym_DOLLAR, + ACTIONS(3856), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3859), 1, + anon_sym_LBRACE, + ACTIONS(3862), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3865), 1, + anon_sym_PIPE, + ACTIONS(3868), 1, + sym__whitespace, + ACTIONS(3871), 1, + sym__code_span_start, + ACTIONS(3874), 1, + sym__highlight_span_start, + ACTIONS(3877), 1, + sym__insert_span_start, + ACTIONS(3880), 1, + sym__delete_span_start, + ACTIONS(3883), 1, + sym__edit_comment_span_start, + ACTIONS(3886), 1, + sym__single_quote_span_open, + ACTIONS(3889), 1, + sym__double_quote_span_open, + ACTIONS(3892), 1, + sym__shortcode_open_escaped, + ACTIONS(3895), 1, + sym__shortcode_open, + ACTIONS(3898), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3901), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3904), 1, + sym__cite_author_in_text, + ACTIONS(3907), 1, + sym__cite_suppress_author, + ACTIONS(3910), 1, + sym__strikeout_open, + ACTIONS(3913), 1, + sym__subscript_open, + ACTIONS(3916), 1, + sym__superscript_open, + ACTIONS(3919), 1, + sym__inline_note_start_token, + ACTIONS(3922), 1, + sym__strong_emphasis_open_star, + ACTIONS(3925), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3928), 1, + sym__emphasis_open_star, + ACTIONS(3931), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 2, + sym__soft_line_ending, + sym__emphasis_close_star, + ACTIONS(3844), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(618), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [9620] = 32, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3950), 1, + sym__whitespace, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(3532), 2, + sym__soft_line_ending, + sym__single_quote_span_close, + ACTIONS(3934), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(642), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [9747] = 32, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4000), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(4010), 1, + sym__whitespace, + ACTIONS(4012), 1, + sym__code_span_start, + ACTIONS(4014), 1, + sym__highlight_span_start, + ACTIONS(4016), 1, + sym__insert_span_start, + ACTIONS(4018), 1, + sym__delete_span_start, + ACTIONS(4020), 1, + sym__edit_comment_span_start, + ACTIONS(4022), 1, + sym__single_quote_span_open, + ACTIONS(4024), 1, + sym__double_quote_span_open, + ACTIONS(4026), 1, + sym__shortcode_open_escaped, + ACTIONS(4028), 1, + sym__shortcode_open, + ACTIONS(4030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4032), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4034), 1, + sym__cite_author_in_text, + ACTIONS(4036), 1, + sym__cite_suppress_author, + ACTIONS(4038), 1, + sym__strikeout_open, + ACTIONS(4040), 1, + sym__subscript_open, + ACTIONS(4042), 1, + sym__superscript_open, + ACTIONS(4044), 1, + sym__inline_note_start_token, + ACTIONS(4046), 1, + sym__strong_emphasis_open_star, + ACTIONS(4048), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4050), 1, + sym__emphasis_open_star, + ACTIONS(4052), 1, + sym__emphasis_open_underscore, + ACTIONS(3520), 2, + sym__soft_line_ending, + sym__double_quote_span_close, + ACTIONS(3994), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(621), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [9874] = 32, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4000), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(4010), 1, + sym__whitespace, + ACTIONS(4012), 1, + sym__code_span_start, + ACTIONS(4014), 1, + sym__highlight_span_start, + ACTIONS(4016), 1, + sym__insert_span_start, + ACTIONS(4018), 1, + sym__delete_span_start, + ACTIONS(4020), 1, + sym__edit_comment_span_start, + ACTIONS(4022), 1, + sym__single_quote_span_open, + ACTIONS(4024), 1, + sym__double_quote_span_open, + ACTIONS(4026), 1, + sym__shortcode_open_escaped, + ACTIONS(4028), 1, + sym__shortcode_open, + ACTIONS(4030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4032), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4034), 1, + sym__cite_author_in_text, + ACTIONS(4036), 1, + sym__cite_suppress_author, + ACTIONS(4038), 1, + sym__strikeout_open, + ACTIONS(4040), 1, + sym__subscript_open, + ACTIONS(4042), 1, + sym__superscript_open, + ACTIONS(4044), 1, + sym__inline_note_start_token, + ACTIONS(4046), 1, + sym__strong_emphasis_open_star, + ACTIONS(4048), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4050), 1, + sym__emphasis_open_star, + ACTIONS(4052), 1, + sym__emphasis_open_underscore, + ACTIONS(3532), 2, + sym__soft_line_ending, + sym__double_quote_span_close, + ACTIONS(4054), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(622), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [10001] = 32, + ACTIONS(4059), 1, + anon_sym_LBRACK, + ACTIONS(4062), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4065), 1, + anon_sym_DOLLAR, + ACTIONS(4068), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4074), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4077), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + sym__whitespace, + ACTIONS(4083), 1, + sym__code_span_start, + ACTIONS(4086), 1, + sym__highlight_span_start, + ACTIONS(4089), 1, + sym__insert_span_start, + ACTIONS(4092), 1, + sym__delete_span_start, + ACTIONS(4095), 1, + sym__edit_comment_span_start, + ACTIONS(4098), 1, + sym__single_quote_span_open, + ACTIONS(4101), 1, + sym__double_quote_span_open, + ACTIONS(4104), 1, + sym__shortcode_open_escaped, + ACTIONS(4107), 1, + sym__shortcode_open, + ACTIONS(4110), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4113), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4116), 1, + sym__cite_author_in_text, + ACTIONS(4119), 1, + sym__cite_suppress_author, + ACTIONS(4122), 1, + sym__strikeout_open, + ACTIONS(4125), 1, + sym__subscript_open, + ACTIONS(4128), 1, + sym__superscript_open, + ACTIONS(4131), 1, + sym__inline_note_start_token, + ACTIONS(4134), 1, + sym__strong_emphasis_open_star, + ACTIONS(4137), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4140), 1, + sym__emphasis_open_star, + ACTIONS(4143), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 2, + sym__soft_line_ending, + sym__double_quote_span_close, + ACTIONS(4056), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(622), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [10128] = 32, + ACTIONS(4149), 1, + anon_sym_LBRACK, + ACTIONS(4152), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4155), 1, + anon_sym_DOLLAR, + ACTIONS(4158), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4161), 1, + anon_sym_LBRACE, + ACTIONS(4164), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4167), 1, + anon_sym_PIPE, + ACTIONS(4170), 1, + sym__whitespace, + ACTIONS(4173), 1, + sym__code_span_start, + ACTIONS(4176), 1, + sym__highlight_span_start, + ACTIONS(4179), 1, + sym__insert_span_start, + ACTIONS(4182), 1, + sym__delete_span_start, + ACTIONS(4185), 1, + sym__edit_comment_span_start, + ACTIONS(4188), 1, + sym__single_quote_span_open, + ACTIONS(4191), 1, + sym__double_quote_span_open, + ACTIONS(4194), 1, + sym__shortcode_open_escaped, + ACTIONS(4197), 1, + sym__shortcode_open, + ACTIONS(4200), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4203), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4206), 1, + sym__cite_author_in_text, + ACTIONS(4209), 1, + sym__cite_suppress_author, + ACTIONS(4212), 1, + sym__strikeout_open, + ACTIONS(4215), 1, + sym__subscript_open, + ACTIONS(4218), 1, + sym__superscript_open, + ACTIONS(4221), 1, + sym__inline_note_start_token, + ACTIONS(4224), 1, + sym__strong_emphasis_open_star, + ACTIONS(4227), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4230), 1, + sym__emphasis_open_star, + ACTIONS(4233), 1, + sym__emphasis_open_underscore, + ACTIONS(3419), 2, + sym__line_ending, + sym__pipe_table_delimiter, + ACTIONS(4146), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(623), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [10255] = 32, + ACTIONS(4238), 1, + anon_sym_LBRACK, + ACTIONS(4240), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4242), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4246), 1, + anon_sym_LBRACE, + ACTIONS(4248), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4252), 1, + sym__whitespace, + ACTIONS(4254), 1, + sym__code_span_start, + ACTIONS(4256), 1, + sym__highlight_span_start, + ACTIONS(4258), 1, + sym__insert_span_start, + ACTIONS(4260), 1, + sym__delete_span_start, + ACTIONS(4262), 1, + sym__edit_comment_span_start, + ACTIONS(4264), 1, + sym__single_quote_span_open, + ACTIONS(4266), 1, + sym__double_quote_span_open, + ACTIONS(4268), 1, + sym__shortcode_open_escaped, + ACTIONS(4270), 1, + sym__shortcode_open, + ACTIONS(4272), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4274), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4276), 1, + sym__cite_author_in_text, + ACTIONS(4278), 1, + sym__cite_suppress_author, + ACTIONS(4280), 1, + sym__strikeout_open, + ACTIONS(4282), 1, + sym__subscript_open, + ACTIONS(4284), 1, + sym__superscript_open, + ACTIONS(4286), 1, + sym__inline_note_start_token, + ACTIONS(4288), 1, + sym__strong_emphasis_open_star, + ACTIONS(4290), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4292), 1, + sym__emphasis_open_star, + ACTIONS(4294), 1, + sym__emphasis_open_underscore, + ACTIONS(3520), 2, + sym__soft_line_ending, + sym__strikeout_close, + ACTIONS(4236), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(625), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [10382] = 32, + ACTIONS(4238), 1, + anon_sym_LBRACK, + ACTIONS(4240), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4242), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4246), 1, + anon_sym_LBRACE, + ACTIONS(4248), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4252), 1, + sym__whitespace, + ACTIONS(4254), 1, + sym__code_span_start, + ACTIONS(4256), 1, + sym__highlight_span_start, + ACTIONS(4258), 1, + sym__insert_span_start, + ACTIONS(4260), 1, + sym__delete_span_start, + ACTIONS(4262), 1, + sym__edit_comment_span_start, + ACTIONS(4264), 1, + sym__single_quote_span_open, + ACTIONS(4266), 1, + sym__double_quote_span_open, + ACTIONS(4268), 1, + sym__shortcode_open_escaped, + ACTIONS(4270), 1, + sym__shortcode_open, + ACTIONS(4272), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4274), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4276), 1, + sym__cite_author_in_text, + ACTIONS(4278), 1, + sym__cite_suppress_author, + ACTIONS(4280), 1, + sym__strikeout_open, + ACTIONS(4282), 1, + sym__subscript_open, + ACTIONS(4284), 1, + sym__superscript_open, + ACTIONS(4286), 1, + sym__inline_note_start_token, + ACTIONS(4288), 1, + sym__strong_emphasis_open_star, + ACTIONS(4290), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4292), 1, + sym__emphasis_open_star, + ACTIONS(4294), 1, + sym__emphasis_open_underscore, + ACTIONS(3532), 2, + sym__soft_line_ending, + sym__strikeout_close, + ACTIONS(4296), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(626), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [10509] = 32, + ACTIONS(4301), 1, + anon_sym_LBRACK, + ACTIONS(4304), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4307), 1, + anon_sym_DOLLAR, + ACTIONS(4310), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4313), 1, + anon_sym_LBRACE, + ACTIONS(4316), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4319), 1, + anon_sym_PIPE, + ACTIONS(4322), 1, + sym__whitespace, + ACTIONS(4325), 1, + sym__code_span_start, + ACTIONS(4328), 1, + sym__highlight_span_start, + ACTIONS(4331), 1, + sym__insert_span_start, + ACTIONS(4334), 1, + sym__delete_span_start, + ACTIONS(4337), 1, + sym__edit_comment_span_start, + ACTIONS(4340), 1, + sym__single_quote_span_open, + ACTIONS(4343), 1, + sym__double_quote_span_open, + ACTIONS(4346), 1, + sym__shortcode_open_escaped, + ACTIONS(4349), 1, + sym__shortcode_open, + ACTIONS(4352), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4355), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4358), 1, + sym__cite_author_in_text, + ACTIONS(4361), 1, + sym__cite_suppress_author, + ACTIONS(4364), 1, + sym__strikeout_open, + ACTIONS(4367), 1, + sym__subscript_open, + ACTIONS(4370), 1, + sym__superscript_open, + ACTIONS(4373), 1, + sym__inline_note_start_token, + ACTIONS(4376), 1, + sym__strong_emphasis_open_star, + ACTIONS(4379), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4382), 1, + sym__emphasis_open_star, + ACTIONS(4385), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 2, + sym__soft_line_ending, + sym__strikeout_close, + ACTIONS(4298), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(626), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [10636] = 32, + ACTIONS(4390), 1, + anon_sym_LBRACK, + ACTIONS(4392), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4394), 1, + anon_sym_DOLLAR, + ACTIONS(4396), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4398), 1, + anon_sym_LBRACE, + ACTIONS(4400), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4402), 1, + anon_sym_PIPE, + ACTIONS(4404), 1, + sym__whitespace, + ACTIONS(4406), 1, + sym__code_span_start, + ACTIONS(4408), 1, + sym__highlight_span_start, + ACTIONS(4410), 1, + sym__insert_span_start, + ACTIONS(4412), 1, + sym__delete_span_start, + ACTIONS(4414), 1, + sym__edit_comment_span_start, + ACTIONS(4416), 1, + sym__single_quote_span_open, + ACTIONS(4418), 1, + sym__double_quote_span_open, + ACTIONS(4420), 1, + sym__shortcode_open_escaped, + ACTIONS(4422), 1, + sym__shortcode_open, + ACTIONS(4424), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4426), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4428), 1, + sym__cite_author_in_text, + ACTIONS(4430), 1, + sym__cite_suppress_author, + ACTIONS(4432), 1, + sym__strikeout_open, + ACTIONS(4434), 1, + sym__subscript_open, + ACTIONS(4436), 1, + sym__superscript_open, + ACTIONS(4438), 1, + sym__inline_note_start_token, + ACTIONS(4440), 1, + sym__strong_emphasis_open_star, + ACTIONS(4442), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4444), 1, + sym__emphasis_open_star, + ACTIONS(4446), 1, + sym__emphasis_open_underscore, + ACTIONS(3520), 2, + sym__soft_line_ending, + sym__subscript_close, + ACTIONS(4388), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(628), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [10763] = 32, + ACTIONS(4390), 1, + anon_sym_LBRACK, + ACTIONS(4392), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4394), 1, + anon_sym_DOLLAR, + ACTIONS(4396), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4398), 1, + anon_sym_LBRACE, + ACTIONS(4400), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4402), 1, + anon_sym_PIPE, + ACTIONS(4404), 1, + sym__whitespace, + ACTIONS(4406), 1, + sym__code_span_start, + ACTIONS(4408), 1, + sym__highlight_span_start, + ACTIONS(4410), 1, + sym__insert_span_start, + ACTIONS(4412), 1, + sym__delete_span_start, + ACTIONS(4414), 1, + sym__edit_comment_span_start, + ACTIONS(4416), 1, + sym__single_quote_span_open, + ACTIONS(4418), 1, + sym__double_quote_span_open, + ACTIONS(4420), 1, + sym__shortcode_open_escaped, + ACTIONS(4422), 1, + sym__shortcode_open, + ACTIONS(4424), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4426), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4428), 1, + sym__cite_author_in_text, + ACTIONS(4430), 1, + sym__cite_suppress_author, + ACTIONS(4432), 1, + sym__strikeout_open, + ACTIONS(4434), 1, + sym__subscript_open, + ACTIONS(4436), 1, + sym__superscript_open, + ACTIONS(4438), 1, + sym__inline_note_start_token, + ACTIONS(4440), 1, + sym__strong_emphasis_open_star, + ACTIONS(4442), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4444), 1, + sym__emphasis_open_star, + ACTIONS(4446), 1, + sym__emphasis_open_underscore, + ACTIONS(3532), 2, + sym__soft_line_ending, + sym__subscript_close, + ACTIONS(4448), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(630), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [10890] = 32, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(4452), 1, + sym__whitespace, + ACTIONS(3532), 2, + sym__soft_line_ending, + aux_sym_insert_token1, + ACTIONS(4450), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(643), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [11017] = 32, + ACTIONS(4457), 1, + anon_sym_LBRACK, + ACTIONS(4460), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4463), 1, + anon_sym_DOLLAR, + ACTIONS(4466), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4469), 1, + anon_sym_LBRACE, + ACTIONS(4472), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4475), 1, + anon_sym_PIPE, + ACTIONS(4478), 1, + sym__whitespace, + ACTIONS(4481), 1, + sym__code_span_start, + ACTIONS(4484), 1, + sym__highlight_span_start, + ACTIONS(4487), 1, + sym__insert_span_start, + ACTIONS(4490), 1, + sym__delete_span_start, + ACTIONS(4493), 1, + sym__edit_comment_span_start, + ACTIONS(4496), 1, + sym__single_quote_span_open, + ACTIONS(4499), 1, + sym__double_quote_span_open, + ACTIONS(4502), 1, + sym__shortcode_open_escaped, + ACTIONS(4505), 1, + sym__shortcode_open, + ACTIONS(4508), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4511), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4514), 1, + sym__cite_author_in_text, + ACTIONS(4517), 1, + sym__cite_suppress_author, + ACTIONS(4520), 1, + sym__strikeout_open, + ACTIONS(4523), 1, + sym__subscript_open, + ACTIONS(4526), 1, + sym__superscript_open, + ACTIONS(4529), 1, + sym__inline_note_start_token, + ACTIONS(4532), 1, + sym__strong_emphasis_open_star, + ACTIONS(4535), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4538), 1, + sym__emphasis_open_star, + ACTIONS(4541), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 2, + sym__soft_line_ending, + sym__subscript_close, + ACTIONS(4454), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(630), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [11144] = 32, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4548), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4550), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4554), 1, + anon_sym_LBRACE, + ACTIONS(4556), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4558), 1, + anon_sym_PIPE, + ACTIONS(4560), 1, + sym__whitespace, + ACTIONS(4562), 1, + sym__code_span_start, + ACTIONS(4564), 1, + sym__highlight_span_start, + ACTIONS(4566), 1, + sym__insert_span_start, + ACTIONS(4568), 1, + sym__delete_span_start, + ACTIONS(4570), 1, + sym__edit_comment_span_start, + ACTIONS(4572), 1, + sym__single_quote_span_open, + ACTIONS(4574), 1, + sym__double_quote_span_open, + ACTIONS(4576), 1, + sym__shortcode_open_escaped, + ACTIONS(4578), 1, + sym__shortcode_open, + ACTIONS(4580), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4582), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4584), 1, + sym__cite_author_in_text, + ACTIONS(4586), 1, + sym__cite_suppress_author, + ACTIONS(4588), 1, + sym__strikeout_open, + ACTIONS(4590), 1, + sym__subscript_open, + ACTIONS(4592), 1, + sym__superscript_open, + ACTIONS(4594), 1, + sym__inline_note_start_token, + ACTIONS(4596), 1, + sym__strong_emphasis_open_star, + ACTIONS(4598), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4600), 1, + sym__emphasis_open_star, + ACTIONS(4602), 1, + sym__emphasis_open_underscore, + ACTIONS(3520), 2, + sym__soft_line_ending, + sym__superscript_close, + ACTIONS(4544), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(632), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [11271] = 32, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4548), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4550), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4554), 1, + anon_sym_LBRACE, + ACTIONS(4556), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4558), 1, + anon_sym_PIPE, + ACTIONS(4560), 1, + sym__whitespace, + ACTIONS(4562), 1, + sym__code_span_start, + ACTIONS(4564), 1, + sym__highlight_span_start, + ACTIONS(4566), 1, + sym__insert_span_start, + ACTIONS(4568), 1, + sym__delete_span_start, + ACTIONS(4570), 1, + sym__edit_comment_span_start, + ACTIONS(4572), 1, + sym__single_quote_span_open, + ACTIONS(4574), 1, + sym__double_quote_span_open, + ACTIONS(4576), 1, + sym__shortcode_open_escaped, + ACTIONS(4578), 1, + sym__shortcode_open, + ACTIONS(4580), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4582), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4584), 1, + sym__cite_author_in_text, + ACTIONS(4586), 1, + sym__cite_suppress_author, + ACTIONS(4588), 1, + sym__strikeout_open, + ACTIONS(4590), 1, + sym__subscript_open, + ACTIONS(4592), 1, + sym__superscript_open, + ACTIONS(4594), 1, + sym__inline_note_start_token, + ACTIONS(4596), 1, + sym__strong_emphasis_open_star, + ACTIONS(4598), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4600), 1, + sym__emphasis_open_star, + ACTIONS(4602), 1, + sym__emphasis_open_underscore, + ACTIONS(3532), 2, + sym__soft_line_ending, + sym__superscript_close, + ACTIONS(4604), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(633), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [11398] = 32, + ACTIONS(4609), 1, + anon_sym_LBRACK, + ACTIONS(4612), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4615), 1, + anon_sym_DOLLAR, + ACTIONS(4618), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4621), 1, + anon_sym_LBRACE, + ACTIONS(4624), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4627), 1, + anon_sym_PIPE, + ACTIONS(4630), 1, + sym__whitespace, + ACTIONS(4633), 1, + sym__code_span_start, + ACTIONS(4636), 1, + sym__highlight_span_start, + ACTIONS(4639), 1, + sym__insert_span_start, + ACTIONS(4642), 1, + sym__delete_span_start, + ACTIONS(4645), 1, + sym__edit_comment_span_start, + ACTIONS(4648), 1, + sym__single_quote_span_open, + ACTIONS(4651), 1, + sym__double_quote_span_open, + ACTIONS(4654), 1, + sym__shortcode_open_escaped, + ACTIONS(4657), 1, + sym__shortcode_open, + ACTIONS(4660), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4663), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4666), 1, + sym__cite_author_in_text, + ACTIONS(4669), 1, + sym__cite_suppress_author, + ACTIONS(4672), 1, + sym__strikeout_open, + ACTIONS(4675), 1, + sym__subscript_open, + ACTIONS(4678), 1, + sym__superscript_open, + ACTIONS(4681), 1, + sym__inline_note_start_token, + ACTIONS(4684), 1, + sym__strong_emphasis_open_star, + ACTIONS(4687), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4690), 1, + sym__emphasis_open_star, + ACTIONS(4693), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 2, + sym__soft_line_ending, + sym__superscript_close, + ACTIONS(4606), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(633), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [11525] = 32, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(4700), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4702), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4706), 1, + anon_sym_LBRACE, + ACTIONS(4708), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4710), 1, + anon_sym_PIPE, + ACTIONS(4712), 1, + sym__whitespace, + ACTIONS(4714), 1, + sym__code_span_start, + ACTIONS(4716), 1, + sym__highlight_span_start, + ACTIONS(4718), 1, + sym__insert_span_start, + ACTIONS(4720), 1, + sym__delete_span_start, + ACTIONS(4722), 1, + sym__edit_comment_span_start, + ACTIONS(4724), 1, + sym__single_quote_span_open, + ACTIONS(4726), 1, + sym__double_quote_span_open, + ACTIONS(4728), 1, + sym__shortcode_open_escaped, + ACTIONS(4730), 1, + sym__shortcode_open, + ACTIONS(4732), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4734), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4736), 1, + sym__cite_author_in_text, + ACTIONS(4738), 1, + sym__cite_suppress_author, + ACTIONS(4740), 1, + sym__strikeout_open, + ACTIONS(4742), 1, + sym__subscript_open, + ACTIONS(4744), 1, + sym__superscript_open, + ACTIONS(4746), 1, + sym__inline_note_start_token, + ACTIONS(4748), 1, + sym__strong_emphasis_open_star, + ACTIONS(4750), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4752), 1, + sym__emphasis_open_star, + ACTIONS(4754), 1, + sym__emphasis_open_underscore, + ACTIONS(3532), 2, + sym__soft_line_ending, + sym__emphasis_close_star, + ACTIONS(4696), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(618), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [11652] = 32, + ACTIONS(4758), 1, + anon_sym_LBRACK, + ACTIONS(4760), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4762), 1, + anon_sym_DOLLAR, + ACTIONS(4764), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4766), 1, + anon_sym_LBRACE, + ACTIONS(4768), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4770), 1, + anon_sym_PIPE, + ACTIONS(4772), 1, + sym__whitespace, + ACTIONS(4774), 1, + sym__code_span_start, + ACTIONS(4776), 1, + sym__highlight_span_start, + ACTIONS(4778), 1, + sym__insert_span_start, + ACTIONS(4780), 1, + sym__delete_span_start, + ACTIONS(4782), 1, + sym__edit_comment_span_start, + ACTIONS(4784), 1, + sym__single_quote_span_open, + ACTIONS(4786), 1, + sym__double_quote_span_open, + ACTIONS(4788), 1, + sym__shortcode_open_escaped, + ACTIONS(4790), 1, + sym__shortcode_open, + ACTIONS(4792), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4794), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4796), 1, + sym__cite_author_in_text, + ACTIONS(4798), 1, + sym__cite_suppress_author, + ACTIONS(4800), 1, + sym__strikeout_open, + ACTIONS(4802), 1, + sym__subscript_open, + ACTIONS(4804), 1, + sym__superscript_open, + ACTIONS(4806), 1, + sym__inline_note_start_token, + ACTIONS(4808), 1, + sym__strong_emphasis_open_star, + ACTIONS(4810), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4812), 1, + sym__emphasis_open_star, + ACTIONS(4814), 1, + sym__emphasis_open_underscore, + ACTIONS(3532), 2, + sym__soft_line_ending, + sym__emphasis_close_underscore, + ACTIONS(4756), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(644), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [11779] = 32, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(4818), 1, + sym__whitespace, + ACTIONS(3520), 2, + sym__soft_line_ending, + aux_sym_inline_note_token1, + ACTIONS(4816), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(637), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [11906] = 32, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3315), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3323), 1, + anon_sym_PIPE, + ACTIONS(3327), 1, + sym__code_span_start, + ACTIONS(3329), 1, + sym__highlight_span_start, + ACTIONS(3331), 1, + sym__insert_span_start, + ACTIONS(3333), 1, + sym__delete_span_start, + ACTIONS(3335), 1, + sym__edit_comment_span_start, + ACTIONS(3337), 1, + sym__single_quote_span_open, + ACTIONS(3339), 1, + sym__double_quote_span_open, + ACTIONS(3341), 1, + sym__shortcode_open_escaped, + ACTIONS(3343), 1, + sym__shortcode_open, + ACTIONS(3345), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3347), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3349), 1, + sym__cite_author_in_text, + ACTIONS(3351), 1, + sym__cite_suppress_author, + ACTIONS(3353), 1, + sym__strikeout_open, + ACTIONS(3355), 1, + sym__subscript_open, + ACTIONS(3357), 1, + sym__superscript_open, + ACTIONS(3359), 1, + sym__inline_note_start_token, + ACTIONS(3361), 1, + sym__strong_emphasis_open_star, + ACTIONS(3363), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3365), 1, + sym__emphasis_open_star, + ACTIONS(3367), 1, + sym__emphasis_open_underscore, + ACTIONS(4818), 1, + sym__whitespace, + ACTIONS(3532), 2, + sym__soft_line_ending, + aux_sym_inline_note_token1, + ACTIONS(4820), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(638), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [12033] = 32, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4831), 1, + anon_sym_DOLLAR, + ACTIONS(4834), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4837), 1, + anon_sym_LBRACE, + ACTIONS(4840), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4843), 1, + anon_sym_PIPE, + ACTIONS(4846), 1, + sym__whitespace, + ACTIONS(4849), 1, + sym__code_span_start, + ACTIONS(4852), 1, + sym__highlight_span_start, + ACTIONS(4855), 1, + sym__insert_span_start, + ACTIONS(4858), 1, + sym__delete_span_start, + ACTIONS(4861), 1, + sym__edit_comment_span_start, + ACTIONS(4864), 1, + sym__single_quote_span_open, + ACTIONS(4867), 1, + sym__double_quote_span_open, + ACTIONS(4870), 1, + sym__shortcode_open_escaped, + ACTIONS(4873), 1, + sym__shortcode_open, + ACTIONS(4876), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4879), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4882), 1, + sym__cite_author_in_text, + ACTIONS(4885), 1, + sym__cite_suppress_author, + ACTIONS(4888), 1, + sym__strikeout_open, + ACTIONS(4891), 1, + sym__subscript_open, + ACTIONS(4894), 1, + sym__superscript_open, + ACTIONS(4897), 1, + sym__inline_note_start_token, + ACTIONS(4900), 1, + sym__strong_emphasis_open_star, + ACTIONS(4903), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4906), 1, + sym__emphasis_open_star, + ACTIONS(4909), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 2, + sym__soft_line_ending, + aux_sym_inline_note_token1, + ACTIONS(4822), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(638), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [12160] = 32, + ACTIONS(4914), 1, + anon_sym_LBRACK, + ACTIONS(4916), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4918), 1, + anon_sym_DOLLAR, + ACTIONS(4920), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(4924), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4926), 1, + anon_sym_PIPE, + ACTIONS(4928), 1, + sym__whitespace, + ACTIONS(4930), 1, + sym__code_span_start, + ACTIONS(4932), 1, + sym__highlight_span_start, + ACTIONS(4934), 1, + sym__insert_span_start, + ACTIONS(4936), 1, + sym__delete_span_start, + ACTIONS(4938), 1, + sym__edit_comment_span_start, + ACTIONS(4940), 1, + sym__single_quote_span_open, + ACTIONS(4942), 1, + sym__double_quote_span_open, + ACTIONS(4944), 1, + sym__shortcode_open_escaped, + ACTIONS(4946), 1, + sym__shortcode_open, + ACTIONS(4948), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4950), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4952), 1, + sym__cite_author_in_text, + ACTIONS(4954), 1, + sym__cite_suppress_author, + ACTIONS(4956), 1, + sym__strikeout_open, + ACTIONS(4958), 1, + sym__subscript_open, + ACTIONS(4960), 1, + sym__superscript_open, + ACTIONS(4962), 1, + sym__inline_note_start_token, + ACTIONS(4964), 1, + sym__strong_emphasis_open_star, + ACTIONS(4966), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4968), 1, + sym__emphasis_open_star, + ACTIONS(4970), 1, + sym__emphasis_open_underscore, + ACTIONS(3520), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_star, + ACTIONS(4912), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(640), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [12287] = 32, + ACTIONS(4914), 1, + anon_sym_LBRACK, + ACTIONS(4916), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4918), 1, + anon_sym_DOLLAR, + ACTIONS(4920), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(4924), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4926), 1, + anon_sym_PIPE, + ACTIONS(4928), 1, + sym__whitespace, + ACTIONS(4930), 1, + sym__code_span_start, + ACTIONS(4932), 1, + sym__highlight_span_start, + ACTIONS(4934), 1, + sym__insert_span_start, + ACTIONS(4936), 1, + sym__delete_span_start, + ACTIONS(4938), 1, + sym__edit_comment_span_start, + ACTIONS(4940), 1, + sym__single_quote_span_open, + ACTIONS(4942), 1, + sym__double_quote_span_open, + ACTIONS(4944), 1, + sym__shortcode_open_escaped, + ACTIONS(4946), 1, + sym__shortcode_open, + ACTIONS(4948), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4950), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4952), 1, + sym__cite_author_in_text, + ACTIONS(4954), 1, + sym__cite_suppress_author, + ACTIONS(4956), 1, + sym__strikeout_open, + ACTIONS(4958), 1, + sym__subscript_open, + ACTIONS(4960), 1, + sym__superscript_open, + ACTIONS(4962), 1, + sym__inline_note_start_token, + ACTIONS(4964), 1, + sym__strong_emphasis_open_star, + ACTIONS(4966), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4968), 1, + sym__emphasis_open_star, + ACTIONS(4970), 1, + sym__emphasis_open_underscore, + ACTIONS(3532), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_star, + ACTIONS(4972), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(645), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [12414] = 32, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2899), 1, + anon_sym_DOLLAR, + ACTIONS(2901), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2903), 1, + anon_sym_LBRACE, + ACTIONS(2905), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2907), 1, + anon_sym_PIPE, + ACTIONS(2911), 1, + sym__code_span_start, + ACTIONS(2913), 1, + sym__highlight_span_start, + ACTIONS(2915), 1, + sym__insert_span_start, + ACTIONS(2917), 1, + sym__delete_span_start, + ACTIONS(2919), 1, + sym__edit_comment_span_start, + ACTIONS(2921), 1, + sym__single_quote_span_open, + ACTIONS(2923), 1, + sym__double_quote_span_open, + ACTIONS(2925), 1, + sym__shortcode_open_escaped, + ACTIONS(2927), 1, + sym__shortcode_open, + ACTIONS(2929), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2931), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2933), 1, + sym__cite_author_in_text, + ACTIONS(2935), 1, + sym__cite_suppress_author, + ACTIONS(2937), 1, + sym__strikeout_open, + ACTIONS(2939), 1, + sym__subscript_open, + ACTIONS(2941), 1, + sym__superscript_open, + ACTIONS(2943), 1, + sym__inline_note_start_token, + ACTIONS(2945), 1, + sym__strong_emphasis_open_star, + ACTIONS(2947), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(2949), 1, + sym__emphasis_open_star, + ACTIONS(2951), 1, + sym__emphasis_open_underscore, + ACTIONS(3371), 1, + sym__whitespace, + ACTIONS(3490), 2, + sym__line_ending, + sym__pipe_table_delimiter, + ACTIONS(4974), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(623), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [12541] = 32, + ACTIONS(4979), 1, + anon_sym_LBRACK, + ACTIONS(4982), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4985), 1, + anon_sym_DOLLAR, + ACTIONS(4988), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4991), 1, + anon_sym_LBRACE, + ACTIONS(4994), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4997), 1, + anon_sym_PIPE, + ACTIONS(5000), 1, + sym__whitespace, + ACTIONS(5003), 1, + sym__code_span_start, + ACTIONS(5006), 1, + sym__highlight_span_start, + ACTIONS(5009), 1, + sym__insert_span_start, + ACTIONS(5012), 1, + sym__delete_span_start, + ACTIONS(5015), 1, + sym__edit_comment_span_start, + ACTIONS(5018), 1, + sym__single_quote_span_open, + ACTIONS(5021), 1, + sym__double_quote_span_open, + ACTIONS(5024), 1, + sym__shortcode_open_escaped, + ACTIONS(5027), 1, + sym__shortcode_open, + ACTIONS(5030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(5033), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(5036), 1, + sym__cite_author_in_text, + ACTIONS(5039), 1, + sym__cite_suppress_author, + ACTIONS(5042), 1, + sym__strikeout_open, + ACTIONS(5045), 1, + sym__subscript_open, + ACTIONS(5048), 1, + sym__superscript_open, + ACTIONS(5051), 1, + sym__inline_note_start_token, + ACTIONS(5054), 1, + sym__strong_emphasis_open_star, + ACTIONS(5057), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(5060), 1, + sym__emphasis_open_star, + ACTIONS(5063), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 2, + sym__soft_line_ending, + sym__single_quote_span_close, + ACTIONS(4976), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(642), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [12668] = 32, + ACTIONS(5069), 1, + anon_sym_LBRACK, + ACTIONS(5072), 1, + anon_sym_BANG_LBRACK, + ACTIONS(5075), 1, + anon_sym_DOLLAR, + ACTIONS(5078), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(5081), 1, + anon_sym_LBRACE, + ACTIONS(5084), 1, + aux_sym_pandoc_str_token1, + ACTIONS(5087), 1, + anon_sym_PIPE, + ACTIONS(5090), 1, + sym__whitespace, + ACTIONS(5093), 1, + sym__code_span_start, + ACTIONS(5096), 1, + sym__highlight_span_start, + ACTIONS(5099), 1, + sym__insert_span_start, + ACTIONS(5102), 1, + sym__delete_span_start, + ACTIONS(5105), 1, + sym__edit_comment_span_start, + ACTIONS(5108), 1, + sym__single_quote_span_open, + ACTIONS(5111), 1, + sym__double_quote_span_open, + ACTIONS(5114), 1, + sym__shortcode_open_escaped, + ACTIONS(5117), 1, + sym__shortcode_open, + ACTIONS(5120), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(5123), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(5126), 1, + sym__cite_author_in_text, + ACTIONS(5129), 1, + sym__cite_suppress_author, + ACTIONS(5132), 1, + sym__strikeout_open, + ACTIONS(5135), 1, + sym__subscript_open, + ACTIONS(5138), 1, + sym__superscript_open, + ACTIONS(5141), 1, + sym__inline_note_start_token, + ACTIONS(5144), 1, + sym__strong_emphasis_open_star, + ACTIONS(5147), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(5150), 1, + sym__emphasis_open_star, + ACTIONS(5153), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 2, + sym__soft_line_ending, + aux_sym_insert_token1, + ACTIONS(5066), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(643), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [12795] = 32, + ACTIONS(5159), 1, + anon_sym_LBRACK, + ACTIONS(5162), 1, + anon_sym_BANG_LBRACK, + ACTIONS(5165), 1, + anon_sym_DOLLAR, + ACTIONS(5168), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(5171), 1, + anon_sym_LBRACE, + ACTIONS(5174), 1, + aux_sym_pandoc_str_token1, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5180), 1, + sym__whitespace, + ACTIONS(5183), 1, + sym__code_span_start, + ACTIONS(5186), 1, + sym__highlight_span_start, + ACTIONS(5189), 1, + sym__insert_span_start, + ACTIONS(5192), 1, + sym__delete_span_start, + ACTIONS(5195), 1, + sym__edit_comment_span_start, + ACTIONS(5198), 1, + sym__single_quote_span_open, + ACTIONS(5201), 1, + sym__double_quote_span_open, + ACTIONS(5204), 1, + sym__shortcode_open_escaped, + ACTIONS(5207), 1, + sym__shortcode_open, + ACTIONS(5210), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(5213), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(5216), 1, + sym__cite_author_in_text, + ACTIONS(5219), 1, + sym__cite_suppress_author, + ACTIONS(5222), 1, + sym__strikeout_open, + ACTIONS(5225), 1, + sym__subscript_open, + ACTIONS(5228), 1, + sym__superscript_open, + ACTIONS(5231), 1, + sym__inline_note_start_token, + ACTIONS(5234), 1, + sym__strong_emphasis_open_star, + ACTIONS(5237), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(5240), 1, + sym__emphasis_open_star, + ACTIONS(5243), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 2, + sym__soft_line_ending, + sym__emphasis_close_underscore, + ACTIONS(5156), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(644), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [12922] = 32, + ACTIONS(5249), 1, + anon_sym_LBRACK, + ACTIONS(5252), 1, + anon_sym_BANG_LBRACK, + ACTIONS(5255), 1, + anon_sym_DOLLAR, + ACTIONS(5258), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(5261), 1, + anon_sym_LBRACE, + ACTIONS(5264), 1, + aux_sym_pandoc_str_token1, + ACTIONS(5267), 1, + anon_sym_PIPE, + ACTIONS(5270), 1, + sym__whitespace, + ACTIONS(5273), 1, + sym__code_span_start, + ACTIONS(5276), 1, + sym__highlight_span_start, + ACTIONS(5279), 1, + sym__insert_span_start, + ACTIONS(5282), 1, + sym__delete_span_start, + ACTIONS(5285), 1, + sym__edit_comment_span_start, + ACTIONS(5288), 1, + sym__single_quote_span_open, + ACTIONS(5291), 1, + sym__double_quote_span_open, + ACTIONS(5294), 1, + sym__shortcode_open_escaped, + ACTIONS(5297), 1, + sym__shortcode_open, + ACTIONS(5300), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(5303), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(5306), 1, + sym__cite_author_in_text, + ACTIONS(5309), 1, + sym__cite_suppress_author, + ACTIONS(5312), 1, + sym__strikeout_open, + ACTIONS(5315), 1, + sym__subscript_open, + ACTIONS(5318), 1, + sym__superscript_open, + ACTIONS(5321), 1, + sym__inline_note_start_token, + ACTIONS(5324), 1, + sym__strong_emphasis_open_star, + ACTIONS(5327), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(5330), 1, + sym__emphasis_open_star, + ACTIONS(5333), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_star, + ACTIONS(5246), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(645), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [13049] = 32, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(4452), 1, + sym__whitespace, + ACTIONS(3520), 2, + sym__soft_line_ending, + aux_sym_insert_token1, + ACTIONS(5336), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(629), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [13176] = 32, + ACTIONS(5340), 1, + anon_sym_LBRACK, + ACTIONS(5342), 1, + anon_sym_BANG_LBRACK, + ACTIONS(5344), 1, + anon_sym_DOLLAR, + ACTIONS(5346), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(5348), 1, + anon_sym_LBRACE, + ACTIONS(5350), 1, + aux_sym_pandoc_str_token1, + ACTIONS(5352), 1, + anon_sym_PIPE, + ACTIONS(5354), 1, + sym__whitespace, + ACTIONS(5356), 1, + sym__code_span_start, + ACTIONS(5358), 1, + sym__highlight_span_start, + ACTIONS(5360), 1, + sym__insert_span_start, + ACTIONS(5362), 1, + sym__delete_span_start, + ACTIONS(5364), 1, + sym__edit_comment_span_start, + ACTIONS(5366), 1, + sym__single_quote_span_open, + ACTIONS(5368), 1, + sym__double_quote_span_open, + ACTIONS(5370), 1, + sym__shortcode_open_escaped, + ACTIONS(5372), 1, + sym__shortcode_open, + ACTIONS(5374), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(5376), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(5378), 1, + sym__cite_author_in_text, + ACTIONS(5380), 1, + sym__cite_suppress_author, + ACTIONS(5382), 1, + sym__strikeout_open, + ACTIONS(5384), 1, + sym__subscript_open, + ACTIONS(5386), 1, + sym__superscript_open, + ACTIONS(5388), 1, + sym__inline_note_start_token, + ACTIONS(5390), 1, + sym__strong_emphasis_open_star, + ACTIONS(5392), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(5394), 1, + sym__emphasis_open_star, + ACTIONS(5396), 1, + sym__emphasis_open_underscore, + ACTIONS(3520), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_underscore, + ACTIONS(5338), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(648), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [13303] = 32, + ACTIONS(5340), 1, + anon_sym_LBRACK, + ACTIONS(5342), 1, + anon_sym_BANG_LBRACK, + ACTIONS(5344), 1, + anon_sym_DOLLAR, + ACTIONS(5346), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(5348), 1, + anon_sym_LBRACE, + ACTIONS(5350), 1, + aux_sym_pandoc_str_token1, + ACTIONS(5352), 1, + anon_sym_PIPE, + ACTIONS(5354), 1, + sym__whitespace, + ACTIONS(5356), 1, + sym__code_span_start, + ACTIONS(5358), 1, + sym__highlight_span_start, + ACTIONS(5360), 1, + sym__insert_span_start, + ACTIONS(5362), 1, + sym__delete_span_start, + ACTIONS(5364), 1, + sym__edit_comment_span_start, + ACTIONS(5366), 1, + sym__single_quote_span_open, + ACTIONS(5368), 1, + sym__double_quote_span_open, + ACTIONS(5370), 1, + sym__shortcode_open_escaped, + ACTIONS(5372), 1, + sym__shortcode_open, + ACTIONS(5374), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(5376), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(5378), 1, + sym__cite_author_in_text, + ACTIONS(5380), 1, + sym__cite_suppress_author, + ACTIONS(5382), 1, + sym__strikeout_open, + ACTIONS(5384), 1, + sym__subscript_open, + ACTIONS(5386), 1, + sym__superscript_open, + ACTIONS(5388), 1, + sym__inline_note_start_token, + ACTIONS(5390), 1, + sym__strong_emphasis_open_star, + ACTIONS(5392), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(5394), 1, + sym__emphasis_open_star, + ACTIONS(5396), 1, + sym__emphasis_open_underscore, + ACTIONS(3532), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_underscore, + ACTIONS(5398), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(649), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [13430] = 32, + ACTIONS(5403), 1, + anon_sym_LBRACK, + ACTIONS(5406), 1, + anon_sym_BANG_LBRACK, + ACTIONS(5409), 1, + anon_sym_DOLLAR, + ACTIONS(5412), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(5415), 1, + anon_sym_LBRACE, + ACTIONS(5418), 1, + aux_sym_pandoc_str_token1, + ACTIONS(5421), 1, + anon_sym_PIPE, + ACTIONS(5424), 1, + sym__whitespace, + ACTIONS(5427), 1, + sym__code_span_start, + ACTIONS(5430), 1, + sym__highlight_span_start, + ACTIONS(5433), 1, + sym__insert_span_start, + ACTIONS(5436), 1, + sym__delete_span_start, + ACTIONS(5439), 1, + sym__edit_comment_span_start, + ACTIONS(5442), 1, + sym__single_quote_span_open, + ACTIONS(5445), 1, + sym__double_quote_span_open, + ACTIONS(5448), 1, + sym__shortcode_open_escaped, + ACTIONS(5451), 1, + sym__shortcode_open, + ACTIONS(5454), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(5457), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(5460), 1, + sym__cite_author_in_text, + ACTIONS(5463), 1, + sym__cite_suppress_author, + ACTIONS(5466), 1, + sym__strikeout_open, + ACTIONS(5469), 1, + sym__subscript_open, + ACTIONS(5472), 1, + sym__superscript_open, + ACTIONS(5475), 1, + sym__inline_note_start_token, + ACTIONS(5478), 1, + sym__strong_emphasis_open_star, + ACTIONS(5481), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(5484), 1, + sym__emphasis_open_star, + ACTIONS(5487), 1, + sym__emphasis_open_underscore, + ACTIONS(3637), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_underscore, + ACTIONS(5400), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(649), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [13557] = 32, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(4700), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4702), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4706), 1, + anon_sym_LBRACE, + ACTIONS(4708), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4710), 1, + anon_sym_PIPE, + ACTIONS(4712), 1, + sym__whitespace, + ACTIONS(4714), 1, + sym__code_span_start, + ACTIONS(4716), 1, + sym__highlight_span_start, + ACTIONS(4718), 1, + sym__insert_span_start, + ACTIONS(4720), 1, + sym__delete_span_start, + ACTIONS(4722), 1, + sym__edit_comment_span_start, + ACTIONS(4724), 1, + sym__single_quote_span_open, + ACTIONS(4726), 1, + sym__double_quote_span_open, + ACTIONS(4728), 1, + sym__shortcode_open_escaped, + ACTIONS(4730), 1, + sym__shortcode_open, + ACTIONS(4732), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4734), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4736), 1, + sym__cite_author_in_text, + ACTIONS(4738), 1, + sym__cite_suppress_author, + ACTIONS(4740), 1, + sym__strikeout_open, + ACTIONS(4742), 1, + sym__subscript_open, + ACTIONS(4744), 1, + sym__superscript_open, + ACTIONS(4746), 1, + sym__inline_note_start_token, + ACTIONS(4748), 1, + sym__strong_emphasis_open_star, + ACTIONS(4750), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4752), 1, + sym__emphasis_open_star, + ACTIONS(4754), 1, + sym__emphasis_open_underscore, + ACTIONS(3520), 2, + sym__soft_line_ending, + sym__emphasis_close_star, + ACTIONS(5490), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(634), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [13684] = 32, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3950), 1, + sym__whitespace, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(3520), 2, + sym__soft_line_ending, + sym__single_quote_span_close, + ACTIONS(5492), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(619), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [13811] = 32, + ACTIONS(4758), 1, + anon_sym_LBRACK, + ACTIONS(4760), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4762), 1, + anon_sym_DOLLAR, + ACTIONS(4764), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4766), 1, + anon_sym_LBRACE, + ACTIONS(4768), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4770), 1, + anon_sym_PIPE, + ACTIONS(4772), 1, + sym__whitespace, + ACTIONS(4774), 1, + sym__code_span_start, + ACTIONS(4776), 1, + sym__highlight_span_start, + ACTIONS(4778), 1, + sym__insert_span_start, + ACTIONS(4780), 1, + sym__delete_span_start, + ACTIONS(4782), 1, + sym__edit_comment_span_start, + ACTIONS(4784), 1, + sym__single_quote_span_open, + ACTIONS(4786), 1, + sym__double_quote_span_open, + ACTIONS(4788), 1, + sym__shortcode_open_escaped, + ACTIONS(4790), 1, + sym__shortcode_open, + ACTIONS(4792), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4794), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4796), 1, + sym__cite_author_in_text, + ACTIONS(4798), 1, + sym__cite_suppress_author, + ACTIONS(4800), 1, + sym__strikeout_open, + ACTIONS(4802), 1, + sym__subscript_open, + ACTIONS(4804), 1, + sym__superscript_open, + ACTIONS(4806), 1, + sym__inline_note_start_token, + ACTIONS(4808), 1, + sym__strong_emphasis_open_star, + ACTIONS(4810), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4812), 1, + sym__emphasis_open_star, + ACTIONS(4814), 1, + sym__emphasis_open_underscore, + ACTIONS(3520), 2, + sym__soft_line_ending, + sym__emphasis_close_underscore, + ACTIONS(5494), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(635), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_repeat1, + [13938] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5496), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3656), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [14066] = 33, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4000), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(4012), 1, + sym__code_span_start, + ACTIONS(4014), 1, + sym__highlight_span_start, + ACTIONS(4016), 1, + sym__insert_span_start, + ACTIONS(4018), 1, + sym__delete_span_start, + ACTIONS(4020), 1, + sym__edit_comment_span_start, + ACTIONS(4022), 1, + sym__single_quote_span_open, + ACTIONS(4024), 1, + sym__double_quote_span_open, + ACTIONS(4026), 1, + sym__shortcode_open_escaped, + ACTIONS(4028), 1, + sym__shortcode_open, + ACTIONS(4030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4032), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4034), 1, + sym__cite_author_in_text, + ACTIONS(4036), 1, + sym__cite_suppress_author, + ACTIONS(4038), 1, + sym__strikeout_open, + ACTIONS(4040), 1, + sym__subscript_open, + ACTIONS(4042), 1, + sym__superscript_open, + ACTIONS(4044), 1, + sym__inline_note_start_token, + ACTIONS(4046), 1, + sym__strong_emphasis_open_star, + ACTIONS(4048), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4050), 1, + sym__emphasis_open_star, + ACTIONS(4052), 1, + sym__emphasis_open_underscore, + ACTIONS(5500), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3750), 1, + sym__inlines, + ACTIONS(5498), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(620), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [14194] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5502), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3902), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [14322] = 33, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(5506), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(3771), 1, + sym__inlines, + ACTIONS(5504), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(651), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [14450] = 33, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4000), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(4012), 1, + sym__code_span_start, + ACTIONS(4014), 1, + sym__highlight_span_start, + ACTIONS(4016), 1, + sym__insert_span_start, + ACTIONS(4018), 1, + sym__delete_span_start, + ACTIONS(4020), 1, + sym__edit_comment_span_start, + ACTIONS(4022), 1, + sym__single_quote_span_open, + ACTIONS(4024), 1, + sym__double_quote_span_open, + ACTIONS(4026), 1, + sym__shortcode_open_escaped, + ACTIONS(4028), 1, + sym__shortcode_open, + ACTIONS(4030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4032), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4034), 1, + sym__cite_author_in_text, + ACTIONS(4036), 1, + sym__cite_suppress_author, + ACTIONS(4038), 1, + sym__strikeout_open, + ACTIONS(4040), 1, + sym__subscript_open, + ACTIONS(4042), 1, + sym__superscript_open, + ACTIONS(4044), 1, + sym__inline_note_start_token, + ACTIONS(4046), 1, + sym__strong_emphasis_open_star, + ACTIONS(4048), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4050), 1, + sym__emphasis_open_star, + ACTIONS(4052), 1, + sym__emphasis_open_underscore, + ACTIONS(5508), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3772), 1, + sym__inlines, + ACTIONS(5498), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(620), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [14578] = 33, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(5510), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(4012), 1, + sym__inlines, + ACTIONS(5504), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(651), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [14706] = 33, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4000), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(4012), 1, + sym__code_span_start, + ACTIONS(4014), 1, + sym__highlight_span_start, + ACTIONS(4016), 1, + sym__insert_span_start, + ACTIONS(4018), 1, + sym__delete_span_start, + ACTIONS(4020), 1, + sym__edit_comment_span_start, + ACTIONS(4022), 1, + sym__single_quote_span_open, + ACTIONS(4024), 1, + sym__double_quote_span_open, + ACTIONS(4026), 1, + sym__shortcode_open_escaped, + ACTIONS(4028), 1, + sym__shortcode_open, + ACTIONS(4030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4032), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4034), 1, + sym__cite_author_in_text, + ACTIONS(4036), 1, + sym__cite_suppress_author, + ACTIONS(4038), 1, + sym__strikeout_open, + ACTIONS(4040), 1, + sym__subscript_open, + ACTIONS(4042), 1, + sym__superscript_open, + ACTIONS(4044), 1, + sym__inline_note_start_token, + ACTIONS(4046), 1, + sym__strong_emphasis_open_star, + ACTIONS(4048), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4050), 1, + sym__emphasis_open_star, + ACTIONS(4052), 1, + sym__emphasis_open_underscore, + ACTIONS(5512), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(4018), 1, + sym__inlines, + ACTIONS(5498), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(620), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [14834] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5514), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3876), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [14962] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5516), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3897), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [15090] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5518), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3898), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [15218] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5520), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3901), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [15346] = 33, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(5522), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(3477), 1, + sym__inlines, + ACTIONS(5504), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(651), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [15474] = 33, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4000), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(4012), 1, + sym__code_span_start, + ACTIONS(4014), 1, + sym__highlight_span_start, + ACTIONS(4016), 1, + sym__insert_span_start, + ACTIONS(4018), 1, + sym__delete_span_start, + ACTIONS(4020), 1, + sym__edit_comment_span_start, + ACTIONS(4022), 1, + sym__single_quote_span_open, + ACTIONS(4024), 1, + sym__double_quote_span_open, + ACTIONS(4026), 1, + sym__shortcode_open_escaped, + ACTIONS(4028), 1, + sym__shortcode_open, + ACTIONS(4030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4032), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4034), 1, + sym__cite_author_in_text, + ACTIONS(4036), 1, + sym__cite_suppress_author, + ACTIONS(4038), 1, + sym__strikeout_open, + ACTIONS(4040), 1, + sym__subscript_open, + ACTIONS(4042), 1, + sym__superscript_open, + ACTIONS(4044), 1, + sym__inline_note_start_token, + ACTIONS(4046), 1, + sym__strong_emphasis_open_star, + ACTIONS(4048), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4050), 1, + sym__emphasis_open_star, + ACTIONS(4052), 1, + sym__emphasis_open_underscore, + ACTIONS(5524), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3483), 1, + sym__inlines, + ACTIONS(5498), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(620), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [15602] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5526), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3867), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [15730] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5528), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3868), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [15858] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5530), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3870), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [15986] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5532), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3880), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [16114] = 33, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(5534), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(3402), 1, + sym__inlines, + ACTIONS(5504), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(651), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [16242] = 33, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4000), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(4012), 1, + sym__code_span_start, + ACTIONS(4014), 1, + sym__highlight_span_start, + ACTIONS(4016), 1, + sym__insert_span_start, + ACTIONS(4018), 1, + sym__delete_span_start, + ACTIONS(4020), 1, + sym__edit_comment_span_start, + ACTIONS(4022), 1, + sym__single_quote_span_open, + ACTIONS(4024), 1, + sym__double_quote_span_open, + ACTIONS(4026), 1, + sym__shortcode_open_escaped, + ACTIONS(4028), 1, + sym__shortcode_open, + ACTIONS(4030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4032), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4034), 1, + sym__cite_author_in_text, + ACTIONS(4036), 1, + sym__cite_suppress_author, + ACTIONS(4038), 1, + sym__strikeout_open, + ACTIONS(4040), 1, + sym__subscript_open, + ACTIONS(4042), 1, + sym__superscript_open, + ACTIONS(4044), 1, + sym__inline_note_start_token, + ACTIONS(4046), 1, + sym__strong_emphasis_open_star, + ACTIONS(4048), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4050), 1, + sym__emphasis_open_star, + ACTIONS(4052), 1, + sym__emphasis_open_underscore, + ACTIONS(5536), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3403), 1, + sym__inlines, + ACTIONS(5498), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(620), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [16370] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5538), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3849), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [16498] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5540), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3714), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [16626] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5542), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3425), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [16754] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5544), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3426), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [16882] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5546), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3427), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [17010] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5548), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3428), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [17138] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5550), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3567), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [17266] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5552), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3568), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [17394] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5554), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3906), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [17522] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5556), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3569), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [17650] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5558), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(4064), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [17778] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5560), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3570), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [17906] = 33, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(5562), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(3470), 1, + sym__inlines, + ACTIONS(5504), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(651), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [18034] = 33, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4000), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(4012), 1, + sym__code_span_start, + ACTIONS(4014), 1, + sym__highlight_span_start, + ACTIONS(4016), 1, + sym__insert_span_start, + ACTIONS(4018), 1, + sym__delete_span_start, + ACTIONS(4020), 1, + sym__edit_comment_span_start, + ACTIONS(4022), 1, + sym__single_quote_span_open, + ACTIONS(4024), 1, + sym__double_quote_span_open, + ACTIONS(4026), 1, + sym__shortcode_open_escaped, + ACTIONS(4028), 1, + sym__shortcode_open, + ACTIONS(4030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4032), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4034), 1, + sym__cite_author_in_text, + ACTIONS(4036), 1, + sym__cite_suppress_author, + ACTIONS(4038), 1, + sym__strikeout_open, + ACTIONS(4040), 1, + sym__subscript_open, + ACTIONS(4042), 1, + sym__superscript_open, + ACTIONS(4044), 1, + sym__inline_note_start_token, + ACTIONS(4046), 1, + sym__strong_emphasis_open_star, + ACTIONS(4048), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4050), 1, + sym__emphasis_open_star, + ACTIONS(4052), 1, + sym__emphasis_open_underscore, + ACTIONS(5564), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3471), 1, + sym__inlines, + ACTIONS(5498), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(620), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [18162] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5566), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(4066), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [18290] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5568), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(4067), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [18418] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5570), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3493), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [18546] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5572), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3494), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [18674] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5574), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3495), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [18802] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5576), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3496), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [18930] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5578), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(4069), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [19058] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5580), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3797), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [19186] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5582), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3802), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [19314] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5584), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3818), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [19442] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5586), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3703), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [19570] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5588), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3704), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [19698] = 33, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(5590), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(3538), 1, + sym__inlines, + ACTIONS(5504), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(651), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [19826] = 33, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4000), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(4012), 1, + sym__code_span_start, + ACTIONS(4014), 1, + sym__highlight_span_start, + ACTIONS(4016), 1, + sym__insert_span_start, + ACTIONS(4018), 1, + sym__delete_span_start, + ACTIONS(4020), 1, + sym__edit_comment_span_start, + ACTIONS(4022), 1, + sym__single_quote_span_open, + ACTIONS(4024), 1, + sym__double_quote_span_open, + ACTIONS(4026), 1, + sym__shortcode_open_escaped, + ACTIONS(4028), 1, + sym__shortcode_open, + ACTIONS(4030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4032), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4034), 1, + sym__cite_author_in_text, + ACTIONS(4036), 1, + sym__cite_suppress_author, + ACTIONS(4038), 1, + sym__strikeout_open, + ACTIONS(4040), 1, + sym__subscript_open, + ACTIONS(4042), 1, + sym__superscript_open, + ACTIONS(4044), 1, + sym__inline_note_start_token, + ACTIONS(4046), 1, + sym__strong_emphasis_open_star, + ACTIONS(4048), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4050), 1, + sym__emphasis_open_star, + ACTIONS(4052), 1, + sym__emphasis_open_underscore, + ACTIONS(5592), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3539), 1, + sym__inlines, + ACTIONS(5498), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(620), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [19954] = 33, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(5594), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(4048), 1, + sym__inlines, + ACTIONS(5504), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(651), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [20082] = 33, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(5596), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(3631), 1, + sym__inlines, + ACTIONS(5504), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(651), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [20210] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5598), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3561), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [20338] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5600), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3562), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [20466] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5602), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3563), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [20594] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5604), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3900), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [20722] = 33, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4000), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(4012), 1, + sym__code_span_start, + ACTIONS(4014), 1, + sym__highlight_span_start, + ACTIONS(4016), 1, + sym__insert_span_start, + ACTIONS(4018), 1, + sym__delete_span_start, + ACTIONS(4020), 1, + sym__edit_comment_span_start, + ACTIONS(4022), 1, + sym__single_quote_span_open, + ACTIONS(4024), 1, + sym__double_quote_span_open, + ACTIONS(4026), 1, + sym__shortcode_open_escaped, + ACTIONS(4028), 1, + sym__shortcode_open, + ACTIONS(4030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4032), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4034), 1, + sym__cite_author_in_text, + ACTIONS(4036), 1, + sym__cite_suppress_author, + ACTIONS(4038), 1, + sym__strikeout_open, + ACTIONS(4040), 1, + sym__subscript_open, + ACTIONS(4042), 1, + sym__superscript_open, + ACTIONS(4044), 1, + sym__inline_note_start_token, + ACTIONS(4046), 1, + sym__strong_emphasis_open_star, + ACTIONS(4048), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4050), 1, + sym__emphasis_open_star, + ACTIONS(4052), 1, + sym__emphasis_open_underscore, + ACTIONS(5606), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3632), 1, + sym__inlines, + ACTIONS(5498), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(620), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [20850] = 32, + ACTIONS(3419), 1, + sym__pipe_table_delimiter, + ACTIONS(5611), 1, + anon_sym_LBRACK, + ACTIONS(5614), 1, + anon_sym_BANG_LBRACK, + ACTIONS(5617), 1, + anon_sym_DOLLAR, + ACTIONS(5620), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(5623), 1, + anon_sym_LBRACE, + ACTIONS(5626), 1, + aux_sym_pandoc_str_token1, + ACTIONS(5629), 1, + anon_sym_PIPE, + ACTIONS(5632), 1, + sym__whitespace, + ACTIONS(5635), 1, + sym__code_span_start, + ACTIONS(5638), 1, + sym__highlight_span_start, + ACTIONS(5641), 1, + sym__insert_span_start, + ACTIONS(5644), 1, + sym__delete_span_start, + ACTIONS(5647), 1, + sym__edit_comment_span_start, + ACTIONS(5650), 1, + sym__single_quote_span_open, + ACTIONS(5653), 1, + sym__double_quote_span_open, + ACTIONS(5656), 1, + sym__shortcode_open_escaped, + ACTIONS(5659), 1, + sym__shortcode_open, + ACTIONS(5662), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(5665), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(5668), 1, + sym__cite_author_in_text, + ACTIONS(5671), 1, + sym__cite_suppress_author, + ACTIONS(5674), 1, + sym__strikeout_open, + ACTIONS(5677), 1, + sym__subscript_open, + ACTIONS(5680), 1, + sym__superscript_open, + ACTIONS(5683), 1, + sym__inline_note_start_token, + ACTIONS(5686), 1, + sym__strong_emphasis_open_star, + ACTIONS(5689), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(5692), 1, + sym__emphasis_open_star, + ACTIONS(5695), 1, + sym__emphasis_open_underscore, + ACTIONS(5608), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(707), 24, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + aux_sym__line_with_maybe_spaces_repeat1, + [20976] = 33, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(5698), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(3792), 1, + sym__inlines, + ACTIONS(5504), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(651), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [21104] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5700), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3571), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [21232] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5702), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3432), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [21360] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5704), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3617), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [21488] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5706), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3766), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [21616] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5708), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3860), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [21744] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5710), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3582), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [21872] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5712), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3528), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, sym_pandoc_code_span, sym_pandoc_single_quote, sym_pandoc_double_quote, @@ -71032,73 +84114,735 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_with_maybe_spaces_repeat1, - [131] = 33, - ACTIONS(3927), 1, + [22000] = 33, + ACTIONS(3936), 1, anon_sym_LBRACK, - ACTIONS(3930), 1, + ACTIONS(3938), 1, anon_sym_BANG_LBRACK, - ACTIONS(3933), 1, + ACTIONS(3940), 1, anon_sym_DOLLAR, - ACTIONS(3936), 1, + ACTIONS(3942), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3939), 1, + ACTIONS(3944), 1, anon_sym_LBRACE, - ACTIONS(3942), 1, + ACTIONS(3946), 1, aux_sym_pandoc_str_token1, - ACTIONS(3945), 1, - anon_sym_PIPE, ACTIONS(3948), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3951), 1, - sym__whitespace, - ACTIONS(3954), 1, + anon_sym_PIPE, + ACTIONS(3952), 1, sym__code_span_start, - ACTIONS(3957), 1, + ACTIONS(3954), 1, sym__highlight_span_start, - ACTIONS(3960), 1, + ACTIONS(3956), 1, sym__insert_span_start, - ACTIONS(3963), 1, + ACTIONS(3958), 1, sym__delete_span_start, - ACTIONS(3966), 1, + ACTIONS(3960), 1, sym__edit_comment_span_start, - ACTIONS(3969), 1, + ACTIONS(3962), 1, sym__single_quote_span_open, - ACTIONS(3972), 1, + ACTIONS(3964), 1, sym__double_quote_span_open, - ACTIONS(3975), 1, + ACTIONS(3966), 1, sym__shortcode_open_escaped, - ACTIONS(3978), 1, + ACTIONS(3968), 1, sym__shortcode_open, - ACTIONS(3981), 1, + ACTIONS(3970), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3984), 1, + ACTIONS(3972), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3987), 1, + ACTIONS(3974), 1, sym__cite_author_in_text, - ACTIONS(3990), 1, + ACTIONS(3976), 1, sym__cite_suppress_author, - ACTIONS(3993), 1, + ACTIONS(3978), 1, sym__strikeout_open, - ACTIONS(3996), 1, + ACTIONS(3980), 1, sym__subscript_open, - ACTIONS(3999), 1, + ACTIONS(3982), 1, sym__superscript_open, - ACTIONS(4002), 1, + ACTIONS(3984), 1, sym__inline_note_start_token, - ACTIONS(4005), 1, + ACTIONS(3986), 1, sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(5714), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(3666), 1, + sym__inlines, + ACTIONS(5504), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(651), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [22128] = 33, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4000), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + aux_sym_pandoc_str_token1, ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(4012), 1, + sym__code_span_start, + ACTIONS(4014), 1, + sym__highlight_span_start, + ACTIONS(4016), 1, + sym__insert_span_start, + ACTIONS(4018), 1, + sym__delete_span_start, + ACTIONS(4020), 1, + sym__edit_comment_span_start, + ACTIONS(4022), 1, + sym__single_quote_span_open, + ACTIONS(4024), 1, + sym__double_quote_span_open, + ACTIONS(4026), 1, + sym__shortcode_open_escaped, + ACTIONS(4028), 1, + sym__shortcode_open, + ACTIONS(4030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4032), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4034), 1, + sym__cite_author_in_text, + ACTIONS(4036), 1, + sym__cite_suppress_author, + ACTIONS(4038), 1, + sym__strikeout_open, + ACTIONS(4040), 1, + sym__subscript_open, + ACTIONS(4042), 1, + sym__superscript_open, + ACTIONS(4044), 1, + sym__inline_note_start_token, + ACTIONS(4046), 1, + sym__strong_emphasis_open_star, + ACTIONS(4048), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4050), 1, + sym__emphasis_open_star, + ACTIONS(4052), 1, + sym__emphasis_open_underscore, + ACTIONS(5716), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3667), 1, + sym__inlines, + ACTIONS(5498), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(620), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [22256] = 33, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4011), 1, + ACTIONS(3990), 1, sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(5718), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(4045), 1, + sym__inlines, + ACTIONS(5504), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(651), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [22384] = 33, + ACTIONS(3996), 1, + anon_sym_LBRACK, + ACTIONS(3998), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4000), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4004), 1, + anon_sym_LBRACE, + ACTIONS(4006), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(4012), 1, + sym__code_span_start, ACTIONS(4014), 1, + sym__highlight_span_start, + ACTIONS(4016), 1, + sym__insert_span_start, + ACTIONS(4018), 1, + sym__delete_span_start, + ACTIONS(4020), 1, + sym__edit_comment_span_start, + ACTIONS(4022), 1, + sym__single_quote_span_open, + ACTIONS(4024), 1, + sym__double_quote_span_open, + ACTIONS(4026), 1, + sym__shortcode_open_escaped, + ACTIONS(4028), 1, + sym__shortcode_open, + ACTIONS(4030), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4032), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4034), 1, + sym__cite_author_in_text, + ACTIONS(4036), 1, + sym__cite_suppress_author, + ACTIONS(4038), 1, + sym__strikeout_open, + ACTIONS(4040), 1, + sym__subscript_open, + ACTIONS(4042), 1, + sym__superscript_open, + ACTIONS(4044), 1, + sym__inline_note_start_token, + ACTIONS(4046), 1, + sym__strong_emphasis_open_star, + ACTIONS(4048), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4050), 1, + sym__emphasis_open_star, + ACTIONS(4052), 1, sym__emphasis_open_underscore, - ACTIONS(3512), 2, - sym__soft_line_ending, - aux_sym_inline_note_token1, - ACTIONS(3924), 7, + ACTIONS(5720), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(4052), 1, + sym__inlines, + ACTIONS(5498), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(620), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [22512] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5722), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3599), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [22640] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5724), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3531), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [22768] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5726), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3533), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [22896] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5728), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(4083), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71106,7 +84850,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(613), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71130,73 +84874,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [262] = 33, - ACTIONS(4019), 1, + [23024] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(4025), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(4033), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4035), 1, - sym__whitespace, - ACTIONS(4037), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(4039), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(4041), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(4043), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(4045), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(4055), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(4065), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(4067), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(4069), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(3487), 2, - sym__soft_line_ending, - sym__strong_emphasis_close_star, - ACTIONS(4017), 7, + ACTIONS(5730), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(4084), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71204,7 +84945,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(615), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71228,73 +84969,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [393] = 33, - ACTIONS(4019), 1, + [23152] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(4025), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(4035), 1, - sym__whitespace, - ACTIONS(4037), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(4039), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(4041), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(4043), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(4045), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(4055), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(4065), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(4067), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(4069), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(4081), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3497), 2, - sym__soft_line_ending, - sym__strong_emphasis_close_star, - ACTIONS(4079), 7, + ACTIONS(5732), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(4128), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71302,7 +85040,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71326,73 +85064,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [524] = 33, - ACTIONS(4086), 1, + [23280] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(4089), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(4092), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(4095), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4098), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(4104), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(4107), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4110), 1, - sym__whitespace, - ACTIONS(4113), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(4116), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(4119), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(4122), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(4125), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(4128), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(4131), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(4134), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(4137), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(4140), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4143), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4146), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(4149), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(4152), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(4155), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(4158), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(4161), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(4164), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(4167), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4170), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(4173), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(3512), 2, - sym__soft_line_ending, - sym__strong_emphasis_close_star, - ACTIONS(4083), 7, + ACTIONS(5734), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3931), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71400,7 +85135,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(616), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71424,73 +85159,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [655] = 33, - ACTIONS(4178), 1, + [23408] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(4184), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(4192), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4194), 1, - sym__whitespace, - ACTIONS(4196), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(4198), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(4200), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(4202), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(4204), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(4214), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(4224), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(4226), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(4228), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(3487), 2, - sym__soft_line_ending, - sym__strong_emphasis_close_underscore, - ACTIONS(4176), 7, + ACTIONS(5736), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3720), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71498,7 +85230,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(618), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71522,73 +85254,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [786] = 33, - ACTIONS(4178), 1, + [23536] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(4184), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(4194), 1, - sym__whitespace, - ACTIONS(4196), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(4198), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(4200), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(4202), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(4204), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(4214), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(4224), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(4226), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(4228), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(4240), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3497), 2, - sym__soft_line_ending, - sym__strong_emphasis_close_underscore, - ACTIONS(4238), 7, + ACTIONS(5738), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3721), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71596,7 +85325,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(619), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71620,73 +85349,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [917] = 33, - ACTIONS(4245), 1, + [23664] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(4248), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(4251), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(4254), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4257), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(4260), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(4263), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(4266), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4269), 1, - sym__whitespace, - ACTIONS(4272), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(4275), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(4278), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(4281), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(4284), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(4287), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(4290), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(4293), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(4296), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(4299), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4302), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4305), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(4308), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(4311), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(4314), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(4317), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(4320), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(4323), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(4326), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4329), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(4332), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(3512), 2, - sym__soft_line_ending, - sym__strong_emphasis_close_underscore, - ACTIONS(4242), 7, + ACTIONS(5740), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3722), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71694,7 +85420,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(619), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71718,73 +85444,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [1048] = 33, - ACTIONS(4337), 1, + [23792] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(4343), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(4351), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4353), 1, - sym__whitespace, - ACTIONS(4355), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(4357), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(4359), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(4361), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(4363), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(4373), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(4383), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(4385), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(4387), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(3487), 2, - sym__soft_line_ending, - sym__emphasis_close_star, - ACTIONS(4335), 7, + ACTIONS(5742), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3603), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71792,7 +85515,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(621), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71816,73 +85539,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [1179] = 33, - ACTIONS(4337), 1, + [23920] = 33, + ACTIONS(3936), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, + ACTIONS(3938), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, + ACTIONS(3940), 1, anon_sym_DOLLAR, - ACTIONS(4343), 1, + ACTIONS(3942), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, + ACTIONS(3944), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, + ACTIONS(3946), 1, aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, + ACTIONS(3948), 1, anon_sym_PIPE, - ACTIONS(4353), 1, - sym__whitespace, - ACTIONS(4355), 1, + ACTIONS(3952), 1, sym__code_span_start, - ACTIONS(4357), 1, + ACTIONS(3954), 1, sym__highlight_span_start, - ACTIONS(4359), 1, + ACTIONS(3956), 1, sym__insert_span_start, - ACTIONS(4361), 1, + ACTIONS(3958), 1, sym__delete_span_start, - ACTIONS(4363), 1, + ACTIONS(3960), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, + ACTIONS(3962), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, + ACTIONS(3964), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, + ACTIONS(3966), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, + ACTIONS(3968), 1, sym__shortcode_open, - ACTIONS(4373), 1, + ACTIONS(3970), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, + ACTIONS(3972), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, + ACTIONS(3974), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, + ACTIONS(3976), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, + ACTIONS(3978), 1, sym__strikeout_open, - ACTIONS(4383), 1, + ACTIONS(3980), 1, sym__subscript_open, - ACTIONS(4385), 1, + ACTIONS(3982), 1, sym__superscript_open, - ACTIONS(4387), 1, + ACTIONS(3984), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, + ACTIONS(3986), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, + ACTIONS(3988), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, + ACTIONS(3990), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, + ACTIONS(3992), 1, sym__emphasis_open_underscore, - ACTIONS(4399), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3497), 2, - sym__soft_line_ending, - sym__emphasis_close_star, - ACTIONS(4397), 7, + ACTIONS(5744), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(3435), 1, + sym__inlines, + ACTIONS(5504), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71890,7 +85610,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(623), 25, + STATE(651), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -71914,73 +85634,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [1310] = 33, - ACTIONS(4404), 1, + [24048] = 33, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4407), 1, + ACTIONS(3998), 1, anon_sym_BANG_LBRACK, - ACTIONS(4410), 1, + ACTIONS(4000), 1, anon_sym_DOLLAR, - ACTIONS(4413), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4416), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4419), 1, + ACTIONS(4006), 1, aux_sym_pandoc_str_token1, - ACTIONS(4422), 1, + ACTIONS(4008), 1, anon_sym_PIPE, - ACTIONS(4425), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4428), 1, - sym__whitespace, - ACTIONS(4431), 1, + ACTIONS(4012), 1, sym__code_span_start, - ACTIONS(4434), 1, + ACTIONS(4014), 1, sym__highlight_span_start, - ACTIONS(4437), 1, + ACTIONS(4016), 1, sym__insert_span_start, - ACTIONS(4440), 1, + ACTIONS(4018), 1, sym__delete_span_start, - ACTIONS(4443), 1, + ACTIONS(4020), 1, sym__edit_comment_span_start, - ACTIONS(4446), 1, + ACTIONS(4022), 1, sym__single_quote_span_open, - ACTIONS(4449), 1, + ACTIONS(4024), 1, sym__double_quote_span_open, - ACTIONS(4452), 1, + ACTIONS(4026), 1, sym__shortcode_open_escaped, - ACTIONS(4455), 1, + ACTIONS(4028), 1, sym__shortcode_open, - ACTIONS(4458), 1, + ACTIONS(4030), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4461), 1, + ACTIONS(4032), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4464), 1, + ACTIONS(4034), 1, sym__cite_author_in_text, - ACTIONS(4467), 1, + ACTIONS(4036), 1, sym__cite_suppress_author, - ACTIONS(4470), 1, + ACTIONS(4038), 1, sym__strikeout_open, - ACTIONS(4473), 1, + ACTIONS(4040), 1, sym__subscript_open, - ACTIONS(4476), 1, + ACTIONS(4042), 1, sym__superscript_open, - ACTIONS(4479), 1, + ACTIONS(4044), 1, sym__inline_note_start_token, - ACTIONS(4482), 1, + ACTIONS(4046), 1, sym__strong_emphasis_open_star, - ACTIONS(4485), 1, + ACTIONS(4048), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4488), 1, + ACTIONS(4050), 1, sym__emphasis_open_star, - ACTIONS(4491), 1, + ACTIONS(4052), 1, sym__emphasis_open_underscore, - ACTIONS(3512), 2, - sym__soft_line_ending, - sym__single_quote_span_close, - ACTIONS(4401), 7, + ACTIONS(5746), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3436), 1, + sym__inlines, + ACTIONS(5498), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -71988,7 +85705,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(622), 25, + STATE(620), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72012,73 +85729,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [1441] = 33, - ACTIONS(4497), 1, + [24176] = 33, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4500), 1, + ACTIONS(3998), 1, anon_sym_BANG_LBRACK, - ACTIONS(4503), 1, + ACTIONS(4000), 1, anon_sym_DOLLAR, - ACTIONS(4506), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4509), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4512), 1, + ACTIONS(4006), 1, aux_sym_pandoc_str_token1, - ACTIONS(4515), 1, + ACTIONS(4008), 1, anon_sym_PIPE, - ACTIONS(4518), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4521), 1, - sym__whitespace, - ACTIONS(4524), 1, + ACTIONS(4012), 1, sym__code_span_start, - ACTIONS(4527), 1, + ACTIONS(4014), 1, sym__highlight_span_start, - ACTIONS(4530), 1, + ACTIONS(4016), 1, sym__insert_span_start, - ACTIONS(4533), 1, + ACTIONS(4018), 1, sym__delete_span_start, - ACTIONS(4536), 1, + ACTIONS(4020), 1, sym__edit_comment_span_start, - ACTIONS(4539), 1, + ACTIONS(4022), 1, sym__single_quote_span_open, - ACTIONS(4542), 1, + ACTIONS(4024), 1, sym__double_quote_span_open, - ACTIONS(4545), 1, + ACTIONS(4026), 1, sym__shortcode_open_escaped, - ACTIONS(4548), 1, + ACTIONS(4028), 1, sym__shortcode_open, - ACTIONS(4551), 1, + ACTIONS(4030), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4554), 1, + ACTIONS(4032), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4557), 1, + ACTIONS(4034), 1, sym__cite_author_in_text, - ACTIONS(4560), 1, + ACTIONS(4036), 1, sym__cite_suppress_author, - ACTIONS(4563), 1, + ACTIONS(4038), 1, sym__strikeout_open, - ACTIONS(4566), 1, + ACTIONS(4040), 1, sym__subscript_open, - ACTIONS(4569), 1, + ACTIONS(4042), 1, sym__superscript_open, - ACTIONS(4572), 1, + ACTIONS(4044), 1, sym__inline_note_start_token, - ACTIONS(4575), 1, + ACTIONS(4046), 1, sym__strong_emphasis_open_star, - ACTIONS(4578), 1, + ACTIONS(4048), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4581), 1, + ACTIONS(4050), 1, sym__emphasis_open_star, - ACTIONS(4584), 1, + ACTIONS(4052), 1, sym__emphasis_open_underscore, - ACTIONS(3512), 2, - sym__soft_line_ending, - sym__emphasis_close_star, - ACTIONS(4494), 7, + ACTIONS(5748), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3793), 1, + sym__inlines, + ACTIONS(5498), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72086,7 +85800,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(623), 25, + STATE(620), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72110,73 +85824,260 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [1572] = 33, - ACTIONS(3095), 1, + [24304] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(3101), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(3113), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(3115), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(3117), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(3119), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(3121), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(3131), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(3141), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(3143), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(3145), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(4589), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4591), 1, - sym__whitespace, - ACTIONS(3497), 2, - sym__soft_line_ending, - aux_sym_inline_note_token1, - ACTIONS(4587), 7, + ACTIONS(5750), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3723), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [24432] = 33, + ACTIONS(2957), 1, + anon_sym_LBRACK, + ACTIONS(2959), 1, + anon_sym_BANG_LBRACK, + ACTIONS(2961), 1, + anon_sym_DOLLAR, + ACTIONS(2963), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + aux_sym_pandoc_str_token1, + ACTIONS(2971), 1, + anon_sym_PIPE, + ACTIONS(2977), 1, + sym__code_span_start, + ACTIONS(2979), 1, + sym__highlight_span_start, + ACTIONS(2981), 1, + sym__insert_span_start, + ACTIONS(2983), 1, + sym__delete_span_start, + ACTIONS(2985), 1, + sym__edit_comment_span_start, + ACTIONS(2987), 1, + sym__single_quote_span_open, + ACTIONS(2989), 1, + sym__double_quote_span_open, + ACTIONS(2991), 1, + sym__shortcode_open_escaped, + ACTIONS(2993), 1, + sym__shortcode_open, + ACTIONS(2995), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(2997), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(2999), 1, + sym__cite_author_in_text, + ACTIONS(3001), 1, + sym__cite_suppress_author, + ACTIONS(3003), 1, + sym__strikeout_open, + ACTIONS(3005), 1, + sym__subscript_open, + ACTIONS(3007), 1, + sym__superscript_open, + ACTIONS(3009), 1, + sym__inline_note_start_token, + ACTIONS(3011), 1, + sym__strong_emphasis_open_star, + ACTIONS(3013), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3015), 1, + sym__emphasis_open_star, + ACTIONS(3017), 1, + sym__emphasis_open_underscore, + ACTIONS(5752), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3823), 1, + sym__inlines, + ACTIONS(2955), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(646), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [24560] = 33, + ACTIONS(3936), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_BANG_LBRACK, + ACTIONS(3940), 1, + anon_sym_DOLLAR, + ACTIONS(3942), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + ACTIONS(3946), 1, + aux_sym_pandoc_str_token1, + ACTIONS(3948), 1, + anon_sym_PIPE, + ACTIONS(3952), 1, + sym__code_span_start, + ACTIONS(3954), 1, + sym__highlight_span_start, + ACTIONS(3956), 1, + sym__insert_span_start, + ACTIONS(3958), 1, + sym__delete_span_start, + ACTIONS(3960), 1, + sym__edit_comment_span_start, + ACTIONS(3962), 1, + sym__single_quote_span_open, + ACTIONS(3964), 1, + sym__double_quote_span_open, + ACTIONS(3966), 1, + sym__shortcode_open_escaped, + ACTIONS(3968), 1, + sym__shortcode_open, + ACTIONS(3970), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(3972), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(3974), 1, + sym__cite_author_in_text, + ACTIONS(3976), 1, + sym__cite_suppress_author, + ACTIONS(3978), 1, + sym__strikeout_open, + ACTIONS(3980), 1, + sym__subscript_open, + ACTIONS(3982), 1, + sym__superscript_open, + ACTIONS(3984), 1, + sym__inline_note_start_token, + ACTIONS(3986), 1, + sym__strong_emphasis_open_star, + ACTIONS(3988), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(3990), 1, + sym__emphasis_open_star, + ACTIONS(3992), 1, + sym__emphasis_open_underscore, + ACTIONS(5754), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(3665), 1, + sym__inlines, + ACTIONS(5504), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72184,7 +86085,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(613), 25, + STATE(651), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72208,73 +86109,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [1703] = 33, - ACTIONS(4595), 1, + [24688] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(4609), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4611), 1, - sym__whitespace, - ACTIONS(4613), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(3497), 2, - sym__soft_line_ending, - sym__single_quote_span_close, - ACTIONS(4593), 7, + ACTIONS(5756), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3535), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72282,7 +86180,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(622), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72306,73 +86204,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [1834] = 33, - ACTIONS(4595), 1, + [24816] = 33, + ACTIONS(3936), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(3938), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(3940), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(3942), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(3944), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(3946), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(3948), 1, anon_sym_PIPE, - ACTIONS(4611), 1, - sym__whitespace, - ACTIONS(4613), 1, + ACTIONS(3952), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(3954), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(3956), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(3958), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(3960), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(3962), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(3964), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(3966), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(3968), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(3970), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(3972), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(3974), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(3976), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(3978), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(3980), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(3982), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(3984), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(3986), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(3988), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(3990), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(3992), 1, sym__emphasis_open_underscore, - ACTIONS(4657), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3487), 2, - sym__soft_line_ending, + ACTIONS(5758), 1, sym__single_quote_span_close, - ACTIONS(4655), 7, + STATE(2897), 1, + sym__line, + STATE(4157), 1, + sym__inlines, + ACTIONS(5504), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72380,7 +86275,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(625), 25, + STATE(651), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72404,73 +86299,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [1965] = 33, - ACTIONS(3095), 1, + [24944] = 33, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, + ACTIONS(3998), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, + ACTIONS(4000), 1, anon_sym_DOLLAR, - ACTIONS(3101), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, + ACTIONS(4006), 1, aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, + ACTIONS(4008), 1, anon_sym_PIPE, - ACTIONS(3113), 1, + ACTIONS(4012), 1, sym__code_span_start, - ACTIONS(3115), 1, + ACTIONS(4014), 1, sym__highlight_span_start, - ACTIONS(3117), 1, + ACTIONS(4016), 1, sym__insert_span_start, - ACTIONS(3119), 1, + ACTIONS(4018), 1, sym__delete_span_start, - ACTIONS(3121), 1, + ACTIONS(4020), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, + ACTIONS(4022), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, + ACTIONS(4024), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, + ACTIONS(4026), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, + ACTIONS(4028), 1, sym__shortcode_open, - ACTIONS(3131), 1, + ACTIONS(4030), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, + ACTIONS(4032), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, + ACTIONS(4034), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, + ACTIONS(4036), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, + ACTIONS(4038), 1, sym__strikeout_open, - ACTIONS(3141), 1, + ACTIONS(4040), 1, sym__subscript_open, - ACTIONS(3143), 1, + ACTIONS(4042), 1, sym__superscript_open, - ACTIONS(3145), 1, + ACTIONS(4044), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, + ACTIONS(4046), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, + ACTIONS(4048), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, + ACTIONS(4050), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, + ACTIONS(4052), 1, sym__emphasis_open_underscore, - ACTIONS(4591), 1, - sym__whitespace, - ACTIONS(4661), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3487), 2, - sym__soft_line_ending, - aux_sym_inline_note_token1, - ACTIONS(4659), 7, + ACTIONS(5760), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3409), 1, + sym__inlines, + ACTIONS(5498), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72478,7 +86370,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(624), 25, + STATE(620), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72502,171 +86394,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [2096] = 33, - ACTIONS(4666), 1, + [25072] = 32, + ACTIONS(3490), 1, + sym__pipe_table_delimiter, + ACTIONS(3538), 1, anon_sym_LBRACK, - ACTIONS(4669), 1, + ACTIONS(3540), 1, anon_sym_BANG_LBRACK, - ACTIONS(4672), 1, + ACTIONS(3542), 1, anon_sym_DOLLAR, - ACTIONS(4675), 1, + ACTIONS(3544), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4678), 1, + ACTIONS(3546), 1, anon_sym_LBRACE, - ACTIONS(4681), 1, + ACTIONS(3548), 1, aux_sym_pandoc_str_token1, - ACTIONS(4684), 1, + ACTIONS(3550), 1, anon_sym_PIPE, - ACTIONS(4687), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4690), 1, + ACTIONS(3552), 1, sym__whitespace, - ACTIONS(4693), 1, - sym__code_span_start, - ACTIONS(4696), 1, - sym__highlight_span_start, - ACTIONS(4699), 1, - sym__insert_span_start, - ACTIONS(4702), 1, - sym__delete_span_start, - ACTIONS(4705), 1, - sym__edit_comment_span_start, - ACTIONS(4708), 1, - sym__single_quote_span_open, - ACTIONS(4711), 1, - sym__double_quote_span_open, - ACTIONS(4714), 1, - sym__shortcode_open_escaped, - ACTIONS(4717), 1, - sym__shortcode_open, - ACTIONS(4720), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(4723), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(4726), 1, - sym__cite_author_in_text, - ACTIONS(4729), 1, - sym__cite_suppress_author, - ACTIONS(4732), 1, - sym__strikeout_open, - ACTIONS(4735), 1, - sym__subscript_open, - ACTIONS(4738), 1, - sym__superscript_open, - ACTIONS(4741), 1, - sym__inline_note_start_token, - ACTIONS(4744), 1, - sym__strong_emphasis_open_star, - ACTIONS(4747), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(4750), 1, - sym__emphasis_open_star, - ACTIONS(4753), 1, - sym__emphasis_open_underscore, - ACTIONS(3512), 2, - sym__soft_line_ending, - sym__emphasis_close_underscore, - ACTIONS(4663), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(628), 25, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [2227] = 33, - ACTIONS(2511), 1, - anon_sym_LBRACK, - ACTIONS(2513), 1, - anon_sym_BANG_LBRACK, - ACTIONS(2515), 1, - anon_sym_DOLLAR, - ACTIONS(2517), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(2519), 1, - anon_sym_LBRACE, - ACTIONS(2521), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2523), 1, - anon_sym_PIPE, - ACTIONS(2529), 1, + ACTIONS(3554), 1, sym__code_span_start, - ACTIONS(2531), 1, + ACTIONS(3556), 1, sym__highlight_span_start, - ACTIONS(2533), 1, + ACTIONS(3558), 1, sym__insert_span_start, - ACTIONS(2535), 1, + ACTIONS(3560), 1, sym__delete_span_start, - ACTIONS(2537), 1, + ACTIONS(3562), 1, sym__edit_comment_span_start, - ACTIONS(2539), 1, + ACTIONS(3564), 1, sym__single_quote_span_open, - ACTIONS(2541), 1, + ACTIONS(3566), 1, sym__double_quote_span_open, - ACTIONS(2543), 1, + ACTIONS(3568), 1, sym__shortcode_open_escaped, - ACTIONS(2545), 1, + ACTIONS(3570), 1, sym__shortcode_open, - ACTIONS(2547), 1, + ACTIONS(3572), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2549), 1, + ACTIONS(3574), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2551), 1, + ACTIONS(3576), 1, sym__cite_author_in_text, - ACTIONS(2553), 1, + ACTIONS(3578), 1, sym__cite_suppress_author, - ACTIONS(2555), 1, + ACTIONS(3580), 1, sym__strikeout_open, - ACTIONS(2557), 1, + ACTIONS(3582), 1, sym__subscript_open, - ACTIONS(2559), 1, + ACTIONS(3584), 1, sym__superscript_open, - ACTIONS(2561), 1, + ACTIONS(3586), 1, sym__inline_note_start_token, - ACTIONS(2563), 1, + ACTIONS(3588), 1, sym__strong_emphasis_open_star, - ACTIONS(2565), 1, + ACTIONS(3590), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2567), 1, + ACTIONS(3592), 1, sym__emphasis_open_star, - ACTIONS(2569), 1, + ACTIONS(3594), 1, sym__emphasis_open_underscore, - ACTIONS(3173), 1, - sym__whitespace, - ACTIONS(4758), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3230), 2, - sym__line_ending, - sym__pipe_table_delimiter, - ACTIONS(4756), 7, + ACTIONS(5762), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72674,7 +86463,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(612), 25, + STATE(707), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72698,73 +86487,71 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, aux_sym__line_with_maybe_spaces_repeat1, - [2358] = 33, - ACTIONS(2445), 1, + [25198] = 33, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(3998), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4000), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4006), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4008), 1, anon_sym_PIPE, - ACTIONS(2467), 1, + ACTIONS(4012), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4014), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4016), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4018), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4020), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4022), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4024), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4026), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4028), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4030), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4032), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4034), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4036), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4038), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4040), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4042), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4044), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4046), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4048), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4050), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4052), 1, sym__emphasis_open_underscore, - ACTIONS(4762), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4764), 1, - sym__whitespace, - ACTIONS(3487), 2, - sym__soft_line_ending, - aux_sym_insert_token1, - ACTIONS(4760), 7, + ACTIONS(5764), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3678), 1, + sym__inlines, + ACTIONS(5498), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72772,7 +86559,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(633), 25, + STATE(620), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72796,73 +86583,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [2489] = 33, - ACTIONS(4768), 1, + [25326] = 33, + ACTIONS(3936), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(3938), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, + ACTIONS(3940), 1, anon_sym_DOLLAR, - ACTIONS(4774), 1, + ACTIONS(3942), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + ACTIONS(3944), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + ACTIONS(3946), 1, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, + ACTIONS(3948), 1, anon_sym_PIPE, - ACTIONS(4782), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4784), 1, - sym__whitespace, - ACTIONS(4786), 1, + ACTIONS(3952), 1, sym__code_span_start, - ACTIONS(4788), 1, + ACTIONS(3954), 1, sym__highlight_span_start, - ACTIONS(4790), 1, + ACTIONS(3956), 1, sym__insert_span_start, - ACTIONS(4792), 1, + ACTIONS(3958), 1, sym__delete_span_start, - ACTIONS(4794), 1, + ACTIONS(3960), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, + ACTIONS(3962), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, + ACTIONS(3964), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, + ACTIONS(3966), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, + ACTIONS(3968), 1, sym__shortcode_open, - ACTIONS(4804), 1, + ACTIONS(3970), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, + ACTIONS(3972), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, + ACTIONS(3974), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, + ACTIONS(3976), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, + ACTIONS(3978), 1, sym__strikeout_open, - ACTIONS(4814), 1, + ACTIONS(3980), 1, sym__subscript_open, - ACTIONS(4816), 1, + ACTIONS(3982), 1, sym__superscript_open, - ACTIONS(4818), 1, + ACTIONS(3984), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, + ACTIONS(3986), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, + ACTIONS(3988), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, + ACTIONS(3990), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, + ACTIONS(3992), 1, sym__emphasis_open_underscore, - ACTIONS(3497), 2, - sym__soft_line_ending, - sym__emphasis_close_underscore, - ACTIONS(4766), 7, + ACTIONS(5766), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(3825), 1, + sym__inlines, + ACTIONS(5504), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72870,7 +86654,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(628), 25, + STATE(651), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72894,73 +86678,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [2620] = 33, - ACTIONS(4831), 1, + [25454] = 33, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(4834), 1, + ACTIONS(3998), 1, anon_sym_BANG_LBRACK, - ACTIONS(4837), 1, + ACTIONS(4000), 1, anon_sym_DOLLAR, - ACTIONS(4840), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4843), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(4846), 1, + ACTIONS(4006), 1, aux_sym_pandoc_str_token1, - ACTIONS(4849), 1, + ACTIONS(4008), 1, anon_sym_PIPE, - ACTIONS(4852), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4855), 1, - sym__whitespace, - ACTIONS(4858), 1, + ACTIONS(4012), 1, sym__code_span_start, - ACTIONS(4861), 1, + ACTIONS(4014), 1, sym__highlight_span_start, - ACTIONS(4864), 1, + ACTIONS(4016), 1, sym__insert_span_start, - ACTIONS(4867), 1, + ACTIONS(4018), 1, sym__delete_span_start, - ACTIONS(4870), 1, + ACTIONS(4020), 1, sym__edit_comment_span_start, - ACTIONS(4873), 1, + ACTIONS(4022), 1, sym__single_quote_span_open, - ACTIONS(4876), 1, + ACTIONS(4024), 1, sym__double_quote_span_open, - ACTIONS(4879), 1, + ACTIONS(4026), 1, sym__shortcode_open_escaped, - ACTIONS(4882), 1, + ACTIONS(4028), 1, sym__shortcode_open, - ACTIONS(4885), 1, + ACTIONS(4030), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4888), 1, + ACTIONS(4032), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4891), 1, + ACTIONS(4034), 1, sym__cite_author_in_text, - ACTIONS(4894), 1, + ACTIONS(4036), 1, sym__cite_suppress_author, - ACTIONS(4897), 1, + ACTIONS(4038), 1, sym__strikeout_open, - ACTIONS(4900), 1, + ACTIONS(4040), 1, sym__subscript_open, - ACTIONS(4903), 1, + ACTIONS(4042), 1, sym__superscript_open, - ACTIONS(4906), 1, + ACTIONS(4044), 1, sym__inline_note_start_token, - ACTIONS(4909), 1, + ACTIONS(4046), 1, sym__strong_emphasis_open_star, - ACTIONS(4912), 1, + ACTIONS(4048), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4915), 1, + ACTIONS(4050), 1, sym__emphasis_open_star, - ACTIONS(4918), 1, + ACTIONS(4052), 1, sym__emphasis_open_underscore, - ACTIONS(3512), 2, - sym__soft_line_ending, - aux_sym_insert_token1, - ACTIONS(4828), 7, + ACTIONS(5768), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3827), 1, + sym__inlines, + ACTIONS(5498), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -72968,7 +86749,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(632), 25, + STATE(620), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -72992,73 +86773,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [2751] = 33, - ACTIONS(2445), 1, + [25582] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(2467), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(4764), 1, - sym__whitespace, - ACTIONS(4923), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3497), 2, - sym__soft_line_ending, + ACTIONS(5770), 1, aux_sym_insert_token1, - ACTIONS(4921), 7, + STATE(2911), 1, + sym__line, + STATE(3651), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73066,7 +86844,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(632), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73090,73 +86868,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [2882] = 33, - ACTIONS(4927), 1, + [25710] = 33, + ACTIONS(3936), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(3938), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(3940), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(3942), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(3944), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(3946), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(3948), 1, anon_sym_PIPE, - ACTIONS(4941), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(4943), 1, - sym__whitespace, - ACTIONS(4945), 1, + ACTIONS(3952), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(3954), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(3956), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(3958), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(3960), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(3962), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(3964), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(3966), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(3968), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(3970), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(3972), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(3974), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(3976), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(3978), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(3980), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(3982), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(3984), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(3986), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(3988), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(3990), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(3992), 1, sym__emphasis_open_underscore, - ACTIONS(3487), 2, - sym__soft_line_ending, - sym__double_quote_span_close, - ACTIONS(4925), 7, + ACTIONS(5772), 1, + sym__single_quote_span_close, + STATE(2897), 1, + sym__line, + STATE(3921), 1, + sym__inlines, + ACTIONS(5504), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73164,7 +86939,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(635), 25, + STATE(651), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73188,73 +86963,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [3013] = 33, - ACTIONS(4927), 1, + [25838] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - sym__whitespace, - ACTIONS(4945), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(4989), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3497), 2, - sym__soft_line_ending, - sym__double_quote_span_close, - ACTIONS(4987), 7, + ACTIONS(5774), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3702), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73262,7 +87034,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(636), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73286,73 +87058,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [3144] = 33, - ACTIONS(4994), 1, + [25966] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(4997), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(5000), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(5003), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5006), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(5009), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(5012), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(5015), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5018), 1, - sym__whitespace, - ACTIONS(5021), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(5024), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(5027), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(5030), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(5033), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(5036), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(5039), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(5042), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(5045), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(5048), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5051), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5054), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(5057), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(5060), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(5063), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(5066), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(5069), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(5072), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(5075), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5078), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(5081), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(3512), 2, - sym__soft_line_ending, - sym__double_quote_span_close, - ACTIONS(4991), 7, + ACTIONS(5776), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3899), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73360,7 +87129,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(636), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73384,73 +87153,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [3275] = 33, - ACTIONS(5086), 1, + [26094] = 33, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, + ACTIONS(3998), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, + ACTIONS(4000), 1, anon_sym_DOLLAR, - ACTIONS(5092), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + ACTIONS(4006), 1, aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, + ACTIONS(4008), 1, anon_sym_PIPE, - ACTIONS(5100), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5102), 1, - sym__whitespace, - ACTIONS(5104), 1, + ACTIONS(4012), 1, sym__code_span_start, - ACTIONS(5106), 1, + ACTIONS(4014), 1, sym__highlight_span_start, - ACTIONS(5108), 1, + ACTIONS(4016), 1, sym__insert_span_start, - ACTIONS(5110), 1, + ACTIONS(4018), 1, sym__delete_span_start, - ACTIONS(5112), 1, + ACTIONS(4020), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, + ACTIONS(4022), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, + ACTIONS(4024), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, + ACTIONS(4026), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, + ACTIONS(4028), 1, sym__shortcode_open, - ACTIONS(5122), 1, + ACTIONS(4030), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, + ACTIONS(4032), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, + ACTIONS(4034), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, + ACTIONS(4036), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, + ACTIONS(4038), 1, sym__strikeout_open, - ACTIONS(5132), 1, + ACTIONS(4040), 1, sym__subscript_open, - ACTIONS(5134), 1, + ACTIONS(4042), 1, sym__superscript_open, - ACTIONS(5136), 1, + ACTIONS(4044), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, + ACTIONS(4046), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, + ACTIONS(4048), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, + ACTIONS(4050), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, + ACTIONS(4052), 1, sym__emphasis_open_underscore, - ACTIONS(3487), 2, - sym__soft_line_ending, - sym__strikeout_close, - ACTIONS(5084), 7, + ACTIONS(5778), 1, + sym__double_quote_span_close, + STATE(2943), 1, + sym__line, + STATE(3946), 1, + sym__inlines, + ACTIONS(5498), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73458,7 +87224,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(638), 25, + STATE(620), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73482,73 +87248,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [3406] = 33, - ACTIONS(5086), 1, + [26222] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(5092), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(5102), 1, - sym__whitespace, - ACTIONS(5104), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(5106), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(5108), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(5110), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(5112), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(5122), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(5132), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(5134), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(5136), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(5148), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3497), 2, - sym__soft_line_ending, - sym__strikeout_close, - ACTIONS(5146), 7, + ACTIONS(5780), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3824), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73556,7 +87319,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(639), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73580,73 +87343,70 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [3537] = 33, - ACTIONS(5153), 1, + [26350] = 33, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(5156), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(5159), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(5162), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5165), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(5168), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(5171), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(5174), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5177), 1, - sym__whitespace, - ACTIONS(5180), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(5183), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(5186), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(5189), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(5192), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(5195), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(5198), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(5201), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(5204), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(5207), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5210), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5213), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(5216), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(5219), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(5222), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(5225), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(5231), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(5234), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5237), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(5240), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(3512), 2, - sym__soft_line_ending, - sym__strikeout_close, - ACTIONS(5150), 7, + ACTIONS(5782), 1, + aux_sym_insert_token1, + STATE(2911), 1, + sym__line, + STATE(3564), 1, + sym__inlines, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73654,7 +87414,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(639), 25, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73678,73 +87438,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [3668] = 33, - ACTIONS(5245), 1, + [26478] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(5251), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(5259), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5261), 1, - sym__whitespace, - ACTIONS(5263), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(5265), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(5267), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(5269), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(5271), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(5281), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(5291), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(5293), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(5295), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(3487), 2, - sym__soft_line_ending, - sym__subscript_close, - ACTIONS(5243), 7, + STATE(2951), 1, + sym__line, + STATE(3474), 1, + sym__inlines, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73752,7 +87507,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(641), 25, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73776,73 +87531,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [3799] = 33, - ACTIONS(5245), 1, + [26603] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(5251), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(5261), 1, - sym__whitespace, - ACTIONS(5263), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(5265), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(5267), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(5269), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(5271), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(5281), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(5291), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(5293), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(5295), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5307), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3497), 2, - sym__soft_line_ending, - sym__subscript_close, - ACTIONS(5305), 7, + STATE(2884), 1, + sym__line, + STATE(3549), 1, + sym__inlines, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73850,7 +87600,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(642), 25, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73874,73 +87624,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [3930] = 33, - ACTIONS(5312), 1, + [26728] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(5315), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(5318), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5324), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(5330), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(5333), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5336), 1, - sym__whitespace, - ACTIONS(5339), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(5342), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(5345), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(5348), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(5351), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(5354), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(5357), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(5360), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(5363), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(5366), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5369), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5372), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(5375), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(5378), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(5381), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(5384), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(5387), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(5390), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(5393), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5396), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(5399), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(3512), 2, - sym__soft_line_ending, - sym__subscript_close, - ACTIONS(5309), 7, + STATE(2844), 1, + sym__line, + STATE(3109), 1, + sym__inlines, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -73948,7 +87693,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(642), 25, + STATE(613), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73972,73 +87717,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [4061] = 33, - ACTIONS(5404), 1, + [26853] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(5410), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(5418), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5420), 1, - sym__whitespace, - ACTIONS(5422), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(5424), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(5426), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(5428), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(5430), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(5440), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(5450), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(5452), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(5454), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(3487), 2, - sym__soft_line_ending, - sym__superscript_close, - ACTIONS(5402), 7, + STATE(2844), 1, + sym__line, + STATE(3106), 1, + sym__inlines, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74046,7 +87786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(644), 25, + STATE(613), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74070,73 +87810,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [4192] = 33, - ACTIONS(5404), 1, + [26978] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(5410), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(5420), 1, - sym__whitespace, - ACTIONS(5422), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(5424), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(5426), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(5428), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(5430), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(5440), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(5450), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(5452), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(5454), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5466), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3497), 2, - sym__soft_line_ending, - sym__superscript_close, - ACTIONS(5464), 7, + STATE(2844), 1, + sym__line, + STATE(3118), 1, + sym__inlines, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74144,7 +87879,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(645), 25, + STATE(613), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74168,73 +87903,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [4323] = 33, - ACTIONS(5471), 1, + [27103] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(5474), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(5477), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(5480), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5483), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5486), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(5489), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(5492), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5495), 1, - sym__whitespace, - ACTIONS(5498), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(5501), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(5504), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(5507), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(5510), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(5513), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(5516), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(5519), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(5522), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(5525), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5528), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5531), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(5534), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(5537), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(5540), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(5543), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(5546), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(5549), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(5552), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5555), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(5558), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(3512), 2, - sym__soft_line_ending, - sym__superscript_close, - ACTIONS(5468), 7, + STATE(2844), 1, + sym__line, + STATE(3011), 1, + sym__inlines, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74242,7 +87972,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(645), 25, + STATE(613), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74266,73 +87996,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [4454] = 33, - ACTIONS(4768), 1, + [27228] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(4774), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(4784), 1, - sym__whitespace, - ACTIONS(4786), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(4788), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(4790), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(4792), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(4794), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(4804), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(4814), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(4816), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(4818), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5563), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3487), 2, - sym__soft_line_ending, - sym__emphasis_close_underscore, - ACTIONS(5561), 7, + STATE(2844), 1, + sym__line, + STATE(3083), 1, + sym__inlines, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74340,7 +88065,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(631), 25, + STATE(613), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74364,74 +88089,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_repeat1, - [4585] = 34, - ACTIONS(2445), 1, + [27353] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5565), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2902), 1, sym__line, - STATE(3332), 1, + STATE(4129), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74439,7 +88158,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74463,73 +88182,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [4717] = 34, - ACTIONS(2445), 1, + [27478] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5567), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2930), 1, sym__line, - STATE(3808), 1, + STATE(4134), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74537,7 +88251,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74561,73 +88275,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [4849] = 34, - ACTIONS(2445), 1, + [27603] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5569), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2844), 1, sym__line, - STATE(3809), 1, + STATE(3377), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74635,7 +88344,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(613), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74659,73 +88368,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [4981] = 34, - ACTIONS(2445), 1, + [27728] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5571), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2944), 1, sym__line, - STATE(3754), 1, + STATE(4149), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74733,7 +88437,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74757,73 +88461,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [5113] = 34, - ACTIONS(2445), 1, + [27853] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5573), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2884), 1, sym__line, - STATE(3773), 1, + STATE(4154), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74831,7 +88530,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74855,73 +88554,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [5245] = 34, - ACTIONS(4595), 1, + [27978] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5579), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2941), 1, sym__line, - STATE(3786), 1, + STATE(4030), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -74929,7 +88623,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74953,73 +88647,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [5377] = 34, - ACTIONS(4927), 1, + [28103] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5585), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2921), 1, sym__line, - STATE(3787), 1, + STATE(4035), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75027,7 +88716,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75051,73 +88740,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [5509] = 34, - ACTIONS(4595), 1, + [28228] = 32, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5587), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2844), 1, sym__line, - STATE(3278), 1, + STATE(3161), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75125,7 +88809,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(613), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75149,73 +88833,161 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [5641] = 34, - ACTIONS(4927), 1, + [28353] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5589), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2764), 1, + sym__inlines, + STATE(2836), 1, sym__line, - STATE(3279), 1, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [28478] = 32, + ACTIONS(9), 1, + anon_sym_LBRACK, + ACTIONS(11), 1, + anon_sym_BANG_LBRACK, + ACTIONS(13), 1, + anon_sym_DOLLAR, + ACTIONS(15), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(19), 1, + aux_sym_pandoc_str_token1, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(67), 1, + sym__code_span_start, + ACTIONS(69), 1, + sym__highlight_span_start, + ACTIONS(71), 1, + sym__insert_span_start, + ACTIONS(73), 1, + sym__delete_span_start, + ACTIONS(75), 1, + sym__edit_comment_span_start, + ACTIONS(77), 1, + sym__single_quote_span_open, + ACTIONS(79), 1, + sym__double_quote_span_open, + ACTIONS(81), 1, + sym__shortcode_open_escaped, + ACTIONS(83), 1, + sym__shortcode_open, + ACTIONS(85), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(87), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(89), 1, + sym__cite_author_in_text, + ACTIONS(91), 1, + sym__cite_suppress_author, + ACTIONS(93), 1, + sym__strikeout_open, + ACTIONS(95), 1, + sym__subscript_open, + ACTIONS(97), 1, + sym__superscript_open, + ACTIONS(99), 1, + sym__inline_note_start_token, + ACTIONS(101), 1, + sym__strong_emphasis_open_star, + ACTIONS(103), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(105), 1, + sym__emphasis_open_star, + ACTIONS(107), 1, + sym__emphasis_open_underscore, + STATE(2844), 1, + sym__line, + STATE(3227), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75223,7 +88995,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(613), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75247,73 +89019,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [5773] = 34, - ACTIONS(2445), 1, + [28603] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5591), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2951), 1, sym__line, - STATE(3865), 1, + STATE(3909), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75321,7 +89088,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75345,73 +89112,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [5905] = 34, - ACTIONS(2445), 1, + [28728] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5593), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2951), 1, sym__line, - STATE(3866), 1, + STATE(3442), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75419,7 +89181,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75443,73 +89205,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [6037] = 34, - ACTIONS(2445), 1, + [28853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5595), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2941), 1, sym__line, - STATE(3867), 1, + STATE(3450), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75517,7 +89274,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75541,73 +89298,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [6169] = 34, - ACTIONS(2445), 1, + [28978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5597), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2921), 1, sym__line, - STATE(3868), 1, + STATE(3451), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75615,7 +89367,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75639,73 +89391,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [6301] = 34, - ACTIONS(2445), 1, + [29103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5599), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2902), 1, sym__line, - STATE(3423), 1, + STATE(3453), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75713,7 +89460,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75737,73 +89484,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [6433] = 34, - ACTIONS(4595), 1, + [29228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5601), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2930), 1, sym__line, - STATE(3516), 1, + STATE(3454), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75811,7 +89553,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75835,73 +89577,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [6565] = 34, - ACTIONS(2445), 1, + [29353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5603), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2944), 1, sym__line, - STATE(3343), 1, + STATE(3457), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -75909,7 +89646,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75933,73 +89670,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [6697] = 34, - ACTIONS(2445), 1, + [29478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5605), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2884), 1, sym__line, - STATE(3345), 1, + STATE(3458), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76007,7 +89739,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76031,73 +89763,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [6829] = 34, - ACTIONS(2445), 1, + [29603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5607), 1, - aux_sym_insert_token1, - STATE(2664), 1, - sym__line, - STATE(3347), 1, + STATE(2776), 1, sym__inlines, - ACTIONS(2443), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76105,7 +89832,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76129,73 +89856,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [6961] = 34, - ACTIONS(2445), 1, + [29728] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5609), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2951), 1, sym__line, - STATE(3348), 1, + STATE(3806), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76203,7 +89925,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76227,73 +89949,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [7093] = 34, - ACTIONS(4595), 1, + [29853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5611), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2941), 1, sym__line, - STATE(3243), 1, + STATE(3807), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76301,7 +90018,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76325,73 +90042,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [7225] = 34, - ACTIONS(4927), 1, + [29978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5613), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2921), 1, sym__line, - STATE(3244), 1, + STATE(3808), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76399,7 +90111,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76423,73 +90135,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [7357] = 34, - ACTIONS(4927), 1, + [30103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5615), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2902), 1, sym__line, - STATE(3517), 1, + STATE(3810), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76497,7 +90204,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76521,73 +90228,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [7489] = 34, - ACTIONS(2445), 1, + [30228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5617), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2930), 1, sym__line, - STATE(3434), 1, + STATE(3811), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76595,7 +90297,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76619,73 +90321,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [7621] = 34, - ACTIONS(2445), 1, + [30353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5619), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2944), 1, sym__line, - STATE(3265), 1, + STATE(3815), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76693,7 +90390,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76717,73 +90414,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [7753] = 34, - ACTIONS(2445), 1, + [30478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5621), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2884), 1, sym__line, - STATE(3266), 1, + STATE(3816), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76791,7 +90483,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76815,73 +90507,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [7885] = 34, - ACTIONS(2445), 1, + [30603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5623), 1, - aux_sym_insert_token1, - STATE(2664), 1, - sym__line, - STATE(3267), 1, + STATE(2822), 1, sym__inlines, - ACTIONS(2443), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76889,7 +90576,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76913,73 +90600,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [8017] = 34, - ACTIONS(2445), 1, + [30728] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5625), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2951), 1, sym__line, - STATE(3268), 1, + STATE(4057), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -76987,7 +90669,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77011,73 +90693,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [8149] = 34, - ACTIONS(2445), 1, + [30853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5627), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2941), 1, sym__line, - STATE(3436), 1, + STATE(4060), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77085,7 +90762,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77109,73 +90786,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [8281] = 34, - ACTIONS(2445), 1, + [30978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5629), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2921), 1, sym__line, - STATE(3465), 1, + STATE(4061), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77183,7 +90855,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77207,73 +90879,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [8413] = 34, - ACTIONS(4595), 1, + [31103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5631), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2902), 1, sym__line, - STATE(3710), 1, + STATE(4065), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77281,7 +90948,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77305,73 +90972,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [8545] = 34, - ACTIONS(4927), 1, + [31228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5633), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2930), 1, sym__line, - STATE(3737), 1, + STATE(4068), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77379,7 +91041,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77403,73 +91065,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [8677] = 34, - ACTIONS(4595), 1, + [31353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5635), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2944), 1, sym__line, - STATE(3438), 1, + STATE(4082), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77477,7 +91134,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77501,73 +91158,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [8809] = 34, - ACTIONS(4927), 1, + [31478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5637), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2884), 1, sym__line, - STATE(3441), 1, + STATE(3765), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77575,7 +91227,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77599,73 +91251,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [8941] = 34, - ACTIONS(4595), 1, + [31603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5639), 1, - sym__single_quote_span_close, - STATE(2672), 1, - sym__line, - STATE(3307), 1, + STATE(2714), 1, sym__inlines, - ACTIONS(5575), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77673,7 +91320,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77697,73 +91344,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [9073] = 34, - ACTIONS(4927), 1, + [31728] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5641), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2951), 1, sym__line, - STATE(3308), 1, + STATE(3961), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77771,7 +91413,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77795,73 +91437,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [9205] = 34, - ACTIONS(4595), 1, + [31853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5643), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2941), 1, sym__line, - STATE(3664), 1, + STATE(3967), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77869,7 +91506,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77893,73 +91530,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [9337] = 34, - ACTIONS(4595), 1, + [31978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5645), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2921), 1, sym__line, - STATE(3468), 1, + STATE(3977), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -77967,7 +91599,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77991,73 +91623,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [9469] = 34, - ACTIONS(2445), 1, + [32103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5647), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2902), 1, sym__line, - STATE(3329), 1, + STATE(4011), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78065,7 +91692,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78089,73 +91716,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [9601] = 34, - ACTIONS(2445), 1, + [32228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5649), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2930), 1, sym__line, - STATE(3330), 1, + STATE(4027), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78163,7 +91785,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78187,73 +91809,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [9733] = 34, - ACTIONS(2445), 1, + [32353] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5651), 1, - aux_sym_insert_token1, - STATE(2664), 1, - sym__line, - STATE(3331), 1, + STATE(2778), 1, sym__inlines, - ACTIONS(2443), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78261,7 +91878,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78285,73 +91902,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [9865] = 34, - ACTIONS(4927), 1, + [32478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5653), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2884), 1, sym__line, - STATE(3225), 1, + STATE(4046), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78359,7 +91971,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78383,73 +91995,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [9997] = 34, - ACTIONS(2445), 1, + [32603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5655), 1, - aux_sym_insert_token1, - STATE(2664), 1, - sym__line, - STATE(3617), 1, + STATE(2721), 1, sym__inlines, - ACTIONS(2443), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78457,7 +92064,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78481,73 +92088,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [10129] = 34, - ACTIONS(2445), 1, + [32728] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5657), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2951), 1, sym__line, - STATE(3481), 1, + STATE(3710), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78555,7 +92157,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78579,73 +92181,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [10261] = 34, - ACTIONS(2445), 1, + [32853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5659), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2941), 1, sym__line, - STATE(3618), 1, + STATE(3725), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78653,7 +92250,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78677,73 +92274,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [10393] = 34, - ACTIONS(4927), 1, + [32978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5661), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2921), 1, sym__line, - STATE(3592), 1, + STATE(3726), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78751,7 +92343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78775,71 +92367,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [10525] = 33, - ACTIONS(3334), 1, - sym__pipe_table_delimiter, - ACTIONS(5666), 1, + [33103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(5669), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(5672), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(5675), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5678), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(5681), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(5684), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(5687), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5690), 1, - sym__whitespace, - ACTIONS(5693), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(5696), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(5699), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(5702), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(5705), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(5708), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(5711), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(5714), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(5717), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(5720), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5723), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5726), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(5729), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(5732), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(5735), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(5738), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(5741), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(5744), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(5747), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5750), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(5753), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5663), 7, + STATE(2902), 1, + sym__line, + STATE(3731), 1, + sym__inlines, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78847,7 +92436,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(692), 25, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78871,74 +92460,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_with_maybe_spaces_repeat1, - [10655] = 34, - ACTIONS(2445), 1, + [33228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5756), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2930), 1, sym__line, - STATE(3483), 1, + STATE(3732), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -78946,7 +92529,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78970,73 +92553,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [10787] = 34, - ACTIONS(4595), 1, + [33353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5758), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2944), 1, sym__line, - STATE(3371), 1, + STATE(3745), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79044,7 +92622,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79068,73 +92646,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [10919] = 34, - ACTIONS(4927), 1, + [33478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5760), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2884), 1, sym__line, - STATE(3372), 1, + STATE(3746), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79142,7 +92715,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79166,73 +92739,161 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [11051] = 34, - ACTIONS(2445), 1, + [33603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5762), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2725), 1, + sym__inlines, + STATE(2836), 1, sym__line, - STATE(3486), 1, + ACTIONS(3309), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(636), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [33728] = 32, + ACTIONS(4238), 1, + anon_sym_LBRACK, + ACTIONS(4240), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4242), 1, + anon_sym_DOLLAR, + ACTIONS(4244), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4246), 1, + anon_sym_LBRACE, + ACTIONS(4248), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(4254), 1, + sym__code_span_start, + ACTIONS(4256), 1, + sym__highlight_span_start, + ACTIONS(4258), 1, + sym__insert_span_start, + ACTIONS(4260), 1, + sym__delete_span_start, + ACTIONS(4262), 1, + sym__edit_comment_span_start, + ACTIONS(4264), 1, + sym__single_quote_span_open, + ACTIONS(4266), 1, + sym__double_quote_span_open, + ACTIONS(4268), 1, + sym__shortcode_open_escaped, + ACTIONS(4270), 1, + sym__shortcode_open, + ACTIONS(4272), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4274), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4276), 1, + sym__cite_author_in_text, + ACTIONS(4278), 1, + sym__cite_suppress_author, + ACTIONS(4280), 1, + sym__strikeout_open, + ACTIONS(4282), 1, + sym__subscript_open, + ACTIONS(4284), 1, + sym__superscript_open, + ACTIONS(4286), 1, + sym__inline_note_start_token, + ACTIONS(4288), 1, + sym__strong_emphasis_open_star, + ACTIONS(4290), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4292), 1, + sym__emphasis_open_star, + ACTIONS(4294), 1, + sym__emphasis_open_underscore, + STATE(2951), 1, + sym__line, + STATE(3414), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79240,7 +92901,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79264,73 +92925,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [11183] = 34, - ACTIONS(2445), 1, + [33853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5764), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2941), 1, sym__line, - STATE(3277), 1, + STATE(3418), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79338,7 +92994,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79362,73 +93018,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [11315] = 34, - ACTIONS(2445), 1, + [33978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5766), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2921), 1, sym__line, - STATE(3393), 1, + STATE(3612), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79436,7 +93087,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79460,73 +93111,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [11447] = 34, - ACTIONS(2445), 1, + [34103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5768), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2902), 1, sym__line, - STATE(3730), 1, + STATE(3624), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79534,7 +93180,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79558,73 +93204,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [11579] = 34, - ACTIONS(2445), 1, + [34228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5770), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2930), 1, sym__line, - STATE(3395), 1, + STATE(3625), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79632,7 +93273,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79656,73 +93297,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [11711] = 34, - ACTIONS(2445), 1, + [34353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5772), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2944), 1, sym__line, - STATE(3396), 1, + STATE(3626), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79730,7 +93366,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79754,73 +93390,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [11843] = 34, - ACTIONS(2445), 1, + [34478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5774), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2884), 1, sym__line, - STATE(3487), 1, + STATE(3635), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -79828,7 +93459,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79852,171 +93483,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [11975] = 34, - ACTIONS(2445), 1, + [34603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5776), 1, - aux_sym_insert_token1, - STATE(2664), 1, - sym__line, - STATE(3321), 1, + STATE(2733), 1, sym__inlines, - ACTIONS(2443), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(630), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [12107] = 34, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, - anon_sym_DOLLAR, - ACTIONS(2451), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, - anon_sym_LBRACE, - ACTIONS(2457), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, - anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, - sym__code_span_start, - ACTIONS(2469), 1, - sym__highlight_span_start, - ACTIONS(2471), 1, - sym__insert_span_start, - ACTIONS(2473), 1, - sym__delete_span_start, - ACTIONS(2475), 1, - sym__edit_comment_span_start, - ACTIONS(2477), 1, - sym__single_quote_span_open, - ACTIONS(2479), 1, - sym__double_quote_span_open, - ACTIONS(2481), 1, - sym__shortcode_open_escaped, - ACTIONS(2483), 1, - sym__shortcode_open, - ACTIONS(2485), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, - sym__cite_author_in_text, - ACTIONS(2491), 1, - sym__cite_suppress_author, - ACTIONS(2493), 1, - sym__strikeout_open, - ACTIONS(2495), 1, - sym__subscript_open, - ACTIONS(2497), 1, - sym__superscript_open, - ACTIONS(2499), 1, - sym__inline_note_start_token, - ACTIONS(2501), 1, - sym__strong_emphasis_open_star, - ACTIONS(2503), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, - sym__emphasis_open_star, - ACTIONS(2507), 1, - sym__emphasis_open_underscore, - ACTIONS(5778), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2836), 1, sym__line, - STATE(3322), 1, - sym__inlines, - ACTIONS(2443), 7, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80024,7 +93552,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80048,73 +93576,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [12239] = 34, - ACTIONS(2445), 1, + [34728] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5780), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2951), 1, sym__line, - STATE(3351), 1, + STATE(3500), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80122,7 +93645,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80146,73 +93669,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [12371] = 34, - ACTIONS(2445), 1, + [34853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5782), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2941), 1, sym__line, - STATE(3353), 1, + STATE(3501), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80220,7 +93738,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80244,73 +93762,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [12503] = 34, - ACTIONS(2445), 1, + [34978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5784), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2921), 1, sym__line, - STATE(3291), 1, + STATE(3502), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80318,7 +93831,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80342,73 +93855,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [12635] = 34, - ACTIONS(4595), 1, + [35103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5786), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2902), 1, sym__line, - STATE(3846), 1, + STATE(3509), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80416,7 +93924,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80440,73 +93948,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [12767] = 34, - ACTIONS(4595), 1, + [35228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5788), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2930), 1, sym__line, - STATE(3574), 1, + STATE(3511), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80514,7 +94017,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80538,73 +94041,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [12899] = 34, - ACTIONS(2445), 1, + [35353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5790), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2944), 1, sym__line, - STATE(3296), 1, + STATE(3514), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80612,7 +94110,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80636,73 +94134,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [13031] = 34, - ACTIONS(9), 1, + [35478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(23), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(67), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - STATE(592), 1, - sym_pandoc_paragraph, - STATE(2609), 1, + STATE(2884), 1, sym__line, - STATE(2769), 1, + STATE(3515), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80710,7 +94203,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(591), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80734,73 +94227,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [13163] = 34, - ACTIONS(2445), 1, + [35603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5792), 1, - aux_sym_insert_token1, - STATE(2664), 1, - sym__line, - STATE(3540), 1, + STATE(2741), 1, sym__inlines, - ACTIONS(2443), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80808,7 +94296,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80832,73 +94320,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [13295] = 34, - ACTIONS(2445), 1, + [35728] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5794), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2951), 1, sym__line, - STATE(3677), 1, + STATE(3671), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -80906,7 +94389,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80930,73 +94413,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [13427] = 34, - ACTIONS(2445), 1, + [35853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5796), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2941), 1, sym__line, - STATE(3703), 1, + STATE(3674), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81004,7 +94482,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81028,73 +94506,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [13559] = 34, - ACTIONS(2445), 1, + [35978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5798), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2921), 1, sym__line, - STATE(3721), 1, + STATE(3676), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81102,7 +94575,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81126,73 +94599,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [13691] = 34, - ACTIONS(2445), 1, + [36103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5800), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2902), 1, sym__line, - STATE(3320), 1, + STATE(3681), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81200,7 +94668,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81224,73 +94692,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [13823] = 34, - ACTIONS(4927), 1, + [36228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5802), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2930), 1, sym__line, - STATE(3575), 1, + STATE(3682), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81298,7 +94761,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81322,73 +94785,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [13955] = 34, - ACTIONS(4927), 1, + [36353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5804), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2944), 1, sym__line, - STATE(3847), 1, + STATE(3685), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81396,7 +94854,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81420,73 +94878,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [14087] = 34, - ACTIONS(4595), 1, + [36478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5806), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2884), 1, sym__line, - STATE(3461), 1, + STATE(3692), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81494,7 +94947,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81518,73 +94971,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [14219] = 34, - ACTIONS(2445), 1, + [36603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5808), 1, - aux_sym_insert_token1, - STATE(2664), 1, - sym__line, - STATE(3651), 1, + STATE(2745), 1, sym__inlines, - ACTIONS(2443), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81592,7 +95040,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81616,73 +95064,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [14351] = 34, - ACTIONS(2445), 1, + [36728] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5810), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2951), 1, sym__line, - STATE(3652), 1, + STATE(3837), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81690,7 +95133,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81714,73 +95157,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [14483] = 34, - ACTIONS(4927), 1, + [36853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5812), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2941), 1, sym__line, - STATE(3466), 1, + STATE(3844), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81788,7 +95226,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81812,73 +95250,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [14615] = 34, - ACTIONS(2445), 1, + [36978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5814), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2921), 1, sym__line, - STATE(3653), 1, + STATE(3846), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81886,7 +95319,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81910,73 +95343,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [14747] = 34, - ACTIONS(2445), 1, + [37103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5816), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2902), 1, sym__line, - STATE(3655), 1, + STATE(3850), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -81984,7 +95412,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82008,73 +95436,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [14879] = 34, - ACTIONS(9), 1, + [37228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(23), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(67), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - STATE(587), 1, - sym_pandoc_paragraph, - STATE(2609), 1, + STATE(2930), 1, sym__line, - STATE(2839), 1, + STATE(3852), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82082,7 +95505,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(591), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82106,73 +95529,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [15011] = 34, - ACTIONS(2445), 1, + [37353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5818), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2944), 1, sym__line, - STATE(3615), 1, + STATE(3866), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82180,7 +95598,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82204,73 +95622,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [15143] = 34, - ACTIONS(2445), 1, + [37478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5820), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2884), 1, sym__line, - STATE(3742), 1, + STATE(3869), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82278,7 +95691,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82302,73 +95715,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [15275] = 34, - ACTIONS(4595), 1, + [37603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5822), 1, - sym__single_quote_span_close, - STATE(2672), 1, - sym__line, - STATE(3571), 1, + STATE(2750), 1, sym__inlines, - ACTIONS(5575), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82376,7 +95784,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82400,73 +95808,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [15407] = 34, - ACTIONS(4927), 1, + [37728] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5824), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2951), 1, sym__line, - STATE(3573), 1, + STATE(4021), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82474,7 +95877,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82498,73 +95901,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [15539] = 34, - ACTIONS(2445), 1, + [37853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5826), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2941), 1, sym__line, - STATE(3616), 1, + STATE(4024), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82572,7 +95970,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82596,73 +95994,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [15671] = 34, - ACTIONS(9), 1, + [37978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(23), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(67), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - STATE(402), 1, - sym_pandoc_paragraph, - STATE(2609), 1, + STATE(2921), 1, sym__line, - STATE(2732), 1, + STATE(4025), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82670,7 +96063,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(591), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82694,73 +96087,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [15803] = 34, - ACTIONS(2445), 1, + [38103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5828), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2902), 1, sym__line, - STATE(3806), 1, + STATE(4032), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82768,7 +96156,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82792,73 +96180,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [15935] = 34, - ACTIONS(2445), 1, + [38228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5830), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2930), 1, sym__line, - STATE(3681), 1, + STATE(4033), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82866,7 +96249,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82890,73 +96273,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [16067] = 34, - ACTIONS(2445), 1, + [38353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5832), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2944), 1, sym__line, - STATE(3683), 1, + STATE(4037), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -82964,7 +96342,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82988,73 +96366,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [16199] = 34, - ACTIONS(4595), 1, + [38478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5834), 1, - sym__single_quote_span_close, - STATE(2672), 1, + STATE(2884), 1, sym__line, - STATE(3755), 1, + STATE(4041), 1, sym__inlines, - ACTIONS(5575), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83062,7 +96435,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83086,73 +96459,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [16331] = 34, - ACTIONS(4595), 1, + [38603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(4601), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(4615), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(4617), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(4619), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(4621), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(4631), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(4641), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(4643), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(4645), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5836), 1, - sym__single_quote_span_close, - STATE(2672), 1, - sym__line, - STATE(3544), 1, + STATE(2753), 1, sym__inlines, - ACTIONS(5575), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83160,7 +96528,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83184,73 +96552,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [16463] = 34, - ACTIONS(4927), 1, + [38728] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5838), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2951), 1, sym__line, - STATE(3756), 1, + STATE(3658), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83258,7 +96621,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83282,73 +96645,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [16595] = 34, - ACTIONS(4927), 1, + [38853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(4933), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(4947), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(4949), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(4951), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(4953), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(4963), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(4973), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(4975), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(4977), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5840), 1, - sym__double_quote_span_close, - STATE(2623), 1, + STATE(2941), 1, sym__line, - STATE(3547), 1, + STATE(3701), 1, sym__inlines, - ACTIONS(5581), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83356,7 +96714,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83380,73 +96738,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [16727] = 34, - ACTIONS(2445), 1, + [38978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5842), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2921), 1, sym__line, - STATE(3685), 1, + STATE(3822), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83454,7 +96807,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83478,73 +96831,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [16859] = 34, - ACTIONS(2445), 1, + [39103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5844), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2902), 1, sym__line, - STATE(3686), 1, + STATE(3940), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83552,7 +96900,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83576,73 +96924,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [16991] = 34, - ACTIONS(2445), 1, + [39228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5846), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2930), 1, sym__line, - STATE(3631), 1, + STATE(3995), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83650,7 +96993,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83674,73 +97017,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [17123] = 34, - ACTIONS(2445), 1, + [39353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5848), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2944), 1, sym__line, - STATE(3632), 1, + STATE(3998), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83748,7 +97086,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83772,73 +97110,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [17255] = 34, - ACTIONS(2445), 1, + [39478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5850), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2884), 1, sym__line, - STATE(3633), 1, + STATE(4026), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83846,7 +97179,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83870,73 +97203,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [17387] = 34, - ACTIONS(2445), 1, + [39603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5852), 1, - aux_sym_insert_token1, - STATE(2664), 1, - sym__line, - STATE(3634), 1, + STATE(2756), 1, sym__inlines, - ACTIONS(2443), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -83944,7 +97272,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83968,73 +97296,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [17519] = 34, - ACTIONS(2445), 1, + [39728] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(2451), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(2469), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5854), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2951), 1, sym__line, - STATE(3807), 1, + STATE(3783), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84042,7 +97365,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84066,170 +97389,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [17651] = 33, - ACTIONS(3230), 1, - sym__pipe_table_delimiter, - ACTIONS(3600), 1, + [39853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(3602), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(3604), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(3606), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3608), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(3612), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(3616), 1, - sym__whitespace, - ACTIONS(3618), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(3620), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(3622), 1, - sym__insert_span_start, - ACTIONS(3624), 1, - sym__delete_span_start, - ACTIONS(3626), 1, - sym__edit_comment_span_start, - ACTIONS(3628), 1, - sym__single_quote_span_open, - ACTIONS(3630), 1, - sym__double_quote_span_open, - ACTIONS(3632), 1, - sym__shortcode_open_escaped, - ACTIONS(3634), 1, - sym__shortcode_open, - ACTIONS(3636), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(3638), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(3640), 1, - sym__cite_author_in_text, - ACTIONS(3642), 1, - sym__cite_suppress_author, - ACTIONS(3644), 1, - sym__strikeout_open, - ACTIONS(3646), 1, - sym__subscript_open, - ACTIONS(3648), 1, - sym__superscript_open, - ACTIONS(3650), 1, - sym__inline_note_start_token, - ACTIONS(3652), 1, - sym__strong_emphasis_open_star, - ACTIONS(3654), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(3656), 1, - sym__emphasis_open_star, - ACTIONS(3658), 1, - sym__emphasis_open_underscore, - ACTIONS(5858), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5856), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(692), 25, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - aux_sym__line_with_maybe_spaces_repeat1, - [17781] = 34, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, - anon_sym_DOLLAR, - ACTIONS(2451), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, - anon_sym_LBRACE, - ACTIONS(2457), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, - anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, - sym__code_span_start, - ACTIONS(2469), 1, - sym__highlight_span_start, - ACTIONS(2471), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(2473), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(2475), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(2485), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(2495), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(2497), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(2499), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5860), 1, - aux_sym_insert_token1, - STATE(2664), 1, + STATE(2941), 1, sym__line, - STATE(3394), 1, + STATE(3787), 1, sym__inlines, - ACTIONS(2443), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84237,7 +97458,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84261,71 +97482,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [17913] = 33, - ACTIONS(4768), 1, + [39978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(4774), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(4788), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(4790), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(4792), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(4794), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(4804), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(4814), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(4816), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(4818), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, + STATE(2921), 1, sym__line, - STATE(3873), 1, + STATE(3791), 1, sym__inlines, - ACTIONS(5862), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84333,7 +97551,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84357,71 +97575,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [18042] = 33, - ACTIONS(4768), 1, + [40103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(4774), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(4788), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(4790), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(4792), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(4794), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(4804), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(4814), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(4816), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(4818), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, + STATE(2902), 1, sym__line, - STATE(3382), 1, + STATE(3798), 1, sym__inlines, - ACTIONS(5862), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84429,7 +97644,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84453,71 +97668,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [18171] = 33, - ACTIONS(9), 1, + [40228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(23), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(67), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - STATE(2609), 1, + STATE(2930), 1, sym__line, - STATE(3004), 1, + STATE(3801), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84525,7 +97737,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(591), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84549,71 +97761,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [18300] = 33, - ACTIONS(9), 1, + [40353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(23), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(67), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - STATE(2609), 1, + STATE(2944), 1, sym__line, - STATE(2780), 1, + STATE(3812), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84621,7 +97830,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(591), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84645,71 +97854,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [18429] = 33, - ACTIONS(9), 1, + [40478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(23), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(67), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - STATE(2609), 1, + STATE(2884), 1, sym__line, - STATE(2986), 1, + STATE(3820), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84717,7 +97923,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(591), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84741,71 +97947,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [18558] = 33, - ACTIONS(5086), 1, + [40603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(5092), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(5106), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(5108), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(5110), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(5112), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(5122), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(5132), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(5134), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(5136), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3904), 1, + STATE(2763), 1, sym__inlines, - ACTIONS(5866), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84813,7 +98016,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84837,71 +98040,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [18687] = 33, - ACTIONS(3095), 1, + [40728] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(3101), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(3115), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(3117), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(3119), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(3121), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(3131), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(3141), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(3143), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(3145), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - STATE(2554), 1, - sym__inlines, - STATE(2576), 1, + STATE(2951), 1, sym__line, - ACTIONS(3093), 7, + STATE(3406), 1, + sym__inlines, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -84909,7 +98109,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84933,71 +98133,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [18816] = 33, - ACTIONS(9), 1, + [40853] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(23), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(67), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - STATE(2609), 1, + STATE(2941), 1, sym__line, - STATE(3028), 1, + STATE(3407), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85005,7 +98202,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(591), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85029,71 +98226,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [18945] = 33, - ACTIONS(4019), 1, + [40978] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(4025), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(4039), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(4041), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(4043), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(4045), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(4055), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(4065), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(4067), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(4069), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, + STATE(2921), 1, sym__line, - STATE(3783), 1, + STATE(3408), 1, sym__inlines, - ACTIONS(5870), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85101,7 +98295,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85125,71 +98319,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [19074] = 33, - ACTIONS(4178), 1, + [41103] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(4184), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(4198), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(4200), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(4202), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(4204), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(4214), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(4224), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(4226), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(4228), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, + STATE(2902), 1, sym__line, - STATE(3832), 1, + STATE(3410), 1, sym__inlines, - ACTIONS(5874), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85197,7 +98388,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85221,71 +98412,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [19203] = 33, - ACTIONS(4337), 1, + [41228] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(4343), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(4357), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(4359), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(4361), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(4363), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(4373), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(4383), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(4385), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(4387), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, + STATE(2930), 1, sym__line, - STATE(3837), 1, + STATE(3411), 1, sym__inlines, - ACTIONS(5878), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85293,7 +98481,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85317,71 +98505,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [19332] = 33, - ACTIONS(4768), 1, + [41353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(4774), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(4788), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(4790), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(4792), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(4794), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(4804), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(4814), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(4816), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(4818), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, + STATE(2944), 1, sym__line, - STATE(3838), 1, + STATE(3412), 1, sym__inlines, - ACTIONS(5862), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85389,7 +98574,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85413,71 +98598,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [19461] = 33, - ACTIONS(5245), 1, + [41478] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(5251), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(5265), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(5267), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(5269), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(5271), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(5281), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(5291), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(5293), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(5295), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, + STATE(2884), 1, sym__line, - STATE(3908), 1, + STATE(3413), 1, sym__inlines, - ACTIONS(5882), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85485,7 +98667,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85509,71 +98691,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [19590] = 33, - ACTIONS(5086), 1, + [41603] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(5092), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(5106), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(5108), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(5110), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(5112), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(5122), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(5132), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(5134), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(5136), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3520), 1, + STATE(2769), 1, sym__inlines, - ACTIONS(5866), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85581,7 +98760,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85605,71 +98784,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [19719] = 33, - ACTIONS(5245), 1, + [41728] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(5251), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(5265), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(5267), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(5269), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(5271), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(5281), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(5291), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(5293), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(5295), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, + STATE(2941), 1, sym__line, - STATE(3525), 1, + STATE(3475), 1, sym__inlines, - ACTIONS(5882), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85677,7 +98853,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85701,71 +98877,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [19848] = 33, - ACTIONS(5404), 1, + [41853] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(5410), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(5424), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(5426), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(5428), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(5430), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(5440), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(5450), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(5452), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(5454), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, + STATE(2921), 1, sym__line, - STATE(3526), 1, + STATE(3476), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85773,7 +98946,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85797,71 +98970,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [19977] = 33, - ACTIONS(4019), 1, + [41978] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(4025), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(4039), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(4041), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(4043), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(4045), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(4055), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(4065), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(4067), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(4069), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, + STATE(2902), 1, sym__line, - STATE(3528), 1, + STATE(3478), 1, sym__inlines, - ACTIONS(5870), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85869,7 +99039,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85893,71 +99063,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [20106] = 33, - ACTIONS(4178), 1, + [42103] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(4184), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(4198), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(4200), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(4202), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(4204), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(4214), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(4224), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(4226), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(4228), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, + STATE(2930), 1, sym__line, - STATE(3529), 1, + STATE(3479), 1, sym__inlines, - ACTIONS(5874), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -85965,7 +99132,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85989,71 +99156,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [20235] = 33, - ACTIONS(4337), 1, + [42228] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(4343), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(4357), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(4359), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(4361), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(4363), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(4373), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(4383), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(4385), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(4387), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, + STATE(2944), 1, sym__line, - STATE(3530), 1, + STATE(3480), 1, sym__inlines, - ACTIONS(5878), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86061,7 +99225,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86085,71 +99249,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [20364] = 33, - ACTIONS(4768), 1, + [42353] = 32, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(4774), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(4788), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(4790), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(4792), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(4794), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(4804), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(4814), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(4816), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(4818), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, + STATE(2884), 1, sym__line, - STATE(3531), 1, + STATE(3481), 1, sym__inlines, - ACTIONS(5862), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86157,7 +99318,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86181,71 +99342,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [20493] = 33, - ACTIONS(3095), 1, + [42478] = 32, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(3101), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(3115), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(3117), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(3119), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(3121), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(3131), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(3141), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(3143), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(3145), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - STATE(2576), 1, - sym__line, - STATE(2603), 1, + STATE(2773), 1, sym__inlines, - ACTIONS(3093), 7, + STATE(2836), 1, + sym__line, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86253,7 +99411,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86277,71 +99435,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [20622] = 33, - ACTIONS(5404), 1, + [42603] = 32, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(5410), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(5424), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(5426), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(5428), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(5430), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(5440), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(5450), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(5452), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(5454), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, + STATE(2951), 1, sym__line, - STATE(3494), 1, + STATE(3542), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86349,7 +99504,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86373,71 +99528,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [20751] = 33, - ACTIONS(5086), 1, + [42728] = 32, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(5092), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(5106), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(5108), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(5110), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(5112), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(5122), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(5132), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(5134), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(5136), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, + STATE(2941), 1, sym__line, - STATE(3850), 1, + STATE(3543), 1, sym__inlines, - ACTIONS(5866), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86445,7 +99597,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86469,71 +99621,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [20880] = 33, - ACTIONS(5245), 1, + [42853] = 32, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(5251), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(5265), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(5267), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(5269), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(5271), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(5281), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(5291), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(5293), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(5295), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, + STATE(2921), 1, sym__line, - STATE(3851), 1, + STATE(3544), 1, sym__inlines, - ACTIONS(5882), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86541,7 +99690,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86565,71 +99714,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [21009] = 33, - ACTIONS(5404), 1, + [42978] = 32, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(5410), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(5424), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(5426), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(5428), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(5430), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(5440), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(5450), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(5452), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(5454), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, + STATE(2902), 1, sym__line, - STATE(3852), 1, + STATE(3546), 1, sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86637,7 +99783,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86661,71 +99807,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [21138] = 33, - ACTIONS(9), 1, + [43103] = 32, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(23), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(67), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(69), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(71), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(73), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(75), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(79), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(81), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(85), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(91), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(93), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(95), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(97), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(99), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(101), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(107), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - STATE(2609), 1, + STATE(2930), 1, sym__line, - STATE(3066), 1, + STATE(3547), 1, sym__inlines, - ACTIONS(7), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86733,7 +99876,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(591), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86757,71 +99900,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [21267] = 33, - ACTIONS(4019), 1, + [43228] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(4025), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(4039), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(4041), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(4043), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(4045), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(4055), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(4065), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(4067), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(4069), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, + STATE(2944), 1, sym__line, - STATE(3856), 1, + STATE(3548), 1, sym__inlines, - ACTIONS(5870), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86829,7 +99969,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86853,71 +99993,68 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [21396] = 33, - ACTIONS(4178), 1, + [43353] = 32, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(4184), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(4198), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(4200), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(4202), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(4204), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(4214), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(4224), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(4226), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(4228), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, + STATE(2944), 1, sym__line, - STATE(3857), 1, + STATE(4044), 1, sym__inlines, - ACTIONS(5874), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -86925,7 +100062,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86949,71 +100086,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [21525] = 33, - ACTIONS(4337), 1, + [43478] = 31, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(4343), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(4357), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(4359), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(4361), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(4363), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(4373), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(4383), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(4385), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(4387), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, + STATE(3141), 1, sym__line, - STATE(3872), 1, - sym__inlines, - ACTIONS(5878), 7, + ACTIONS(3309), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87021,7 +100153,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, + STATE(636), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87045,71 +100177,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [21654] = 33, - ACTIONS(3095), 1, + [43600] = 31, + ACTIONS(3936), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, + ACTIONS(3938), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, + ACTIONS(3940), 1, anon_sym_DOLLAR, - ACTIONS(3101), 1, + ACTIONS(3942), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, + ACTIONS(3944), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, + ACTIONS(3946), 1, aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, + ACTIONS(3948), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + ACTIONS(3952), 1, sym__code_span_start, - ACTIONS(3115), 1, + ACTIONS(3954), 1, sym__highlight_span_start, - ACTIONS(3117), 1, + ACTIONS(3956), 1, sym__insert_span_start, - ACTIONS(3119), 1, + ACTIONS(3958), 1, sym__delete_span_start, - ACTIONS(3121), 1, + ACTIONS(3960), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, + ACTIONS(3962), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, + ACTIONS(3964), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, + ACTIONS(3966), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, + ACTIONS(3968), 1, sym__shortcode_open, - ACTIONS(3131), 1, + ACTIONS(3970), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, + ACTIONS(3972), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, + ACTIONS(3974), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, + ACTIONS(3976), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, + ACTIONS(3978), 1, sym__strikeout_open, - ACTIONS(3141), 1, + ACTIONS(3980), 1, sym__subscript_open, - ACTIONS(3143), 1, + ACTIONS(3982), 1, sym__superscript_open, - ACTIONS(3145), 1, + ACTIONS(3984), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, + ACTIONS(3986), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, + ACTIONS(3988), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, + ACTIONS(3990), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, + ACTIONS(3992), 1, sym__emphasis_open_underscore, - STATE(2563), 1, - sym__inlines, - STATE(2576), 1, + STATE(3344), 1, sym__line, - ACTIONS(3093), 7, + ACTIONS(5504), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87117,7 +100244,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, + STATE(651), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87141,71 +100268,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [21783] = 33, - ACTIONS(5086), 1, + [43722] = 31, + ACTIONS(4546), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, + ACTIONS(4548), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, + ACTIONS(4550), 1, anon_sym_DOLLAR, - ACTIONS(5092), 1, + ACTIONS(4552), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, + ACTIONS(4554), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + ACTIONS(4556), 1, aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, + ACTIONS(4558), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + ACTIONS(4562), 1, sym__code_span_start, - ACTIONS(5106), 1, + ACTIONS(4564), 1, sym__highlight_span_start, - ACTIONS(5108), 1, + ACTIONS(4566), 1, sym__insert_span_start, - ACTIONS(5110), 1, + ACTIONS(4568), 1, sym__delete_span_start, - ACTIONS(5112), 1, + ACTIONS(4570), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, + ACTIONS(4572), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, + ACTIONS(4574), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, + ACTIONS(4576), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, + ACTIONS(4578), 1, sym__shortcode_open, - ACTIONS(5122), 1, + ACTIONS(4580), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, + ACTIONS(4582), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, + ACTIONS(4584), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, + ACTIONS(4586), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, + ACTIONS(4588), 1, sym__strikeout_open, - ACTIONS(5132), 1, + ACTIONS(4590), 1, sym__subscript_open, - ACTIONS(5134), 1, + ACTIONS(4592), 1, sym__superscript_open, - ACTIONS(5136), 1, + ACTIONS(4594), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, + ACTIONS(4596), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, + ACTIONS(4598), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, + ACTIONS(4600), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, + ACTIONS(4602), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, + STATE(3269), 1, sym__line, - STATE(3884), 1, - sym__inlines, - ACTIONS(5866), 7, + ACTIONS(5796), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87213,7 +100335,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, + STATE(631), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87237,71 +100359,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [21912] = 33, - ACTIONS(5245), 1, + [43844] = 31, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, + ACTIONS(3998), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, + ACTIONS(4000), 1, anon_sym_DOLLAR, - ACTIONS(5251), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, + ACTIONS(4006), 1, aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, + ACTIONS(4008), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + ACTIONS(4012), 1, sym__code_span_start, - ACTIONS(5265), 1, + ACTIONS(4014), 1, sym__highlight_span_start, - ACTIONS(5267), 1, + ACTIONS(4016), 1, sym__insert_span_start, - ACTIONS(5269), 1, + ACTIONS(4018), 1, sym__delete_span_start, - ACTIONS(5271), 1, + ACTIONS(4020), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, + ACTIONS(4022), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, + ACTIONS(4024), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, + ACTIONS(4026), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, + ACTIONS(4028), 1, sym__shortcode_open, - ACTIONS(5281), 1, + ACTIONS(4030), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, + ACTIONS(4032), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, + ACTIONS(4034), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, + ACTIONS(4036), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, + ACTIONS(4038), 1, sym__strikeout_open, - ACTIONS(5291), 1, + ACTIONS(4040), 1, sym__subscript_open, - ACTIONS(5293), 1, + ACTIONS(4042), 1, sym__superscript_open, - ACTIONS(5295), 1, + ACTIONS(4044), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, + ACTIONS(4046), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, + ACTIONS(4048), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, + ACTIONS(4050), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, + ACTIONS(4052), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, + STATE(3395), 1, sym__line, - STATE(3885), 1, - sym__inlines, - ACTIONS(5882), 7, + ACTIONS(5498), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87309,7 +100426,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, + STATE(620), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87333,71 +100450,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [22041] = 33, - ACTIONS(5404), 1, + [43966] = 31, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(5410), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(5424), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(5426), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(5428), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(5430), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(5440), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(5450), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(5452), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(5454), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, + STATE(3338), 1, sym__line, - STATE(3888), 1, - sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5794), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87405,7 +100517,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, + STATE(627), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87429,71 +100541,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [22170] = 33, - ACTIONS(4019), 1, + [44088] = 31, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(4025), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(4039), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(4041), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(4043), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(4045), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(4055), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(4065), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(4067), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(4069), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, + STATE(3273), 1, sym__line, - STATE(3894), 1, - sym__inlines, - ACTIONS(5870), 7, + ACTIONS(5784), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87501,7 +100608,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, + STATE(624), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87525,71 +100632,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [22299] = 33, - ACTIONS(4178), 1, + [44210] = 31, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(4184), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(4198), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(4200), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(4202), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(4204), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(4214), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(4224), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(4226), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(4228), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, + STATE(3207), 1, sym__line, - STATE(3898), 1, - sym__inlines, - ACTIONS(5874), 7, + ACTIONS(7), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87597,7 +100699,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, + STATE(613), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87621,71 +100723,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [22428] = 33, - ACTIONS(4337), 1, + [44332] = 31, + ACTIONS(2143), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, + ACTIONS(2147), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, + ACTIONS(2151), 1, anon_sym_DOLLAR, - ACTIONS(4343), 1, + ACTIONS(2153), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, + ACTIONS(2155), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, + ACTIONS(2157), 1, aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, + ACTIONS(2159), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + ACTIONS(2165), 1, sym__code_span_start, - ACTIONS(4357), 1, + ACTIONS(2167), 1, sym__highlight_span_start, - ACTIONS(4359), 1, + ACTIONS(2169), 1, sym__insert_span_start, - ACTIONS(4361), 1, + ACTIONS(2171), 1, sym__delete_span_start, - ACTIONS(4363), 1, + ACTIONS(2173), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, + ACTIONS(2175), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, + ACTIONS(2177), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, + ACTIONS(2179), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, + ACTIONS(2181), 1, sym__shortcode_open, - ACTIONS(4373), 1, + ACTIONS(2183), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, + ACTIONS(2185), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, + ACTIONS(2187), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, + ACTIONS(2189), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, + ACTIONS(2191), 1, sym__strikeout_open, - ACTIONS(4383), 1, + ACTIONS(2193), 1, sym__subscript_open, - ACTIONS(4385), 1, + ACTIONS(2195), 1, sym__superscript_open, - ACTIONS(4387), 1, + ACTIONS(2197), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, + ACTIONS(2199), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, + ACTIONS(2201), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, + ACTIONS(2203), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, + ACTIONS(2205), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, + STATE(3250), 1, sym__line, - STATE(3901), 1, - sym__inlines, - ACTIONS(5878), 7, + ACTIONS(2141), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87693,7 +100790,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, + STATE(578), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87717,71 +100814,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [22557] = 33, - ACTIONS(4768), 1, + [44454] = 31, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(4774), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(4788), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(4790), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(4792), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(4794), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(4804), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(4814), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(4816), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(4818), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, + STATE(3290), 1, sym__line, - STATE(3906), 1, - sym__inlines, - ACTIONS(5862), 7, + ACTIONS(5788), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87789,7 +100881,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, + STATE(639), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87813,71 +100905,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [22686] = 33, - ACTIONS(3095), 1, + [44576] = 31, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(3101), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(3115), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(3117), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(3119), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(3121), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(3131), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(3141), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(3143), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(3145), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - STATE(2573), 1, - sym__inlines, - STATE(2576), 1, + STATE(3314), 1, sym__line, - ACTIONS(3093), 7, + ACTIONS(5792), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87885,7 +100972,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, + STATE(650), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87909,71 +100996,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [22815] = 33, - ACTIONS(5086), 1, + [44698] = 31, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(5092), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(5106), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(5108), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(5110), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(5112), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(5122), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(5132), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(5134), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(5136), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, + STATE(3393), 1, sym__line, - STATE(3625), 1, - sym__inlines, - ACTIONS(5866), 7, + ACTIONS(5790), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -87981,7 +101063,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, + STATE(647), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88005,71 +101087,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [22944] = 33, - ACTIONS(5245), 1, + [44820] = 31, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(5251), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(5265), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(5267), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(5269), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(5271), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(5281), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(5291), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(5293), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(5295), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, + STATE(3308), 1, sym__line, - STATE(3626), 1, - sym__inlines, - ACTIONS(5882), 7, + ACTIONS(5786), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88077,7 +101154,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, + STATE(652), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88101,71 +101178,66 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [23073] = 33, - ACTIONS(5404), 1, + [44942] = 31, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(5410), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(5424), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(5426), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(5428), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(5430), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(5440), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(5450), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(5452), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(5454), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, + STATE(3275), 1, sym__line, - STATE(3627), 1, - sym__inlines, - ACTIONS(5886), 7, + ACTIONS(2955), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88173,7 +101245,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, + STATE(646), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88197,71 +101269,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [23202] = 33, - ACTIONS(4019), 1, + [45064] = 30, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(4240), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, + ACTIONS(4242), 1, anon_sym_DOLLAR, - ACTIONS(4025), 1, + ACTIONS(4244), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, + ACTIONS(4246), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(4248), 1, aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, + ACTIONS(4250), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + ACTIONS(4254), 1, sym__code_span_start, - ACTIONS(4039), 1, + ACTIONS(4256), 1, sym__highlight_span_start, - ACTIONS(4041), 1, + ACTIONS(4258), 1, sym__insert_span_start, - ACTIONS(4043), 1, + ACTIONS(4260), 1, sym__delete_span_start, - ACTIONS(4045), 1, + ACTIONS(4262), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, + ACTIONS(4264), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, + ACTIONS(4266), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, + ACTIONS(4268), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, + ACTIONS(4270), 1, sym__shortcode_open, - ACTIONS(4055), 1, + ACTIONS(4272), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, + ACTIONS(4274), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, + ACTIONS(4276), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, + ACTIONS(4278), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, + ACTIONS(4280), 1, sym__strikeout_open, - ACTIONS(4065), 1, + ACTIONS(4282), 1, sym__subscript_open, - ACTIONS(4067), 1, + ACTIONS(4284), 1, sym__superscript_open, - ACTIONS(4069), 1, + ACTIONS(4286), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, + ACTIONS(4288), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, + ACTIONS(4290), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, + ACTIONS(4292), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, + ACTIONS(4294), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, - sym__line, - STATE(3669), 1, - sym__inlines, - ACTIONS(5870), 7, + ACTIONS(5798), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88269,7 +101334,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, + STATE(2167), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88293,71 +101358,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [23331] = 33, - ACTIONS(4178), 1, + [45183] = 30, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, + ACTIONS(3313), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, + ACTIONS(3315), 1, anon_sym_DOLLAR, - ACTIONS(4184), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, + ACTIONS(3319), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(3321), 1, aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, + ACTIONS(3323), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(3327), 1, sym__code_span_start, - ACTIONS(4198), 1, + ACTIONS(3329), 1, sym__highlight_span_start, - ACTIONS(4200), 1, + ACTIONS(3331), 1, sym__insert_span_start, - ACTIONS(4202), 1, + ACTIONS(3333), 1, sym__delete_span_start, - ACTIONS(4204), 1, + ACTIONS(3335), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, + ACTIONS(3337), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, + ACTIONS(3339), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, + ACTIONS(3341), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, + ACTIONS(3343), 1, sym__shortcode_open, - ACTIONS(4214), 1, + ACTIONS(3345), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, + ACTIONS(3347), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, + ACTIONS(3349), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, + ACTIONS(3351), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, + ACTIONS(3353), 1, sym__strikeout_open, - ACTIONS(4224), 1, + ACTIONS(3355), 1, sym__subscript_open, - ACTIONS(4226), 1, + ACTIONS(3357), 1, sym__superscript_open, - ACTIONS(4228), 1, + ACTIONS(3359), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, + ACTIONS(3361), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, + ACTIONS(3363), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, + ACTIONS(3365), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, + ACTIONS(3367), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, - sym__line, - STATE(3670), 1, - sym__inlines, - ACTIONS(5874), 7, + ACTIONS(5800), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88365,7 +101423,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, + STATE(1577), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88389,71 +101447,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [23460] = 33, - ACTIONS(4337), 1, + [45302] = 30, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, + ACTIONS(4392), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(4343), 1, + ACTIONS(4396), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, + ACTIONS(4400), 1, aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, + ACTIONS(4402), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + ACTIONS(4406), 1, sym__code_span_start, - ACTIONS(4357), 1, + ACTIONS(4408), 1, sym__highlight_span_start, - ACTIONS(4359), 1, + ACTIONS(4410), 1, sym__insert_span_start, - ACTIONS(4361), 1, + ACTIONS(4412), 1, sym__delete_span_start, - ACTIONS(4363), 1, + ACTIONS(4414), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, + ACTIONS(4416), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, + ACTIONS(4418), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, + ACTIONS(4420), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, + ACTIONS(4422), 1, sym__shortcode_open, - ACTIONS(4373), 1, + ACTIONS(4424), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, + ACTIONS(4426), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, + ACTIONS(4428), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, + ACTIONS(4430), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, + ACTIONS(4432), 1, sym__strikeout_open, - ACTIONS(4383), 1, + ACTIONS(4434), 1, sym__subscript_open, - ACTIONS(4385), 1, + ACTIONS(4436), 1, sym__superscript_open, - ACTIONS(4387), 1, + ACTIONS(4438), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, + ACTIONS(4440), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, + ACTIONS(4442), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, + ACTIONS(4444), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, + ACTIONS(4446), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, - sym__line, - STATE(3671), 1, - sym__inlines, - ACTIONS(5878), 7, + ACTIONS(5802), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88461,7 +101512,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, + STATE(2237), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88485,71 +101536,153 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [23589] = 33, - ACTIONS(4768), 1, + [45421] = 30, + ACTIONS(3936), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(3938), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, + ACTIONS(3940), 1, anon_sym_DOLLAR, - ACTIONS(4774), 1, + ACTIONS(3942), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + ACTIONS(3944), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + ACTIONS(3946), 1, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, + ACTIONS(3948), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(3952), 1, sym__code_span_start, - ACTIONS(4788), 1, + ACTIONS(3954), 1, sym__highlight_span_start, - ACTIONS(4790), 1, + ACTIONS(3956), 1, sym__insert_span_start, - ACTIONS(4792), 1, + ACTIONS(3958), 1, sym__delete_span_start, - ACTIONS(4794), 1, + ACTIONS(3960), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, + ACTIONS(3962), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, + ACTIONS(3964), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, + ACTIONS(3966), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, + ACTIONS(3968), 1, sym__shortcode_open, - ACTIONS(4804), 1, + ACTIONS(3970), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, + ACTIONS(3972), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, + ACTIONS(3974), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, + ACTIONS(3976), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, + ACTIONS(3978), 1, sym__strikeout_open, - ACTIONS(4814), 1, + ACTIONS(3980), 1, sym__subscript_open, - ACTIONS(4816), 1, + ACTIONS(3982), 1, sym__superscript_open, - ACTIONS(4818), 1, + ACTIONS(3984), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, + ACTIONS(3986), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, + ACTIONS(3988), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, + ACTIONS(3990), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, + ACTIONS(3992), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, - sym__line, - STATE(3679), 1, - sym__inlines, - ACTIONS(5862), 7, + ACTIONS(5804), 7, + sym__html_comment, + sym__autolink, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + STATE(2035), 23, + sym_pandoc_span, + sym_pandoc_image, + sym_pandoc_math, + sym_pandoc_display_math, + sym_pandoc_code_span, + sym_pandoc_single_quote, + sym_pandoc_double_quote, + sym_insert, + sym_delete, + sym_edit_comment, + sym_highlight, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_shortcode, + sym_citation, + sym_inline_note, + sym_pandoc_superscript, + sym_pandoc_subscript, + sym_pandoc_strikeout, + sym_pandoc_emph, + sym_pandoc_strong, + sym_pandoc_str, + [45540] = 30, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4548), 1, + anon_sym_BANG_LBRACK, + ACTIONS(4550), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_DOLLAR_DOLLAR, + ACTIONS(4554), 1, + anon_sym_LBRACE, + ACTIONS(4556), 1, + aux_sym_pandoc_str_token1, + ACTIONS(4558), 1, + anon_sym_PIPE, + ACTIONS(4562), 1, + sym__code_span_start, + ACTIONS(4564), 1, + sym__highlight_span_start, + ACTIONS(4566), 1, + sym__insert_span_start, + ACTIONS(4568), 1, + sym__delete_span_start, + ACTIONS(4570), 1, + sym__edit_comment_span_start, + ACTIONS(4572), 1, + sym__single_quote_span_open, + ACTIONS(4574), 1, + sym__double_quote_span_open, + ACTIONS(4576), 1, + sym__shortcode_open_escaped, + ACTIONS(4578), 1, + sym__shortcode_open, + ACTIONS(4580), 1, + sym__cite_author_in_text_with_open_bracket, + ACTIONS(4582), 1, + sym__cite_suppress_author_with_open_bracket, + ACTIONS(4584), 1, + sym__cite_author_in_text, + ACTIONS(4586), 1, + sym__cite_suppress_author, + ACTIONS(4588), 1, + sym__strikeout_open, + ACTIONS(4590), 1, + sym__subscript_open, + ACTIONS(4592), 1, + sym__superscript_open, + ACTIONS(4594), 1, + sym__inline_note_start_token, + ACTIONS(4596), 1, + sym__strong_emphasis_open_star, + ACTIONS(4598), 1, + sym__strong_emphasis_open_underscore, + ACTIONS(4600), 1, + sym__emphasis_open_star, + ACTIONS(4602), 1, + sym__emphasis_open_underscore, + ACTIONS(5806), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88557,7 +101690,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, + STATE(1497), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88581,71 +101714,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [23718] = 33, - ACTIONS(3095), 1, + [45659] = 30, + ACTIONS(3996), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, + ACTIONS(3998), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, + ACTIONS(4000), 1, anon_sym_DOLLAR, - ACTIONS(3101), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, + ACTIONS(4004), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, + ACTIONS(4006), 1, aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, + ACTIONS(4008), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + ACTIONS(4012), 1, sym__code_span_start, - ACTIONS(3115), 1, + ACTIONS(4014), 1, sym__highlight_span_start, - ACTIONS(3117), 1, + ACTIONS(4016), 1, sym__insert_span_start, - ACTIONS(3119), 1, + ACTIONS(4018), 1, sym__delete_span_start, - ACTIONS(3121), 1, + ACTIONS(4020), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, + ACTIONS(4022), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, + ACTIONS(4024), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, + ACTIONS(4026), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, + ACTIONS(4028), 1, sym__shortcode_open, - ACTIONS(3131), 1, + ACTIONS(4030), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, + ACTIONS(4032), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, + ACTIONS(4034), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, + ACTIONS(4036), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, + ACTIONS(4038), 1, sym__strikeout_open, - ACTIONS(3141), 1, + ACTIONS(4040), 1, sym__subscript_open, - ACTIONS(3143), 1, + ACTIONS(4042), 1, sym__superscript_open, - ACTIONS(3145), 1, + ACTIONS(4044), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, + ACTIONS(4046), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, + ACTIONS(4048), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, + ACTIONS(4050), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, + ACTIONS(4052), 1, sym__emphasis_open_underscore, - STATE(2539), 1, - sym__inlines, - STATE(2576), 1, - sym__line, - ACTIONS(3093), 7, + ACTIONS(5808), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88653,7 +101779,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, + STATE(2101), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88677,71 +101803,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [23847] = 33, - ACTIONS(5086), 1, + [45778] = 30, + ACTIONS(5340), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, + ACTIONS(5342), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, + ACTIONS(5344), 1, anon_sym_DOLLAR, - ACTIONS(5092), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, + ACTIONS(5348), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + ACTIONS(5350), 1, aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, + ACTIONS(5352), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + ACTIONS(5356), 1, sym__code_span_start, - ACTIONS(5106), 1, + ACTIONS(5358), 1, sym__highlight_span_start, - ACTIONS(5108), 1, + ACTIONS(5360), 1, sym__insert_span_start, - ACTIONS(5110), 1, + ACTIONS(5362), 1, sym__delete_span_start, - ACTIONS(5112), 1, + ACTIONS(5364), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, + ACTIONS(5366), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, + ACTIONS(5368), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, + ACTIONS(5370), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, + ACTIONS(5372), 1, sym__shortcode_open, - ACTIONS(5122), 1, + ACTIONS(5374), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, + ACTIONS(5376), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, + ACTIONS(5378), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, + ACTIONS(5380), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, + ACTIONS(5382), 1, sym__strikeout_open, - ACTIONS(5132), 1, + ACTIONS(5384), 1, sym__subscript_open, - ACTIONS(5134), 1, + ACTIONS(5386), 1, sym__superscript_open, - ACTIONS(5136), 1, + ACTIONS(5388), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, + ACTIONS(5392), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, + ACTIONS(5394), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, + ACTIONS(5396), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3482), 1, - sym__inlines, - ACTIONS(5866), 7, + ACTIONS(5810), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88749,7 +101868,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, + STATE(1722), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88773,71 +101892,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [23976] = 33, - ACTIONS(3095), 1, + [45897] = 30, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, + ACTIONS(4916), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(3101), 1, + ACTIONS(4920), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, + ACTIONS(4924), 1, aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, + ACTIONS(4926), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + ACTIONS(4930), 1, sym__code_span_start, - ACTIONS(3115), 1, + ACTIONS(4932), 1, sym__highlight_span_start, - ACTIONS(3117), 1, + ACTIONS(4934), 1, sym__insert_span_start, - ACTIONS(3119), 1, + ACTIONS(4936), 1, sym__delete_span_start, - ACTIONS(3121), 1, + ACTIONS(4938), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, + ACTIONS(4940), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, + ACTIONS(4942), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, + ACTIONS(4944), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, + ACTIONS(4946), 1, sym__shortcode_open, - ACTIONS(3131), 1, + ACTIONS(4948), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, + ACTIONS(4950), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, + ACTIONS(4952), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, + ACTIONS(4954), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, + ACTIONS(4956), 1, sym__strikeout_open, - ACTIONS(3141), 1, + ACTIONS(4958), 1, sym__subscript_open, - ACTIONS(3143), 1, + ACTIONS(4960), 1, sym__superscript_open, - ACTIONS(3145), 1, + ACTIONS(4962), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, + ACTIONS(4964), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, + ACTIONS(4966), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, + ACTIONS(4968), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, + ACTIONS(4970), 1, sym__emphasis_open_underscore, - STATE(2576), 1, - sym__line, - STATE(2587), 1, - sym__inlines, - ACTIONS(3093), 7, + ACTIONS(5812), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88845,7 +101957,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, + STATE(1649), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88869,71 +101981,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [24105] = 33, - ACTIONS(5404), 1, + [46016] = 30, + ACTIONS(4758), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, + ACTIONS(4760), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, + ACTIONS(4762), 1, anon_sym_DOLLAR, - ACTIONS(5410), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, + ACTIONS(4766), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, + ACTIONS(4768), 1, aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + ACTIONS(4774), 1, sym__code_span_start, - ACTIONS(5424), 1, + ACTIONS(4776), 1, sym__highlight_span_start, - ACTIONS(5426), 1, + ACTIONS(4778), 1, sym__insert_span_start, - ACTIONS(5428), 1, + ACTIONS(4780), 1, sym__delete_span_start, - ACTIONS(5430), 1, + ACTIONS(4782), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, + ACTIONS(4784), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, + ACTIONS(4786), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, + ACTIONS(4788), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, + ACTIONS(4790), 1, sym__shortcode_open, - ACTIONS(5440), 1, + ACTIONS(4792), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, + ACTIONS(4794), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, + ACTIONS(4796), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, + ACTIONS(4798), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, + ACTIONS(4800), 1, sym__strikeout_open, - ACTIONS(5450), 1, + ACTIONS(4802), 1, sym__subscript_open, - ACTIONS(5452), 1, + ACTIONS(4804), 1, sym__superscript_open, - ACTIONS(5454), 1, + ACTIONS(4806), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, + ACTIONS(4808), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, + ACTIONS(4810), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, + ACTIONS(4812), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, + ACTIONS(4814), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, - sym__line, - STATE(3501), 1, - sym__inlines, - ACTIONS(5886), 7, + ACTIONS(5814), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -88941,7 +102046,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, + STATE(1872), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88965,71 +102070,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [24234] = 33, - ACTIONS(4019), 1, + [46135] = 30, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(4025), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(4039), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(4041), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(4043), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(4045), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(4055), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(4065), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(4067), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(4069), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, - sym__line, - STATE(3534), 1, - sym__inlines, - ACTIONS(5870), 7, + ACTIONS(5816), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89037,7 +102135,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, + STATE(1193), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89061,71 +102159,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [24363] = 33, - ACTIONS(4178), 1, + [46254] = 30, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, + ACTIONS(4700), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, + ACTIONS(4702), 1, anon_sym_DOLLAR, - ACTIONS(4184), 1, + ACTIONS(4704), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, + ACTIONS(4706), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(4708), 1, aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, + ACTIONS(4710), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4714), 1, sym__code_span_start, - ACTIONS(4198), 1, + ACTIONS(4716), 1, sym__highlight_span_start, - ACTIONS(4200), 1, + ACTIONS(4718), 1, sym__insert_span_start, - ACTIONS(4202), 1, + ACTIONS(4720), 1, sym__delete_span_start, - ACTIONS(4204), 1, + ACTIONS(4722), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, + ACTIONS(4724), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, + ACTIONS(4726), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, + ACTIONS(4728), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, + ACTIONS(4730), 1, sym__shortcode_open, - ACTIONS(4214), 1, + ACTIONS(4732), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, + ACTIONS(4734), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, + ACTIONS(4736), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, + ACTIONS(4738), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, + ACTIONS(4740), 1, sym__strikeout_open, - ACTIONS(4224), 1, + ACTIONS(4742), 1, sym__subscript_open, - ACTIONS(4226), 1, + ACTIONS(4744), 1, sym__superscript_open, - ACTIONS(4228), 1, + ACTIONS(4746), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, + ACTIONS(4748), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, + ACTIONS(4750), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, + ACTIONS(4752), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, + ACTIONS(4754), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, - sym__line, - STATE(3536), 1, - sym__inlines, - ACTIONS(5874), 7, + ACTIONS(5818), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89133,7 +102224,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, + STATE(1796), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89157,71 +102248,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [24492] = 33, - ACTIONS(4337), 1, + [46373] = 30, + ACTIONS(2143), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, + ACTIONS(2147), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, + ACTIONS(2151), 1, anon_sym_DOLLAR, - ACTIONS(4343), 1, + ACTIONS(2153), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, + ACTIONS(2155), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, + ACTIONS(2157), 1, aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, + ACTIONS(2159), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + ACTIONS(2165), 1, sym__code_span_start, - ACTIONS(4357), 1, + ACTIONS(2167), 1, sym__highlight_span_start, - ACTIONS(4359), 1, + ACTIONS(2169), 1, sym__insert_span_start, - ACTIONS(4361), 1, + ACTIONS(2171), 1, sym__delete_span_start, - ACTIONS(4363), 1, + ACTIONS(2173), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, + ACTIONS(2175), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, + ACTIONS(2177), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, + ACTIONS(2179), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, + ACTIONS(2181), 1, sym__shortcode_open, - ACTIONS(4373), 1, + ACTIONS(2183), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, + ACTIONS(2185), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, + ACTIONS(2187), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, + ACTIONS(2189), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, + ACTIONS(2191), 1, sym__strikeout_open, - ACTIONS(4383), 1, + ACTIONS(2193), 1, sym__subscript_open, - ACTIONS(4385), 1, + ACTIONS(2195), 1, sym__superscript_open, - ACTIONS(4387), 1, + ACTIONS(2197), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, + ACTIONS(2199), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, + ACTIONS(2201), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, + ACTIONS(2203), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, + ACTIONS(2205), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, - sym__line, - STATE(3543), 1, - sym__inlines, - ACTIONS(5878), 7, + ACTIONS(5820), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89229,7 +102313,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, + STATE(1415), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89253,71 +102337,64 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [24621] = 33, - ACTIONS(4768), 1, + [46492] = 30, + ACTIONS(2957), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(2959), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, + ACTIONS(2961), 1, anon_sym_DOLLAR, - ACTIONS(4774), 1, + ACTIONS(2963), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + ACTIONS(2969), 1, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, + ACTIONS(2971), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(2977), 1, sym__code_span_start, - ACTIONS(4788), 1, + ACTIONS(2979), 1, sym__highlight_span_start, - ACTIONS(4790), 1, + ACTIONS(2981), 1, sym__insert_span_start, - ACTIONS(4792), 1, + ACTIONS(2983), 1, sym__delete_span_start, - ACTIONS(4794), 1, + ACTIONS(2985), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, + ACTIONS(2987), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, + ACTIONS(2989), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, + ACTIONS(2991), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, + ACTIONS(2993), 1, sym__shortcode_open, - ACTIONS(4804), 1, + ACTIONS(2995), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, + ACTIONS(2997), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, + ACTIONS(2999), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, + ACTIONS(3001), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, + ACTIONS(3003), 1, sym__strikeout_open, - ACTIONS(4814), 1, + ACTIONS(3005), 1, sym__subscript_open, - ACTIONS(4816), 1, + ACTIONS(3007), 1, sym__superscript_open, - ACTIONS(4818), 1, + ACTIONS(3009), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, + ACTIONS(3011), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, + ACTIONS(3013), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, + ACTIONS(3015), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, + ACTIONS(3017), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, - sym__line, - STATE(3578), 1, - sym__inlines, - ACTIONS(5862), 7, + ACTIONS(5822), 7, sym__html_comment, sym__autolink, sym_inline_note_reference, @@ -89325,7 +102402,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, + STATE(1629), 23, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89349,10116 +102426,4865 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_emph, sym_pandoc_strong, sym_pandoc_str, - sym__prose_punctuation, - [24750] = 33, - ACTIONS(3095), 1, + [46611] = 3, + ACTIONS(5828), 1, + sym_block_continuation, + ACTIONS(5826), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5824), 39, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + anon_sym_COLON, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LBRACK, - ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + sym__whitespace, + [46660] = 4, + ACTIONS(2021), 1, + anon_sym_LBRACE, + STATE(975), 1, + sym__pandoc_attr_specifier, + ACTIONS(5832), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5830), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(3115), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, sym__emphasis_open_underscore, - STATE(2570), 1, - sym__inlines, - STATE(2576), 1, - sym__line, - ACTIONS(3093), 7, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [46710] = 2, + ACTIONS(5836), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5834), 39, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__code_span_start, sym__html_comment, sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, + anon_sym_COLON, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [24879] = 33, - ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + sym__whitespace, + [46756] = 4, + ACTIONS(2021), 1, + anon_sym_LBRACE, + STATE(970), 1, + sym__pandoc_attr_specifier, + ACTIONS(5840), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5838), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5106), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3284), 1, - sym__inlines, - ACTIONS(5866), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [25008] = 33, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, - anon_sym_LBRACE, - ACTIONS(5255), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + sym__whitespace, + [46806] = 3, + ACTIONS(5842), 1, + sym_block_continuation, + ACTIONS(5826), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5824), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, - sym__line, - STATE(3287), 1, - sym__inlines, - ACTIONS(5882), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [25137] = 33, - ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + sym__whitespace, + [46854] = 4, + ACTIONS(2021), 1, + anon_sym_LBRACE, + STATE(977), 1, + sym__pandoc_attr_specifier, + ACTIONS(5846), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5844), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5424), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, - sym__line, - STATE(3288), 1, - sym__inlines, - ACTIONS(5886), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [25266] = 33, - ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, + anon_sym_PIPE, + sym__whitespace, + [46904] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + STATE(981), 1, + sym__pandoc_attr_specifier, + ACTIONS(5850), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4037), 1, + ACTIONS(5848), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4039), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, - sym__line, - STATE(3297), 1, - sym__inlines, - ACTIONS(5870), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [25395] = 33, - ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, - anon_sym_DOLLAR, - ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, + anon_sym_PIPE, + sym__whitespace, + [46954] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + STATE(971), 1, + sym__pandoc_attr_specifier, + ACTIONS(5854), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, - anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(5852), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4198), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, - sym__line, - STATE(3298), 1, - sym__inlines, - ACTIONS(5874), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [25524] = 33, - ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, + anon_sym_PIPE, + sym__whitespace, + [47004] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, + STATE(972), 1, + sym__pandoc_attr_specifier, + ACTIONS(5858), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, - anon_sym_PIPE, - ACTIONS(4355), 1, + ACTIONS(5856), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4357), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, - sym__line, - STATE(3302), 1, - sym__inlines, - ACTIONS(5878), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [25653] = 33, - ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + anon_sym_PIPE, + sym__whitespace, + [47054] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + STATE(966), 1, + sym__pandoc_attr_specifier, + ACTIONS(5862), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, - anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(5860), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4788), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, - sym__line, - STATE(3304), 1, - sym__inlines, - ACTIONS(5862), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [25782] = 33, - ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, + anon_sym_PIPE, + sym__whitespace, + [47104] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, + STATE(953), 1, + sym__pandoc_attr_specifier, + ACTIONS(5866), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, - anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + ACTIONS(5864), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(3115), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, sym__emphasis_open_underscore, - STATE(2576), 1, - sym__line, - STATE(2590), 1, - sym__inlines, - ACTIONS(3093), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [25911] = 33, - ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, + anon_sym_PIPE, + sym__whitespace, + [47154] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + STATE(982), 1, + sym__pandoc_attr_specifier, + ACTIONS(5870), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, - anon_sym_PIPE, - ACTIONS(5104), 1, + ACTIONS(5868), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5106), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3444), 1, - sym__inlines, - ACTIONS(5866), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [26040] = 33, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, + anon_sym_PIPE, + sym__whitespace, + [47204] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, + STATE(973), 1, + sym__pandoc_attr_specifier, + ACTIONS(5874), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, - anon_sym_PIPE, - ACTIONS(5263), 1, + ACTIONS(5872), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, - sym__line, - STATE(3445), 1, - sym__inlines, - ACTIONS(5882), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [26169] = 33, - ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, + anon_sym_PIPE, + sym__whitespace, + [47254] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, + STATE(974), 1, + sym__pandoc_attr_specifier, + ACTIONS(5878), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, - anon_sym_PIPE, - ACTIONS(5422), 1, + ACTIONS(5876), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5424), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, - sym__line, - STATE(3446), 1, - sym__inlines, - ACTIONS(5886), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [47304] = 4, + ACTIONS(2021), 1, + anon_sym_LBRACE, + STATE(949), 1, sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [26298] = 33, - ACTIONS(4019), 1, + ACTIONS(5882), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5880), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LBRACK, - ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, + anon_sym_PIPE, + sym__whitespace, + [47354] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + STATE(976), 1, + sym__pandoc_attr_specifier, + ACTIONS(5886), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4037), 1, + ACTIONS(5884), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4039), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, - sym__line, - STATE(3449), 1, - sym__inlines, - ACTIONS(5870), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [26427] = 33, - ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, - anon_sym_DOLLAR, - ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, + anon_sym_PIPE, + sym__whitespace, + [47404] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + STATE(983), 1, + sym__pandoc_attr_specifier, + ACTIONS(5890), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, - anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(5888), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4198), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, - sym__line, - STATE(3452), 1, - sym__inlines, - ACTIONS(5874), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [26556] = 33, - ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, + anon_sym_PIPE, + sym__whitespace, + [47454] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, + STATE(984), 1, + sym__pandoc_attr_specifier, + ACTIONS(5894), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, - anon_sym_PIPE, - ACTIONS(4355), 1, + ACTIONS(5892), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4357), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, - sym__line, - STATE(3453), 1, - sym__inlines, - ACTIONS(5878), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [26685] = 33, - ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + anon_sym_PIPE, + sym__whitespace, + [47504] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + STATE(985), 1, + sym__pandoc_attr_specifier, + ACTIONS(5898), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, - anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(5896), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4788), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, - sym__line, - STATE(3459), 1, - sym__inlines, - ACTIONS(5862), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [26814] = 33, - ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, + anon_sym_PIPE, + sym__whitespace, + [47554] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, + STATE(986), 1, + sym__pandoc_attr_specifier, + ACTIONS(5902), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, - anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + ACTIONS(5900), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(3115), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, sym__emphasis_open_underscore, - STATE(2576), 1, - sym__line, - STATE(2607), 1, - sym__inlines, - ACTIONS(3093), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [26943] = 33, - ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, + anon_sym_PIPE, + sym__whitespace, + [47604] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + STATE(987), 1, + sym__pandoc_attr_specifier, + ACTIONS(5906), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, - anon_sym_PIPE, - ACTIONS(5104), 1, + ACTIONS(5904), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5106), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3598), 1, - sym__inlines, - ACTIONS(5866), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [27072] = 33, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, + anon_sym_PIPE, + sym__whitespace, + [47654] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, + STATE(988), 1, + sym__pandoc_attr_specifier, + ACTIONS(5910), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, - anon_sym_PIPE, - ACTIONS(5263), 1, + ACTIONS(5908), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, - sym__line, - STATE(3599), 1, - sym__inlines, - ACTIONS(5882), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [27201] = 33, - ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, + anon_sym_PIPE, + sym__whitespace, + [47704] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, + STATE(993), 1, + sym__pandoc_attr_specifier, + ACTIONS(5914), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, - anon_sym_PIPE, - ACTIONS(5422), 1, + ACTIONS(5912), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5424), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, - sym__line, - STATE(3600), 1, - sym__inlines, - ACTIONS(5886), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [27330] = 33, - ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, + anon_sym_PIPE, + sym__whitespace, + [47754] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + STATE(994), 1, + sym__pandoc_attr_specifier, + ACTIONS(5918), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4037), 1, + ACTIONS(5916), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4039), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, - sym__line, - STATE(3603), 1, - sym__inlines, - ACTIONS(5870), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [27459] = 33, - ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, - anon_sym_DOLLAR, - ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, + anon_sym_PIPE, + sym__whitespace, + [47804] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + STATE(950), 1, + sym__pandoc_attr_specifier, + ACTIONS(5922), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, - anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(5920), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4198), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, - sym__line, - STATE(3609), 1, - sym__inlines, - ACTIONS(5874), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [27588] = 33, - ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, + anon_sym_PIPE, + sym__whitespace, + [47854] = 4, + ACTIONS(5928), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, + STATE(969), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, - anon_sym_PIPE, - ACTIONS(4355), 1, + ACTIONS(5924), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4357), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, - sym__line, - STATE(3614), 1, - sym__inlines, - ACTIONS(5878), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [27717] = 33, - ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + anon_sym_PIPE, + sym__whitespace, + [47904] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + STATE(964), 1, + sym__pandoc_attr_specifier, + ACTIONS(5932), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, - anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(5930), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4788), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, - sym__line, - STATE(3622), 1, - sym__inlines, - ACTIONS(5862), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [27846] = 33, - ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, + anon_sym_PIPE, + sym__whitespace, + [47954] = 4, + ACTIONS(2021), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, + STATE(951), 1, + sym__pandoc_attr_specifier, + ACTIONS(5936), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, - anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + ACTIONS(5934), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(3115), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, sym__emphasis_open_underscore, - STATE(2576), 1, - sym__line, - STATE(2618), 1, - sym__inlines, - ACTIONS(3093), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [27975] = 33, - ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, - anon_sym_LBRACE, - ACTIONS(5096), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + sym__whitespace, + [48004] = 2, + ACTIONS(5938), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(2495), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5106), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3765), 1, - sym__inlines, - ACTIONS(5866), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [28104] = 33, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + sym__whitespace, + [48049] = 4, + ACTIONS(2155), 1, + anon_sym_LBRACE, + STATE(1061), 1, + sym__pandoc_attr_specifier, + ACTIONS(5914), 4, + aux_sym_pandoc_span_token1, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + sym__whitespace, + ACTIONS(5912), 34, + sym__soft_line_ending, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, - sym__line, - STATE(3769), 1, - sym__inlines, - ACTIONS(5882), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [28233] = 33, - ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, + anon_sym_PIPE, + [48098] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, + STATE(1062), 1, + sym__pandoc_attr_specifier, + ACTIONS(5918), 4, + aux_sym_pandoc_span_token1, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, - anon_sym_PIPE, - ACTIONS(5422), 1, + sym__whitespace, + ACTIONS(5916), 34, + sym__soft_line_ending, sym__code_span_start, - ACTIONS(5424), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, - sym__line, - STATE(3771), 1, - sym__inlines, - ACTIONS(5886), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [28362] = 33, - ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, - anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + [48147] = 2, + ACTIONS(5942), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5940), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4039), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, - sym__line, - STATE(3774), 1, - sym__inlines, - ACTIONS(5870), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [28491] = 33, - ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, - anon_sym_DOLLAR, - ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + sym__whitespace, + [48192] = 2, + ACTIONS(5946), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5944), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4198), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, - sym__line, - STATE(3775), 1, - sym__inlines, - ACTIONS(5874), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [28620] = 33, - ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + sym__whitespace, + [48237] = 2, + ACTIONS(5950), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5948), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4357), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, - sym__line, - STATE(3778), 1, - sym__inlines, - ACTIONS(5878), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [28749] = 33, - ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + sym__whitespace, + [48282] = 2, + ACTIONS(5954), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5952), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4788), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, - sym__emphasis_open_star, - ACTIONS(4826), 1, - sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, - sym__line, - STATE(3780), 1, - sym__inlines, - ACTIONS(5862), 7, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - STATE(646), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [28878] = 33, - ACTIONS(3095), 1, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, anon_sym_LBRACK, - ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + sym__whitespace, + [48327] = 2, + ACTIONS(5958), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5956), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(3115), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, sym__emphasis_open_underscore, - STATE(2543), 1, - sym__inlines, - STATE(2576), 1, - sym__line, - ACTIONS(3093), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [29007] = 33, - ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + sym__whitespace, + [48372] = 2, + ACTIONS(5962), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5960), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5106), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3473), 1, - sym__inlines, - ACTIONS(5866), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [29136] = 33, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + sym__whitespace, + [48417] = 2, + ACTIONS(5874), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5872), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, - sym__line, - STATE(3484), 1, - sym__inlines, - ACTIONS(5882), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [29265] = 33, - ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + sym__whitespace, + [48462] = 2, + ACTIONS(5966), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5964), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5424), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, - sym__line, - STATE(3665), 1, - sym__inlines, - ACTIONS(5886), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [29394] = 33, - ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + sym__whitespace, + [48507] = 4, + ACTIONS(17), 1, + anon_sym_LBRACE, + STATE(1151), 1, + sym__pandoc_attr_specifier, + ACTIONS(5862), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5860), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(4039), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, - sym__line, - STATE(3709), 1, - sym__inlines, - ACTIONS(5870), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [29523] = 33, - ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, - anon_sym_DOLLAR, - ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, - anon_sym_LBRACE, - ACTIONS(4188), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + sym__whitespace, + [48556] = 2, + ACTIONS(5970), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5968), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4198), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, - sym__line, - STATE(3712), 1, - sym__inlines, - ACTIONS(5874), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [29652] = 33, - ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + sym__whitespace, + [48601] = 2, + ACTIONS(5974), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5972), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4357), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, - sym__line, - STATE(3736), 1, - sym__inlines, - ACTIONS(5878), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [29781] = 33, - ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + sym__whitespace, + [48646] = 2, + ACTIONS(5978), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5976), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4788), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, - sym__line, - STATE(3784), 1, - sym__inlines, - ACTIONS(5862), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [29910] = 33, - ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + sym__whitespace, + [48691] = 2, + ACTIONS(5982), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5980), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(3115), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, sym__emphasis_open_underscore, - STATE(2548), 1, - sym__inlines, - STATE(2576), 1, - sym__line, - ACTIONS(3093), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [30039] = 33, - ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + sym__whitespace, + [48736] = 2, + ACTIONS(5986), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5984), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5106), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3560), 1, - sym__inlines, - ACTIONS(5866), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [30168] = 33, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + sym__whitespace, + [48781] = 2, + ACTIONS(5990), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5988), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, - sym__emphasis_open_star, - ACTIONS(5303), 1, - sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, - sym__line, - STATE(3567), 1, - sym__inlines, - ACTIONS(5882), 7, - sym__html_comment, - sym__autolink, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [30297] = 33, - ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + sym__whitespace, + [48826] = 2, + ACTIONS(5994), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5992), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5424), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, - sym__line, - STATE(3576), 1, - sym__inlines, - ACTIONS(5886), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [30426] = 33, - ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + sym__whitespace, + [48871] = 2, + ACTIONS(5998), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5996), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4039), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, - sym__line, - STATE(3579), 1, - sym__inlines, - ACTIONS(5870), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [30555] = 33, - ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, - anon_sym_DOLLAR, - ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + sym__whitespace, + [48916] = 2, + ACTIONS(6002), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6000), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4198), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, - sym__line, - STATE(3580), 1, - sym__inlines, - ACTIONS(5874), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [30684] = 33, - ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + sym__whitespace, + [48961] = 2, + ACTIONS(6006), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6004), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4357), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, - sym__line, - STATE(3581), 1, - sym__inlines, - ACTIONS(5878), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [30813] = 33, - ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + sym__whitespace, + [49006] = 2, + ACTIONS(6010), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6008), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4788), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, - sym__line, - STATE(3582), 1, - sym__inlines, - ACTIONS(5862), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [30942] = 33, - ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + sym__whitespace, + [49051] = 2, + ACTIONS(5870), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5868), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(3115), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, sym__emphasis_open_underscore, - STATE(2561), 1, - sym__inlines, - STATE(2576), 1, - sym__line, - ACTIONS(3093), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [31071] = 33, - ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + sym__whitespace, + [49096] = 2, + ACTIONS(6014), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6012), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5106), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3790), 1, - sym__inlines, - ACTIONS(5866), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [31200] = 33, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + sym__whitespace, + [49141] = 2, + ACTIONS(5894), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5892), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, - sym__line, - STATE(3804), 1, - sym__inlines, - ACTIONS(5882), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [31329] = 33, - ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + sym__whitespace, + [49186] = 2, + ACTIONS(6018), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6016), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5424), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, - sym__line, - STATE(3810), 1, - sym__inlines, - ACTIONS(5886), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [31458] = 33, - ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + sym__whitespace, + [49231] = 2, + ACTIONS(6022), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6020), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4039), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, - sym__line, - STATE(3814), 1, - sym__inlines, - ACTIONS(5870), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [31587] = 33, - ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, - anon_sym_DOLLAR, - ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + sym__whitespace, + [49276] = 2, + ACTIONS(6026), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6024), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4198), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, - sym__line, - STATE(3815), 1, - sym__inlines, - ACTIONS(5874), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [31716] = 33, - ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + sym__whitespace, + [49321] = 2, + ACTIONS(6030), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6028), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4357), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, - sym__line, - STATE(3816), 1, - sym__inlines, - ACTIONS(5878), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [31845] = 33, - ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + sym__whitespace, + [49366] = 2, + ACTIONS(6034), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6032), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4788), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, - sym__line, - STATE(3820), 1, - sym__inlines, - ACTIONS(5862), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [31974] = 33, - ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + sym__whitespace, + [49411] = 2, + ACTIONS(6038), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6036), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(3115), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, sym__emphasis_open_underscore, - STATE(2565), 1, - sym__inlines, - STATE(2576), 1, - sym__line, - ACTIONS(3093), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [32103] = 33, - ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + sym__whitespace, + [49456] = 2, + ACTIONS(6042), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6040), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5106), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3247), 1, - sym__inlines, - ACTIONS(5866), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [32232] = 33, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + sym__whitespace, + [49501] = 2, + ACTIONS(6046), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6044), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, - sym__line, - STATE(3248), 1, - sym__inlines, - ACTIONS(5882), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [32361] = 33, - ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + sym__whitespace, + [49546] = 2, + ACTIONS(6050), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6048), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5424), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, - sym__line, - STATE(3249), 1, - sym__inlines, - ACTIONS(5886), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [32490] = 33, - ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + sym__whitespace, + [49591] = 2, + ACTIONS(6054), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6052), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4039), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, - sym__line, - STATE(3251), 1, - sym__inlines, - ACTIONS(5870), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [32619] = 33, - ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, - anon_sym_DOLLAR, - ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + sym__whitespace, + [49636] = 2, + ACTIONS(6058), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6056), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4198), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, - sym__line, - STATE(3252), 1, - sym__inlines, - ACTIONS(5874), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [32748] = 33, - ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + sym__whitespace, + [49681] = 2, + ACTIONS(6062), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6060), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4357), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, - sym__line, - STATE(3253), 1, - sym__inlines, - ACTIONS(5878), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [32877] = 33, - ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + sym__whitespace, + [49726] = 2, + ACTIONS(6066), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6064), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4788), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, - sym__line, - STATE(3254), 1, - sym__inlines, - ACTIONS(5862), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [33006] = 33, - ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + sym__whitespace, + [49771] = 2, + ACTIONS(6070), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6068), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(3115), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, sym__emphasis_open_underscore, - STATE(2572), 1, - sym__inlines, - STATE(2576), 1, - sym__line, - ACTIONS(3093), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [33135] = 33, - ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + sym__whitespace, + [49816] = 2, + ACTIONS(6074), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6072), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5106), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3311), 1, - sym__inlines, - ACTIONS(5866), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [33264] = 33, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + sym__whitespace, + [49861] = 2, + ACTIONS(6078), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6076), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, - sym__line, - STATE(3312), 1, - sym__inlines, - ACTIONS(5882), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [33393] = 33, - ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + sym__whitespace, + [49906] = 2, + ACTIONS(6082), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6080), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5424), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, - sym__line, - STATE(3313), 1, - sym__inlines, - ACTIONS(5886), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [33522] = 33, - ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + sym__whitespace, + [49951] = 2, + ACTIONS(6086), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6084), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4039), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, - sym__line, - STATE(3315), 1, - sym__inlines, - ACTIONS(5870), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [33651] = 33, - ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, - anon_sym_DOLLAR, - ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + sym__whitespace, + [49996] = 2, + ACTIONS(6090), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6088), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4198), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, - sym__line, - STATE(3316), 1, - sym__inlines, - ACTIONS(5874), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [33780] = 33, - ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + sym__whitespace, + [50041] = 2, + ACTIONS(6094), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6092), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4357), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, - sym__line, - STATE(3317), 1, - sym__inlines, - ACTIONS(5878), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [33909] = 33, - ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + sym__whitespace, + [50086] = 2, + ACTIONS(6098), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6096), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4788), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(2633), 1, - sym__line, - STATE(3318), 1, - sym__inlines, - ACTIONS(5862), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [34038] = 33, - ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + sym__whitespace, + [50131] = 2, + ACTIONS(6102), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6100), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(3115), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, sym__emphasis_open_underscore, - STATE(2576), 1, - sym__line, - STATE(2579), 1, - sym__inlines, - ACTIONS(3093), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [34167] = 33, - ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + sym__whitespace, + [50176] = 2, + ACTIONS(6106), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6104), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5106), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(2708), 1, - sym__line, - STATE(3375), 1, - sym__inlines, - ACTIONS(5866), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [34296] = 33, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + sym__whitespace, + [50221] = 2, + ACTIONS(6110), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6108), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, - sym__line, - STATE(3376), 1, - sym__inlines, - ACTIONS(5882), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [34425] = 33, - ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + sym__whitespace, + [50266] = 2, + ACTIONS(6114), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6112), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5424), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(2644), 1, - sym__line, - STATE(3377), 1, - sym__inlines, - ACTIONS(5886), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [34554] = 33, - ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + sym__whitespace, + [50311] = 2, + ACTIONS(6118), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6116), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4039), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(2717), 1, - sym__line, - STATE(3379), 1, - sym__inlines, - ACTIONS(5870), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [34683] = 33, - ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, - anon_sym_DOLLAR, - ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + sym__whitespace, + [50356] = 2, + ACTIONS(6122), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6120), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4198), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(2677), 1, - sym__line, - STATE(3380), 1, - sym__inlines, - ACTIONS(5874), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [34812] = 33, - ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + sym__whitespace, + [50401] = 2, + ACTIONS(6126), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6124), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4357), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(2642), 1, - sym__line, - STATE(3381), 1, - sym__inlines, - ACTIONS(5878), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [34941] = 33, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + sym__whitespace, + [50446] = 2, + ACTIONS(6130), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6128), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(2692), 1, - sym__line, - STATE(3492), 1, - sym__inlines, - ACTIONS(5882), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [35070] = 32, - ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, - anon_sym_DOLLAR, - ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2461), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2467), 1, + sym__whitespace, + [50491] = 2, + ACTIONS(6134), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6132), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(2469), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, sym__emphasis_open_underscore, - STATE(3052), 1, - sym__line, - ACTIONS(2443), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(630), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [35196] = 32, - ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, - anon_sym_DOLLAR, - ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(4613), 1, + sym__whitespace, + [50536] = 2, + ACTIONS(6138), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6136), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4615), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5577), 1, - aux_sym__prose_punctuation_token1, - STATE(3117), 1, - sym__line, - ACTIONS(5575), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(626), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [35322] = 32, - ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, - anon_sym_DOLLAR, - ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(4945), 1, + sym__whitespace, + [50581] = 2, + ACTIONS(6142), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6140), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4947), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5583), 1, - aux_sym__prose_punctuation_token1, - STATE(3081), 1, - sym__line, - ACTIONS(5581), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(634), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [35448] = 32, - ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5104), 1, + sym__whitespace, + [50626] = 2, + ACTIONS(6146), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6144), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5106), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5868), 1, - aux_sym__prose_punctuation_token1, - STATE(3062), 1, - sym__line, - ACTIONS(5866), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(637), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [35574] = 32, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5263), 1, + sym__whitespace, + [50671] = 2, + ACTIONS(6150), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6148), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, - aux_sym__prose_punctuation_token1, - STATE(3100), 1, - sym__line, - ACTIONS(5882), 7, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, + sym__whitespace, + [50716] = 4, + ACTIONS(2155), 1, + anon_sym_LBRACE, + STATE(1481), 1, + sym__pandoc_attr_specifier, + ACTIONS(5910), 4, + aux_sym_pandoc_span_token1, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + sym__whitespace, + ACTIONS(5908), 34, + sym__soft_line_ending, + sym__code_span_start, sym__html_comment, sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(640), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [35700] = 32, - ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, - anon_sym_LBRACE, - ACTIONS(5414), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(5422), 1, + [50765] = 2, + ACTIONS(6154), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6152), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(5424), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, - aux_sym__prose_punctuation_token1, - STATE(3056), 1, - sym__line, - ACTIONS(5886), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(643), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [35826] = 32, - ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, - aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(3109), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(3113), 1, + sym__whitespace, + [50810] = 2, + ACTIONS(6158), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6156), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(3115), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, sym__emphasis_open_underscore, - STATE(2882), 1, - sym__line, - ACTIONS(3093), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(627), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [35952] = 32, - ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4037), 1, + sym__whitespace, + [50855] = 2, + ACTIONS(6162), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6160), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4039), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5872), 1, - aux_sym__prose_punctuation_token1, - STATE(3090), 1, - sym__line, - ACTIONS(5870), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(614), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [36078] = 32, - ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, - anon_sym_DOLLAR, - ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(19), 1, - aux_sym_pandoc_str_token1, - ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(23), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(67), 1, + sym__whitespace, + [50900] = 2, + ACTIONS(6166), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6164), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(69), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(95), 1, sym__subscript_open, - ACTIONS(97), 1, sym__superscript_open, - ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(107), 1, sym__emphasis_open_underscore, - STATE(2886), 1, - sym__line, - ACTIONS(7), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(591), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [36204] = 32, - ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, - anon_sym_DOLLAR, - ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + sym__whitespace, + [50945] = 2, + ACTIONS(6170), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6168), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4198), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym__prose_punctuation_token1, - STATE(3109), 1, - sym__line, - ACTIONS(5874), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(617), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [36330] = 32, - ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4355), 1, + sym__whitespace, + [50990] = 2, + ACTIONS(6174), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6172), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4357), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, - aux_sym__prose_punctuation_token1, - STATE(3054), 1, - sym__line, - ACTIONS(5878), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(620), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [36456] = 32, - ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4786), 1, + sym__whitespace, + [51035] = 2, + ACTIONS(6178), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6176), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, - ACTIONS(4788), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5864), 1, - aux_sym__prose_punctuation_token1, - STATE(3085), 1, - sym__line, - ACTIONS(5862), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(646), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [36582] = 32, - ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2040), 1, anon_sym_BANG_LBRACK, - ACTIONS(2044), 1, - anon_sym_DOLLAR, - ACTIONS(2046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2048), 1, anon_sym_LBRACE, - ACTIONS(2050), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2052), 1, anon_sym_PIPE, - ACTIONS(2054), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2060), 1, + sym__whitespace, + [51080] = 4, + ACTIONS(17), 1, + anon_sym_LBRACE, + STATE(1247), 1, + sym__pandoc_attr_specifier, + ACTIONS(5840), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5838), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(2062), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(2064), 1, sym__insert_span_start, - ACTIONS(2066), 1, sym__delete_span_start, - ACTIONS(2068), 1, sym__edit_comment_span_start, - ACTIONS(2070), 1, sym__single_quote_span_open, - ACTIONS(2072), 1, sym__double_quote_span_open, - ACTIONS(2074), 1, sym__shortcode_open_escaped, - ACTIONS(2076), 1, sym__shortcode_open, - ACTIONS(2078), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2080), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2082), 1, sym__cite_author_in_text, - ACTIONS(2084), 1, sym__cite_suppress_author, - ACTIONS(2086), 1, sym__strikeout_open, - ACTIONS(2088), 1, sym__subscript_open, - ACTIONS(2090), 1, sym__superscript_open, - ACTIONS(2092), 1, sym__inline_note_start_token, - ACTIONS(2094), 1, sym__strong_emphasis_open_star, - ACTIONS(2096), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2098), 1, sym__emphasis_open_star, - ACTIONS(2100), 1, sym__emphasis_open_underscore, - STATE(2771), 1, - sym__line, - ACTIONS(2034), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(450), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [36708] = 31, - ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4027), 1, + anon_sym_PIPE, + sym__whitespace, + [51129] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + STATE(1254), 1, + sym__pandoc_attr_specifier, + ACTIONS(5854), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4031), 1, - anon_sym_PIPE, - ACTIONS(4037), 1, + ACTIONS(5852), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(4039), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5892), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5890), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1953), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [36831] = 31, - ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5249), 1, - anon_sym_DOLLAR, - ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5253), 1, + anon_sym_PIPE, + sym__whitespace, + [51178] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, + STATE(1286), 1, + sym__pandoc_attr_specifier, + ACTIONS(5858), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5257), 1, - anon_sym_PIPE, - ACTIONS(5263), 1, + ACTIONS(5856), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(5265), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5896), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5894), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1566), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [36954] = 31, - ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2040), 1, anon_sym_BANG_LBRACK, - ACTIONS(2044), 1, - anon_sym_DOLLAR, - ACTIONS(2046), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2048), 1, + anon_sym_PIPE, + sym__whitespace, + [51227] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(2050), 1, + STATE(1300), 1, + sym__pandoc_attr_specifier, + ACTIONS(5874), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2052), 1, - anon_sym_PIPE, - ACTIONS(2060), 1, + ACTIONS(5872), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(2062), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(2064), 1, sym__insert_span_start, - ACTIONS(2066), 1, sym__delete_span_start, - ACTIONS(2068), 1, sym__edit_comment_span_start, - ACTIONS(2070), 1, sym__single_quote_span_open, - ACTIONS(2072), 1, sym__double_quote_span_open, - ACTIONS(2074), 1, sym__shortcode_open_escaped, - ACTIONS(2076), 1, sym__shortcode_open, - ACTIONS(2078), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2080), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2082), 1, sym__cite_author_in_text, - ACTIONS(2084), 1, sym__cite_suppress_author, - ACTIONS(2086), 1, sym__strikeout_open, - ACTIONS(2088), 1, sym__subscript_open, - ACTIONS(2090), 1, sym__superscript_open, - ACTIONS(2092), 1, sym__inline_note_start_token, - ACTIONS(2094), 1, sym__strong_emphasis_open_star, - ACTIONS(2096), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2098), 1, sym__emphasis_open_star, - ACTIONS(2100), 1, sym__emphasis_open_underscore, - ACTIONS(5900), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5898), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1176), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [37077] = 31, - ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5412), 1, + anon_sym_PIPE, + sym__whitespace, + [51276] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, + STATE(1314), 1, + sym__pandoc_attr_specifier, + ACTIONS(5878), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5416), 1, - anon_sym_PIPE, - ACTIONS(5422), 1, + ACTIONS(5876), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(5424), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5904), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5902), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1720), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [37200] = 31, - ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3099), 1, - anon_sym_DOLLAR, - ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3103), 1, + anon_sym_PIPE, + sym__whitespace, + [51325] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(3105), 1, + STATE(1328), 1, + sym__pandoc_attr_specifier, + ACTIONS(5832), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(3107), 1, - anon_sym_PIPE, - ACTIONS(3113), 1, + ACTIONS(5830), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(3115), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5908), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5906), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1831), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [37323] = 31, - ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, - anon_sym_DOLLAR, - ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [51374] = 4, ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + STATE(1353), 1, + sym__pandoc_attr_specifier, + ACTIONS(5886), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, - anon_sym_PIPE, - ACTIONS(67), 1, + ACTIONS(5884), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(69), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(95), 1, sym__subscript_open, - ACTIONS(97), 1, sym__superscript_open, - ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5912), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5910), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1265), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [37446] = 31, - ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(4931), 1, - anon_sym_DOLLAR, - ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4935), 1, + anon_sym_PIPE, + sym__whitespace, + [51423] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + STATE(1383), 1, + sym__pandoc_attr_specifier, + ACTIONS(5846), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4945), 1, + ACTIONS(5844), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(4947), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5916), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5914), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2180), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [37569] = 31, - ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4182), 1, - anon_sym_DOLLAR, - ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4186), 1, + anon_sym_PIPE, + sym__whitespace, + [51472] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + STATE(1199), 1, + sym__pandoc_attr_specifier, + ACTIONS(5850), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4190), 1, - anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(5848), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(4198), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5920), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5918), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2088), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [37692] = 31, - ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4345), 1, + anon_sym_PIPE, + sym__whitespace, + [51521] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4347), 1, + STATE(1076), 1, + sym__pandoc_attr_specifier, + ACTIONS(5870), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4349), 1, - anon_sym_PIPE, - ACTIONS(4355), 1, + ACTIONS(5868), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(4357), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5924), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5922), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2189), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [37815] = 31, - ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4772), 1, - anon_sym_DOLLAR, - ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4776), 1, + anon_sym_PIPE, + sym__whitespace, + [51570] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4778), 1, + STATE(1191), 1, + sym__pandoc_attr_specifier, + ACTIONS(5890), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4780), 1, - anon_sym_PIPE, - ACTIONS(4786), 1, + ACTIONS(5888), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(4788), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5928), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5926), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1524), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [37938] = 31, - ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5094), 1, + anon_sym_PIPE, + sym__whitespace, + [51619] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + STATE(1399), 1, + sym__pandoc_attr_specifier, + ACTIONS(5894), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(5098), 1, - anon_sym_PIPE, - ACTIONS(5104), 1, + ACTIONS(5892), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(5106), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5932), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5930), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1945), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [38061] = 31, - ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2449), 1, - anon_sym_DOLLAR, - ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2455), 1, + anon_sym_PIPE, + sym__whitespace, + [51668] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + STATE(1110), 1, + sym__pandoc_attr_specifier, + ACTIONS(5914), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(2459), 1, - anon_sym_PIPE, - ACTIONS(2467), 1, + ACTIONS(5912), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(2469), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5936), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5934), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1955), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, - sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [38184] = 31, - ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(4599), 1, - anon_sym_DOLLAR, - ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4603), 1, + anon_sym_PIPE, + sym__whitespace, + [51717] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4605), 1, + STATE(1065), 1, + sym__pandoc_attr_specifier, + ACTIONS(5882), 2, + anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - ACTIONS(4607), 1, - anon_sym_PIPE, - ACTIONS(4613), 1, + ACTIONS(5880), 36, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, - ACTIONS(4615), 1, + sym__html_comment, + sym__autolink, sym__highlight_span_start, - ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5940), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5938), 7, - sym__html_comment, - sym__autolink, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2047), 24, - sym_pandoc_span, - sym_pandoc_image, - sym_pandoc_math, - sym_pandoc_display_math, - sym_pandoc_code_span, - sym_pandoc_single_quote, - sym_pandoc_double_quote, - sym_insert, - sym_delete, - sym_edit_comment, - sym_highlight, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [51766] = 4, + ACTIONS(17), 1, + anon_sym_LBRACE, + STATE(1068), 1, sym__pandoc_attr_specifier, - sym__inline_element, - sym_shortcode_escaped, - sym_shortcode, - sym_citation, - sym_inline_note, - sym_pandoc_superscript, - sym_pandoc_subscript, - sym_pandoc_strikeout, - sym_pandoc_emph, - sym_pandoc_strong, - sym_pandoc_str, - sym__prose_punctuation, - [38307] = 3, - ACTIONS(5946), 1, - sym_block_continuation, - ACTIONS(5944), 3, + ACTIONS(5922), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5942), 39, + ACTIONS(5920), 36, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -99484,30 +107310,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, - anon_sym_COLON, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [38357] = 4, - ACTIONS(1978), 1, + [51815] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(999), 1, + STATE(1071), 1, sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + ACTIONS(5936), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 37, + ACTIONS(5934), 36, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -99533,7 +107355,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -99542,19 +107363,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [38408] = 4, - ACTIONS(1978), 1, + [51864] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(970), 1, + STATE(1077), 1, sym__pandoc_attr_specifier, - ACTIONS(5954), 3, + ACTIONS(5866), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 37, + ACTIONS(5864), 36, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -99580,7 +107400,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -99589,19 +107408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [38459] = 4, - ACTIONS(5960), 1, + [51913] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(986), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, + STATE(1147), 1, + sym__pandoc_attr_specifier, + ACTIONS(5932), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 37, + ACTIONS(5930), 36, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -99627,7 +107445,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -99636,16 +107453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [38510] = 4, - ACTIONS(1978), 1, - anon_sym_LBRACE, - STATE(987), 1, - sym__pandoc_attr_specifier, - ACTIONS(5964), 3, + [51962] = 2, + ACTIONS(5836), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 37, + ACTIONS(5834), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -99681,21 +107493,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [38561] = 4, - ACTIONS(1978), 1, + [52007] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(968), 1, + STATE(1098), 1, sym__pandoc_attr_specifier, - ACTIONS(5968), 3, + ACTIONS(5898), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 37, + ACTIONS(5896), 36, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -99721,7 +107533,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -99730,19 +107541,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [38612] = 4, - ACTIONS(1978), 1, + [52056] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(971), 1, + STATE(1099), 1, sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + ACTIONS(5902), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 37, + ACTIONS(5900), 36, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -99768,7 +107578,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -99777,19 +107586,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [38663] = 4, - ACTIONS(1978), 1, + [52105] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1008), 1, + STATE(1100), 1, sym__pandoc_attr_specifier, - ACTIONS(5976), 3, + ACTIONS(5906), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 37, + ACTIONS(5904), 36, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -99815,7 +107623,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -99824,17 +107631,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [38714] = 3, - ACTIONS(5978), 1, - sym_block_continuation, - ACTIONS(5944), 3, + [52154] = 4, + ACTIONS(17), 1, + anon_sym_LBRACE, + STATE(1111), 1, + sym__pandoc_attr_specifier, + ACTIONS(5918), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5942), 38, + ACTIONS(5916), 36, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -99860,29 +107668,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [38763] = 4, - ACTIONS(1978), 1, + [52203] = 4, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(969), 1, - sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + STATE(1246), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 37, + ACTIONS(5924), 36, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -99908,7 +107713,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -99917,19 +107721,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [38814] = 4, - ACTIONS(1978), 1, + [52252] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(982), 1, + STATE(1439), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + ACTIONS(5882), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5880), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -99955,28 +107758,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [38865] = 4, - ACTIONS(1978), 1, + [52301] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(983), 1, + STATE(1442), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + ACTIONS(5922), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5920), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100002,24 +107803,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [38916] = 2, - ACTIONS(5994), 3, + [52350] = 4, + ACTIONS(2155), 1, + anon_sym_LBRACE, + STATE(1445), 1, + sym__pandoc_attr_specifier, + ACTIONS(5936), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5992), 39, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5934), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100045,30 +107848,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, - anon_sym_COLON, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [38963] = 4, - ACTIONS(1978), 1, + [52399] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(988), 1, + STATE(1449), 1, sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + ACTIONS(5866), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5864), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100094,28 +107893,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39014] = 4, - ACTIONS(1978), 1, + [52448] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(989), 1, + STATE(1463), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + ACTIONS(5932), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5930), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100141,28 +107938,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39065] = 4, - ACTIONS(1978), 1, + [52497] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(990), 1, + STATE(1468), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + ACTIONS(5862), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5860), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100188,28 +107983,71 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, + [52546] = 4, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(1475), 1, + sym_attribute_specifier, + ACTIONS(5926), 4, + aux_sym_pandoc_span_token1, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, sym__whitespace, - [39116] = 4, - ACTIONS(1978), 1, + ACTIONS(5924), 34, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + aux_sym_target_token1, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + [52595] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(1046), 1, + STATE(1476), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + ACTIONS(5840), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5838), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100235,28 +108073,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39167] = 4, - ACTIONS(1978), 1, + [52644] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(992), 1, + STATE(1477), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + ACTIONS(5854), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5852), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100282,28 +108118,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39218] = 4, - ACTIONS(1978), 1, + [52693] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(993), 1, + STATE(1479), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + ACTIONS(5858), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5856), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100329,28 +108163,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39269] = 4, - ACTIONS(1978), 1, + [52742] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(994), 1, + STATE(1480), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + ACTIONS(5874), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5872), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100376,28 +108208,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39320] = 4, - ACTIONS(1978), 1, + [52791] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(996), 1, + STATE(1101), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + ACTIONS(5910), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 37, + ACTIONS(5908), 36, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100423,7 +108253,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -100432,19 +108261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [39371] = 4, - ACTIONS(1978), 1, + [52840] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(1483), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + ACTIONS(5878), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5876), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100470,28 +108298,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39422] = 4, - ACTIONS(1978), 1, + [52889] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(998), 1, + STATE(1484), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + ACTIONS(5832), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5830), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100517,28 +108343,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39473] = 4, - ACTIONS(1978), 1, + [52938] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(1007), 1, + STATE(1486), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + ACTIONS(5886), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5884), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100564,28 +108388,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39524] = 4, - ACTIONS(1978), 1, + [52987] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(1000), 1, + STATE(1487), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + ACTIONS(5846), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5844), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100611,28 +108433,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39575] = 4, - ACTIONS(1978), 1, + [53036] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(1001), 1, + STATE(1426), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + ACTIONS(5850), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5848), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100658,28 +108478,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39626] = 4, - ACTIONS(1978), 1, + [53085] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(1002), 1, + STATE(1427), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + ACTIONS(5870), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5868), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100705,28 +108523,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39677] = 4, - ACTIONS(1978), 1, + [53134] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(1003), 1, + STATE(1435), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + ACTIONS(5890), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5888), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100752,24 +108568,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39728] = 2, - ACTIONS(6058), 3, + [53183] = 4, + ACTIONS(2155), 1, + anon_sym_LBRACE, + STATE(1443), 1, + sym__pandoc_attr_specifier, + ACTIONS(5894), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5892), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100795,29 +108613,26 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [39774] = 4, - ACTIONS(17), 1, + [53232] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(1296), 1, + STATE(1451), 1, sym__pandoc_attr_specifier, - ACTIONS(5964), 3, + ACTIONS(5898), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5896), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100848,22 +108663,21 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39824] = 4, - ACTIONS(17), 1, + [53281] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(1297), 1, + STATE(1466), 1, sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + ACTIONS(5902), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5900), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -100894,21 +108708,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [39874] = 4, - ACTIONS(2048), 1, + [53330] = 4, + ACTIONS(2155), 1, anon_sym_LBRACE, - STATE(1248), 1, + STATE(1469), 1, sym__pandoc_attr_specifier, - ACTIONS(5968), 5, + ACTIONS(5906), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5966), 34, + ACTIONS(5904), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -100943,18 +108756,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [39924] = 4, - ACTIONS(2048), 1, + [53379] = 2, + ACTIONS(6186), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6184), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - STATE(1254), 1, + anon_sym_PIPE, + sym__whitespace, + [53424] = 4, + ACTIONS(4004), 1, + anon_sym_LBRACE, + STATE(2147), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 5, + ACTIONS(5922), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5920), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__double_quote_span_close, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [53472] = 2, + ACTIONS(6110), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5980), 34, + ACTIONS(6108), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -100988,19 +108883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [39974] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1280), 1, - sym__pandoc_attr_specifier, - ACTIONS(5954), 5, + anon_sym_PIPE, + [53516] = 2, + ACTIONS(6114), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5952), 34, + ACTIONS(6112), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101034,19 +108925,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [40024] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1319), 1, - sym__pandoc_attr_specifier, - ACTIONS(5972), 5, + anon_sym_PIPE, + [53560] = 2, + ACTIONS(6118), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5970), 34, + ACTIONS(6116), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101080,19 +108967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [40074] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1052), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 5, + anon_sym_PIPE, + [53604] = 2, + ACTIONS(6122), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5984), 34, + ACTIONS(6120), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101126,19 +109009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [40124] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1055), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 5, + anon_sym_PIPE, + [53648] = 2, + ACTIONS(6126), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5988), 34, + ACTIONS(6124), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101172,19 +109051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [40174] = 4, - ACTIONS(6060), 1, anon_sym_LBRACE, - STATE(1060), 1, - sym_attribute_specifier, - ACTIONS(5958), 5, + anon_sym_PIPE, + [53692] = 2, + ACTIONS(6130), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5956), 34, + ACTIONS(6128), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101218,19 +109093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [40224] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1061), 1, - sym__pandoc_attr_specifier, - ACTIONS(5964), 5, + anon_sym_PIPE, + [53736] = 2, + ACTIONS(6174), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5962), 34, + ACTIONS(6172), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101264,19 +109135,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - [40274] = 4, - ACTIONS(2048), 1, + [53780] = 2, + ACTIONS(5962), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5960), 37, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - STATE(1062), 1, - sym__pandoc_attr_specifier, - ACTIONS(5998), 5, + anon_sym_PIPE, + sym__whitespace, + [53824] = 2, + ACTIONS(6134), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5996), 34, + ACTIONS(6132), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101310,19 +109219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [40324] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1064), 1, - sym__pandoc_attr_specifier, - ACTIONS(6002), 5, + anon_sym_PIPE, + [53868] = 2, + ACTIONS(6138), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6000), 34, + ACTIONS(6136), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101356,20 +109261,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [40374] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1065), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 5, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + [53912] = 2, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6004), 34, + ACTIONS(5872), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -101400,21 +109301,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - [40424] = 4, - ACTIONS(2048), 1, + sym__whitespace, + [53956] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1067), 1, + STATE(1671), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 5, - aux_sym_pandoc_span_token1, + ACTIONS(5910), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6008), 34, + ACTIONS(5908), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101446,21 +109346,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - [40474] = 4, - ACTIONS(2048), 1, + [54004] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1068), 1, + STATE(1677), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 5, - aux_sym_pandoc_span_token1, + ACTIONS(5914), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6012), 34, + ACTIONS(5912), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101492,22 +109390,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - [40524] = 4, - ACTIONS(2048), 1, - anon_sym_LBRACE, - STATE(1070), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 5, - aux_sym_pandoc_span_token1, + [54052] = 2, + ACTIONS(5966), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6016), 34, + ACTIONS(5964), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -101538,21 +109431,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [40574] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1071), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 5, + anon_sym_PIPE, + sym__whitespace, + [54096] = 2, + ACTIONS(6142), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6020), 34, + ACTIONS(6140), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101586,19 +109475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - [40624] = 4, - ACTIONS(2048), 1, + [54140] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1075), 1, + STATE(1678), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 5, - aux_sym_pandoc_span_token1, + ACTIONS(5918), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6024), 34, + ACTIONS(5916), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101630,21 +109518,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - [40674] = 4, - ACTIONS(2048), 1, + [54188] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(1076), 1, + STATE(1712), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 5, - aux_sym_pandoc_span_token1, + ACTIONS(5932), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6028), 34, + ACTIONS(5930), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101666,6 +109551,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -101676,21 +109562,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [40724] = 4, - ACTIONS(2048), 1, + sym__whitespace, + [54236] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(1078), 1, + STATE(1716), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 5, - aux_sym_pandoc_span_token1, + ACTIONS(5862), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6032), 34, + ACTIONS(5860), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101712,6 +109595,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -101722,22 +109606,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [40774] = 4, - ACTIONS(2048), 1, - anon_sym_LBRACE, - STATE(1079), 1, - sym__pandoc_attr_specifier, - ACTIONS(5950), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [54284] = 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5948), 34, + ACTIONS(6076), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -101768,22 +109647,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [40824] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1081), 1, - sym__pandoc_attr_specifier, - ACTIONS(6042), 5, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [54328] = 2, + ACTIONS(5970), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6040), 34, + ACTIONS(5968), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -101814,22 +109689,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [40874] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1082), 1, - sym__pandoc_attr_specifier, - ACTIONS(6046), 5, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [54372] = 2, + ACTIONS(6066), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6044), 34, + ACTIONS(6064), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -101860,21 +109731,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [40924] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1083), 1, - sym__pandoc_attr_specifier, - ACTIONS(6050), 5, + anon_sym_PIPE, + sym__whitespace, + [54416] = 2, + ACTIONS(6178), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6048), 34, + ACTIONS(6176), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -101908,20 +109775,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [40974] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1084), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 5, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + [54460] = 2, + ACTIONS(5974), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6052), 34, + ACTIONS(5972), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -101952,22 +109815,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [41024] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1089), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 5, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [54504] = 2, + ACTIONS(5978), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6036), 34, + ACTIONS(5976), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -101998,22 +109857,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [41074] = 4, - ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1090), 1, - sym__pandoc_attr_specifier, - ACTIONS(5976), 5, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [54548] = 2, + ACTIONS(5982), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5974), 34, + ACTIONS(5980), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102044,18 +109899,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - [41124] = 2, - ACTIONS(6064), 3, + sym__whitespace, + [54592] = 4, + ACTIONS(6188), 1, + anon_sym_LBRACE, + STATE(1726), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5924), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102076,30 +109933,31 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41170] = 2, - ACTIONS(6068), 3, + [54640] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2016), 1, + sym__pandoc_attr_specifier, + ACTIONS(5882), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5880), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102125,25 +109983,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [41216] = 2, - ACTIONS(6072), 3, + [54688] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2017), 1, + sym__pandoc_attr_specifier, + ACTIONS(5922), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5920), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102169,25 +110027,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [41262] = 2, - ACTIONS(6076), 3, + [54736] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2018), 1, + sym__pandoc_attr_specifier, + ACTIONS(5936), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5934), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102213,25 +110071,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [41308] = 2, - ACTIONS(6080), 3, + [54784] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2019), 1, + sym__pandoc_attr_specifier, + ACTIONS(5866), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5864), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102257,25 +110115,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [41354] = 2, - ACTIONS(6084), 3, + [54832] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2030), 1, + sym__pandoc_attr_specifier, + ACTIONS(5932), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5930), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102301,25 +110159,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [41400] = 2, - ACTIONS(6006), 3, + [54880] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2032), 1, + sym__pandoc_attr_specifier, + ACTIONS(5862), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5860), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102345,25 +110203,66 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, + anon_sym_PIPE, + [54928] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, + STATE(1727), 1, + sym__pandoc_attr_specifier, + ACTIONS(5840), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5838), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [41446] = 2, - ACTIONS(6088), 3, + [54976] = 2, + ACTIONS(5986), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 38, + ACTIONS(5984), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102389,7 +110288,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -102399,15 +110297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41492] = 2, - ACTIONS(6092), 3, + [55020] = 2, + ACTIONS(5990), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 38, + ACTIONS(5988), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102433,7 +110330,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -102443,15 +110339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41538] = 2, - ACTIONS(6096), 3, + [55064] = 2, + ACTIONS(5994), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 38, + ACTIONS(5992), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102477,7 +110372,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -102487,15 +110381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41584] = 2, - ACTIONS(6100), 3, + [55108] = 2, + ACTIONS(5998), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 38, + ACTIONS(5996), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102521,7 +110414,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -102531,15 +110423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41630] = 2, - ACTIONS(6104), 3, + [55152] = 4, + ACTIONS(4922), 1, + anon_sym_LBRACE, + STATE(1728), 1, + sym__pandoc_attr_specifier, + ACTIONS(5854), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5852), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102560,30 +110453,30 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41676] = 2, - ACTIONS(6108), 3, + [55200] = 4, + ACTIONS(4922), 1, + anon_sym_LBRACE, + STATE(1729), 1, + sym__pandoc_attr_specifier, + ACTIONS(5858), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5856), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102604,30 +110497,28 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41722] = 2, - ACTIONS(6112), 3, + [55248] = 2, + ACTIONS(6002), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 38, + ACTIONS(6000), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102653,7 +110544,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -102663,15 +110553,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41768] = 2, - ACTIONS(6116), 3, + [55292] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 38, + ACTIONS(6088), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102697,7 +110586,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -102707,15 +110595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41814] = 2, - ACTIONS(6120), 3, + [55336] = 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 38, + ACTIONS(6092), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102741,7 +110628,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -102751,15 +110637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41860] = 2, - ACTIONS(6124), 3, + [55380] = 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 38, + ACTIONS(6096), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102785,7 +110670,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -102795,15 +110679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41906] = 2, - ACTIONS(6128), 3, + [55424] = 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 38, + ACTIONS(6100), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102829,7 +110712,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -102839,15 +110721,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41952] = 2, - ACTIONS(6132), 3, + [55468] = 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 38, + ACTIONS(6104), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102873,7 +110754,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -102883,15 +110763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41998] = 2, - ACTIONS(6030), 3, + [55512] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 38, + ACTIONS(6184), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102917,7 +110796,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -102927,15 +110805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42044] = 2, - ACTIONS(5950), 3, + [55556] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 38, + ACTIONS(6168), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102961,7 +110838,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -102971,15 +110847,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42090] = 2, - ACTIONS(6136), 3, + [55600] = 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 38, + ACTIONS(6108), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103005,7 +110880,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -103015,15 +110889,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42136] = 2, - ACTIONS(6140), 3, + [55644] = 4, + ACTIONS(4922), 1, + anon_sym_LBRACE, + STATE(1730), 1, + sym__pandoc_attr_specifier, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 38, + ACTIONS(5872), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [55692] = 2, + ACTIONS(6114), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6112), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103049,7 +110966,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -103059,15 +110975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42182] = 2, - ACTIONS(6144), 3, + [55736] = 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 38, + ACTIONS(6116), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103093,7 +111008,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -103103,12 +111017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42228] = 2, - ACTIONS(6148), 3, + [55780] = 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 38, + ACTIONS(2534), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -103137,7 +111050,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -103147,15 +111059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42274] = 2, - ACTIONS(6152), 3, + [55824] = 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 38, + ACTIONS(6120), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103181,7 +111092,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -103191,15 +111101,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42320] = 2, - ACTIONS(6156), 3, + [55868] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 38, + ACTIONS(6124), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103225,7 +111134,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -103235,15 +111143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42366] = 2, - ACTIONS(6160), 3, + [55912] = 2, + ACTIONS(6006), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 38, + ACTIONS(6004), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103269,7 +111176,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -103279,16 +111185,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42412] = 4, - ACTIONS(6162), 1, - anon_sym_LBRACE, - STATE(1287), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, + [55956] = 2, + ACTIONS(6010), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 36, + ACTIONS(6008), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -103323,17 +111224,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42462] = 2, - ACTIONS(6166), 3, + [56000] = 4, + ACTIONS(4922), 1, + anon_sym_LBRACE, + STATE(1732), 1, + sym__pandoc_attr_specifier, + ACTIONS(5878), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6164), 38, + ACTIONS(5876), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [56048] = 4, + ACTIONS(6192), 1, + anon_sym_LBRACE, + STATE(1694), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5924), 35, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103366,18 +111313,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42508] = 2, - ACTIONS(6170), 3, + [56096] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1696), 1, + sym__pandoc_attr_specifier, + ACTIONS(5840), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6168), 38, + ACTIONS(5838), 35, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103410,18 +111357,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42554] = 2, - ACTIONS(6174), 3, + [56144] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1697), 1, + sym__pandoc_attr_specifier, + ACTIONS(5854), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 38, + ACTIONS(5852), 35, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103454,18 +111401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42600] = 2, - ACTIONS(6178), 3, + [56192] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1699), 1, + sym__pandoc_attr_specifier, + ACTIONS(5858), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 38, + ACTIONS(5856), 35, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103498,18 +111445,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42646] = 2, - ACTIONS(6182), 3, + [56240] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1701), 1, + sym__pandoc_attr_specifier, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 38, + ACTIONS(5872), 35, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103542,18 +111489,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42692] = 2, - ACTIONS(6186), 3, + [56288] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1714), 1, + sym__pandoc_attr_specifier, + ACTIONS(5878), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 38, + ACTIONS(5876), 35, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103586,18 +111533,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42738] = 2, - ACTIONS(6190), 3, + [56336] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1715), 1, + sym__pandoc_attr_specifier, + ACTIONS(5832), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 38, + ACTIONS(5830), 35, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103630,18 +111577,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [56384] = 4, + ACTIONS(2903), 1, anon_sym_LBRACE, + STATE(1717), 1, + sym__pandoc_attr_specifier, + ACTIONS(5886), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5884), 35, + sym__line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42784] = 2, - ACTIONS(6194), 3, + [56432] = 4, + ACTIONS(6194), 1, + anon_sym_LBRACE, + STATE(1652), 1, + sym_attribute_specifier, + ACTIONS(5926), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + sym__whitespace, + ACTIONS(5924), 34, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, + anon_sym_PIPE, + [56480] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1723), 1, + sym__pandoc_attr_specifier, + ACTIONS(5846), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 38, + ACTIONS(5844), 35, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103674,62 +111709,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42830] = 2, - ACTIONS(6198), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, + [56528] = 4, + ACTIONS(2903), 1, anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [42876] = 2, - ACTIONS(6202), 3, + STATE(1745), 1, + sym__pandoc_attr_specifier, + ACTIONS(5850), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 38, + ACTIONS(5848), 35, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103762,62 +111753,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [42922] = 2, - ACTIONS(6206), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, + [56576] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [42968] = 2, - ACTIONS(6210), 3, + STATE(1733), 1, + sym__pandoc_attr_specifier, + ACTIONS(5832), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5830), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103838,30 +111785,30 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [43014] = 2, - ACTIONS(6214), 3, + [56624] = 4, + ACTIONS(4922), 1, + anon_sym_LBRACE, + STATE(1734), 1, + sym__pandoc_attr_specifier, + ACTIONS(5886), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5884), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103882,30 +111829,31 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [43060] = 2, - ACTIONS(6218), 3, + [56672] = 4, + ACTIONS(6196), 1, + anon_sym_LBRACE, + STATE(2038), 1, + sym_attribute_specifier, + ACTIONS(5926), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5924), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103931,25 +111879,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43106] = 2, - ACTIONS(6222), 3, + [56720] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2039), 1, + sym__pandoc_attr_specifier, + ACTIONS(5840), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5838), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103975,25 +111923,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43152] = 2, - ACTIONS(6226), 3, + [56768] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2040), 1, + sym__pandoc_attr_specifier, + ACTIONS(5854), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5852), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104019,25 +111967,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43198] = 2, - ACTIONS(6230), 3, + [56816] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2041), 1, + sym__pandoc_attr_specifier, + ACTIONS(5858), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5856), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104063,25 +112011,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43244] = 2, - ACTIONS(6234), 3, + [56864] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2042), 1, + sym__pandoc_attr_specifier, + ACTIONS(5874), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5872), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104107,25 +112055,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43290] = 2, - ACTIONS(6238), 3, + [56912] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2043), 1, + sym__pandoc_attr_specifier, + ACTIONS(5878), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5876), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104151,25 +112099,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43336] = 2, - ACTIONS(6242), 3, + [56960] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2044), 1, + sym__pandoc_attr_specifier, + ACTIONS(5832), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5830), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104195,25 +112143,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43382] = 2, - ACTIONS(6246), 3, + [57008] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2045), 1, + sym__pandoc_attr_specifier, + ACTIONS(5886), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5884), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104239,25 +112187,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43428] = 2, - ACTIONS(6250), 3, + [57056] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2046), 1, + sym__pandoc_attr_specifier, + ACTIONS(5846), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5844), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104283,25 +112231,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43474] = 2, - ACTIONS(6254), 3, + [57104] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2050), 1, + sym__pandoc_attr_specifier, + ACTIONS(5850), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5848), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104327,25 +112275,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43520] = 2, - ACTIONS(6258), 3, + [57152] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2051), 1, + sym__pandoc_attr_specifier, + ACTIONS(5870), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5868), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104371,25 +112319,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43566] = 2, - ACTIONS(6262), 3, + [57200] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2052), 1, + sym__pandoc_attr_specifier, + ACTIONS(5890), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5888), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104415,25 +112363,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43612] = 2, - ACTIONS(6266), 3, + [57248] = 4, + ACTIONS(4922), 1, + anon_sym_LBRACE, + STATE(1735), 1, + sym__pandoc_attr_specifier, + ACTIONS(5846), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5844), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104454,30 +112401,31 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [43658] = 2, - ACTIONS(6270), 3, + [57296] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2053), 1, + sym__pandoc_attr_specifier, + ACTIONS(5894), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5892), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104503,25 +112451,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [43704] = 2, - ACTIONS(6274), 3, + [57344] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1765), 1, + sym__pandoc_attr_specifier, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 38, + ACTIONS(5868), 35, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104554,18 +112501,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [43750] = 2, - ACTIONS(6278), 3, + [57392] = 4, + ACTIONS(4922), 1, + anon_sym_LBRACE, + STATE(1740), 1, + sym__pandoc_attr_specifier, + ACTIONS(5850), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5848), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104586,30 +112533,30 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [43796] = 2, - ACTIONS(6282), 3, + [57440] = 4, + ACTIONS(4922), 1, + anon_sym_LBRACE, + STATE(1741), 1, + sym__pandoc_attr_specifier, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5868), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104630,34 +112577,30 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [43842] = 4, - ACTIONS(17), 1, + [57488] = 4, + ACTIONS(2903), 1, anon_sym_LBRACE, - STATE(1300), 1, + STATE(1766), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + ACTIONS(5890), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 36, + ACTIONS(5888), 35, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104683,6 +112626,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -104691,19 +112635,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43892] = 4, - ACTIONS(17), 1, + [57536] = 4, + ACTIONS(2903), 1, anon_sym_LBRACE, - STATE(1301), 1, + STATE(1767), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 36, + ACTIONS(5892), 35, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104729,6 +112670,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -104737,16 +112679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43942] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1320), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + [57584] = 2, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 36, + ACTIONS(5868), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -104781,18 +112718,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [43992] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1321), 1, - sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + [57628] = 2, + ACTIONS(6014), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 36, + ACTIONS(6012), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -104827,21 +112760,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44042] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1323), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + [57672] = 2, + ACTIONS(6146), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6144), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104872,22 +112801,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [44092] = 4, - ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1324), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + anon_sym_PIPE, + [57716] = 2, + ACTIONS(6150), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6148), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104918,18 +112843,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [44142] = 2, - ACTIONS(5994), 3, + [57760] = 2, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5992), 38, + ACTIONS(5892), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104955,7 +112880,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -104965,19 +112889,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44188] = 4, - ACTIONS(17), 1, + [57804] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(1335), 1, + STATE(1743), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + ACTIONS(5890), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 36, - sym__line_ending, + ACTIONS(5888), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104998,6 +112919,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -105011,19 +112933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44238] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1345), 1, - sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + [57852] = 2, + ACTIONS(6186), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6184), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105054,22 +112971,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [44288] = 4, - ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1347), 1, - sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + anon_sym_PIPE, + [57896] = 2, + ACTIONS(6154), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6152), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105100,19 +113013,15 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [44338] = 4, - ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1348), 1, - sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + anon_sym_PIPE, + [57940] = 2, + ACTIONS(6018), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 36, + ACTIONS(6016), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -105147,18 +113056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44388] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1216), 1, - sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + [57984] = 2, + ACTIONS(6022), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 36, + ACTIONS(6020), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -105193,18 +113098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44438] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1247), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + [58028] = 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 36, + ACTIONS(6128), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -105239,18 +113140,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44488] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1252), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + [58072] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 36, + ACTIONS(6172), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -105285,21 +113182,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44538] = 4, - ACTIONS(17), 1, + [58116] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(1192), 1, + STATE(1744), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 36, - sym__line_ending, + ACTIONS(5892), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105320,6 +113215,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -105333,15 +113229,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44588] = 2, - ACTIONS(6284), 3, + [58164] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(2324), 38, + ACTIONS(6068), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105367,7 +113262,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -105377,16 +113271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44634] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1194), 1, - sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + [58208] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 36, + ACTIONS(6132), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -105421,18 +113310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44684] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1195), 1, - sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + [58252] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 36, + ACTIONS(6136), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -105467,21 +113352,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44734] = 4, - ACTIONS(17), 1, + [58296] = 4, + ACTIONS(2967), 1, anon_sym_LBRACE, - STATE(1201), 1, + STATE(2054), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + ACTIONS(5898), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5896), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105513,21 +113397,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [44784] = 4, - ACTIONS(17), 1, + [58344] = 4, + ACTIONS(2967), 1, anon_sym_LBRACE, - STATE(1210), 1, + STATE(2055), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + ACTIONS(5902), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5900), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105559,21 +113441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [44834] = 4, - ACTIONS(17), 1, + [58392] = 4, + ACTIONS(2967), 1, anon_sym_LBRACE, - STATE(1211), 1, + STATE(2056), 1, sym__pandoc_attr_specifier, - ACTIONS(5976), 3, + ACTIONS(5906), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5904), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105605,21 +113485,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [44884] = 4, - ACTIONS(17), 1, + [58440] = 4, + ACTIONS(2967), 1, anon_sym_LBRACE, - STATE(1056), 1, + STATE(2057), 1, sym__pandoc_attr_specifier, - ACTIONS(5968), 3, + ACTIONS(5910), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5908), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105651,18 +113529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [44934] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1190), 1, - sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + [58488] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 36, + ACTIONS(6152), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -105697,21 +113570,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [44984] = 4, - ACTIONS(17), 1, + [58532] = 4, + ACTIONS(2967), 1, anon_sym_LBRACE, - STATE(1213), 1, + STATE(2063), 1, sym__pandoc_attr_specifier, - ACTIONS(5954), 3, + ACTIONS(5914), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5912), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105743,17 +113615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [45034] = 2, - ACTIONS(6288), 3, + [58580] = 4, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(2064), 1, + sym__pandoc_attr_specifier, + ACTIONS(5918), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5916), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105779,27 +113653,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [45080] = 4, - ACTIONS(4935), 1, - anon_sym_LBRACE, - STATE(2018), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + [58628] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 35, + ACTIONS(6160), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105809,7 +113678,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -105832,17 +113700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45129] = 2, - ACTIONS(6120), 5, - aux_sym_pandoc_span_token1, + [58672] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6118), 35, + ACTIONS(6164), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105873,19 +113741,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [45174] = 2, - ACTIONS(6124), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [58716] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6122), 35, + ACTIONS(6156), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105916,19 +113783,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [45219] = 2, - ACTIONS(6128), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [58760] = 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6126), 35, - sym__soft_line_ending, + ACTIONS(2505), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105959,18 +113825,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [45264] = 2, - ACTIONS(6132), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [58804] = 4, + ACTIONS(4922), 1, + anon_sym_LBRACE, + STATE(1746), 1, + sym__pandoc_attr_specifier, + ACTIONS(5898), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6130), 35, + ACTIONS(5896), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -105992,6 +113859,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -106002,18 +113870,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [45309] = 2, - ACTIONS(6030), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [58852] = 4, + ACTIONS(4922), 1, + anon_sym_LBRACE, + STATE(1747), 1, + sym__pandoc_attr_specifier, + ACTIONS(5902), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6028), 35, + ACTIONS(5900), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -106035,6 +113903,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -106045,20 +113914,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [45354] = 4, - ACTIONS(4186), 1, + sym__whitespace, + [58900] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(2212), 1, + STATE(1748), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + ACTIONS(5906), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 35, + ACTIONS(5904), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -106080,8 +113947,8 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -106094,17 +113961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [45403] = 4, - ACTIONS(4186), 1, - anon_sym_LBRACE, - STATE(2214), 1, - sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + [58948] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 35, + ACTIONS(6148), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106126,7 +113990,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -106137,17 +114000,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45452] = 2, - ACTIONS(5950), 5, - aux_sym_pandoc_span_token1, + [58992] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5948), 35, + ACTIONS(6140), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106178,19 +114041,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [45497] = 2, - ACTIONS(6084), 3, + sym__whitespace, + [59036] = 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 37, + ACTIONS(6200), 37, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106225,17 +114087,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45542] = 4, - ACTIONS(4186), 1, - anon_sym_LBRACE, - STATE(2216), 1, - sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + [59080] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 35, + ACTIONS(6176), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106257,7 +114116,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -106268,17 +114126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [45591] = 2, - ACTIONS(6136), 5, - aux_sym_pandoc_span_token1, + [59124] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6134), 35, + ACTIONS(6144), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106309,19 +114167,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [45636] = 2, - ACTIONS(6140), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [59168] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1841), 1, + sym__pandoc_attr_specifier, + ACTIONS(5898), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6138), 35, - sym__soft_line_ending, + ACTIONS(5896), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106347,24 +114206,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [45681] = 2, - ACTIONS(6144), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [59216] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1843), 1, + sym__pandoc_attr_specifier, + ACTIONS(5902), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6142), 35, - sym__soft_line_ending, + ACTIONS(5900), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106390,24 +114250,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [45726] = 2, - ACTIONS(6148), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [59264] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1844), 1, + sym__pandoc_attr_specifier, + ACTIONS(5906), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6146), 35, - sym__soft_line_ending, + ACTIONS(5904), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106433,24 +114294,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [45771] = 2, - ACTIONS(6152), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [59312] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1846), 1, + sym__pandoc_attr_specifier, + ACTIONS(5910), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6150), 35, - sym__soft_line_ending, + ACTIONS(5908), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106476,25 +114338,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [45816] = 4, - ACTIONS(4186), 1, + sym__whitespace, + [59360] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(2217), 1, + STATE(1749), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + ACTIONS(5910), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 35, + ACTIONS(5908), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -106516,8 +114377,8 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -106530,15 +114391,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [45865] = 2, - ACTIONS(6156), 5, - aux_sym_pandoc_span_token1, + [59408] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1866), 1, + sym__pandoc_attr_specifier, + ACTIONS(5914), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6154), 35, - sym__soft_line_ending, + ACTIONS(5912), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106564,24 +114426,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [45910] = 2, - ACTIONS(6160), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [59456] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1867), 1, + sym__pandoc_attr_specifier, + ACTIONS(5918), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6158), 35, - sym__soft_line_ending, + ACTIONS(5916), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106607,25 +114470,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [45955] = 4, - ACTIONS(4186), 1, + sym__whitespace, + [59504] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(2218), 1, + STATE(1755), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + ACTIONS(5914), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 35, + ACTIONS(5912), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -106647,8 +114509,8 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -106661,14 +114523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46004] = 2, - ACTIONS(6288), 5, - aux_sym_pandoc_span_token1, + [59552] = 4, + ACTIONS(4922), 1, + anon_sym_LBRACE, + STATE(1756), 1, + sym__pandoc_attr_specifier, + ACTIONS(5918), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6286), 35, + ACTIONS(5916), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -106690,6 +114553,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -106700,19 +114564,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [46049] = 2, - ACTIONS(6166), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [59600] = 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6164), 35, + ACTIONS(6080), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106743,20 +114605,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [46094] = 4, - ACTIONS(4186), 1, + sym__whitespace, + [59644] = 4, + ACTIONS(5348), 1, anon_sym_LBRACE, - STATE(2219), 1, + STATE(1774), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + ACTIONS(5882), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 35, + ACTIONS(5880), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -106792,15 +114653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46143] = 2, - ACTIONS(6170), 5, - aux_sym_pandoc_span_token1, + [59692] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6168), 35, + ACTIONS(6204), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106831,18 +114691,61 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [46188] = 2, - ACTIONS(6174), 5, + sym__whitespace, + [59736] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1775), 1, + sym__pandoc_attr_specifier, + ACTIONS(5922), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5920), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [59784] = 2, + ACTIONS(6158), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6172), 35, + ACTIONS(6156), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -106878,16 +114781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [46233] = 4, - ACTIONS(4186), 1, + [59828] = 4, + ACTIONS(5348), 1, anon_sym_LBRACE, - STATE(2225), 1, + STATE(1777), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + ACTIONS(5936), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 35, + ACTIONS(5934), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -106923,14 +114825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46282] = 2, - ACTIONS(6058), 5, + [59876] = 2, + ACTIONS(6162), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6056), 35, + ACTIONS(6160), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -106966,15 +114867,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [46327] = 2, - ACTIONS(6178), 5, - aux_sym_pandoc_span_token1, + [59920] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1778), 1, + sym__pandoc_attr_specifier, + ACTIONS(5866), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, + ACTIONS(5864), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6176), 35, + [59968] = 2, + ACTIONS(6074), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6072), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107005,18 +114949,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [46372] = 2, - ACTIONS(6182), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60012] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1789), 1, + sym__pandoc_attr_specifier, + ACTIONS(5932), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6180), 35, + ACTIONS(5930), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107039,6 +114984,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -107048,18 +114994,16 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [46417] = 2, - ACTIONS(6186), 5, + sym__whitespace, + [60060] = 2, + ACTIONS(6166), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6184), 35, + ACTIONS(6164), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107095,16 +115039,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [46462] = 4, - ACTIONS(4186), 1, + [60104] = 2, + ACTIONS(5942), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5940), 37, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, + sym__whitespace, + [60148] = 4, + ACTIONS(5348), 1, anon_sym_LBRACE, - STATE(2226), 1, + STATE(1791), 1, sym__pandoc_attr_specifier, - ACTIONS(5976), 3, + ACTIONS(5862), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 35, + ACTIONS(5860), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107140,15 +115125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46511] = 2, - ACTIONS(6190), 5, - aux_sym_pandoc_span_token1, + [60196] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1507), 1, + sym__pandoc_attr_specifier, + ACTIONS(5882), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6188), 35, - sym__soft_line_ending, + ACTIONS(5880), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107174,24 +115160,23 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [46556] = 2, - ACTIONS(6194), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60244] = 2, + ACTIONS(5946), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6192), 35, + ACTIONS(5944), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107222,21 +115207,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [46601] = 4, - ACTIONS(4345), 1, - anon_sym_LBRACE, - STATE(1492), 1, - sym__pandoc_attr_specifier, - ACTIONS(5968), 3, + sym__whitespace, + [60288] = 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 35, - sym__soft_line_ending, + ACTIONS(6208), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107259,7 +115241,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -107269,16 +115250,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [46650] = 2, - ACTIONS(6198), 5, - aux_sym_pandoc_span_token1, + [60332] = 4, + ACTIONS(6212), 1, + anon_sym_LBRACE, + STATE(1799), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6196), 35, + ACTIONS(5924), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107301,6 +115284,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -107310,18 +115294,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [46695] = 2, - ACTIONS(6202), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60380] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1800), 1, + sym__pandoc_attr_specifier, + ACTIONS(5840), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6200), 35, + ACTIONS(5838), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107344,6 +115328,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -107353,19 +115338,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [46740] = 2, - ACTIONS(6206), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60428] = 2, + ACTIONS(5950), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6204), 35, + ACTIONS(5948), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107396,18 +115379,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [46785] = 2, - ACTIONS(6210), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60472] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1801), 1, + sym__pandoc_attr_specifier, + ACTIONS(5854), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6208), 35, + ACTIONS(5852), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107430,6 +115414,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -107439,19 +115424,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [46830] = 2, - ACTIONS(6214), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60520] = 2, + ACTIONS(5954), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6212), 35, + ACTIONS(5952), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107482,19 +115465,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [46875] = 2, - ACTIONS(6274), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60564] = 2, + ACTIONS(5958), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6272), 35, + ACTIONS(5956), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107525,18 +115507,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [46920] = 2, - ACTIONS(6218), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60608] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1802), 1, + sym__pandoc_attr_specifier, + ACTIONS(5858), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6216), 35, + ACTIONS(5856), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107559,6 +115542,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -107568,18 +115552,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [46965] = 2, - ACTIONS(6222), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60656] = 4, + ACTIONS(3944), 1, + anon_sym_LBRACE, + STATE(2079), 1, + sym__pandoc_attr_specifier, + ACTIONS(5882), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6220), 35, + ACTIONS(5880), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107589,6 +115573,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -107611,18 +115596,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47010] = 2, - ACTIONS(6226), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60704] = 4, + ACTIONS(3944), 1, + anon_sym_LBRACE, + STATE(2081), 1, + sym__pandoc_attr_specifier, + ACTIONS(5922), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6224), 35, + ACTIONS(5920), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107632,6 +115617,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -107654,18 +115640,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47055] = 2, - ACTIONS(6230), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60752] = 4, + ACTIONS(3944), 1, + anon_sym_LBRACE, + STATE(2082), 1, + sym__pandoc_attr_specifier, + ACTIONS(5936), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6228), 35, + ACTIONS(5934), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107675,6 +115661,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -107697,18 +115684,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47100] = 2, - ACTIONS(6234), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60800] = 4, + ACTIONS(3944), 1, + anon_sym_LBRACE, + STATE(2083), 1, + sym__pandoc_attr_specifier, + ACTIONS(5866), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6232), 35, + ACTIONS(5864), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107718,6 +115705,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -107740,18 +115728,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47145] = 2, - ACTIONS(6278), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60848] = 4, + ACTIONS(3944), 1, + anon_sym_LBRACE, + STATE(2094), 1, + sym__pandoc_attr_specifier, + ACTIONS(5932), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6276), 35, + ACTIONS(5930), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107761,6 +115749,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -107783,18 +115772,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47190] = 2, - ACTIONS(6238), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60896] = 4, + ACTIONS(3944), 1, + anon_sym_LBRACE, + STATE(2096), 1, + sym__pandoc_attr_specifier, + ACTIONS(5862), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6236), 35, + ACTIONS(5860), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107804,6 +115793,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -107826,18 +115816,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47235] = 2, - ACTIONS(6242), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60944] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1803), 1, + sym__pandoc_attr_specifier, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6240), 35, + ACTIONS(5872), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107860,6 +115850,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -107869,18 +115860,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47280] = 2, - ACTIONS(6282), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [60992] = 4, + ACTIONS(6214), 1, + anon_sym_LBRACE, + STATE(2104), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6280), 35, + ACTIONS(5924), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107890,6 +115881,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -107912,18 +115904,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47325] = 2, - ACTIONS(6246), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [61040] = 4, + ACTIONS(3944), 1, + anon_sym_LBRACE, + STATE(2105), 1, + sym__pandoc_attr_specifier, + ACTIONS(5840), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6244), 35, + ACTIONS(5838), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107933,6 +115925,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -107955,21 +115948,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47370] = 4, - ACTIONS(2519), 1, + sym__whitespace, + [61088] = 4, + ACTIONS(5348), 1, anon_sym_LBRACE, - STATE(1867), 1, + STATE(1804), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + ACTIONS(5878), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 35, - sym__line_ending, + ACTIONS(5876), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107991,11 +115982,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -108004,14 +115995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47419] = 2, - ACTIONS(6250), 5, - aux_sym_pandoc_span_token1, + [61136] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1805), 1, + sym__pandoc_attr_specifier, + ACTIONS(5832), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6248), 35, + ACTIONS(5830), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108034,6 +116026,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -108043,18 +116036,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47464] = 2, - ACTIONS(6254), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [61184] = 4, + ACTIONS(3944), 1, + anon_sym_LBRACE, + STATE(2106), 1, + sym__pandoc_attr_specifier, + ACTIONS(5854), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6252), 35, + ACTIONS(5852), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108064,6 +116057,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -108086,18 +116080,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47509] = 2, - ACTIONS(6258), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [61232] = 4, + ACTIONS(3944), 1, + anon_sym_LBRACE, + STATE(2107), 1, + sym__pandoc_attr_specifier, + ACTIONS(5858), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6256), 35, + ACTIONS(5856), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108107,6 +116101,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -108129,18 +116124,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47554] = 2, - ACTIONS(6262), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [61280] = 4, + ACTIONS(3944), 1, + anon_sym_LBRACE, + STATE(2108), 1, + sym__pandoc_attr_specifier, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6260), 35, + ACTIONS(5872), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108150,6 +116145,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -108172,18 +116168,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47599] = 2, - ACTIONS(6266), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [61328] = 4, + ACTIONS(3944), 1, + anon_sym_LBRACE, + STATE(2109), 1, + sym__pandoc_attr_specifier, + ACTIONS(5878), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6264), 35, + ACTIONS(5876), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108193,6 +116189,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -108215,63 +116212,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [47644] = 2, - ACTIONS(6270), 5, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6268), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - [47689] = 4, - ACTIONS(4345), 1, + [61376] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(1495), 1, + STATE(2110), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + ACTIONS(5832), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 35, + ACTIONS(5830), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108281,6 +116233,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -108295,7 +116248,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -108307,16 +116259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47738] = 4, - ACTIONS(4603), 1, + [61424] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(1807), 1, + STATE(2111), 1, sym__pandoc_attr_specifier, - ACTIONS(5954), 3, + ACTIONS(5886), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 35, + ACTIONS(5884), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108352,16 +116303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47787] = 4, - ACTIONS(4603), 1, + [61472] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(1825), 1, + STATE(2112), 1, sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + ACTIONS(5846), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 35, + ACTIONS(5844), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108397,16 +116347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47836] = 4, - ACTIONS(4603), 1, + [61520] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(2010), 1, + STATE(2116), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + ACTIONS(5850), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 35, + ACTIONS(5848), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108442,16 +116391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47885] = 4, - ACTIONS(4603), 1, + [61568] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(2050), 1, + STATE(2117), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 35, + ACTIONS(5868), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108487,16 +116435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47934] = 4, - ACTIONS(4345), 1, + [61616] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(1498), 1, + STATE(2118), 1, sym__pandoc_attr_specifier, - ACTIONS(5954), 3, + ACTIONS(5890), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 35, + ACTIONS(5888), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108506,6 +116453,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -108520,7 +116468,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -108532,16 +116479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47983] = 4, - ACTIONS(4345), 1, + [61664] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(1501), 1, + STATE(2119), 1, sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 35, + ACTIONS(5892), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108551,6 +116497,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -108565,7 +116512,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -108577,61 +116523,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48032] = 4, - ACTIONS(4345), 1, - anon_sym_LBRACE, - STATE(1514), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + [61712] = 2, + ACTIONS(6070), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_close_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, sym__whitespace, - [48081] = 4, - ACTIONS(4345), 1, - anon_sym_LBRACE, - STATE(1517), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 35, + ACTIONS(6068), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108655,7 +116553,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -108664,64 +116561,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [48130] = 4, - ACTIONS(6290), 1, anon_sym_LBRACE, - STATE(2211), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__single_quote_span_close, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [48179] = 4, - ACTIONS(4603), 1, + [61756] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(2215), 1, + STATE(2120), 1, sym__pandoc_attr_specifier, - ACTIONS(5964), 3, + ACTIONS(5898), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 35, + ACTIONS(5896), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108757,16 +116609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48228] = 4, - ACTIONS(4603), 1, + [61804] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(1480), 1, + STATE(2121), 1, sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + ACTIONS(5902), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 35, + ACTIONS(5900), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108802,16 +116653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48277] = 4, - ACTIONS(6292), 1, + [61852] = 4, + ACTIONS(5348), 1, anon_sym_LBRACE, - STATE(1528), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, + STATE(1806), 1, + sym__pandoc_attr_specifier, + ACTIONS(5886), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 35, + ACTIONS(5884), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108834,8 +116684,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -108847,16 +116697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48326] = 4, - ACTIONS(4603), 1, + [61900] = 4, + ACTIONS(5348), 1, anon_sym_LBRACE, - STATE(1487), 1, + STATE(1807), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + ACTIONS(5846), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 35, + ACTIONS(5844), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108866,7 +116715,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -108880,6 +116728,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -108892,16 +116741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48375] = 4, - ACTIONS(4603), 1, + [61948] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(1488), 1, + STATE(2122), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + ACTIONS(5906), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 35, + ACTIONS(5904), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108937,16 +116785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48424] = 4, - ACTIONS(4345), 1, + [61996] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(1529), 1, + STATE(2123), 1, sym__pandoc_attr_specifier, - ACTIONS(5964), 3, + ACTIONS(5910), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 35, + ACTIONS(5908), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108956,6 +116803,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -108970,7 +116818,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -108982,16 +116829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48473] = 4, - ACTIONS(4603), 1, + [62044] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(1519), 1, + STATE(2129), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + ACTIONS(5914), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 35, + ACTIONS(5912), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109027,16 +116873,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48522] = 4, - ACTIONS(4603), 1, + [62092] = 4, + ACTIONS(3944), 1, anon_sym_LBRACE, - STATE(1531), 1, + STATE(2130), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + ACTIONS(5918), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 35, + ACTIONS(5916), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109072,16 +116917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48571] = 4, - ACTIONS(4345), 1, + [62140] = 4, + ACTIONS(5348), 1, anon_sym_LBRACE, - STATE(1530), 1, + STATE(1811), 1, sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + ACTIONS(5850), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 35, + ACTIONS(5848), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109104,8 +116948,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109117,17 +116961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48620] = 4, - ACTIONS(4603), 1, - anon_sym_LBRACE, - STATE(1567), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + [62188] = 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 35, + ACTIONS(6024), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -109136,7 +116977,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -109160,19 +117000,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [48669] = 4, - ACTIONS(4603), 1, - anon_sym_LBRACE, - STATE(1578), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + [62232] = 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 35, + ACTIONS(6028), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -109181,7 +117019,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -109205,18 +117042,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [48718] = 4, - ACTIONS(4345), 1, + [62276] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1532), 1, + STATE(2146), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + ACTIONS(5882), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 35, + ACTIONS(5880), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109227,6 +117064,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109240,7 +117078,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109252,16 +117089,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48767] = 4, - ACTIONS(4603), 1, + [62324] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1613), 1, + STATE(1653), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + ACTIONS(5840), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 35, + sym__whitespace, + ACTIONS(5838), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109271,7 +117108,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -109295,18 +117131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [48816] = 4, - ACTIONS(4603), 1, + [62372] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1623), 1, + STATE(2148), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + ACTIONS(5936), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 35, + ACTIONS(5934), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109316,8 +117151,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109342,16 +117177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48865] = 4, - ACTIONS(4345), 1, + [62420] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1533), 1, + STATE(2149), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + ACTIONS(5866), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 35, + ACTIONS(5864), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109362,6 +117196,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109375,7 +117210,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109387,16 +117221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48914] = 4, - ACTIONS(4345), 1, + [62468] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1535), 1, + STATE(2160), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + ACTIONS(5932), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 35, + ACTIONS(5930), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109407,6 +117240,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109420,7 +117254,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109432,16 +117265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48963] = 4, - ACTIONS(4345), 1, + [62516] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1536), 1, + STATE(2162), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + ACTIONS(5862), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 35, + ACTIONS(5860), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109452,6 +117284,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109465,7 +117298,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109477,17 +117309,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49012] = 4, - ACTIONS(4345), 1, - anon_sym_LBRACE, - STATE(1538), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + [62564] = 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 35, + ACTIONS(6032), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -109510,7 +117339,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109520,18 +117348,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [49061] = 4, - ACTIONS(4345), 1, + [62608] = 4, + ACTIONS(5348), 1, anon_sym_LBRACE, - STATE(1539), 1, + STATE(1812), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 35, + ACTIONS(5868), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109554,8 +117382,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109567,16 +117395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49110] = 4, - ACTIONS(4345), 1, + [62656] = 4, + ACTIONS(5348), 1, anon_sym_LBRACE, - STATE(1543), 1, + STATE(1813), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + ACTIONS(5890), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 35, + ACTIONS(5888), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109599,8 +117426,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109612,16 +117439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49159] = 4, - ACTIONS(4345), 1, + [62704] = 4, + ACTIONS(6216), 1, anon_sym_LBRACE, - STATE(1544), 1, - sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + STATE(2170), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 35, + ACTIONS(5924), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109632,6 +117458,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109645,7 +117472,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109657,16 +117483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49208] = 4, - ACTIONS(4345), 1, + [62752] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1546), 1, + STATE(2171), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + ACTIONS(5840), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 35, + ACTIONS(5838), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109677,6 +117502,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109690,7 +117516,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109702,16 +117527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49257] = 4, - ACTIONS(4345), 1, + [62800] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1547), 1, + STATE(2172), 1, sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + ACTIONS(5854), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 35, + ACTIONS(5852), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109722,6 +117546,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109735,7 +117560,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109747,16 +117571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49306] = 4, - ACTIONS(4186), 1, + [62848] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(2159), 1, + STATE(2173), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + ACTIONS(5858), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 35, + ACTIONS(5856), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109767,6 +117590,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109779,7 +117603,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -109792,16 +117615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49355] = 4, - ACTIONS(4345), 1, + [62896] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1549), 1, + STATE(2174), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 35, + ACTIONS(5872), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109812,6 +117634,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109825,7 +117648,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109837,16 +117659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49404] = 4, - ACTIONS(4603), 1, + [62944] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1670), 1, + STATE(2176), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + ACTIONS(5878), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 35, + ACTIONS(5876), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109856,8 +117677,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109882,16 +117703,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49453] = 4, - ACTIONS(4603), 1, + [62992] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1671), 1, + STATE(2177), 1, sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + ACTIONS(5832), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 35, + ACTIONS(5830), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109901,8 +117721,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109927,16 +117747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49502] = 4, - ACTIONS(4345), 1, + [63040] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1550), 1, + STATE(2179), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + ACTIONS(5886), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 35, + ACTIONS(5884), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109947,6 +117766,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -109960,7 +117780,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -109972,16 +117791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49551] = 4, - ACTIONS(4603), 1, + [63088] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1673), 1, + STATE(2180), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + ACTIONS(5846), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 35, + ACTIONS(5844), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109991,8 +117809,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -110017,16 +117835,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49600] = 4, - ACTIONS(4603), 1, + [63136] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1678), 1, + STATE(2184), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + ACTIONS(5850), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 35, + ACTIONS(5848), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110036,8 +117853,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -110062,16 +117879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49649] = 4, - ACTIONS(4345), 1, + [63184] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1551), 1, + STATE(2185), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 35, + ACTIONS(5868), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110082,6 +117898,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -110095,7 +117912,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -110107,16 +117923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49698] = 4, - ACTIONS(4345), 1, + [63232] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1552), 1, + STATE(2186), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + ACTIONS(5890), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 35, + ACTIONS(5888), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110127,6 +117942,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -110140,7 +117956,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -110152,16 +117967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49747] = 4, - ACTIONS(4345), 1, + [63280] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1557), 1, + STATE(2187), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 35, + ACTIONS(5892), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110172,6 +117986,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -110185,7 +118000,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -110197,16 +118011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49796] = 4, - ACTIONS(4345), 1, + [63328] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(1558), 1, + STATE(1693), 1, sym__pandoc_attr_specifier, - ACTIONS(5976), 3, + ACTIONS(5882), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 35, + ACTIONS(5880), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110228,9 +118041,9 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -110242,15 +118055,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49845] = 2, - ACTIONS(6266), 3, + [63376] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1814), 1, + sym__pandoc_attr_specifier, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 37, - sym__line_ending, + ACTIONS(5892), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -110272,6 +118086,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -110282,20 +118097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [49890] = 4, - ACTIONS(4603), 1, + [63424] = 4, + ACTIONS(2903), 1, anon_sym_LBRACE, - STATE(1679), 1, + STATE(1517), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + ACTIONS(5922), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 35, - sym__soft_line_ending, + ACTIONS(5920), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -110304,7 +118117,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -110322,6 +118134,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -110330,16 +118143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49939] = 4, - ACTIONS(4776), 1, + [63472] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1581), 1, + STATE(2189), 1, sym__pandoc_attr_specifier, - ACTIONS(5968), 3, + ACTIONS(5898), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 35, + ACTIONS(5896), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110350,6 +118162,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -110364,7 +118177,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -110375,16 +118187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49988] = 4, - ACTIONS(4776), 1, + [63520] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1584), 1, + STATE(2190), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + ACTIONS(5902), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 35, + ACTIONS(5900), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110395,6 +118206,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -110409,7 +118221,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -110420,16 +118231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50037] = 4, - ACTIONS(4603), 1, + [63568] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1683), 1, + STATE(2191), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + ACTIONS(5906), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 35, + ACTIONS(5904), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110439,8 +118249,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -110465,16 +118275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50086] = 4, - ACTIONS(4776), 1, + [63616] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1587), 1, + STATE(2192), 1, sym__pandoc_attr_specifier, - ACTIONS(5954), 3, + ACTIONS(5910), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 35, + ACTIONS(5908), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110485,6 +118294,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -110499,7 +118309,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -110510,16 +118319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50135] = 4, - ACTIONS(4776), 1, + [63664] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1590), 1, + STATE(2198), 1, sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + ACTIONS(5914), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 35, + ACTIONS(5912), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110530,6 +118338,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -110544,7 +118353,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -110555,16 +118363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50184] = 4, - ACTIONS(4603), 1, + [63712] = 4, + ACTIONS(4004), 1, anon_sym_LBRACE, - STATE(1691), 1, + STATE(2199), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + ACTIONS(5918), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 35, + ACTIONS(5916), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110574,8 +118381,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -110600,16 +118407,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50233] = 4, - ACTIONS(4776), 1, + [63760] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1603), 1, + STATE(1654), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + ACTIONS(5854), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 35, + sym__whitespace, + ACTIONS(5852), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110634,7 +118441,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -110643,18 +118449,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [50282] = 4, - ACTIONS(4776), 1, + [63808] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1606), 1, + STATE(2216), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + ACTIONS(5882), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 35, + ACTIONS(5880), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110672,6 +118477,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -110679,7 +118485,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -110690,16 +118495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50331] = 4, - ACTIONS(4603), 1, + [63856] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1692), 1, + STATE(2217), 1, sym__pandoc_attr_specifier, - ACTIONS(5976), 3, + ACTIONS(5922), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 35, + ACTIONS(5920), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110709,7 +118513,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -110718,6 +118521,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -110735,17 +118539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50380] = 4, - ACTIONS(2519), 1, + [63904] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1866), 1, + STATE(2218), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + ACTIONS(5936), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 35, - sym__line_ending, + ACTIONS(5934), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -110762,6 +118565,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -110771,7 +118575,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -110780,15 +118583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50429] = 2, - ACTIONS(6270), 3, + [63952] = 4, + ACTIONS(4246), 1, + anon_sym_LBRACE, + STATE(2219), 1, + sym__pandoc_attr_specifier, + ACTIONS(5866), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 37, - sym__line_ending, + ACTIONS(5864), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -110805,6 +118609,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -110820,19 +118625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [50474] = 4, - ACTIONS(6294), 1, + [64000] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1617), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, + STATE(2230), 1, + sym__pandoc_attr_specifier, + ACTIONS(5932), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 35, + ACTIONS(5930), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110850,6 +118653,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -110857,7 +118661,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -110868,16 +118671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50523] = 4, - ACTIONS(4776), 1, + [64048] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1618), 1, + STATE(2232), 1, sym__pandoc_attr_specifier, - ACTIONS(5964), 3, + ACTIONS(5862), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 35, + ACTIONS(5860), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110895,6 +118697,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -110902,7 +118705,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -110913,17 +118715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50572] = 4, - ACTIONS(4935), 1, - anon_sym_LBRACE, - STATE(1809), 1, - sym__pandoc_attr_specifier, - ACTIONS(5968), 3, + [64096] = 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 35, + ACTIONS(6036), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -110933,7 +118732,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -110956,18 +118754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [50621] = 4, - ACTIONS(4776), 1, + [64140] = 4, + ACTIONS(6218), 1, anon_sym_LBRACE, - STATE(1619), 1, - sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + STATE(2240), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 35, + ACTIONS(5924), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110985,6 +118783,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -110992,7 +118791,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111003,16 +118801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50670] = 4, - ACTIONS(4776), 1, + [64188] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1621), 1, + STATE(2241), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + ACTIONS(5840), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 35, + ACTIONS(5838), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111030,6 +118827,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111037,7 +118835,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111048,16 +118845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50719] = 4, - ACTIONS(4935), 1, + [64236] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1823), 1, + STATE(2242), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + ACTIONS(5854), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 35, + ACTIONS(5852), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111068,7 +118864,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -111076,6 +118871,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111093,16 +118889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50768] = 4, - ACTIONS(4776), 1, + [64284] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1622), 1, + STATE(2243), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + ACTIONS(5858), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 35, + ACTIONS(5856), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111120,6 +118915,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111127,7 +118923,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111138,16 +118933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50817] = 4, - ACTIONS(4776), 1, + [64332] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1624), 1, + STATE(2244), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 35, + ACTIONS(5872), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111165,6 +118959,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111172,7 +118967,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111183,16 +118977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50866] = 4, - ACTIONS(4776), 1, + [64380] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1625), 1, + STATE(2245), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + ACTIONS(5878), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 35, + ACTIONS(5876), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111210,6 +119003,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111217,7 +119011,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111228,16 +119021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50915] = 4, - ACTIONS(4776), 1, + [64428] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1627), 1, + STATE(2246), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + ACTIONS(5832), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 35, + ACTIONS(5830), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111255,6 +119047,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111262,7 +119055,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111273,16 +119065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50964] = 4, - ACTIONS(4776), 1, + [64476] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1628), 1, + STATE(2247), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + ACTIONS(5886), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 35, + ACTIONS(5884), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111300,6 +119091,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111307,7 +119099,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111318,16 +119109,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51013] = 4, - ACTIONS(4776), 1, + [64524] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1632), 1, + STATE(2248), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + ACTIONS(5846), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 35, + ACTIONS(5844), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111345,6 +119135,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111352,7 +119143,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111363,16 +119153,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51062] = 4, - ACTIONS(4776), 1, + [64572] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1633), 1, + STATE(2252), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + ACTIONS(5850), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 35, + ACTIONS(5848), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__strikeout_close, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [64620] = 2, + ACTIONS(6170), 4, + aux_sym_pandoc_span_token1, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + sym__whitespace, + ACTIONS(6168), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111397,7 +119228,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111405,19 +119235,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [51111] = 4, - ACTIONS(4776), 1, + [64664] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1635), 1, + STATE(2254), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + ACTIONS(5890), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 35, + ACTIONS(5888), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111435,6 +119265,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111442,7 +119273,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111453,16 +119283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51160] = 4, - ACTIONS(4776), 1, + [64712] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1636), 1, + STATE(2255), 1, sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 35, + ACTIONS(5892), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111480,6 +119309,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111487,7 +119317,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111498,15 +119327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51209] = 2, - ACTIONS(6298), 5, - aux_sym_pandoc_span_token1, + [64760] = 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6296), 35, + ACTIONS(6040), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -111537,20 +119365,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [51254] = 4, - ACTIONS(4186), 1, + sym__whitespace, + [64804] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(2162), 1, + STATE(2256), 1, sym__pandoc_attr_specifier, - ACTIONS(5954), 3, + ACTIONS(5898), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 35, + ACTIONS(5896), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111568,12 +119395,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -111586,16 +119413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51303] = 4, - ACTIONS(4776), 1, + [64852] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1638), 1, + STATE(2257), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + ACTIONS(5902), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 35, + ACTIONS(5900), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111613,6 +119439,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111620,7 +119447,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111631,16 +119457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51352] = 4, - ACTIONS(4776), 1, + [64900] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1639), 1, + STATE(2258), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + ACTIONS(5906), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 35, + ACTIONS(5904), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111658,6 +119483,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111665,7 +119491,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111676,16 +119501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51401] = 4, - ACTIONS(4776), 1, + [64948] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1640), 1, + STATE(2259), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + ACTIONS(5910), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 35, + ACTIONS(5908), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111703,6 +119527,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111710,7 +119535,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111721,16 +119545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51450] = 4, - ACTIONS(4776), 1, + [64996] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1641), 1, + STATE(2265), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + ACTIONS(5914), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 35, + ACTIONS(5912), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111748,6 +119571,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111755,7 +119579,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111766,16 +119589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51499] = 4, - ACTIONS(4776), 1, + [65044] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1646), 1, + STATE(2266), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + ACTIONS(5918), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 35, + ACTIONS(5916), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111793,6 +119615,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -111800,7 +119623,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -111811,59 +119633,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51548] = 4, - ACTIONS(4776), 1, + [65092] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1647), 1, + STATE(1655), 1, sym__pandoc_attr_specifier, - ACTIONS(5976), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [51597] = 2, - ACTIONS(6064), 5, - aux_sym_pandoc_span_token1, + ACTIONS(5858), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6062), 35, + ACTIONS(5856), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111895,20 +119674,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - [51642] = 4, - ACTIONS(4186), 1, + [65140] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(2165), 1, + STATE(2281), 1, sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + ACTIONS(5882), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 35, + ACTIONS(5880), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111927,11 +119704,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -111944,16 +119721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51691] = 4, - ACTIONS(4186), 1, + [65188] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(2179), 1, + STATE(2282), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + ACTIONS(5922), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 35, + ACTIONS(5920), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111972,11 +119748,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -111989,16 +119765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51740] = 4, - ACTIONS(4186), 1, + [65236] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(2182), 1, + STATE(2284), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + ACTIONS(5936), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 35, + ACTIONS(5934), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112017,11 +119792,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -112034,16 +119809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51789] = 4, - ACTIONS(4603), 1, + [65284] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1788), 1, + STATE(2285), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + ACTIONS(5866), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 35, + ACTIONS(5864), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112053,7 +119827,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -112063,6 +119836,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112079,58 +119853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [51838] = 2, - ACTIONS(6300), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(2334), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, + [65332] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [51883] = 2, - ACTIONS(6006), 3, + STATE(1570), 1, + sym__pandoc_attr_specifier, + ACTIONS(5932), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 37, - sym__line_ending, + ACTIONS(5930), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112148,6 +119880,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112162,17 +119895,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [51928] = 2, - ACTIONS(6068), 5, - aux_sym_pandoc_span_token1, + [65380] = 4, + ACTIONS(4398), 1, + anon_sym_LBRACE, + STATE(1492), 1, + sym__pandoc_attr_specifier, + ACTIONS(5862), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6066), 35, + ACTIONS(5860), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112191,6 +119924,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112204,16 +119938,14 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [51973] = 2, - ACTIONS(6198), 3, + sym__whitespace, + [65428] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 37, + ACTIONS(6044), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -112251,15 +119983,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52018] = 2, - ACTIONS(6304), 3, + [65472] = 4, + ACTIONS(6220), 1, + anon_sym_LBRACE, + STATE(1500), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6302), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5924), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112277,6 +120010,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112291,18 +120025,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52063] = 2, - ACTIONS(6202), 3, + [65520] = 4, + ACTIONS(4398), 1, + anon_sym_LBRACE, + STATE(1501), 1, + sym__pandoc_attr_specifier, + ACTIONS(5840), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 37, - sym__line_ending, + ACTIONS(5838), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112320,6 +120054,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112334,18 +120069,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52108] = 2, - ACTIONS(6206), 3, + [65568] = 4, + ACTIONS(4398), 1, + anon_sym_LBRACE, + STATE(1502), 1, + sym__pandoc_attr_specifier, + ACTIONS(5854), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 37, - sym__line_ending, + ACTIONS(5852), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112363,6 +120098,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112377,20 +120113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52153] = 4, - ACTIONS(2519), 1, + [65616] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1900), 1, + STATE(1503), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + ACTIONS(5858), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 35, - sym__line_ending, + ACTIONS(5856), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112408,6 +120142,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112416,7 +120151,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -112425,17 +120159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [52202] = 4, - ACTIONS(2519), 1, + [65664] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1901), 1, + STATE(1504), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 35, - sym__line_ending, + ACTIONS(5872), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112453,6 +120186,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112461,7 +120195,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -112470,16 +120203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [52251] = 4, - ACTIONS(4935), 1, + [65712] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1837), 1, + STATE(1505), 1, sym__pandoc_attr_specifier, - ACTIONS(5954), 3, + ACTIONS(5878), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 35, + ACTIONS(5876), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112490,7 +120222,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -112499,6 +120230,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112515,17 +120247,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [52300] = 4, - ACTIONS(2519), 1, + [65760] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1902), 1, + STATE(1506), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + ACTIONS(5832), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 35, - sym__line_ending, + ACTIONS(5830), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112543,6 +120274,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112551,7 +120283,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -112560,17 +120291,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [52349] = 4, - ACTIONS(2519), 1, + [65808] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1905), 1, + STATE(1508), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + ACTIONS(5886), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 35, - sym__line_ending, + ACTIONS(5884), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112588,6 +120318,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112596,7 +120327,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -112605,15 +120335,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [52398] = 2, - ACTIONS(6210), 3, + [65856] = 4, + ACTIONS(4398), 1, + anon_sym_LBRACE, + STATE(1509), 1, + sym__pandoc_attr_specifier, + ACTIONS(5846), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 37, - sym__line_ending, + ACTIONS(5844), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112631,6 +120362,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112645,20 +120377,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52443] = 4, - ACTIONS(2519), 1, + [65904] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1910), 1, + STATE(1513), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + ACTIONS(5850), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 35, - sym__line_ending, + ACTIONS(5848), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112676,6 +120406,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112684,7 +120415,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -112693,16 +120423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [52492] = 4, - ACTIONS(4935), 1, + [65952] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1846), 1, + STATE(1514), 1, sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 35, + ACTIONS(5868), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112713,7 +120442,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -112722,6 +120450,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112738,16 +120467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [52541] = 4, - ACTIONS(4935), 1, + [66000] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1913), 1, + STATE(1515), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + ACTIONS(5890), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 35, + ACTIONS(5888), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112758,7 +120486,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -112767,6 +120494,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112783,17 +120511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [52590] = 4, - ACTIONS(2519), 1, + [66048] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1911), 1, + STATE(1516), 1, sym__pandoc_attr_specifier, - ACTIONS(5976), 3, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 35, - sym__line_ending, + ACTIONS(5892), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112811,6 +120538,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -112819,7 +120547,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -112828,12 +120555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [52639] = 2, - ACTIONS(6214), 3, + [66096] = 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 37, + ACTIONS(6048), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -112871,15 +120597,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52684] = 2, - ACTIONS(6274), 3, + [66140] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1815), 1, + sym__pandoc_attr_specifier, + ACTIONS(5898), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 37, - sym__line_ending, + ACTIONS(5896), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112901,6 +120628,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -112911,18 +120639,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52729] = 2, - ACTIONS(6218), 3, + [66188] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1816), 1, + sym__pandoc_attr_specifier, + ACTIONS(5902), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 37, - sym__line_ending, + ACTIONS(5900), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112944,6 +120672,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -112954,18 +120683,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52774] = 2, - ACTIONS(6222), 3, + [66236] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1817), 1, + sym__pandoc_attr_specifier, + ACTIONS(5906), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 37, - sym__line_ending, + ACTIONS(5904), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112987,6 +120716,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -112997,18 +120727,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52819] = 2, - ACTIONS(6226), 3, + [66284] = 4, + ACTIONS(4398), 1, + anon_sym_LBRACE, + STATE(1518), 1, + sym__pandoc_attr_specifier, + ACTIONS(5898), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 37, - sym__line_ending, + ACTIONS(5896), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113026,6 +120756,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -113040,18 +120771,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52864] = 2, - ACTIONS(6230), 3, + [66332] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1818), 1, + sym__pandoc_attr_specifier, + ACTIONS(5910), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 37, - sym__line_ending, + ACTIONS(5908), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113073,6 +120804,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -113083,61 +120815,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52909] = 2, - ACTIONS(6072), 5, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6070), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, + [66380] = 4, + ACTIONS(5348), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [52954] = 2, - ACTIONS(6088), 3, + STATE(1824), 1, + sym__pandoc_attr_specifier, + ACTIONS(5914), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 37, - sym__line_ending, + ACTIONS(5912), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113159,6 +120848,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -113169,17 +120859,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52999] = 2, - ACTIONS(6076), 5, - aux_sym_pandoc_span_token1, + [66428] = 4, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(1825), 1, + sym__pandoc_attr_specifier, + ACTIONS(5918), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6074), 35, + ACTIONS(5916), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113202,6 +120892,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -113211,62 +120902,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [53044] = 2, - ACTIONS(6080), 5, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6078), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, + [66476] = 4, + ACTIONS(2903), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [53089] = 2, - ACTIONS(6092), 3, + STATE(1537), 1, + sym__pandoc_attr_specifier, + ACTIONS(5936), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 37, + ACTIONS(5934), 35, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113292,25 +120940,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53134] = 4, - ACTIONS(4935), 1, + [66524] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1918), 1, + STATE(1519), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + ACTIONS(5902), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 35, + ACTIONS(5900), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113321,7 +120968,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -113330,6 +120976,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -113346,16 +120993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53183] = 4, - ACTIONS(6306), 1, + [66572] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(2193), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, + STATE(1520), 1, + sym__pandoc_attr_specifier, + ACTIONS(5906), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 35, + ACTIONS(5904), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113374,49 +121020,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [53232] = 2, - ACTIONS(6310), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6308), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -113431,19 +121035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53277] = 4, - ACTIONS(4186), 1, + [66620] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(2194), 1, + STATE(1521), 1, sym__pandoc_attr_specifier, - ACTIONS(5964), 3, + ACTIONS(5910), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 35, + ACTIONS(5908), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113462,11 +121064,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -113479,16 +121081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53326] = 4, - ACTIONS(6312), 1, + [66668] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1964), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, + STATE(1527), 1, + sym__pandoc_attr_specifier, + ACTIONS(5914), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 35, + ACTIONS(5912), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113499,7 +121100,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -113508,6 +121108,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -113524,16 +121125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53375] = 4, - ACTIONS(4935), 1, + [66716] = 4, + ACTIONS(4398), 1, anon_sym_LBRACE, - STATE(1967), 1, + STATE(1528), 1, sym__pandoc_attr_specifier, - ACTIONS(5964), 3, + ACTIONS(5918), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 35, + ACTIONS(5916), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113544,7 +121144,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -113553,6 +121152,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -113569,16 +121169,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53424] = 4, - ACTIONS(4935), 1, + [66764] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(1970), 1, + STATE(1695), 1, sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + ACTIONS(5922), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 35, + ACTIONS(5920), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113589,7 +121188,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -113601,6 +121199,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -113614,16 +121213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53473] = 4, - ACTIONS(4935), 1, + [66812] = 4, + ACTIONS(4706), 1, anon_sym_LBRACE, - STATE(1982), 1, + STATE(1840), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + ACTIONS(5882), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 35, + ACTIONS(5880), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113634,7 +121232,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -113648,6 +121245,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -113659,15 +121257,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53522] = 2, - ACTIONS(6096), 3, + [66860] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1546), 1, + sym__pandoc_attr_specifier, + ACTIONS(5882), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 37, - sym__line_ending, + ACTIONS(5880), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113686,6 +121285,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -113699,18 +121299,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53567] = 2, - ACTIONS(6100), 3, + [66908] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1548), 1, + sym__pandoc_attr_specifier, + ACTIONS(5922), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 37, - sym__line_ending, + ACTIONS(5920), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113729,6 +121329,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -113742,18 +121343,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53612] = 2, - ACTIONS(6104), 3, + [66956] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1551), 1, + sym__pandoc_attr_specifier, + ACTIONS(5936), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 37, - sym__line_ending, + ACTIONS(5934), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113772,6 +121373,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -113785,18 +121387,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53657] = 2, - ACTIONS(6108), 3, + [67004] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1554), 1, + sym__pandoc_attr_specifier, + ACTIONS(5866), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 37, - sym__line_ending, + ACTIONS(5864), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113815,6 +121417,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -113828,19 +121431,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53702] = 4, - ACTIONS(4935), 1, + [67052] = 4, + ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(2006), 1, + STATE(1567), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + ACTIONS(5932), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 35, + ACTIONS(5930), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113851,7 +121452,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -113861,6 +121461,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -113876,15 +121477,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53751] = 2, - ACTIONS(6234), 3, + [67100] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1571), 1, + sym__pandoc_attr_specifier, + ACTIONS(5862), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 37, - sym__line_ending, + ACTIONS(5860), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113903,6 +121505,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -113916,19 +121519,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53796] = 4, - ACTIONS(4935), 1, + [67148] = 4, + ACTIONS(4706), 1, anon_sym_LBRACE, - STATE(2008), 1, + STATE(1842), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + ACTIONS(5922), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 35, + ACTIONS(5920), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113939,7 +121540,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -113953,6 +121553,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -113964,16 +121565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53845] = 4, - ACTIONS(4935), 1, + [67196] = 4, + ACTIONS(4706), 1, anon_sym_LBRACE, - STATE(2009), 1, + STATE(1845), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + ACTIONS(5936), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 35, + ACTIONS(5934), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113984,7 +121584,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -113998,6 +121597,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -114009,16 +121609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53894] = 4, - ACTIONS(4186), 1, + [67244] = 4, + ACTIONS(4706), 1, anon_sym_LBRACE, - STATE(2195), 1, + STATE(1848), 1, sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + ACTIONS(5866), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 35, + ACTIONS(5864), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114041,8 +121640,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -114054,12 +121653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53943] = 2, - ACTIONS(6278), 3, + [67292] = 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 37, + ACTIONS(6052), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -114097,15 +121695,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53988] = 2, - ACTIONS(6238), 3, + [67336] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1861), 1, + sym__pandoc_attr_specifier, + ACTIONS(5932), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 37, - sym__line_ending, + ACTIONS(5930), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114128,6 +121727,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -114137,18 +121737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54033] = 2, - ACTIONS(6112), 3, + [67384] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1865), 1, + sym__pandoc_attr_specifier, + ACTIONS(5862), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 37, - sym__line_ending, + ACTIONS(5860), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114171,6 +121771,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -114180,18 +121781,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54078] = 2, - ACTIONS(6116), 3, + [67432] = 4, + ACTIONS(2903), 1, + anon_sym_LBRACE, + STATE(1542), 1, + sym__pandoc_attr_specifier, + ACTIONS(5866), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 37, + ACTIONS(5864), 35, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114217,24 +121818,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54123] = 2, - ACTIONS(6120), 3, + [67480] = 4, + ACTIONS(6222), 1, + anon_sym_LBRACE, + STATE(1875), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 37, - sym__line_ending, + ACTIONS(5924), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114257,6 +121859,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -114266,20 +121869,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [67528] = 4, + ACTIONS(6224), 1, anon_sym_LBRACE, + STATE(1581), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5924), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__superscript_close, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54168] = 4, - ACTIONS(2519), 1, + [67576] = 4, + ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(1870), 1, + STATE(1582), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + ACTIONS(5840), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 35, - sym__line_ending, + ACTIONS(5838), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114298,6 +121943,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -114305,7 +121951,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -114314,16 +121959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54217] = 4, - ACTIONS(4935), 1, + [67624] = 4, + ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(2019), 1, + STATE(1583), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + ACTIONS(5854), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 35, + ACTIONS(5852), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114334,7 +121978,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -114344,6 +121987,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -114359,15 +122003,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54266] = 2, - ACTIONS(6124), 3, + [67672] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1584), 1, + sym__pandoc_attr_specifier, + ACTIONS(5858), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 37, - sym__line_ending, + ACTIONS(5856), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114386,6 +122031,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -114399,18 +122045,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54311] = 2, - ACTIONS(6242), 3, + [67720] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1585), 1, + sym__pandoc_attr_specifier, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 37, - sym__line_ending, + ACTIONS(5872), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114429,6 +122075,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -114442,18 +122089,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54356] = 2, - ACTIONS(6282), 3, + [67768] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1586), 1, + sym__pandoc_attr_specifier, + ACTIONS(5878), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 37, - sym__line_ending, + ACTIONS(5876), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114472,6 +122119,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -114485,18 +122133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54401] = 2, - ACTIONS(6246), 3, + [67816] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1876), 1, + sym__pandoc_attr_specifier, + ACTIONS(5840), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 37, - sym__line_ending, + ACTIONS(5838), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114519,6 +122167,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -114528,18 +122177,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54446] = 2, - ACTIONS(6128), 3, + [67864] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1587), 1, + sym__pandoc_attr_specifier, + ACTIONS(5832), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 37, - sym__line_ending, + ACTIONS(5830), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114558,6 +122207,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -114571,18 +122221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54491] = 2, - ACTIONS(6132), 3, + [67912] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1589), 1, + sym__pandoc_attr_specifier, + ACTIONS(5886), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 37, - sym__line_ending, + ACTIONS(5884), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114601,6 +122251,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -114614,18 +122265,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54536] = 2, - ACTIONS(6030), 3, + [67960] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1590), 1, + sym__pandoc_attr_specifier, + ACTIONS(5846), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 37, - sym__line_ending, + ACTIONS(5844), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114644,6 +122295,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -114657,17 +122309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54581] = 2, - ACTIONS(6084), 5, - aux_sym_pandoc_span_token1, + [68008] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1594), 1, + sym__pandoc_attr_specifier, + ACTIONS(5850), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6082), 35, + ACTIONS(5848), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114687,6 +122339,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -114699,20 +122352,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [54626] = 4, - ACTIONS(4935), 1, + sym__whitespace, + [68056] = 4, + ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(2042), 1, + STATE(1595), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 35, + ACTIONS(5868), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114723,7 +122374,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -114733,6 +122383,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -114748,16 +122399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54675] = 4, - ACTIONS(4935), 1, + [68104] = 4, + ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(2043), 1, + STATE(1596), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + ACTIONS(5890), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 35, + ACTIONS(5888), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114768,7 +122418,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -114778,6 +122427,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -114793,16 +122443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54724] = 4, - ACTIONS(4186), 1, + [68152] = 4, + ACTIONS(4706), 1, anon_sym_LBRACE, - STATE(2197), 1, + STATE(1877), 1, sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + ACTIONS(5854), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 35, + ACTIONS(5852), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114825,8 +122474,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -114838,15 +122487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54773] = 2, - ACTIONS(5950), 3, + [68200] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1878), 1, + sym__pandoc_attr_specifier, + ACTIONS(5858), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 37, - sym__line_ending, + ACTIONS(5856), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114869,6 +122519,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -114878,19 +122529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54818] = 4, - ACTIONS(4186), 1, + [68248] = 4, + ACTIONS(4706), 1, anon_sym_LBRACE, - STATE(2198), 1, + STATE(1879), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 35, + ACTIONS(5872), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114913,8 +122562,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -114926,14 +122575,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [54867] = 2, - ACTIONS(6006), 5, - aux_sym_pandoc_span_token1, + [68296] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1597), 1, + sym__pandoc_attr_specifier, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, + ACTIONS(5892), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__superscript_close, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6004), 35, + [68344] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1880), 1, + sym__pandoc_attr_specifier, + ACTIONS(5878), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5876), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114957,6 +122651,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -114965,19 +122660,63 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [68392] = 4, + ACTIONS(4706), 1, anon_sym_LBRACE, + STATE(1881), 1, + sym__pandoc_attr_specifier, + ACTIONS(5832), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5830), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_close_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [54912] = 2, - ACTIONS(6136), 3, + sym__whitespace, + [68440] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1882), 1, + sym__pandoc_attr_specifier, + ACTIONS(5886), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 37, - sym__line_ending, + ACTIONS(5884), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115000,6 +122739,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -115009,18 +122749,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54957] = 2, - ACTIONS(6140), 3, + [68488] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1883), 1, + sym__pandoc_attr_specifier, + ACTIONS(5846), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 37, - sym__line_ending, + ACTIONS(5844), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115043,6 +122783,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -115052,18 +122793,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55002] = 2, - ACTIONS(6258), 3, + [68536] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1887), 1, + sym__pandoc_attr_specifier, + ACTIONS(5850), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 37, - sym__line_ending, + ACTIONS(5848), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115086,6 +122827,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -115095,18 +122837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55047] = 2, - ACTIONS(6262), 3, + [68584] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1888), 1, + sym__pandoc_attr_specifier, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 37, - sym__line_ending, + ACTIONS(5868), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115129,6 +122871,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -115138,19 +122881,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55092] = 4, - ACTIONS(4935), 1, + [68632] = 4, + ACTIONS(4706), 1, anon_sym_LBRACE, - STATE(2046), 1, + STATE(1889), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + ACTIONS(5890), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 35, + ACTIONS(5888), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115161,7 +122902,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -115175,6 +122915,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -115186,16 +122927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55141] = 4, - ACTIONS(4186), 1, + [68680] = 4, + ACTIONS(4706), 1, anon_sym_LBRACE, - STATE(2200), 1, + STATE(1890), 1, sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 35, + ACTIONS(5892), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115218,8 +122958,8 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -115231,17 +122971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55190] = 4, - ACTIONS(4935), 1, - anon_sym_LBRACE, - STATE(2049), 1, - sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + [68728] = 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 35, + ACTIONS(6056), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115251,7 +122988,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -115274,18 +123010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55239] = 4, - ACTIONS(2519), 1, + [68772] = 4, + ACTIONS(2903), 1, anon_sym_LBRACE, - STATE(1876), 1, + STATE(1572), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + ACTIONS(5932), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 35, + ACTIONS(5930), 35, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -115321,15 +123057,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55288] = 2, - ACTIONS(6068), 3, + [68820] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1891), 1, + sym__pandoc_attr_specifier, + ACTIONS(5898), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 37, - sym__line_ending, + ACTIONS(5896), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115352,6 +123089,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -115361,18 +123099,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55333] = 2, - ACTIONS(6072), 3, + [68868] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1892), 1, + sym__pandoc_attr_specifier, + ACTIONS(5902), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 37, - sym__line_ending, + ACTIONS(5900), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115395,6 +123133,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -115404,18 +123143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55378] = 2, - ACTIONS(6298), 3, + [68916] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1893), 1, + sym__pandoc_attr_specifier, + ACTIONS(5906), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6296), 37, - sym__line_ending, + ACTIONS(5904), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115438,6 +123177,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -115447,18 +123187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55423] = 2, - ACTIONS(6076), 3, + [68964] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1894), 1, + sym__pandoc_attr_specifier, + ACTIONS(5910), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 37, - sym__line_ending, + ACTIONS(5908), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115481,6 +123221,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -115490,18 +123231,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55468] = 2, - ACTIONS(6080), 3, + [69012] = 4, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(1900), 1, + sym__pandoc_attr_specifier, + ACTIONS(5914), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 37, - sym__line_ending, + ACTIONS(5912), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115524,6 +123265,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -115533,19 +123275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55513] = 4, - ACTIONS(4935), 1, + [69060] = 4, + ACTIONS(4706), 1, anon_sym_LBRACE, - STATE(2079), 1, + STATE(1901), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + ACTIONS(5918), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 35, + ACTIONS(5916), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115556,7 +123296,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -115570,6 +123309,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -115581,17 +123321,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55562] = 4, - ACTIONS(4935), 1, + [69108] = 4, + ACTIONS(2903), 1, anon_sym_LBRACE, - STATE(2080), 1, + STATE(1588), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + ACTIONS(5862), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 35, - sym__soft_line_ending, + ACTIONS(5860), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115601,7 +123340,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -115618,6 +123356,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -115626,16 +123365,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55611] = 4, - ACTIONS(4186), 1, + [69156] = 4, + ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(2201), 1, + STATE(1599), 1, sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + ACTIONS(5898), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 35, + ACTIONS(5896), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115655,10 +123393,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -115671,17 +123409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55660] = 4, - ACTIONS(2455), 1, + [69204] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2011), 1, + STATE(1916), 1, sym__pandoc_attr_specifier, - ACTIONS(5968), 4, + ACTIONS(5882), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5966), 34, + ACTIONS(5880), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115706,6 +123442,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -115714,19 +123451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [55709] = 4, - ACTIONS(2455), 1, + sym__whitespace, + [69252] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2014), 1, + STATE(1917), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 4, + ACTIONS(5922), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5980), 34, + ACTIONS(5920), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115751,6 +123486,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -115759,18 +123495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [55758] = 4, - ACTIONS(4935), 1, + sym__whitespace, + [69300] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2082), 1, + STATE(1919), 1, sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + ACTIONS(5936), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 35, + ACTIONS(5934), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115781,7 +123516,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -115796,6 +123530,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -115806,16 +123541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55807] = 4, - ACTIONS(4935), 1, + [69348] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2083), 1, + STATE(1921), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + ACTIONS(5866), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 35, + ACTIONS(5864), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115826,7 +123560,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -115841,6 +123574,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -115851,17 +123585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55856] = 4, - ACTIONS(2455), 1, + [69396] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2017), 1, + STATE(1934), 1, sym__pandoc_attr_specifier, - ACTIONS(5954), 4, + ACTIONS(5932), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5952), 34, + ACTIONS(5930), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115886,6 +123618,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -115894,20 +123627,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [55905] = 4, - ACTIONS(2455), 1, + sym__whitespace, + [69444] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2020), 1, + STATE(1936), 1, sym__pandoc_attr_specifier, - ACTIONS(5972), 4, + ACTIONS(5862), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, + ACTIONS(5860), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, sym__whitespace, - ACTIONS(5970), 34, + [69492] = 2, + ACTIONS(6086), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6084), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115939,19 +123712,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [55954] = 4, - ACTIONS(2455), 1, + sym__whitespace, + [69536] = 4, + ACTIONS(6226), 1, anon_sym_LBRACE, - STATE(2034), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 4, + STATE(1943), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5984), 34, + ACTIONS(5924), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115976,6 +123748,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -115984,19 +123757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [56003] = 4, - ACTIONS(2455), 1, + sym__whitespace, + [69584] = 4, + ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(2037), 1, + STATE(1600), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 4, + ACTIONS(5902), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5988), 34, + ACTIONS(5900), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116016,6 +123787,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -116029,18 +123801,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [56052] = 4, - ACTIONS(4935), 1, + sym__whitespace, + [69632] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2118), 1, + STATE(1944), 1, sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + ACTIONS(5840), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 35, + ACTIONS(5838), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116051,7 +123822,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -116066,6 +123836,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -116076,14 +123847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56101] = 2, - ACTIONS(6088), 5, - aux_sym_pandoc_span_token1, + [69680] = 4, + ACTIONS(4766), 1, + anon_sym_LBRACE, + STATE(1945), 1, + sym__pandoc_attr_specifier, + ACTIONS(5854), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6086), 35, + ACTIONS(5852), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116108,6 +123880,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -116115,20 +123888,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, - [56146] = 4, - ACTIONS(4935), 1, + sym__whitespace, + [69728] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2121), 1, + STATE(1946), 1, sym__pandoc_attr_specifier, - ACTIONS(5976), 3, + ACTIONS(5858), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 35, + ACTIONS(5856), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116139,7 +123910,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -116154,6 +123924,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -116164,15 +123935,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56195] = 2, - ACTIONS(6250), 3, + [69776] = 4, + ACTIONS(4766), 1, + anon_sym_LBRACE, + STATE(1947), 1, + sym__pandoc_attr_specifier, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 37, - sym__line_ending, + ACTIONS(5872), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116196,6 +123968,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -116204,19 +123977,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [56240] = 4, - ACTIONS(4186), 1, + [69824] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2156), 1, + STATE(1949), 1, sym__pandoc_attr_specifier, - ACTIONS(5968), 3, + ACTIONS(5878), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 35, + ACTIONS(5876), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116239,9 +124010,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -116252,16 +124023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56289] = 4, - ACTIONS(5094), 1, + [69872] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2196), 1, + STATE(1950), 1, sym__pandoc_attr_specifier, - ACTIONS(5968), 3, + ACTIONS(5832), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 35, + ACTIONS(5830), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116279,7 +124049,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -116287,6 +124056,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -116297,16 +124067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56338] = 4, - ACTIONS(5094), 1, + [69920] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2206), 1, + STATE(1952), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + ACTIONS(5886), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 35, + ACTIONS(5884), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116324,7 +124093,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -116332,6 +124100,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -116342,16 +124111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56387] = 4, - ACTIONS(5094), 1, + [69968] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(1479), 1, + STATE(1953), 1, sym__pandoc_attr_specifier, - ACTIONS(5954), 3, + ACTIONS(5846), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 35, + ACTIONS(5844), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116369,7 +124137,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -116377,6 +124144,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -116387,15 +124155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56436] = 2, - ACTIONS(6144), 3, + [70016] = 4, + ACTIONS(4554), 1, + anon_sym_LBRACE, + STATE(1601), 1, + sym__pandoc_attr_specifier, + ACTIONS(5906), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 37, - sym__line_ending, + ACTIONS(5904), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116414,6 +124183,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -116427,20 +124197,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [70064] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, + STATE(1957), 1, + sym__pandoc_attr_specifier, + ACTIONS(5850), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5848), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56481] = 4, - ACTIONS(2519), 1, + [70112] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2150), 1, + STATE(1958), 1, sym__pandoc_attr_specifier, - ACTIONS(5968), 3, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 35, - sym__line_ending, + ACTIONS(5868), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116464,9 +124276,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -116475,17 +124287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56530] = 4, - ACTIONS(2519), 1, + [70160] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2177), 1, + STATE(1959), 1, sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + ACTIONS(5890), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 35, - sym__line_ending, + ACTIONS(5888), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116509,9 +124320,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -116520,17 +124331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56579] = 4, - ACTIONS(2519), 1, + [70208] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2228), 1, + STATE(1960), 1, sym__pandoc_attr_specifier, - ACTIONS(5954), 3, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 35, - sym__line_ending, + ACTIONS(5892), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116554,9 +124364,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -116565,17 +124375,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56628] = 4, - ACTIONS(2519), 1, - anon_sym_LBRACE, - STATE(1810), 1, - sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + [70256] = 2, + ACTIONS(6206), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6204), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116601,25 +124408,25 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [56677] = 4, - ACTIONS(5094), 1, + [70300] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1482), 1, + STATE(1656), 1, sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + ACTIONS(5874), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 35, + sym__whitespace, + ACTIONS(5872), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116637,7 +124444,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -116653,18 +124459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [56726] = 4, - ACTIONS(5094), 1, + [70348] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(1516), 1, + STATE(1961), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + ACTIONS(5898), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 35, + ACTIONS(5896), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116682,7 +124487,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -116690,6 +124494,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -116700,17 +124505,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56775] = 4, - ACTIONS(2519), 1, + [70396] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(1804), 1, + STATE(1962), 1, sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + ACTIONS(5902), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 35, - sym__line_ending, + ACTIONS(5900), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116734,9 +124538,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -116745,17 +124549,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56824] = 4, - ACTIONS(2519), 1, + [70444] = 4, + ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(2183), 1, + STATE(1602), 1, sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + ACTIONS(5910), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 35, - sym__line_ending, + ACTIONS(5908), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116774,6 +124577,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -116781,7 +124585,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -116790,15 +124593,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [56873] = 2, - ACTIONS(6148), 3, + [70492] = 4, + ACTIONS(4766), 1, + anon_sym_LBRACE, + STATE(1963), 1, + sym__pandoc_attr_specifier, + ACTIONS(5906), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 37, - sym__line_ending, + ACTIONS(5904), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116822,6 +124626,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -116830,18 +124635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [56918] = 2, - ACTIONS(6152), 3, + [70540] = 4, + ACTIONS(4766), 1, + anon_sym_LBRACE, + STATE(1964), 1, + sym__pandoc_attr_specifier, + ACTIONS(5910), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 37, - sym__line_ending, + ACTIONS(5908), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116865,6 +124670,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -116873,19 +124679,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [56963] = 4, - ACTIONS(4186), 1, + [70588] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(2203), 1, + STATE(1657), 1, sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + ACTIONS(5878), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 35, + sym__whitespace, + ACTIONS(5876), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116908,7 +124713,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -116919,18 +124723,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [57012] = 4, - ACTIONS(4186), 1, + [70636] = 4, + ACTIONS(4766), 1, anon_sym_LBRACE, - STATE(2205), 1, + STATE(1970), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + ACTIONS(5914), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 35, + ACTIONS(5912), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116953,9 +124756,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -116966,15 +124769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [57061] = 2, - ACTIONS(6156), 3, + [70684] = 4, + ACTIONS(4766), 1, + anon_sym_LBRACE, + STATE(1971), 1, + sym__pandoc_attr_specifier, + ACTIONS(5918), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 37, - sym__line_ending, + ACTIONS(5916), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116998,6 +124802,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -117006,18 +124811,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57106] = 2, - ACTIONS(6160), 3, + [70732] = 2, + ACTIONS(5942), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(5940), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117048,21 +124851,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [57151] = 4, - ACTIONS(6314), 1, - anon_sym_LBRACE, - STATE(2057), 1, - sym_attribute_specifier, - ACTIONS(5958), 4, + [70776] = 2, + ACTIONS(6074), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5956), 34, + ACTIONS(6072), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117094,19 +124893,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_PIPE, - [57200] = 4, - ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1525), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + anon_sym_PIPE, + [70820] = 2, + ACTIONS(6078), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 35, + sym__whitespace, + ACTIONS(6076), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117124,7 +124921,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -117139,19 +124935,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [57249] = 4, - ACTIONS(6316), 1, + [70864] = 4, + ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(1570), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, + STATE(1608), 1, + sym__pandoc_attr_specifier, + ACTIONS(5914), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 35, + ACTIONS(5912), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117169,9 +124965,9 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -117187,17 +124983,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [57298] = 4, - ACTIONS(2455), 1, - anon_sym_LBRACE, - STATE(2058), 1, - sym__pandoc_attr_specifier, - ACTIONS(5964), 4, + [70912] = 2, + ACTIONS(6062), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5962), 34, + ACTIONS(6060), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117229,20 +125021,19 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [57347] = 4, - ACTIONS(2455), 1, + [70956] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(2059), 1, + STATE(1698), 1, sym__pandoc_attr_specifier, - ACTIONS(5998), 4, + ACTIONS(5936), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5996), 34, + ACTIONS(5934), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117264,6 +125055,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -117275,19 +125067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [57396] = 4, - ACTIONS(2455), 1, - anon_sym_LBRACE, - STATE(2061), 1, - sym__pandoc_attr_specifier, - ACTIONS(6002), 4, + sym__whitespace, + [71004] = 2, + ACTIONS(5946), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6000), 34, + ACTIONS(5944), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117319,20 +125107,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_PIPE, - [57445] = 4, - ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(2062), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 4, + anon_sym_PIPE, + [71048] = 2, + ACTIONS(5950), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6004), 34, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117364,20 +125149,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_PIPE, - [57494] = 4, - ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(2064), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 4, + anon_sym_PIPE, + [71092] = 2, + ACTIONS(5954), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6008), 34, + ACTIONS(5952), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117409,20 +125191,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_PIPE, - [57543] = 4, - ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(2065), 1, - sym__pandoc_attr_specifier, - ACTIONS(6014), 4, + anon_sym_PIPE, + [71136] = 2, + ACTIONS(5958), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6012), 34, + ACTIONS(5956), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117454,20 +125233,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_PIPE, - [57592] = 4, - ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(2067), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 4, + anon_sym_PIPE, + [71180] = 2, + ACTIONS(6082), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6016), 34, + ACTIONS(6080), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117499,20 +125275,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [57641] = 4, - ACTIONS(2455), 1, + [71224] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(2068), 1, + STATE(1658), 1, sym__pandoc_attr_specifier, - ACTIONS(6022), 4, + ACTIONS(5832), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6020), 34, + ACTIONS(5830), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117545,18 +125321,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + aux_sym_inline_note_token1, anon_sym_PIPE, - [57690] = 4, - ACTIONS(5094), 1, + [71272] = 4, + ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(1575), 1, + STATE(1609), 1, sym__pandoc_attr_specifier, - ACTIONS(5964), 3, + ACTIONS(5918), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 35, + ACTIONS(5916), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117574,9 +125349,9 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -117592,16 +125367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [57739] = 4, - ACTIONS(5094), 1, + [71320] = 4, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(1576), 1, + STATE(1700), 1, sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + ACTIONS(5866), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 35, + ACTIONS(5864), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117619,11 +125393,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -117637,17 +125411,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [57788] = 4, - ACTIONS(2455), 1, - anon_sym_LBRACE, - STATE(2073), 1, - sym__pandoc_attr_specifier, - ACTIONS(6026), 4, + [71368] = 2, + ACTIONS(5962), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6024), 34, + ACTIONS(5960), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117679,20 +125449,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [57837] = 4, - ACTIONS(2455), 1, + [71412] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(2074), 1, + STATE(1659), 1, sym__pandoc_attr_specifier, - ACTIONS(6030), 4, + ACTIONS(5886), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6028), 34, + ACTIONS(5884), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117725,19 +125495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + aux_sym_inline_note_token1, anon_sym_PIPE, - [57886] = 4, - ACTIONS(2455), 1, + [71460] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(2076), 1, + STATE(1660), 1, sym__pandoc_attr_specifier, - ACTIONS(6034), 4, + ACTIONS(5846), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6032), 34, + ACTIONS(5844), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117770,19 +125539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + aux_sym_inline_note_token1, anon_sym_PIPE, - [57935] = 4, - ACTIONS(2455), 1, - anon_sym_LBRACE, - STATE(2077), 1, - sym__pandoc_attr_specifier, - ACTIONS(5950), 4, + [71508] = 2, + ACTIONS(5874), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5948), 34, + ACTIONS(5872), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117814,17 +125579,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [57984] = 2, - ACTIONS(6092), 5, + [71552] = 2, + ACTIONS(6086), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6090), 35, + ACTIONS(6084), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117860,15 +125625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [58029] = 2, - ACTIONS(6288), 3, + [71596] = 4, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(1664), 1, + sym__pandoc_attr_specifier, + ACTIONS(5850), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(5848), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117900,18 +125667,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [58074] = 2, - ACTIONS(6166), 3, + [71644] = 2, + ACTIONS(5966), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6164), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(5964), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117942,20 +125707,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [58119] = 4, - ACTIONS(4186), 1, + [71688] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(2209), 1, + STATE(1665), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + ACTIONS(5870), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 35, + sym__whitespace, + ACTIONS(5868), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117978,7 +125743,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -117989,17 +125753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [58168] = 2, - ACTIONS(6170), 3, + [71736] = 2, + ACTIONS(6066), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6168), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(6064), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118030,19 +125793,21 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [58213] = 2, - ACTIONS(6174), 3, + [71780] = 4, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(1666), 1, + sym__pandoc_attr_specifier, + ACTIONS(5890), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(5888), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118074,19 +125839,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [58258] = 4, - ACTIONS(4186), 1, - anon_sym_LBRACE, - STATE(2210), 1, - sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + [71828] = 2, + ACTIONS(5970), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 35, + sym__whitespace, + ACTIONS(5968), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118109,7 +125870,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -118119,64 +125879,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [58307] = 4, - ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1580), 1, - sym__pandoc_attr_specifier, - ACTIONS(6002), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__strikeout_close, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [58356] = 4, - ACTIONS(5094), 1, + [71872] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1582), 1, + STATE(1667), 1, sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + ACTIONS(5894), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 35, + sym__whitespace, + ACTIONS(5892), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118194,7 +125910,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -118210,17 +125925,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [58405] = 2, - ACTIONS(6058), 3, + [71920] = 2, + ACTIONS(6090), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(6088), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118251,20 +125965,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [58450] = 4, - ACTIONS(5094), 1, - anon_sym_LBRACE, - STATE(1585), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + [71964] = 2, + ACTIONS(5974), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 35, + sym__whitespace, + ACTIONS(5972), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118282,7 +125993,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -118297,18 +126007,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [58499] = 2, - ACTIONS(6178), 3, + [72008] = 2, + ACTIONS(5978), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(5976), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118339,21 +126049,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [58544] = 4, - ACTIONS(2455), 1, - anon_sym_LBRACE, - STATE(2102), 1, - sym__pandoc_attr_specifier, - ACTIONS(6042), 4, + [72052] = 2, + ACTIONS(5982), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6040), 34, + ACTIONS(5980), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118385,20 +126091,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [58593] = 4, - ACTIONS(2455), 1, + [72096] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(2103), 1, + STATE(1627), 1, sym__pandoc_attr_specifier, - ACTIONS(6046), 4, + ACTIONS(5882), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6044), 34, + ACTIONS(5880), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118431,19 +126137,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + aux_sym_inline_note_token1, anon_sym_PIPE, - [58642] = 4, - ACTIONS(2455), 1, - anon_sym_LBRACE, - STATE(2104), 1, - sym__pandoc_attr_specifier, - ACTIONS(6050), 4, + [72144] = 2, + ACTIONS(5986), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6048), 34, + ACTIONS(5984), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118475,20 +126177,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_PIPE, - [58691] = 4, - ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(2105), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + anon_sym_PIPE, + [72188] = 2, + ACTIONS(5990), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6052), 34, + ACTIONS(5988), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118520,18 +126219,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [58740] = 2, - ACTIONS(6182), 3, + [72232] = 2, + ACTIONS(5994), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(5992), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118562,21 +126261,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [58785] = 4, - ACTIONS(2455), 1, - anon_sym_LBRACE, - STATE(2111), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 4, + [72276] = 2, + ACTIONS(5998), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6036), 34, + ACTIONS(5996), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118608,19 +126303,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_PIPE, - [58834] = 4, - ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1586), 1, - sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + anon_sym_PIPE, + [72320] = 2, + ACTIONS(6002), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 35, + sym__whitespace, + ACTIONS(6000), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118638,7 +126331,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -118653,19 +126345,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [58883] = 4, - ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1589), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + anon_sym_PIPE, + [72364] = 2, + ACTIONS(6006), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 35, + sym__whitespace, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118683,7 +126373,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -118698,19 +126387,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [58932] = 4, - ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1591), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + anon_sym_PIPE, + [72408] = 2, + ACTIONS(6010), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 35, + sym__whitespace, + ACTIONS(6008), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118728,7 +126415,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -118743,20 +126429,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [58981] = 4, - ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(2112), 1, - sym__pandoc_attr_specifier, - ACTIONS(5976), 4, + anon_sym_PIPE, + [72452] = 2, + ACTIONS(5870), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5974), 34, + ACTIONS(5868), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118788,19 +126471,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [59030] = 4, - ACTIONS(5094), 1, + [72496] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1607), 1, + STATE(1628), 1, sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + ACTIONS(5922), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 35, + sym__whitespace, + ACTIONS(5920), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118818,7 +126502,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -118834,18 +126517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [59079] = 4, - ACTIONS(5094), 1, - anon_sym_LBRACE, - STATE(1608), 1, - sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + [72544] = 2, + ACTIONS(6014), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 35, + sym__whitespace, + ACTIONS(6012), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118863,7 +126543,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -118878,19 +126557,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [59128] = 4, - ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1614), 1, - sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + anon_sym_PIPE, + [72588] = 2, + ACTIONS(6094), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 35, + sym__whitespace, + ACTIONS(6092), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -118908,7 +126585,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -118923,63 +126599,21 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [59177] = 4, - ACTIONS(5094), 1, + [72632] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1620), 1, + STATE(1668), 1, sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + ACTIONS(5898), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__strikeout_close, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, sym__whitespace, - [59226] = 2, - ACTIONS(6186), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 37, - sym__line_ending, + ACTIONS(5896), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119011,17 +126645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [59271] = 2, - ACTIONS(6096), 5, + [72680] = 2, + ACTIONS(5894), 4, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6094), 35, + ACTIONS(5892), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119057,15 +126689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [59316] = 2, - ACTIONS(6190), 3, + [72724] = 2, + ACTIONS(6098), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(6096), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119096,19 +126727,21 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [59361] = 2, - ACTIONS(6194), 3, + [72768] = 4, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(1630), 1, + sym__pandoc_attr_specifier, + ACTIONS(5936), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 37, - sym__line_ending, + sym__whitespace, + ACTIONS(5934), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119140,17 +126773,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [59406] = 2, - ACTIONS(6100), 5, - aux_sym_pandoc_span_token1, + [72816] = 4, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(1669), 1, + sym__pandoc_attr_specifier, + ACTIONS(5902), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6098), 35, + ACTIONS(5900), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119182,64 +126816,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - [59451] = 4, - ACTIONS(2519), 1, - anon_sym_LBRACE, - STATE(1879), 1, - sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + [72864] = 2, + ACTIONS(6018), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 35, - sym__line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, sym__whitespace, - [59500] = 2, - ACTIONS(6254), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 37, - sym__line_ending, + ACTIONS(6016), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119270,20 +126857,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [59545] = 4, - ACTIONS(5094), 1, + [72908] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1626), 1, + STATE(1631), 1, sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + ACTIONS(5866), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 35, + sym__whitespace, + ACTIONS(5864), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119301,7 +126888,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -119317,18 +126903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [59594] = 4, - ACTIONS(5094), 1, - anon_sym_LBRACE, - STATE(1629), 1, - sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + [72956] = 2, + ACTIONS(6022), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 35, + sym__whitespace, + ACTIONS(6020), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119346,7 +126929,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -119361,19 +126943,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [59643] = 4, - ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1634), 1, - sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + anon_sym_PIPE, + [73000] = 2, + ACTIONS(6026), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 35, + sym__whitespace, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119391,7 +126971,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -119406,19 +126985,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [59692] = 4, - ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1637), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + anon_sym_PIPE, + [73044] = 2, + ACTIONS(6030), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 35, + sym__whitespace, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119436,7 +127013,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -119451,19 +127027,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [59741] = 4, - ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1658), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + anon_sym_PIPE, + [73088] = 2, + ACTIONS(6034), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 35, + sym__whitespace, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119481,7 +127055,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -119496,19 +127069,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [59790] = 4, - ACTIONS(5094), 1, + [73132] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1659), 1, + STATE(1670), 1, sym__pandoc_attr_specifier, - ACTIONS(5976), 3, + ACTIONS(5906), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 35, + sym__whitespace, + ACTIONS(5904), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119526,7 +127100,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -119542,19 +127115,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [59839] = 4, - ACTIONS(2519), 1, - anon_sym_LBRACE, - STATE(1882), 1, - sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + [73180] = 2, + ACTIONS(6038), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6036), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119580,25 +127150,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [59888] = 4, - ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(1684), 1, - sym__pandoc_attr_specifier, - ACTIONS(5968), 3, + anon_sym_PIPE, + [73224] = 2, + ACTIONS(6042), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 35, + sym__whitespace, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119617,7 +127184,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -119631,18 +127197,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [59937] = 2, - ACTIONS(6318), 3, + [73268] = 2, + ACTIONS(6102), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(2366), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(6100), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119673,18 +127239,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [59982] = 2, - ACTIONS(6104), 5, - aux_sym_pandoc_span_token1, + [73312] = 4, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(1642), 1, + sym__pandoc_attr_specifier, + ACTIONS(5932), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6102), 35, + ACTIONS(5930), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119716,20 +127284,16 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - [60027] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1687), 1, - sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + [73360] = 2, + ACTIONS(6046), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 35, + sym__whitespace, + ACTIONS(6044), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119748,7 +127312,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -119762,19 +127325,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [60076] = 4, - ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(1690), 1, - sym__pandoc_attr_specifier, - ACTIONS(5954), 3, + anon_sym_PIPE, + [73404] = 2, + ACTIONS(6050), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 35, + sym__whitespace, + ACTIONS(6048), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119793,7 +127354,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -119807,19 +127367,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [60125] = 4, - ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(1693), 1, - sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + anon_sym_PIPE, + [73448] = 2, + ACTIONS(6106), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 35, + sym__whitespace, + ACTIONS(6104), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119838,7 +127396,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -119852,19 +127409,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [60174] = 4, - ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(1710), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + anon_sym_PIPE, + [73492] = 2, + ACTIONS(6054), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 35, + sym__whitespace, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119883,7 +127438,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -119897,19 +127451,17 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [60223] = 4, - ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(1713), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + anon_sym_PIPE, + [73536] = 2, + ACTIONS(6058), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 35, + sym__whitespace, + ACTIONS(6056), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119928,7 +127480,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -119942,19 +127493,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [60272] = 4, - ACTIONS(6320), 1, + [73580] = 4, + ACTIONS(3319), 1, anon_sym_LBRACE, - STATE(1724), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, + STATE(1644), 1, + sym__pandoc_attr_specifier, + ACTIONS(5862), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 35, + sym__whitespace, + ACTIONS(5860), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119973,7 +127525,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -119988,19 +127539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [60321] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1725), 1, - sym__pandoc_attr_specifier, - ACTIONS(5964), 3, + [73628] = 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 35, + ACTIONS(6060), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120018,7 +127566,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -120033,18 +127580,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [60370] = 4, - ACTIONS(5253), 1, + [73672] = 4, + ACTIONS(4246), 1, anon_sym_LBRACE, - STATE(1726), 1, + STATE(2253), 1, sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 35, + ACTIONS(5868), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120062,8 +127609,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -120080,16 +127627,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60419] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1728), 1, - sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + [73720] = 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 35, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120108,13 +127650,13 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -120123,18 +127665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [60468] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1729), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + [73763] = 2, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 35, + ACTIONS(5892), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120168,18 +127706,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [60517] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1730), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + [73806] = 2, + ACTIONS(6018), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 35, + ACTIONS(6016), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120213,63 +127747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [60566] = 4, - ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(1731), 1, - sym__pandoc_attr_specifier, - ACTIONS(6014), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__subscript_close, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60615] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1733), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + [73849] = 2, + ACTIONS(6022), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 35, + ACTIONS(6020), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120303,63 +127788,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [60664] = 4, - ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(1734), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__subscript_close, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60713] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1743), 1, - sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + [73892] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 35, + ACTIONS(6152), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120377,8 +127813,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -120393,18 +127829,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [60762] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1744), 1, - sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + [73935] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 35, + ACTIONS(6156), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120422,8 +127854,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -120438,18 +127870,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [60811] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1759), 1, - sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + [73978] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 35, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120468,8 +127896,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -120483,18 +127911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [60860] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1760), 1, - sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + [74021] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 35, + ACTIONS(6160), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120512,8 +127936,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -120528,18 +127952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [60909] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1762), 1, - sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + [74064] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 35, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120557,8 +127977,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -120573,18 +127993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [60958] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1769), 1, - sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + [74107] = 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 35, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120618,18 +128034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61007] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + [74150] = 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 35, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120663,18 +128075,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61056] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1771), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + [74193] = 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 35, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120708,18 +128116,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61105] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1776), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + [74236] = 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 35, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120753,18 +128157,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61154] = 4, - ACTIONS(5253), 1, - anon_sym_LBRACE, - STATE(1777), 1, - sym__pandoc_attr_specifier, - ACTIONS(5976), 3, + [74279] = 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 35, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120798,63 +128198,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [61203] = 4, - ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(1800), 1, - sym__pandoc_attr_specifier, - ACTIONS(5968), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__superscript_close, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [61252] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1802), 1, - sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + [74322] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 35, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120873,8 +128224,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -120888,63 +128239,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [61301] = 4, - ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(1805), 1, - sym__pandoc_attr_specifier, - ACTIONS(5954), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__superscript_close, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [61350] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1808), 1, - sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + [74365] = 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 35, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120963,8 +128265,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -120978,18 +128280,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61399] = 4, - ACTIONS(6322), 1, - anon_sym_LBRACE, - STATE(1859), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, + [74408] = 2, + ACTIONS(5962), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 35, + ACTIONS(5960), 36, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -121023,18 +128321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61448] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1821), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + [74451] = 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 35, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121053,8 +128347,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121068,18 +128362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61497] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1824), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + [74494] = 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121098,8 +128388,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121113,18 +128403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61546] = 4, - ACTIONS(6324), 1, - anon_sym_LBRACE, - STATE(1834), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, + [74537] = 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 35, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121143,8 +128429,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121158,18 +128444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61595] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1835), 1, - sym__pandoc_attr_specifier, - ACTIONS(5964), 3, + [74580] = 2, + ACTIONS(6066), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 35, + ACTIONS(6064), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121188,8 +128470,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121203,18 +128485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61644] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1836), 1, - sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + [74623] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 35, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121233,8 +128511,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121248,18 +128526,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61693] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1838), 1, - sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + [74666] = 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 35, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121278,8 +128552,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121293,18 +128567,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61742] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1839), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + [74709] = 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 35, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121323,8 +128593,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121338,18 +128608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61791] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1841), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + [74752] = 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 35, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121368,8 +128634,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121383,18 +128649,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61840] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1842), 1, - sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + [74795] = 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 35, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121413,8 +128675,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121428,19 +128690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61889] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1844), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + [74838] = 2, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 35, - sym__soft_line_ending, + ACTIONS(5872), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121459,7 +128717,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121467,24 +128724,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61938] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1845), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + [74881] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 35, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121503,8 +128757,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121518,18 +128772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [61987] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1849), 1, - sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + [74924] = 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 35, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121548,8 +128798,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121563,18 +128813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62036] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1850), 1, - sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + [74967] = 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 35, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121593,8 +128839,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121608,18 +128854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62085] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1852), 1, - sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + [75010] = 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 35, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121638,8 +128880,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121653,18 +128895,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62134] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1853), 1, - sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + [75053] = 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 35, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121683,8 +128921,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121698,18 +128936,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62183] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1855), 1, - sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + [75096] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 35, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121728,8 +128962,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121743,63 +128977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [62232] = 4, - ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(1860), 1, - sym__pandoc_attr_specifier, - ACTIONS(5964), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 35, - sym__line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [62281] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1856), 1, - sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + [75139] = 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 35, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121818,8 +129003,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121833,18 +129018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62330] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1857), 1, - sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + [75182] = 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 35, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121863,8 +129044,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121878,18 +129059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62379] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1858), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + [75225] = 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 35, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121908,8 +129085,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121923,18 +129100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62428] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1872), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + [75268] = 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 35, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121953,8 +129126,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -121968,18 +129141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62477] = 4, - ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(1874), 1, - sym__pandoc_attr_specifier, - ACTIONS(5976), 3, + [75311] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 35, + ACTIONS(6124), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121998,8 +129167,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -122013,16 +129182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62526] = 2, - ACTIONS(6108), 5, - aux_sym_pandoc_span_token1, + [75354] = 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6106), 35, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122041,6 +129208,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -122054,21 +129222,16 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [62571] = 4, - ACTIONS(2519), 1, - anon_sym_LBRACE, - STATE(1871), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + sym__whitespace, + [75397] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 35, - sym__line_ending, + ACTIONS(6172), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122086,6 +129249,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -122094,25 +129258,20 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62620] = 4, - ACTIONS(4603), 1, - anon_sym_LBRACE, - STATE(1761), 1, - sym__pandoc_attr_specifier, - ACTIONS(5968), 3, + [75440] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 35, + ACTIONS(6132), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122122,7 +129281,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -122132,6 +129290,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -122146,19 +129305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62669] = 4, - ACTIONS(2519), 1, - anon_sym_LBRACE, - STATE(1861), 1, - sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + [75483] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 35, - sym__line_ending, + ACTIONS(6136), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122176,6 +129331,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -122184,26 +129340,20 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [62718] = 4, - ACTIONS(3103), 1, - anon_sym_LBRACE, - STATE(1914), 1, - sym__pandoc_attr_specifier, - ACTIONS(5968), 4, + [75526] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5966), 34, + ACTIONS(6140), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122222,6 +129372,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -122236,19 +129387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [62767] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1917), 1, - sym__pandoc_attr_specifier, - ACTIONS(5982), 4, + anon_sym_PIPE, + sym__whitespace, + [75569] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5980), 34, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122267,6 +129413,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -122281,19 +129428,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [62816] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1920), 1, - sym__pandoc_attr_specifier, - ACTIONS(5954), 4, + anon_sym_PIPE, + sym__whitespace, + [75612] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5952), 34, + ACTIONS(6144), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122312,6 +129454,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -122326,19 +129469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [62865] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1923), 1, - sym__pandoc_attr_specifier, - ACTIONS(5972), 4, + anon_sym_PIPE, + sym__whitespace, + [75655] = 2, + ACTIONS(5942), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5970), 34, + ACTIONS(5940), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122358,6 +129496,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -122371,20 +129510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [62914] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1942), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 4, + anon_sym_PIPE, + sym__whitespace, + [75698] = 2, + ACTIONS(5966), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5984), 34, - sym__soft_line_ending, + ACTIONS(5964), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122410,25 +129544,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [62963] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1946), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 4, + anon_sym_PIPE, + sym__whitespace, + [75741] = 2, + ACTIONS(5946), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5988), 34, + ACTIONS(5944), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122448,6 +129578,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -122461,17 +129592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [63012] = 2, - ACTIONS(6064), 3, + sym__whitespace, + [75784] = 2, + ACTIONS(5950), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 37, - sym__line_ending, + ACTIONS(5948), 36, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122490,6 +129619,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -122506,17 +129636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [63057] = 4, - ACTIONS(6326), 1, - anon_sym_LBRACE, - STATE(1958), 1, - sym_attribute_specifier, - ACTIONS(5958), 4, + [75827] = 2, + ACTIONS(5954), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5956), 34, + ACTIONS(5952), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122536,6 +129660,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -122549,19 +129674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63106] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1959), 1, - sym__pandoc_attr_specifier, - ACTIONS(5964), 4, + anon_sym_PIPE, + sym__whitespace, + [75870] = 2, + ACTIONS(5958), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5962), 34, + ACTIONS(5956), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122581,6 +129701,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -122594,20 +129715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63155] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1960), 1, - sym__pandoc_attr_specifier, - ACTIONS(5998), 4, + anon_sym_PIPE, + sym__whitespace, + [75913] = 2, + ACTIONS(5970), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5996), 34, - sym__soft_line_ending, + ACTIONS(5968), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122633,25 +129749,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63204] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1962), 1, - sym__pandoc_attr_specifier, - ACTIONS(6002), 4, + anon_sym_PIPE, + sym__whitespace, + [75956] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6000), 34, + ACTIONS(6148), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122670,6 +129782,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -122684,19 +129797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63253] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1963), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 4, + anon_sym_PIPE, + sym__whitespace, + [75999] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6004), 34, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122715,6 +129823,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -122729,20 +129838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63302] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1965), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 4, + anon_sym_PIPE, + sym__whitespace, + [76042] = 2, + ACTIONS(5974), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6008), 34, - sym__soft_line_ending, + ACTIONS(5972), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122768,25 +129872,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63351] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1966), 1, - sym__pandoc_attr_specifier, - ACTIONS(6014), 4, + anon_sym_PIPE, + sym__whitespace, + [76085] = 2, + ACTIONS(5962), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6012), 34, + ACTIONS(5960), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122806,6 +129906,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -122819,20 +129920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63400] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1968), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 4, + anon_sym_PIPE, + sym__whitespace, + [76128] = 2, + ACTIONS(5978), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6016), 34, - sym__soft_line_ending, + ACTIONS(5976), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122858,25 +129954,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63449] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1969), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 4, + anon_sym_PIPE, + sym__whitespace, + [76171] = 2, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6020), 34, + ACTIONS(5872), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122896,6 +129988,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -122909,18 +130002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63498] = 4, - ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(1863), 1, - sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + anon_sym_PIPE, + sym__whitespace, + [76214] = 2, + ACTIONS(5982), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 35, + ACTIONS(5980), 36, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -122954,20 +130043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [63547] = 4, - ACTIONS(3103), 1, - anon_sym_LBRACE, - STATE(1977), 1, - sym__pandoc_attr_specifier, - ACTIONS(6026), 4, + [76257] = 2, + ACTIONS(5986), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6024), 34, - sym__soft_line_ending, + ACTIONS(5984), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122993,25 +130077,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63596] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1978), 1, - sym__pandoc_attr_specifier, - ACTIONS(6030), 4, + anon_sym_PIPE, + sym__whitespace, + [76300] = 2, + ACTIONS(5966), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6028), 34, + ACTIONS(5964), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123031,6 +130111,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -123044,20 +130125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63645] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1980), 1, - sym__pandoc_attr_specifier, - ACTIONS(6034), 4, + anon_sym_PIPE, + sym__whitespace, + [76343] = 2, + ACTIONS(5990), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6032), 34, - sym__soft_line_ending, + ACTIONS(5988), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -123083,26 +130159,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63694] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1981), 1, - sym__pandoc_attr_specifier, - ACTIONS(5950), 4, + anon_sym_PIPE, + sym__whitespace, + [76386] = 2, + ACTIONS(5994), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5948), 34, - sym__soft_line_ending, + ACTIONS(5992), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -123128,25 +130200,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63743] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1983), 1, - sym__pandoc_attr_specifier, - ACTIONS(6042), 4, + anon_sym_PIPE, + sym__whitespace, + [76429] = 2, + ACTIONS(5970), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6040), 34, + ACTIONS(5968), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123166,6 +130234,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -123179,20 +130248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63792] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1984), 1, - sym__pandoc_attr_specifier, - ACTIONS(6046), 4, + anon_sym_PIPE, + sym__whitespace, + [76472] = 2, + ACTIONS(5998), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6044), 34, - sym__soft_line_ending, + ACTIONS(5996), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -123218,25 +130282,62 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63841] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1985), 1, - sym__pandoc_attr_specifier, - ACTIONS(6050), 4, + anon_sym_PIPE, + sym__whitespace, + [76515] = 2, + ACTIONS(6002), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, + ACTIONS(6000), 36, + sym__line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6048), 34, + [76558] = 2, + ACTIONS(5974), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5972), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123256,6 +130357,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -123269,19 +130371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63890] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1986), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + anon_sym_PIPE, + sym__whitespace, + [76601] = 2, + ACTIONS(5978), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6052), 34, + ACTIONS(5976), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123301,6 +130398,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -123314,19 +130412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [63939] = 4, - ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(1864), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + anon_sym_PIPE, + sym__whitespace, + [76644] = 2, + ACTIONS(5982), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 35, - sym__line_ending, + ACTIONS(5980), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -123345,6 +130439,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -123352,26 +130447,20 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [63988] = 4, - ACTIONS(3103), 1, - anon_sym_LBRACE, - STATE(1991), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 4, + [76687] = 2, + ACTIONS(5986), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6036), 34, + ACTIONS(5984), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123391,6 +130480,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -123404,19 +130494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [64037] = 4, - ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1993), 1, - sym__pandoc_attr_specifier, - ACTIONS(5976), 4, + anon_sym_PIPE, + sym__whitespace, + [76730] = 2, + ACTIONS(5990), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5974), 34, + ACTIONS(5988), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123436,6 +130521,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -123449,16 +130535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_inline_note_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [64086] = 2, - ACTIONS(6112), 5, - aux_sym_pandoc_span_token1, + sym__whitespace, + [76773] = 2, + ACTIONS(5994), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6110), 35, + ACTIONS(5992), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123478,6 +130562,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -123490,20 +130575,15 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [64131] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2035), 1, - sym__pandoc_attr_specifier, - ACTIONS(5968), 3, + sym__whitespace, + [76816] = 2, + ACTIONS(5998), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 35, + ACTIONS(5996), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123523,9 +130603,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -123537,18 +130617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64180] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2039), 1, - sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + [76859] = 2, + ACTIONS(6002), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 35, + ACTIONS(6000), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123568,9 +130644,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -123582,18 +130658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64229] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2044), 1, - sym__pandoc_attr_specifier, - ACTIONS(5954), 3, + [76902] = 2, + ACTIONS(6006), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 35, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123613,9 +130685,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -123627,18 +130699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64278] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2048), 1, - sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + [76945] = 2, + ACTIONS(6010), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 35, + ACTIONS(6008), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123658,9 +130726,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -123672,18 +130740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64327] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2078), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + [76988] = 2, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 35, + ACTIONS(5868), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123703,9 +130767,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -123717,18 +130781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64376] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2081), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + [77031] = 2, + ACTIONS(6014), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 35, + ACTIONS(6012), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123748,9 +130808,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -123762,18 +130822,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64425] = 4, - ACTIONS(6328), 1, + [77074] = 2, + ACTIONS(6006), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6004), 36, + sym__line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - STATE(2091), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, + anon_sym_PIPE, + sym__whitespace, + [77117] = 2, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 35, + ACTIONS(5868), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123792,10 +130889,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -123807,18 +130904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64474] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2092), 1, - sym__pandoc_attr_specifier, - ACTIONS(5964), 3, + [77160] = 2, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 35, + ACTIONS(5892), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123838,9 +130931,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -123852,19 +130945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64523] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2093), 1, - sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + [77203] = 2, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 35, - sym__soft_line_ending, + ACTIONS(5868), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -123885,30 +130974,26 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64572] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2095), 1, - sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + [77246] = 2, + ACTIONS(6018), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 35, + ACTIONS(6016), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123928,9 +131013,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -123942,18 +131027,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64621] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2096), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + [77289] = 2, + ACTIONS(6022), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 35, + ACTIONS(6020), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123973,9 +131054,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -123987,18 +131068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64670] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2098), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + [77332] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 35, + ACTIONS(6152), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124017,10 +131094,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124032,18 +131109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64719] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2099), 1, - sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + [77375] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 35, + ACTIONS(6156), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124062,10 +131135,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124077,18 +131150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64768] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2101), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + [77418] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 35, + sym__whitespace, + ACTIONS(6204), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124110,7 +131180,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124122,18 +131191,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [64817] = 4, - ACTIONS(4027), 1, + [77461] = 2, + ACTIONS(6014), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6012), 36, + sym__line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - STATE(2106), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + anon_sym_PIPE, + sym__whitespace, + [77504] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 35, + ACTIONS(6160), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124152,10 +131258,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124167,18 +131273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64866] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2116), 1, - sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + [77547] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 35, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124197,10 +131299,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124212,18 +131314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64915] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2117), 1, - sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + [77590] = 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 35, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124243,9 +131341,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124257,18 +131355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64964] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2119), 1, - sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + [77633] = 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 35, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124288,9 +131382,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124302,18 +131396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65013] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2120), 1, - sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + [77676] = 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 35, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124333,9 +131423,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124347,18 +131437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65062] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2122), 1, - sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + [77719] = 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 35, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124378,9 +131464,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124392,18 +131478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65111] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2123), 1, - sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + [77762] = 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 35, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124423,9 +131505,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124437,18 +131519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65160] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2125), 1, - sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + [77805] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 35, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124468,9 +131546,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124482,18 +131560,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65209] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2126), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + [77848] = 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 35, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124513,9 +131587,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124527,18 +131601,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65258] = 4, - ACTIONS(4027), 1, + [77891] = 2, + ACTIONS(5894), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5892), 36, + sym__line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - STATE(2131), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + anon_sym_PIPE, + sym__whitespace, + [77934] = 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 35, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124558,9 +131669,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124572,18 +131683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65307] = 4, - ACTIONS(4027), 1, - anon_sym_LBRACE, - STATE(2132), 1, - sym__pandoc_attr_specifier, - ACTIONS(5976), 3, + [77977] = 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124603,9 +131710,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -124617,16 +131724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65356] = 2, - ACTIONS(6116), 5, - aux_sym_pandoc_span_token1, + [78020] = 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6114), 35, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124646,6 +131751,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -124658,21 +131764,16 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [65401] = 4, - ACTIONS(2519), 1, - anon_sym_LBRACE, - STATE(1877), 1, - sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + sym__whitespace, + [78063] = 2, + ACTIONS(6066), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 35, - sym__line_ending, + ACTIONS(6064), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -124691,6 +131792,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -124698,25 +131800,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65450] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2285), 1, - sym__pandoc_attr_specifier, - ACTIONS(5990), 3, + [78106] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5988), 34, + ACTIONS(6068), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -124735,6 +131833,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -124742,21 +131841,20 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65498] = 2, - ACTIONS(6238), 3, + [78149] = 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 36, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124776,10 +131874,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -124793,12 +131891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65542] = 2, - ACTIONS(6242), 3, + [78192] = 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 36, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124818,10 +131915,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -124835,12 +131932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65586] = 2, - ACTIONS(6282), 3, + [78235] = 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 36, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124860,10 +131956,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -124877,12 +131973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65630] = 2, - ACTIONS(6246), 3, + [78278] = 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 36, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124902,10 +131997,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -124919,13 +132014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65674] = 2, - ACTIONS(6064), 3, + [78321] = 2, + ACTIONS(6018), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 36, - sym__soft_line_ending, + ACTIONS(6016), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -124948,10 +132042,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -124961,12 +132055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65718] = 2, - ACTIONS(6088), 3, + [78364] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124984,9 +132077,9 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -125003,12 +132096,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65762] = 2, - ACTIONS(6152), 3, + [78407] = 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 36, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125018,7 +132110,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -125029,6 +132120,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -125045,13 +132137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65806] = 2, - ACTIONS(6100), 3, + [78450] = 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 36, - sym__line_ending, + ACTIONS(6096), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -125070,6 +132161,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -125077,7 +132169,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -125087,12 +132178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65850] = 2, - ACTIONS(6092), 3, + [78493] = 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 36, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125110,9 +132200,9 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -125129,12 +132219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65894] = 2, - ACTIONS(6068), 3, + [78536] = 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125154,11 +132243,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -125171,12 +132260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65938] = 2, - ACTIONS(6072), 3, + [78579] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 36, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125196,11 +132284,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -125213,12 +132301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65982] = 2, - ACTIONS(6076), 3, + [78622] = 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125238,11 +132325,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -125255,12 +132342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66026] = 2, - ACTIONS(6080), 3, + [78665] = 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125280,11 +132366,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -125297,12 +132383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66070] = 2, - ACTIONS(6156), 3, + [78708] = 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125312,7 +132397,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -125323,6 +132407,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -125339,12 +132424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66114] = 2, - ACTIONS(6160), 3, + [78751] = 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125354,7 +132438,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -125365,6 +132448,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -125381,12 +132465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66158] = 2, - ACTIONS(6250), 3, + [78794] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 36, + ACTIONS(6124), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125406,10 +132489,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -125423,12 +132506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66202] = 2, - ACTIONS(6254), 3, + [78837] = 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 36, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125448,10 +132530,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -125465,12 +132547,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66246] = 2, - ACTIONS(6096), 3, + [78880] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 36, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125488,9 +132569,9 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -125507,12 +132588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66290] = 2, - ACTIONS(6084), 3, + [78923] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 36, + ACTIONS(6132), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125532,11 +132612,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -125549,12 +132629,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66334] = 2, - ACTIONS(6100), 3, + [78966] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 36, + ACTIONS(6136), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125572,9 +132651,9 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -125591,12 +132670,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66378] = 2, - ACTIONS(6104), 3, + [79009] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 36, + ACTIONS(6140), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125614,9 +132692,9 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -125633,12 +132711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66422] = 2, - ACTIONS(6006), 3, + [79052] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 36, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125658,11 +132735,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -125675,12 +132752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66466] = 2, - ACTIONS(6108), 3, + [79095] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 36, + ACTIONS(6144), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125698,9 +132774,9 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -125717,54 +132793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66510] = 2, - ACTIONS(6112), 3, + [79138] = 2, + ACTIONS(5942), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__strikeout_close, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, sym__whitespace, - [66554] = 2, - ACTIONS(6088), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 36, + ACTIONS(5940), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125788,7 +132822,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -125799,15 +132832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [66598] = 2, - ACTIONS(6116), 3, + [79181] = 2, + ACTIONS(6022), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 36, - sym__soft_line_ending, + ACTIONS(6020), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -125824,7 +132856,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -125834,6 +132865,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -125843,13 +132875,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66642] = 2, - ACTIONS(6120), 3, + [79224] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 36, - sym__soft_line_ending, + ACTIONS(6152), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -125866,7 +132897,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -125876,6 +132906,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -125885,13 +132916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66686] = 2, - ACTIONS(6092), 3, + [79267] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 36, - sym__soft_line_ending, + ACTIONS(6156), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -125914,10 +132944,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -125927,54 +132957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66730] = 2, - ACTIONS(6124), 3, + [79310] = 2, + ACTIONS(5946), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__strikeout_close, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, sym__whitespace, - [66774] = 2, - ACTIONS(6128), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 36, + ACTIONS(5944), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125992,7 +132980,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -126009,56 +132996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [66818] = 2, - ACTIONS(6096), 3, + [79353] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_close_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, sym__whitespace, - [66862] = 2, - ACTIONS(6100), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 36, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126082,7 +133027,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -126093,14 +133037,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [66906] = 2, - ACTIONS(6104), 3, + [79396] = 2, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 36, + sym__whitespace, + ACTIONS(5952), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126124,7 +133068,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -126135,14 +133078,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [66950] = 2, - ACTIONS(6108), 3, + [79439] = 2, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 36, + sym__whitespace, + ACTIONS(5956), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126166,7 +133109,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -126177,14 +133119,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [66994] = 2, - ACTIONS(6112), 3, + [79482] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 36, + ACTIONS(6148), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126204,11 +133145,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -126221,12 +133162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67038] = 2, - ACTIONS(6116), 3, + [79525] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 36, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126246,11 +133186,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -126263,12 +133203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67082] = 2, - ACTIONS(6120), 3, + [79568] = 2, + ACTIONS(5962), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 36, + sym__whitespace, + ACTIONS(5960), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126292,7 +133232,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -126303,14 +133242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67126] = 2, - ACTIONS(6124), 3, + [79611] = 2, + ACTIONS(5874), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 36, + sym__whitespace, + ACTIONS(5872), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126334,7 +133273,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -126345,14 +133283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67170] = 2, - ACTIONS(6128), 3, + [79654] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 36, + sym__whitespace, + ACTIONS(6204), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126376,7 +133314,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -126386,15 +133323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [67214] = 2, - ACTIONS(6132), 3, + [79697] = 2, + ACTIONS(5966), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 36, + sym__whitespace, + ACTIONS(5964), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126418,7 +133355,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -126429,14 +133365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67258] = 2, - ACTIONS(6030), 3, + [79740] = 2, + ACTIONS(5970), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 36, + sym__whitespace, + ACTIONS(5968), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126460,7 +133396,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -126471,14 +133406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67302] = 2, - ACTIONS(6132), 3, + [79783] = 2, + ACTIONS(5974), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 36, + sym__whitespace, + ACTIONS(5972), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126496,7 +133431,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -126513,14 +133447,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67346] = 2, - ACTIONS(6030), 3, + [79826] = 2, + ACTIONS(5978), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 36, + sym__whitespace, + ACTIONS(5976), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126538,7 +133472,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -126555,14 +133488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67390] = 2, - ACTIONS(5950), 3, + [79869] = 2, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 36, + sym__whitespace, + ACTIONS(5980), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126586,7 +133519,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -126597,56 +133529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67434] = 2, - ACTIONS(6104), 3, + [79912] = 2, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 36, - sym__line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, sym__whitespace, - [67478] = 2, - ACTIONS(6288), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 36, + ACTIONS(5984), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126656,7 +133546,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -126681,56 +133570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67522] = 2, - ACTIONS(6136), 3, + [79955] = 2, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_close_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, sym__whitespace, - [67566] = 2, - ACTIONS(6140), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 36, + ACTIONS(5988), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126754,7 +133601,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -126765,14 +133611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67610] = 2, - ACTIONS(6258), 3, + [79998] = 2, + ACTIONS(5994), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 36, + sym__whitespace, + ACTIONS(5992), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126795,7 +133641,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -126807,14 +133652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67654] = 2, - ACTIONS(6262), 3, + [80041] = 2, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 36, + sym__whitespace, + ACTIONS(5996), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126837,7 +133682,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -126849,14 +133693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67698] = 2, - ACTIONS(6298), 3, + [80084] = 2, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6296), 36, + sym__whitespace, + ACTIONS(6000), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126881,7 +133725,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -126891,14 +133734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67742] = 2, - ACTIONS(5950), 3, + [80127] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 36, + sym__whitespace, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126916,7 +133759,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -126933,14 +133775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67786] = 2, - ACTIONS(6266), 3, + [80170] = 2, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 36, + sym__whitespace, + ACTIONS(6008), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126963,7 +133805,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -126975,14 +133816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67830] = 2, - ACTIONS(6270), 3, + [80213] = 2, + ACTIONS(5870), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 36, + sym__whitespace, + ACTIONS(5868), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127005,7 +133846,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -127017,14 +133857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67874] = 2, - ACTIONS(6144), 3, + [80256] = 2, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 36, + sym__whitespace, + ACTIONS(6012), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127048,7 +133888,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127059,14 +133898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67918] = 2, - ACTIONS(6148), 3, + [80299] = 2, + ACTIONS(5894), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 36, + sym__whitespace, + ACTIONS(5892), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127090,7 +133929,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127101,14 +133939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [67962] = 2, - ACTIONS(6152), 3, + [80342] = 2, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 36, + sym__whitespace, + ACTIONS(6016), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127132,7 +133970,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127143,14 +133980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68006] = 2, - ACTIONS(6166), 3, + [80385] = 2, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6164), 36, + sym__whitespace, + ACTIONS(6020), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127160,7 +133997,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -127185,14 +134021,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68050] = 2, - ACTIONS(6156), 3, + [80428] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 36, + ACTIONS(6152), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127212,11 +134047,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127229,12 +134064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68094] = 2, - ACTIONS(6160), 3, + [80471] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 36, + ACTIONS(6156), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127254,11 +134088,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127271,13 +134105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68138] = 2, - ACTIONS(6250), 4, + [80514] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6248), 35, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127299,6 +134131,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -127310,15 +134143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [68182] = 2, - ACTIONS(6288), 3, + sym__whitespace, + [80557] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 36, + ACTIONS(6160), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127338,11 +134170,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127355,11 +134187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68226] = 2, - ACTIONS(6166), 3, + [80600] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, @@ -127380,11 +134211,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, + sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127397,54 +134228,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68270] = 2, - ACTIONS(6136), 3, + [80643] = 2, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__strikeout_close, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, sym__whitespace, - [68314] = 2, - ACTIONS(6170), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6168), 36, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127468,7 +134257,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127479,14 +134267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68358] = 2, - ACTIONS(6174), 3, + [80686] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 36, + sym__whitespace, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127510,7 +134298,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127521,14 +134308,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68402] = 2, - ACTIONS(6140), 3, + [80729] = 2, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 36, + sym__whitespace, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127546,7 +134333,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -127563,14 +134349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68446] = 2, - ACTIONS(6058), 3, + [80772] = 2, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 36, + sym__whitespace, + ACTIONS(6036), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127594,7 +134380,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127605,14 +134390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68490] = 2, - ACTIONS(6178), 3, + [80815] = 2, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 36, + sym__whitespace, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127636,7 +134421,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127647,14 +134431,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68534] = 2, - ACTIONS(6182), 3, + [80858] = 2, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 36, + sym__whitespace, + ACTIONS(6044), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127678,7 +134462,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127689,14 +134472,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68578] = 2, - ACTIONS(6186), 3, + [80901] = 2, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 36, + sym__whitespace, + ACTIONS(6048), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127720,7 +134503,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127731,14 +134513,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68622] = 2, - ACTIONS(6258), 3, + [80944] = 2, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 36, + sym__whitespace, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127749,7 +134531,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -127773,14 +134554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68666] = 2, - ACTIONS(6190), 3, + [80987] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 36, + sym__whitespace, + ACTIONS(6056), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127804,7 +134585,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127815,14 +134595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68710] = 2, - ACTIONS(6194), 3, + [81030] = 2, + ACTIONS(6062), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 36, + sym__whitespace, + ACTIONS(6060), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127846,7 +134626,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127857,14 +134636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68754] = 2, - ACTIONS(6262), 3, + [81073] = 2, + ACTIONS(6066), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 36, + sym__whitespace, + ACTIONS(6064), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127875,7 +134654,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -127899,14 +134677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68798] = 2, - ACTIONS(6198), 3, + [81116] = 2, + ACTIONS(6070), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 36, + sym__whitespace, + ACTIONS(6068), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127930,7 +134708,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127941,14 +134718,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68842] = 2, - ACTIONS(6202), 3, + [81159] = 2, + ACTIONS(6074), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 36, + sym__whitespace, + ACTIONS(6072), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127972,7 +134749,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -127983,14 +134759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68886] = 2, - ACTIONS(6206), 3, + [81202] = 2, + ACTIONS(6078), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 36, + sym__whitespace, + ACTIONS(6076), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128014,7 +134790,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -128025,14 +134800,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68930] = 2, - ACTIONS(6210), 3, + [81245] = 2, + ACTIONS(6082), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 36, + sym__whitespace, + ACTIONS(6080), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128056,7 +134831,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -128067,14 +134841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [68974] = 2, - ACTIONS(6214), 3, + [81288] = 2, + ACTIONS(6086), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 36, + sym__whitespace, + ACTIONS(6084), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128098,7 +134872,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -128109,14 +134882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69018] = 2, - ACTIONS(6274), 3, + [81331] = 2, + ACTIONS(6090), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 36, + sym__whitespace, + ACTIONS(6088), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128140,7 +134913,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -128151,14 +134923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69062] = 2, - ACTIONS(6218), 3, + [81374] = 2, + ACTIONS(6094), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 36, + sym__whitespace, + ACTIONS(6092), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128182,7 +134954,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -128193,14 +134964,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69106] = 2, - ACTIONS(6222), 3, + [81417] = 2, + ACTIONS(6098), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 36, + sym__whitespace, + ACTIONS(6096), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128224,7 +134995,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -128235,56 +135005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69150] = 2, - ACTIONS(6226), 3, + [81460] = 2, + ACTIONS(6102), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_close_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, sym__whitespace, - [69194] = 2, - ACTIONS(6230), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 36, + ACTIONS(6100), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128308,7 +135036,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -128319,56 +135046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69238] = 2, - ACTIONS(6234), 3, + [81503] = 2, + ACTIONS(6106), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_close_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, sym__whitespace, - [69282] = 2, - ACTIONS(6278), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 36, + ACTIONS(6104), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128392,7 +135077,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -128403,56 +135087,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69326] = 2, - ACTIONS(6238), 3, + [81546] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 36, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_close_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, sym__whitespace, - [69370] = 2, - ACTIONS(6242), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 36, + ACTIONS(6168), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128476,7 +135118,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -128487,14 +135128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69414] = 2, - ACTIONS(6282), 3, + [81589] = 2, + ACTIONS(6110), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 36, + sym__whitespace, + ACTIONS(6108), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128518,7 +135159,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -128529,14 +135169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69458] = 2, - ACTIONS(6246), 3, + [81632] = 2, + ACTIONS(6114), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 36, + sym__whitespace, + ACTIONS(6112), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128560,7 +135200,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -128571,14 +135210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69502] = 2, - ACTIONS(6064), 3, + [81675] = 2, + ACTIONS(6118), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 36, + sym__whitespace, + ACTIONS(6116), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128603,7 +135242,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -128613,14 +135251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69546] = 2, - ACTIONS(6298), 3, + [81718] = 2, + ACTIONS(6122), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6296), 36, + sym__whitespace, + ACTIONS(6120), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128639,7 +135277,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -128655,14 +135292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69590] = 2, - ACTIONS(6170), 3, + [81761] = 2, + ACTIONS(6126), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6168), 36, + sym__whitespace, + ACTIONS(6124), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128672,7 +135309,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -128697,14 +135333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69634] = 2, - ACTIONS(6266), 3, + [81804] = 2, + ACTIONS(6130), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 36, + sym__whitespace, + ACTIONS(6128), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128715,7 +135351,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -128739,14 +135374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69678] = 2, - ACTIONS(6270), 3, + [81847] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 36, + sym__whitespace, + ACTIONS(6172), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128757,7 +135392,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -128781,14 +135415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69722] = 2, - ACTIONS(6144), 3, + [81890] = 2, + ACTIONS(6134), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 36, + sym__whitespace, + ACTIONS(6132), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128806,7 +135440,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -128823,14 +135456,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69766] = 2, - ACTIONS(6068), 3, + [81933] = 2, + ACTIONS(6138), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 36, + sym__whitespace, + ACTIONS(6136), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128855,7 +135488,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -128865,14 +135497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69810] = 2, - ACTIONS(6072), 3, + [81976] = 2, + ACTIONS(6142), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 36, + sym__whitespace, + ACTIONS(6140), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128897,7 +135529,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -128907,14 +135538,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69854] = 2, - ACTIONS(6076), 3, + [82019] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 36, + sym__whitespace, + ACTIONS(6176), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128939,7 +135570,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -128949,14 +135579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69898] = 2, - ACTIONS(6080), 3, + [82062] = 2, + ACTIONS(6146), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 36, + sym__whitespace, + ACTIONS(6144), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128981,7 +135611,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -128991,14 +135620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [69942] = 2, - ACTIONS(6148), 3, + [82105] = 2, + ACTIONS(5942), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 36, + ACTIONS(5940), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129016,11 +135644,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -129035,12 +135663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69986] = 2, - ACTIONS(6152), 3, + [82148] = 2, + ACTIONS(5946), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 36, + ACTIONS(5944), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129058,11 +135685,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -129077,12 +135704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70030] = 2, - ACTIONS(6250), 3, + [82191] = 2, + ACTIONS(5950), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 36, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129104,9 +135730,9 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -129119,12 +135745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70074] = 2, - ACTIONS(6174), 3, + [82234] = 2, + ACTIONS(5954), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 36, + ACTIONS(5952), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129134,7 +135759,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -129147,6 +135771,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -129161,12 +135786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70118] = 2, - ACTIONS(6254), 3, + [82277] = 2, + ACTIONS(5958), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 36, + ACTIONS(5956), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129188,9 +135812,9 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -129203,12 +135827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70162] = 2, - ACTIONS(6156), 3, + [82320] = 2, + ACTIONS(6150), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 36, + sym__whitespace, + ACTIONS(6148), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129226,7 +135850,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -129243,14 +135866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [70206] = 2, - ACTIONS(6084), 3, + [82363] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 36, + sym__whitespace, + ACTIONS(6184), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129275,7 +135898,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -129285,14 +135907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [70250] = 2, - ACTIONS(6160), 3, + [82406] = 2, + ACTIONS(5962), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 36, + ACTIONS(5960), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129310,11 +135931,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -129329,12 +135950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70294] = 2, - ACTIONS(6116), 3, + [82449] = 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 36, + ACTIONS(6024), 36, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -129371,12 +135991,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70338] = 2, - ACTIONS(6006), 3, + [82492] = 2, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 36, + ACTIONS(5872), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129398,10 +136017,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -129413,13 +136032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70382] = 2, - ACTIONS(6288), 3, + [82535] = 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 36, - sym__soft_line_ending, + ACTIONS(6028), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -129436,7 +136054,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -129446,6 +136063,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -129455,13 +136073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70426] = 2, - ACTIONS(6166), 3, + [82578] = 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6164), 36, - sym__soft_line_ending, + ACTIONS(6032), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -129478,7 +136095,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -129488,6 +136104,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -129497,12 +136114,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70470] = 2, - ACTIONS(6088), 3, + [82621] = 2, + ACTIONS(5966), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 36, + ACTIONS(5964), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129524,10 +136140,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -129539,13 +136155,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70514] = 2, - ACTIONS(6058), 3, + [82664] = 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 36, - sym__soft_line_ending, + ACTIONS(6036), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -129554,7 +136169,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -129572,6 +136186,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -129581,12 +136196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70558] = 2, - ACTIONS(6170), 3, + [82707] = 2, + ACTIONS(5970), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6168), 36, + ACTIONS(5968), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129604,11 +136218,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -129623,13 +136237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70602] = 2, - ACTIONS(6092), 3, + [82750] = 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 36, - sym__soft_line_ending, + ACTIONS(6040), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -129653,9 +136266,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -129665,12 +136278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70646] = 2, - ACTIONS(6174), 3, + [82793] = 2, + ACTIONS(5974), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 36, + ACTIONS(5972), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129688,11 +136300,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -129707,12 +136319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70690] = 2, - ACTIONS(6178), 3, + [82836] = 2, + ACTIONS(5978), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 36, + ACTIONS(5976), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129722,7 +136333,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -129735,6 +136345,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -129749,12 +136360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70734] = 2, - ACTIONS(6096), 3, + [82879] = 2, + ACTIONS(5982), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 36, + ACTIONS(5980), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129776,10 +136386,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -129791,12 +136401,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70778] = 2, - ACTIONS(6100), 3, + [82922] = 2, + ACTIONS(5986), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 36, + ACTIONS(5984), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129818,10 +136427,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -129833,12 +136442,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70822] = 2, - ACTIONS(6104), 3, + [82965] = 2, + ACTIONS(5990), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 36, + ACTIONS(5988), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129860,10 +136468,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -129875,12 +136483,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70866] = 2, - ACTIONS(6108), 3, + [83008] = 2, + ACTIONS(5994), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 36, + ACTIONS(5992), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129902,10 +136509,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -129917,12 +136524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70910] = 2, - ACTIONS(6112), 3, + [83051] = 2, + ACTIONS(5998), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 36, + ACTIONS(5996), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129944,10 +136550,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -129959,12 +136565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70954] = 2, - ACTIONS(6116), 3, + [83094] = 2, + ACTIONS(6002), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 36, + ACTIONS(6000), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129986,10 +136591,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -130001,12 +136606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70998] = 2, - ACTIONS(6120), 3, + [83137] = 2, + ACTIONS(6006), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 36, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130028,10 +136632,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -130043,12 +136647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71042] = 2, - ACTIONS(6124), 3, + [83180] = 2, + ACTIONS(6010), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 36, + ACTIONS(6008), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130070,10 +136673,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -130085,12 +136688,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71086] = 2, - ACTIONS(6128), 3, + [83223] = 2, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 36, + ACTIONS(5868), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130112,10 +136714,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -130127,12 +136729,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71130] = 2, - ACTIONS(6132), 3, + [83266] = 2, + ACTIONS(6014), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 36, + ACTIONS(6012), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130154,10 +136755,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -130169,13 +136770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71174] = 2, - ACTIONS(6030), 3, + [83309] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 36, - sym__soft_line_ending, + ACTIONS(6044), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -130199,9 +136799,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -130211,13 +136811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71218] = 2, - ACTIONS(6058), 3, + [83352] = 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 36, - sym__soft_line_ending, + ACTIONS(6048), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -130234,7 +136833,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -130244,6 +136842,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -130253,12 +136852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71262] = 2, - ACTIONS(6178), 3, + [83395] = 2, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 36, + ACTIONS(5892), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130276,11 +136874,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -130295,13 +136893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71306] = 2, - ACTIONS(5950), 3, + [83438] = 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 36, - sym__soft_line_ending, + ACTIONS(6052), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -130325,9 +136922,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -130337,12 +136934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71350] = 2, - ACTIONS(6182), 3, + [83481] = 2, + ACTIONS(6018), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 36, + ACTIONS(6016), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130360,11 +136956,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -130379,12 +136975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71394] = 2, - ACTIONS(6186), 3, + [83524] = 2, + ACTIONS(6022), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 36, + ACTIONS(6020), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130402,11 +136997,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -130421,12 +137016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71438] = 2, - ACTIONS(6136), 3, + [83567] = 2, + ACTIONS(6154), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 36, + sym__whitespace, + ACTIONS(6152), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130451,7 +137046,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -130461,14 +137055,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, + [83610] = 2, + ACTIONS(6158), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, sym__whitespace, - [71482] = 2, - ACTIONS(6140), 3, + ACTIONS(6156), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + aux_sym_inline_note_token1, + anon_sym_PIPE, + [83653] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 36, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130491,9 +137125,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -130505,13 +137139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71526] = 2, - ACTIONS(6258), 3, + [83696] = 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 36, - sym__soft_line_ending, + ACTIONS(6056), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -130534,10 +137167,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -130547,12 +137180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71570] = 2, - ACTIONS(6262), 3, + [83739] = 2, + ACTIONS(6162), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 36, + sym__whitespace, + ACTIONS(6160), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130576,7 +137209,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -130587,14 +137219,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, + [83782] = 2, + ACTIONS(6166), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, sym__whitespace, - [71614] = 2, - ACTIONS(6182), 3, + ACTIONS(6164), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + aux_sym_inline_note_token1, + anon_sym_PIPE, + [83825] = 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 36, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130604,7 +137276,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -130617,6 +137288,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -130631,12 +137303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71658] = 2, - ACTIONS(6190), 3, + [83868] = 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 36, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130654,11 +137325,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -130673,12 +137344,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71702] = 2, - ACTIONS(6266), 3, + [83911] = 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 36, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130700,9 +137370,9 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -130715,12 +137385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71746] = 2, - ACTIONS(6270), 3, + [83954] = 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 36, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130742,9 +137411,9 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -130757,12 +137426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71790] = 2, - ACTIONS(6144), 3, + [83997] = 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 36, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130784,10 +137452,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -130799,13 +137467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71834] = 2, - ACTIONS(6148), 3, + [84040] = 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 36, - sym__soft_line_ending, + ACTIONS(6060), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -130829,9 +137496,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -130841,12 +137508,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71878] = 2, - ACTIONS(6152), 3, + [84083] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 36, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130868,10 +137534,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -130883,12 +137549,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71922] = 2, - ACTIONS(6194), 3, + [84126] = 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 36, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130906,11 +137571,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -130925,12 +137590,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71966] = 2, - ACTIONS(6156), 3, + [84169] = 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 36, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130952,10 +137616,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -130967,12 +137631,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72010] = 2, - ACTIONS(6160), 3, + [84212] = 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 36, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130994,10 +137657,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131009,13 +137672,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72054] = 2, - ACTIONS(6186), 3, + [84255] = 2, + ACTIONS(6066), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 36, - sym__soft_line_ending, + ACTIONS(6064), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -131024,7 +137686,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -131042,6 +137703,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -131051,12 +137713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72098] = 2, - ACTIONS(6288), 3, + [84298] = 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 36, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131078,10 +137739,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131093,12 +137754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72142] = 2, - ACTIONS(6166), 3, + [84341] = 2, + ACTIONS(6066), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6164), 36, + ACTIONS(6064), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131120,10 +137780,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131135,12 +137795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72186] = 2, - ACTIONS(6198), 3, + [84384] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131158,11 +137817,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -131177,12 +137836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72230] = 2, - ACTIONS(6170), 3, + [84427] = 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6168), 36, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131204,10 +137862,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131219,12 +137877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72274] = 2, - ACTIONS(6174), 3, + [84470] = 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 36, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131246,10 +137903,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131261,13 +137918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72318] = 2, - ACTIONS(6202), 3, + [84513] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 36, - sym__soft_line_ending, + ACTIONS(6068), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -131284,7 +137940,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -131294,6 +137949,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -131303,12 +137959,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72362] = 2, - ACTIONS(6058), 3, + [84556] = 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 36, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131330,10 +137985,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131345,12 +138000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72406] = 2, - ACTIONS(6178), 3, + [84599] = 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 36, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131372,10 +138026,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131387,13 +138041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72450] = 2, - ACTIONS(6182), 3, + [84642] = 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 36, - sym__soft_line_ending, + ACTIONS(6072), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -131417,9 +138070,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -131429,12 +138082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72494] = 2, - ACTIONS(6186), 3, + [84685] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131456,10 +138108,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131471,12 +138123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72538] = 2, - ACTIONS(6206), 3, + [84728] = 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 36, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131494,11 +138145,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -131513,12 +138164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72582] = 2, - ACTIONS(6190), 3, + [84771] = 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 36, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131540,10 +138190,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131555,12 +138205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72626] = 2, - ACTIONS(6194), 3, + [84814] = 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 36, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131582,10 +138231,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131597,12 +138246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72670] = 2, - ACTIONS(6210), 3, + [84857] = 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131620,11 +138268,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -131639,12 +138287,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72714] = 2, - ACTIONS(6198), 3, + [84900] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 36, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131666,10 +138313,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131681,12 +138328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72758] = 2, - ACTIONS(6202), 3, + [84943] = 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131708,10 +138354,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131723,12 +138369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72802] = 2, - ACTIONS(6206), 3, + [84986] = 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131750,10 +138395,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131765,12 +138410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72846] = 2, - ACTIONS(6210), 3, + [85029] = 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131792,10 +138436,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131807,12 +138451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72890] = 2, - ACTIONS(6214), 3, + [85072] = 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131834,10 +138477,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131849,12 +138492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72934] = 2, - ACTIONS(6274), 3, + [85115] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 36, + ACTIONS(6124), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131876,10 +138518,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131891,12 +138533,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72978] = 2, - ACTIONS(6218), 3, + [85158] = 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 36, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131918,10 +138559,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131933,12 +138574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73022] = 2, - ACTIONS(6222), 3, + [85201] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 36, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131960,10 +138600,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -131975,12 +138615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73066] = 2, - ACTIONS(6226), 3, + [85244] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 36, + ACTIONS(6132), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132002,10 +138641,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -132017,12 +138656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73110] = 2, - ACTIONS(6230), 3, + [85287] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 36, + ACTIONS(6136), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132044,10 +138682,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -132059,12 +138697,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73154] = 2, - ACTIONS(6234), 3, + [85330] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 36, + ACTIONS(6140), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132086,10 +138723,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -132101,12 +138738,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73198] = 2, - ACTIONS(6278), 3, + [85373] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 36, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132128,10 +138764,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -132143,12 +138779,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73242] = 2, - ACTIONS(6238), 3, + [85416] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 36, + ACTIONS(6144), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132170,10 +138805,10 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -132185,12 +138820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73286] = 2, - ACTIONS(6242), 3, + [85459] = 2, + ACTIONS(5942), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 36, + ACTIONS(5940), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132213,9 +138847,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -132227,13 +138861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73330] = 2, - ACTIONS(6282), 3, + [85502] = 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 36, - sym__soft_line_ending, + ACTIONS(6076), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -132257,9 +138890,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -132269,13 +138902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73374] = 2, - ACTIONS(6246), 3, + [85545] = 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 36, - sym__soft_line_ending, + ACTIONS(6080), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -132299,9 +138931,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -132311,12 +138943,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73418] = 2, - ACTIONS(6214), 3, + [85588] = 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 36, + ACTIONS(6084), 36, + sym__line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, + sym__whitespace, + [85631] = 2, + ACTIONS(5946), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5944), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132334,12 +139006,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -132353,12 +139025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73462] = 2, - ACTIONS(6274), 3, + [85674] = 2, + ACTIONS(5950), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 36, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132376,12 +139047,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -132395,12 +139066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73506] = 2, - ACTIONS(6218), 3, + [85717] = 2, + ACTIONS(5954), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 36, + ACTIONS(5952), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132418,12 +139088,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -132437,12 +139107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73550] = 2, - ACTIONS(6222), 3, + [85760] = 2, + ACTIONS(5958), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 36, + ACTIONS(5956), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132460,12 +139129,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -132479,12 +139148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73594] = 2, - ACTIONS(6226), 3, + [85803] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 36, + ACTIONS(6148), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132502,11 +139170,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -132521,12 +139189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73638] = 2, - ACTIONS(6230), 3, + [85846] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 36, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132544,11 +139211,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -132563,12 +139230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73682] = 2, - ACTIONS(6234), 3, + [85889] = 2, + ACTIONS(5962), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 36, + ACTIONS(5960), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132586,12 +139252,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -132605,12 +139271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73726] = 2, - ACTIONS(6278), 3, + [85932] = 2, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 36, + ACTIONS(5872), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132628,7 +139293,47 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, + sym__whitespace, + [85975] = 2, + ACTIONS(5938), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(2495), 36, + sym__line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -132638,6 +139343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -132647,12 +139353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73770] = 2, - ACTIONS(6238), 3, + [86018] = 2, + ACTIONS(5966), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 36, + ACTIONS(5964), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132670,12 +139375,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -132689,12 +139394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73814] = 2, - ACTIONS(6242), 3, + [86061] = 2, + ACTIONS(5970), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 36, + ACTIONS(5968), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132712,12 +139416,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -132731,12 +139435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73858] = 2, - ACTIONS(6282), 3, + [86104] = 2, + ACTIONS(5974), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 36, + ACTIONS(5972), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132754,12 +139457,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -132773,12 +139476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73902] = 2, - ACTIONS(6250), 3, + [86147] = 2, + ACTIONS(5978), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 36, + ACTIONS(5976), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132801,9 +139503,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -132815,12 +139517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73946] = 2, - ACTIONS(6254), 3, + [86190] = 2, + ACTIONS(5982), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 36, + ACTIONS(5980), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132843,9 +139544,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -132857,12 +139558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73990] = 2, - ACTIONS(6246), 3, + [86233] = 2, + ACTIONS(5986), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 36, + ACTIONS(5984), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132880,12 +139580,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -132899,12 +139599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74034] = 2, - ACTIONS(6064), 3, + [86276] = 2, + ACTIONS(5990), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 36, + ACTIONS(5988), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132923,11 +139622,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -132941,13 +139640,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74078] = 2, - ACTIONS(6254), 4, + [86319] = 2, + ACTIONS(5994), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, + ACTIONS(5992), 36, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6252), 35, + [86362] = 2, + ACTIONS(5998), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(5996), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132970,6 +139708,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -132980,15 +139719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [74122] = 2, - ACTIONS(6190), 3, + sym__whitespace, + [86405] = 2, + ACTIONS(6002), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 36, + ACTIONS(6000), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132998,7 +139736,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -133012,6 +139749,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133025,12 +139763,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74166] = 2, - ACTIONS(6194), 3, + [86448] = 2, + ACTIONS(6006), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 36, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133040,7 +139777,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -133054,6 +139790,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133067,13 +139804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74210] = 2, - ACTIONS(6108), 3, + [86491] = 2, + ACTIONS(6010), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 36, - sym__line_ending, + ACTIONS(6008), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -133095,11 +139831,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -133109,12 +139845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74254] = 2, - ACTIONS(6198), 3, + [86534] = 2, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 36, + ACTIONS(5868), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133124,7 +139859,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -133138,6 +139872,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133151,12 +139886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74298] = 2, - ACTIONS(6068), 3, + [86577] = 2, + ACTIONS(6014), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 36, + ACTIONS(6012), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133175,11 +139909,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133193,12 +139927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74342] = 2, - ACTIONS(6072), 3, + [86620] = 2, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 36, + ACTIONS(5892), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133217,11 +139950,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133235,12 +139968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74386] = 2, - ACTIONS(6076), 3, + [86663] = 2, + ACTIONS(6018), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 36, + ACTIONS(6016), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133259,11 +139991,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133277,12 +140009,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74430] = 2, - ACTIONS(6080), 3, + [86706] = 2, + ACTIONS(6022), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 36, + ACTIONS(6020), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133301,11 +140032,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133319,12 +140050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74474] = 2, - ACTIONS(6202), 3, + [86749] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 36, + ACTIONS(6152), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133334,7 +140064,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -133347,6 +140076,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -133361,12 +140091,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74518] = 2, - ACTIONS(6206), 3, + [86792] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 36, + ACTIONS(6156), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133376,7 +140105,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -133389,6 +140117,7 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -133403,12 +140132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74562] = 2, - ACTIONS(6250), 3, + [86835] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 36, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133426,13 +140154,13 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -133445,13 +140173,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74606] = 2, - ACTIONS(6136), 3, + [86878] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 36, - sym__line_ending, + ACTIONS(6160), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -133472,12 +140199,12 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -133487,12 +140214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74650] = 2, - ACTIONS(6254), 3, + [86921] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 36, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133510,11 +140236,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, + sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -133529,12 +140255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74694] = 2, - ACTIONS(6210), 3, + [86964] = 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 36, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133544,7 +140269,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -133558,6 +140282,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133571,12 +140296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74738] = 2, - ACTIONS(6084), 3, + [87007] = 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 36, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133595,11 +140319,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133613,12 +140337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74782] = 2, - ACTIONS(6214), 3, + [87050] = 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 36, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133628,7 +140351,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -133642,6 +140364,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133655,12 +140378,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74826] = 2, - ACTIONS(6274), 3, + [87093] = 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 36, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133670,7 +140392,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -133684,6 +140405,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133697,12 +140419,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74870] = 2, - ACTIONS(6006), 3, + [87136] = 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 36, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133721,11 +140442,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133739,12 +140460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74914] = 2, - ACTIONS(6218), 3, + [87179] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 36, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133754,7 +140474,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -133768,6 +140487,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133781,12 +140501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74958] = 2, - ACTIONS(6222), 3, + [87222] = 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 36, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133796,7 +140515,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -133810,6 +140528,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133823,12 +140542,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75002] = 2, - ACTIONS(6088), 3, + [87265] = 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 36, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133847,11 +140565,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133865,12 +140583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75046] = 2, - ACTIONS(6226), 3, + [87308] = 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 36, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133880,7 +140597,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -133894,6 +140610,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133907,12 +140624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75090] = 2, - ACTIONS(6230), 3, + [87351] = 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 36, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133922,7 +140638,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -133936,6 +140651,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133949,12 +140665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75134] = 2, - ACTIONS(6092), 3, + [87394] = 2, + ACTIONS(6066), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 36, + ACTIONS(6064), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133973,11 +140688,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -133991,12 +140706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75178] = 2, - ACTIONS(6234), 3, + [87437] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134006,7 +140720,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -134020,6 +140733,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134033,12 +140747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75222] = 2, - ACTIONS(6278), 3, + [87480] = 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 36, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134048,7 +140761,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -134062,6 +140774,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134075,12 +140788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75266] = 2, - ACTIONS(6096), 3, + [87523] = 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 36, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134099,11 +140811,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134117,12 +140829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75310] = 2, - ACTIONS(6100), 3, + [87566] = 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 36, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134141,11 +140852,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134159,12 +140870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75354] = 2, - ACTIONS(6258), 3, + [87609] = 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 36, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134187,9 +140897,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -134201,12 +140911,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75398] = 2, - ACTIONS(6262), 3, + [87652] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134229,9 +140938,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -134243,12 +140952,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75442] = 2, - ACTIONS(6266), 3, + [87695] = 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 36, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134271,9 +140979,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -134285,12 +140993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75486] = 2, - ACTIONS(6270), 3, + [87738] = 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 36, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134313,9 +141020,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -134327,12 +141034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75530] = 2, - ACTIONS(6104), 3, + [87781] = 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 36, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134351,11 +141057,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134369,12 +141075,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75574] = 2, - ACTIONS(6108), 3, + [87824] = 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134393,11 +141098,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134411,12 +141116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75618] = 2, - ACTIONS(6112), 3, + [87867] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 36, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134435,11 +141139,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134453,12 +141157,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75662] = 2, - ACTIONS(6116), 3, + [87910] = 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134477,11 +141180,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134495,12 +141198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75706] = 2, - ACTIONS(6120), 3, + [87953] = 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134519,11 +141221,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134537,12 +141239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75750] = 2, - ACTIONS(6124), 3, + [87996] = 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134561,11 +141262,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134579,12 +141280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75794] = 2, - ACTIONS(6128), 3, + [88039] = 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134603,11 +141303,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134621,12 +141321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75838] = 2, - ACTIONS(6132), 3, + [88082] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 36, + ACTIONS(6124), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134645,11 +141344,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134663,12 +141362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75882] = 2, - ACTIONS(6030), 3, + [88125] = 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 36, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134687,11 +141385,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134705,12 +141403,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75926] = 2, - ACTIONS(6238), 3, + [88168] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 36, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134720,7 +141417,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -134734,6 +141430,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134747,12 +141444,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75970] = 2, - ACTIONS(6242), 3, + [88211] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 36, + ACTIONS(6132), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134762,7 +141458,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -134776,6 +141471,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134789,12 +141485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76014] = 2, - ACTIONS(5950), 3, + [88254] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 36, + ACTIONS(6136), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134813,11 +141508,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134831,12 +141526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76058] = 2, - ACTIONS(6282), 3, + [88297] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 36, + ACTIONS(6140), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134846,7 +141540,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -134860,6 +141553,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134873,12 +141567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76102] = 2, - ACTIONS(6246), 3, + [88340] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 36, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134888,7 +141581,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -134902,6 +141594,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134915,12 +141608,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76146] = 2, - ACTIONS(6136), 3, + [88383] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 36, + ACTIONS(6144), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134939,11 +141631,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -134957,12 +141649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76190] = 2, - ACTIONS(6140), 3, + [88426] = 2, + ACTIONS(5942), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 36, + ACTIONS(5940), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134981,12 +141672,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -134999,12 +141690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76234] = 2, - ACTIONS(6258), 3, + [88469] = 2, + ACTIONS(5946), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 36, + ACTIONS(5944), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135022,13 +141712,13 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -135041,12 +141731,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76278] = 2, - ACTIONS(6262), 3, + [88512] = 2, + ACTIONS(5950), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 36, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135064,13 +141753,13 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -135083,12 +141772,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76322] = 2, - ACTIONS(6298), 3, + [88555] = 2, + ACTIONS(5954), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6296), 36, + ACTIONS(5952), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135108,11 +141796,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -135125,13 +141813,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76366] = 2, - ACTIONS(6140), 3, + [88598] = 2, + ACTIONS(5958), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 36, - sym__line_ending, + ACTIONS(5956), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135154,10 +141841,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -135167,12 +141854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76410] = 2, - ACTIONS(6266), 3, + [88641] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 36, + ACTIONS(6148), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135190,12 +141876,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -135209,12 +141895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76454] = 2, - ACTIONS(6270), 3, + [88684] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 36, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135232,12 +141917,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -135251,12 +141936,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76498] = 2, - ACTIONS(6144), 3, + [88727] = 2, + ACTIONS(5962), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 36, + ACTIONS(5960), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135275,12 +141959,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -135293,13 +141977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76542] = 2, - ACTIONS(6148), 3, + [88770] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 36, - sym__soft_line_ending, + ACTIONS(6088), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135317,7 +142000,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -135326,6 +142008,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -135335,12 +142018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76586] = 2, - ACTIONS(6152), 3, + [88813] = 2, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 36, + ACTIONS(5872), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135359,12 +142041,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -135377,12 +142059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76630] = 2, - ACTIONS(6124), 3, + [88856] = 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 36, + ACTIONS(6092), 36, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -135419,13 +142100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76674] = 2, - ACTIONS(6156), 3, + [88899] = 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 36, - sym__soft_line_ending, + ACTIONS(6096), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135443,7 +142123,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -135452,6 +142131,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -135461,12 +142141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76718] = 2, - ACTIONS(6160), 3, + [88942] = 2, + ACTIONS(5966), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 36, + ACTIONS(5964), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135485,12 +142164,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -135503,13 +142182,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76762] = 2, - ACTIONS(6288), 3, + [88985] = 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 36, - sym__soft_line_ending, + ACTIONS(6100), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135527,7 +142205,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -135536,6 +142213,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -135545,13 +142223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76806] = 2, - ACTIONS(6166), 3, + [89028] = 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6164), 36, - sym__soft_line_ending, + ACTIONS(6104), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135569,7 +142246,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -135578,6 +142254,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -135587,12 +142264,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76850] = 2, - ACTIONS(6064), 3, + [89071] = 2, + ACTIONS(5970), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 36, + ACTIONS(5968), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135603,7 +142279,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -135617,6 +142292,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -135629,13 +142305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76894] = 2, - ACTIONS(6170), 3, + [89114] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, ACTIONS(6168), 36, - sym__soft_line_ending, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135653,7 +142328,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -135662,6 +142336,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -135671,13 +142346,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76938] = 2, - ACTIONS(6174), 3, + [89157] = 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 36, - sym__soft_line_ending, + ACTIONS(6108), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135695,7 +142369,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -135704,6 +142377,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -135713,13 +142387,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76982] = 2, - ACTIONS(6128), 3, + [89200] = 2, + ACTIONS(5974), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 36, - sym__line_ending, + ACTIONS(5972), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135742,10 +142415,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -135755,12 +142428,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77026] = 2, - ACTIONS(6058), 3, + [89243] = 2, + ACTIONS(5978), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 36, + ACTIONS(5976), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135779,12 +142451,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -135797,12 +142469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77070] = 2, - ACTIONS(6178), 3, + [89286] = 2, + ACTIONS(5982), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 36, + ACTIONS(5980), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135821,12 +142492,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -135839,16 +142510,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77114] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2286), 1, - sym__pandoc_attr_specifier, - ACTIONS(5968), 3, + [89329] = 2, + ACTIONS(5986), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5966), 34, + ACTIONS(5984), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135871,28 +142538,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77162] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2291), 1, - sym__pandoc_attr_specifier, - ACTIONS(5982), 3, + [89372] = 2, + ACTIONS(5990), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5980), 34, + ACTIONS(5988), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135915,28 +142579,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77210] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2264), 1, - sym__pandoc_attr_specifier, - ACTIONS(5954), 3, + [89415] = 2, + ACTIONS(5994), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5952), 34, + ACTIONS(5992), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135959,28 +142620,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77258] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2240), 1, - sym__pandoc_attr_specifier, - ACTIONS(5972), 3, + [89458] = 2, + ACTIONS(5998), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5970), 34, + ACTIONS(5996), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136003,28 +142661,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77306] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2281), 1, - sym__pandoc_attr_specifier, - ACTIONS(5986), 3, + [89501] = 2, + ACTIONS(6002), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5984), 34, + ACTIONS(6000), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136047,24 +142702,24 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77354] = 2, - ACTIONS(6182), 3, + [89544] = 2, + ACTIONS(6006), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 36, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136083,12 +142738,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -136101,12 +142756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77398] = 2, - ACTIONS(6186), 3, + [89587] = 2, + ACTIONS(6010), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 36, + ACTIONS(6008), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136125,12 +142779,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -136143,13 +142797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77442] = 2, - ACTIONS(6132), 3, + [89630] = 2, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 36, - sym__line_ending, + ACTIONS(5868), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136172,10 +142825,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -136185,16 +142838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77486] = 4, - ACTIONS(6330), 1, - anon_sym_LBRACE, - STATE(2295), 1, - sym_attribute_specifier, - ACTIONS(5958), 3, + [89673] = 2, + ACTIONS(6014), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5956), 34, + ACTIONS(6012), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136217,28 +142866,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77534] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2296), 1, - sym__pandoc_attr_specifier, - ACTIONS(5964), 3, + [89716] = 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5962), 34, + ACTIONS(6112), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136271,18 +142917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77582] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2263), 1, - sym__pandoc_attr_specifier, - ACTIONS(5998), 3, + [89759] = 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5996), 34, + ACTIONS(6116), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136315,18 +142958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77630] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2232), 1, - sym__pandoc_attr_specifier, - ACTIONS(6002), 3, + [89802] = 2, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6000), 34, + ACTIONS(5892), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136349,28 +142989,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77678] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2233), 1, - sym__pandoc_attr_specifier, - ACTIONS(6006), 3, + [89845] = 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 34, + ACTIONS(6120), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136403,18 +143040,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77726] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2235), 1, - sym__pandoc_attr_specifier, - ACTIONS(6010), 3, + [89888] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6008), 34, + ACTIONS(6124), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136447,18 +143081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77774] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2236), 1, - sym__pandoc_attr_specifier, - ACTIONS(6014), 3, + [89931] = 2, + ACTIONS(6018), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6012), 34, + ACTIONS(6016), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136481,28 +143112,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77822] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2237), 1, - sym__pandoc_attr_specifier, - ACTIONS(6018), 3, + [89974] = 2, + ACTIONS(6022), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6016), 34, + ACTIONS(6020), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136525,28 +143153,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77870] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2239), 1, - sym__pandoc_attr_specifier, - ACTIONS(6022), 3, + [90017] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6020), 34, + ACTIONS(6152), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136568,29 +143193,26 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77918] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2243), 1, - sym__pandoc_attr_specifier, - ACTIONS(6026), 3, + [90060] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6024), 34, + ACTIONS(6156), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136612,29 +143234,26 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77966] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2244), 1, - sym__pandoc_attr_specifier, - ACTIONS(6030), 3, + [90103] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 34, + ACTIONS(6204), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136658,27 +143277,24 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78014] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2247), 1, - sym__pandoc_attr_specifier, - ACTIONS(6034), 3, + [90146] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6032), 34, + ACTIONS(6160), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136700,29 +143316,26 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78062] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2252), 1, - sym__pandoc_attr_specifier, - ACTIONS(5950), 3, + [90189] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 34, + ACTIONS(6164), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136744,25 +143357,25 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, + sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78110] = 2, - ACTIONS(6190), 3, + [90232] = 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 36, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136781,12 +143394,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -136799,12 +143412,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78154] = 2, - ACTIONS(6194), 3, + [90275] = 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 36, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136823,12 +143435,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -136841,12 +143453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78198] = 2, - ACTIONS(6084), 3, + [90318] = 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 36, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136856,7 +143467,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -136871,6 +143481,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -136883,12 +143494,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78242] = 2, - ACTIONS(6198), 3, + [90361] = 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 36, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136907,12 +143517,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -136925,16 +143535,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78286] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2253), 1, - sym__pandoc_attr_specifier, - ACTIONS(6042), 3, + [90404] = 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6040), 34, + ACTIONS(6040), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -136957,28 +143563,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78334] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2255), 1, - sym__pandoc_attr_specifier, - ACTIONS(6046), 3, + [90447] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6044), 34, + ACTIONS(6044), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -137001,28 +143604,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78382] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2256), 1, - sym__pandoc_attr_specifier, - ACTIONS(6050), 3, + [90490] = 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6048), 34, + ACTIONS(6048), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -137045,28 +143645,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78430] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2257), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 3, + [90533] = 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6052), 34, + ACTIONS(6052), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -137089,28 +143686,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78478] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2261), 1, - sym__pandoc_attr_specifier, - ACTIONS(6038), 3, + [90576] = 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6036), 34, + ACTIONS(6056), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -137133,28 +143727,25 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78526] = 4, - ACTIONS(3608), 1, - anon_sym_LBRACE, - STATE(2262), 1, - sym__pandoc_attr_specifier, - ACTIONS(5976), 3, + [90619] = 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5974), 34, + ACTIONS(6060), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -137177,24 +143768,24 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78574] = 2, - ACTIONS(6202), 3, + [90662] = 2, + ACTIONS(6066), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 36, + ACTIONS(6064), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137213,12 +143804,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137231,12 +143822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78618] = 2, - ACTIONS(6206), 3, + [90705] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137255,12 +143845,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137273,12 +143863,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78662] = 2, - ACTIONS(6210), 3, + [90748] = 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 36, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137297,12 +143886,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137315,12 +143904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78706] = 2, - ACTIONS(6214), 3, + [90791] = 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 36, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137339,12 +143927,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137357,12 +143945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78750] = 2, - ACTIONS(6274), 3, + [90834] = 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 36, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137381,12 +143968,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137399,12 +143986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78794] = 2, - ACTIONS(6218), 3, + [90877] = 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 36, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137423,12 +144009,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137441,12 +144027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78838] = 2, - ACTIONS(6222), 3, + [90920] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137465,12 +144050,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137483,12 +144068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78882] = 2, - ACTIONS(6226), 3, + [90963] = 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 36, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137507,12 +144091,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137525,12 +144109,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78926] = 2, - ACTIONS(6230), 3, + [91006] = 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 36, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137549,12 +144132,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137567,12 +144150,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78970] = 2, - ACTIONS(6234), 3, + [91049] = 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 36, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137591,12 +144173,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137609,12 +144191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79014] = 2, - ACTIONS(6278), 3, + [91092] = 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137633,12 +144214,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137651,12 +144232,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79058] = 2, - ACTIONS(6238), 3, + [91135] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 36, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137675,12 +144255,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137693,12 +144273,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79102] = 2, - ACTIONS(6242), 3, + [91178] = 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137717,12 +144296,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137735,12 +144314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79146] = 2, - ACTIONS(6282), 3, + [91221] = 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137759,12 +144337,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137777,12 +144355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79190] = 2, - ACTIONS(6246), 3, + [91264] = 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137801,12 +144378,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137819,12 +144396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79234] = 2, - ACTIONS(6064), 3, + [91307] = 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137844,11 +144420,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137861,13 +144437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79278] = 2, - ACTIONS(6258), 3, + [91350] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 36, - sym__line_ending, + ACTIONS(6124), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -137890,10 +144465,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -137903,15 +144478,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79322] = 3, - ACTIONS(6332), 1, - sym_block_continuation, - ACTIONS(2707), 4, - aux_sym_pandoc_span_token1, + [91393] = 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(2705), 34, + ACTIONS(6128), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -137934,6 +144506,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137942,16 +144515,15 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [79368] = 2, - ACTIONS(6064), 3, + sym__whitespace, + [91436] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 36, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137961,7 +144533,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -137976,6 +144547,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -137988,12 +144560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79412] = 2, - ACTIONS(6006), 3, + [91479] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 36, + ACTIONS(6132), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138003,7 +144574,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -138018,6 +144588,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -138030,12 +144601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79456] = 2, - ACTIONS(6068), 3, + [91522] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 36, + ACTIONS(6136), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138046,7 +144616,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -138060,6 +144629,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -138072,12 +144642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79500] = 2, - ACTIONS(6068), 3, + [91565] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 36, + ACTIONS(6140), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138097,11 +144666,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -138114,12 +144683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79544] = 2, - ACTIONS(6072), 3, + [91608] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 36, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138139,11 +144707,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -138156,12 +144724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79588] = 2, - ACTIONS(6076), 3, + [91651] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 36, + ACTIONS(6144), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138181,11 +144748,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -138198,12 +144765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79632] = 2, - ACTIONS(6080), 3, + [91694] = 2, + ACTIONS(5942), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 36, + ACTIONS(5940), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138223,12 +144789,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -138240,12 +144806,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79676] = 2, - ACTIONS(6072), 3, + [91737] = 2, + ACTIONS(5946), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 36, + ACTIONS(5944), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138256,7 +144821,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -138271,6 +144835,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -138282,12 +144847,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79720] = 2, - ACTIONS(6076), 3, + [91780] = 2, + ACTIONS(5950), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 36, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138298,7 +144862,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -138313,6 +144876,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -138324,12 +144888,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79764] = 2, - ACTIONS(6250), 3, + [91823] = 2, + ACTIONS(5954), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 36, + ACTIONS(5952), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138348,13 +144911,13 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -138366,13 +144929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79808] = 2, - ACTIONS(6262), 3, + [91866] = 2, + ACTIONS(5958), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 36, - sym__line_ending, + ACTIONS(5956), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138396,9 +144958,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -138408,12 +144970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79852] = 2, - ACTIONS(6254), 3, + [91909] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 36, + ACTIONS(6148), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138432,12 +144993,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -138450,12 +145011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79896] = 2, - ACTIONS(6080), 3, + [91952] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 36, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138466,7 +145026,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -138480,6 +145039,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -138492,12 +145052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79940] = 2, - ACTIONS(6084), 3, + [91995] = 2, + ACTIONS(5962), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 36, + ACTIONS(5960), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138517,12 +145076,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -138534,13 +145093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79984] = 2, - ACTIONS(6112), 3, + [92038] = 2, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 36, - sym__line_ending, + ACTIONS(5872), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138564,9 +145122,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -138576,13 +145134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80028] = 2, - ACTIONS(6006), 3, + [92081] = 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 36, - sym__soft_line_ending, + ACTIONS(6128), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138601,7 +145158,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -138609,6 +145165,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -138618,12 +145175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80072] = 2, - ACTIONS(6250), 3, + [92124] = 2, + ACTIONS(5966), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 36, + ACTIONS(5964), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138633,7 +145189,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -138649,6 +145204,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -138660,12 +145216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80116] = 2, - ACTIONS(6030), 3, + [92167] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 36, + ACTIONS(6172), 36, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -138702,12 +145257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80160] = 2, - ACTIONS(6088), 3, + [92210] = 2, + ACTIONS(5970), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 36, + ACTIONS(5968), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138727,12 +145281,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -138744,13 +145298,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80204] = 2, - ACTIONS(6254), 3, + [92253] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 36, - sym__soft_line_ending, + ACTIONS(6132), 36, + sym__line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, + sym__whitespace, + [92296] = 2, + ACTIONS(6138), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6136), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138759,7 +145353,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -138777,6 +145370,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -138786,12 +145380,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80248] = 2, - ACTIONS(6088), 3, + [92339] = 2, + ACTIONS(5974), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 36, + ACTIONS(5972), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138801,7 +145394,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -138817,6 +145409,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -138828,12 +145421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80292] = 2, - ACTIONS(6092), 3, + [92382] = 2, + ACTIONS(5978), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 36, + ACTIONS(5976), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138853,12 +145445,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -138870,12 +145462,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80336] = 2, - ACTIONS(6084), 3, + [92425] = 2, + ACTIONS(5982), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 36, + ACTIONS(5980), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138886,7 +145477,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -138901,6 +145491,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -138912,13 +145503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80380] = 2, - ACTIONS(6092), 3, + [92468] = 2, + ACTIONS(5986), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 36, - sym__line_ending, + ACTIONS(5984), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138942,9 +145532,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -138954,12 +145544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80424] = 2, - ACTIONS(6096), 3, + [92511] = 2, + ACTIONS(5990), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 36, + ACTIONS(5988), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138979,12 +145568,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -138996,12 +145585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80468] = 2, - ACTIONS(6100), 3, + [92554] = 2, + ACTIONS(5994), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 36, + ACTIONS(5992), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139021,12 +145609,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139038,12 +145626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80512] = 2, - ACTIONS(6104), 3, + [92597] = 2, + ACTIONS(5998), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 36, + ACTIONS(5996), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139063,12 +145650,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139080,12 +145667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80556] = 2, - ACTIONS(6108), 3, + [92640] = 2, + ACTIONS(6002), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 36, + ACTIONS(6000), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139105,12 +145691,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139122,12 +145708,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80600] = 2, - ACTIONS(6112), 3, + [92683] = 2, + ACTIONS(6006), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 36, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139147,12 +145732,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139164,12 +145749,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80644] = 2, - ACTIONS(6116), 3, + [92726] = 2, + ACTIONS(6010), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 36, + ACTIONS(6008), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139189,12 +145773,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139206,12 +145790,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80688] = 2, - ACTIONS(6120), 3, + [92769] = 2, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 36, + ACTIONS(5868), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139231,12 +145814,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139248,12 +145831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80732] = 2, - ACTIONS(6124), 3, + [92812] = 2, + ACTIONS(6014), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 36, + ACTIONS(6012), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139273,12 +145855,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139290,12 +145872,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80776] = 2, - ACTIONS(6128), 3, + [92855] = 2, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 36, + ACTIONS(5892), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139315,12 +145896,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139332,12 +145913,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80820] = 2, - ACTIONS(6132), 3, + [92898] = 2, + ACTIONS(6018), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 36, + ACTIONS(6016), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139357,12 +145937,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139374,12 +145954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80864] = 2, - ACTIONS(6030), 3, + [92941] = 2, + ACTIONS(6022), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 36, + ACTIONS(6020), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139399,12 +145978,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139416,13 +145995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80908] = 2, - ACTIONS(6282), 4, + [92984] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6280), 35, + ACTIONS(6152), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139446,6 +146023,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -139455,15 +146033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [80952] = 2, - ACTIONS(6006), 3, + sym__whitespace, + [93027] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 36, + ACTIONS(6156), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139474,7 +146051,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -139488,6 +146064,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -139500,12 +146077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80996] = 2, - ACTIONS(5950), 3, + [93070] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 36, + ACTIONS(6160), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139525,11 +146101,11 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -139542,12 +146118,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81040] = 2, - ACTIONS(6092), 3, + [93113] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 36, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139557,7 +146132,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -139572,6 +146146,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, + sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, @@ -139584,13 +146159,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81084] = 2, - ACTIONS(6246), 4, + [93156] = 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6244), 35, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139615,6 +146188,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139623,15 +146197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [81128] = 2, - ACTIONS(6136), 3, + sym__whitespace, + [93199] = 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 36, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139651,12 +146224,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139668,12 +146241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81172] = 2, - ACTIONS(6140), 3, + [93242] = 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 36, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139693,12 +146265,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139710,12 +146282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81216] = 2, - ACTIONS(6258), 3, + [93285] = 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 36, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139734,13 +146305,13 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139752,12 +146323,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81260] = 2, - ACTIONS(6262), 3, + [93328] = 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 36, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139776,13 +146346,13 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139794,13 +146364,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81304] = 2, - ACTIONS(6298), 4, + [93371] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, + ACTIONS(6140), 36, + sym__line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6296), 35, + [93414] = 2, + ACTIONS(6046), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139825,6 +146434,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139834,14 +146444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [81348] = 2, - ACTIONS(6266), 3, + sym__whitespace, + [93457] = 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 36, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139860,13 +146469,13 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139878,13 +146487,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81392] = 2, - ACTIONS(6270), 3, + [93500] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 36, - sym__soft_line_ending, + ACTIONS(6176), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139902,7 +146510,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, - sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -139911,6 +146518,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -139920,12 +146528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81436] = 2, - ACTIONS(6144), 3, + [93543] = 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 36, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139945,12 +146552,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -139962,12 +146569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81480] = 2, - ACTIONS(6148), 3, + [93586] = 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 36, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139987,12 +146593,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140004,12 +146610,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81524] = 2, - ACTIONS(6152), 3, + [93629] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 36, + ACTIONS(6144), 36, + sym__line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, + sym__whitespace, + [93672] = 2, + ACTIONS(6066), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6064), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140029,12 +146675,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140046,12 +146692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81568] = 2, - ACTIONS(6088), 3, + [93715] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140062,7 +146707,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -140077,6 +146721,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140088,12 +146733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81612] = 2, - ACTIONS(6156), 3, + [93758] = 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 36, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140113,12 +146757,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140130,12 +146774,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81656] = 2, - ACTIONS(6160), 3, + [93801] = 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 36, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140155,12 +146798,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140172,13 +146815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81700] = 2, - ACTIONS(6096), 3, + [93844] = 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 36, - sym__line_ending, + ACTIONS(6080), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -140202,9 +146844,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -140214,12 +146856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81744] = 2, - ACTIONS(6288), 3, + [93887] = 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 36, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140239,12 +146880,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140256,12 +146897,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81788] = 2, - ACTIONS(6166), 3, + [93930] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6164), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140281,12 +146921,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140298,12 +146938,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81832] = 2, - ACTIONS(6096), 3, + [93973] = 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 36, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140313,7 +146952,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -140329,6 +146967,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140340,12 +146979,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81876] = 2, - ACTIONS(6170), 3, + [94016] = 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6168), 36, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140365,12 +147003,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140382,12 +147020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81920] = 2, - ACTIONS(6174), 3, + [94059] = 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 36, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140407,12 +147044,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140424,12 +147061,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81964] = 2, - ACTIONS(6092), 3, + [94102] = 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140440,7 +147076,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -140455,6 +147090,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140466,12 +147102,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82008] = 2, - ACTIONS(6058), 3, + [94145] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 36, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140491,12 +147126,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140508,12 +147143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82052] = 2, - ACTIONS(6178), 3, + [94188] = 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140533,12 +147167,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140550,12 +147184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82096] = 2, - ACTIONS(6182), 3, + [94231] = 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140575,12 +147208,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140592,12 +147225,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82140] = 2, - ACTIONS(6186), 3, + [94274] = 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140617,12 +147249,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140634,12 +147266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82184] = 2, - ACTIONS(6100), 3, + [94317] = 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140649,7 +147280,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -140665,6 +147295,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140676,12 +147307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82228] = 2, - ACTIONS(6190), 3, + [94360] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 36, + ACTIONS(6124), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140701,12 +147331,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140718,12 +147348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82272] = 2, - ACTIONS(6194), 3, + [94403] = 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 36, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140743,12 +147372,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140760,12 +147389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82316] = 2, - ACTIONS(6104), 3, + [94446] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 36, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140775,7 +147403,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -140791,6 +147418,7 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140802,12 +147430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82360] = 2, - ACTIONS(6198), 3, + [94489] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 36, + ACTIONS(6132), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140827,12 +147454,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140844,12 +147471,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82404] = 2, - ACTIONS(6202), 3, + [94532] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 36, + ACTIONS(6136), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140869,12 +147495,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140886,12 +147512,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82448] = 2, - ACTIONS(6206), 3, + [94575] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 36, + ACTIONS(6140), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140911,12 +147536,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140928,12 +147553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82492] = 2, - ACTIONS(6210), 3, + [94618] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 36, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140953,12 +147577,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -140970,13 +147594,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82536] = 2, - ACTIONS(6144), 3, + [94661] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 36, - sym__line_ending, + ACTIONS(6144), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141000,9 +147623,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -141012,13 +147635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82580] = 2, - ACTIONS(6148), 3, + [94704] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 36, - sym__line_ending, + ACTIONS(6148), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141042,9 +147664,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -141054,13 +147676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82624] = 2, - ACTIONS(6152), 3, + [94747] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 36, - sym__line_ending, + ACTIONS(6184), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141084,9 +147705,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -141096,12 +147717,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82668] = 2, - ACTIONS(6214), 3, + [94790] = 2, + ACTIONS(5942), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 36, + sym__whitespace, + ACTIONS(5940), 35, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, + anon_sym_LBRACE, + anon_sym_PIPE, + [94833] = 2, + ACTIONS(6154), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6152), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141121,12 +147782,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -141138,13 +147799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82712] = 2, - ACTIONS(6156), 3, + [94876] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 36, - sym__line_ending, + ACTIONS(6156), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141168,9 +147828,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -141180,13 +147840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82756] = 2, - ACTIONS(6160), 3, + [94919] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 36, - sym__line_ending, + ACTIONS(6160), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141210,9 +147869,9 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -141222,12 +147881,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82800] = 2, - ACTIONS(6274), 3, + [94962] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 36, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141247,12 +147905,12 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, sym__pandoc_line_break, @@ -141264,13 +147922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82844] = 2, - ACTIONS(6288), 3, + [95005] = 2, + ACTIONS(5946), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5944), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141296,23 +147954,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [82888] = 2, - ACTIONS(6166), 3, + [95048] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6164), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5948), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141338,22 +147995,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [82932] = 2, - ACTIONS(6218), 3, + [95091] = 2, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 36, + sym__whitespace, + ACTIONS(5952), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141373,7 +148029,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -141387,15 +148042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [82976] = 2, - ACTIONS(6222), 3, + [95134] = 2, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 36, + sym__whitespace, + ACTIONS(5956), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141415,7 +148070,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -141429,16 +148083,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [83020] = 2, - ACTIONS(6170), 3, + [95177] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2339), 1, + sym__pandoc_attr_specifier, + ACTIONS(5882), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6168), 36, - sym__line_ending, + ACTIONS(5880), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141471,16 +148127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83064] = 2, - ACTIONS(6174), 3, + [95224] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2340), 1, + sym__pandoc_attr_specifier, + ACTIONS(5922), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 36, - sym__line_ending, + ACTIONS(5920), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141513,16 +148170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83108] = 2, - ACTIONS(6226), 3, + [95271] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2341), 1, + sym__pandoc_attr_specifier, + ACTIONS(5936), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 36, - sym__soft_line_ending, + ACTIONS(5934), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141541,7 +148199,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -141549,22 +148206,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83152] = 2, - ACTIONS(6058), 3, + [95318] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2342), 1, + sym__pandoc_attr_specifier, + ACTIONS(5866), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 36, - sym__line_ending, + ACTIONS(5864), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141597,16 +148256,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83196] = 2, - ACTIONS(6230), 3, + [95365] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2354), 1, + sym__pandoc_attr_specifier, + ACTIONS(5932), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 36, - sym__soft_line_ending, + ACTIONS(5930), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141625,7 +148285,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -141633,22 +148292,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83240] = 2, - ACTIONS(6178), 3, + [95412] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2357), 1, + sym__pandoc_attr_specifier, + ACTIONS(5862), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 36, - sym__line_ending, + ACTIONS(5860), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141681,16 +148342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83284] = 2, - ACTIONS(6182), 3, + [95459] = 4, + ACTIONS(6228), 1, + anon_sym_LBRACE, + STATE(2360), 1, + sym_attribute_specifier, + ACTIONS(5926), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 36, - sym__line_ending, + ACTIONS(5924), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141723,16 +148385,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83328] = 2, - ACTIONS(6186), 3, + [95506] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2361), 1, + sym__pandoc_attr_specifier, + ACTIONS(5840), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 36, - sym__line_ending, + ACTIONS(5838), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141765,16 +148428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83372] = 2, - ACTIONS(6234), 3, + [95553] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2362), 1, + sym__pandoc_attr_specifier, + ACTIONS(5854), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 36, - sym__soft_line_ending, + ACTIONS(5852), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141793,7 +148457,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -141801,22 +148464,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83416] = 2, - ACTIONS(6190), 3, + [95600] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2364), 1, + sym__pandoc_attr_specifier, + ACTIONS(5858), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 36, - sym__line_ending, + ACTIONS(5856), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141849,16 +148514,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83460] = 2, - ACTIONS(6278), 3, + [95647] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2365), 1, + sym__pandoc_attr_specifier, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 36, - sym__soft_line_ending, + ACTIONS(5872), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141877,7 +148543,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -141885,22 +148550,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83504] = 2, - ACTIONS(6238), 3, + [95694] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2366), 1, + sym__pandoc_attr_specifier, + ACTIONS(5878), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 36, - sym__soft_line_ending, + ACTIONS(5876), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141919,7 +148586,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -141927,22 +148593,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83548] = 2, - ACTIONS(6194), 3, + [95741] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2298), 1, + sym__pandoc_attr_specifier, + ACTIONS(5832), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 36, - sym__line_ending, + ACTIONS(5830), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141975,16 +148643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83592] = 2, - ACTIONS(6242), 3, + [95788] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2297), 1, + sym__pandoc_attr_specifier, + ACTIONS(5886), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 36, - sym__soft_line_ending, + ACTIONS(5884), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142003,7 +148672,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -142011,22 +148679,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83636] = 2, - ACTIONS(6282), 3, + [95835] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2367), 1, + sym__pandoc_attr_specifier, + ACTIONS(5846), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 36, - sym__soft_line_ending, + ACTIONS(5844), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142045,7 +148715,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -142053,22 +148722,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83680] = 2, - ACTIONS(6246), 3, + [95882] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2302), 1, + sym__pandoc_attr_specifier, + ACTIONS(5850), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 36, - sym__soft_line_ending, + ACTIONS(5848), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142087,7 +148758,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -142095,22 +148765,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83724] = 2, - ACTIONS(6096), 3, + [95929] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2303), 1, + sym__pandoc_attr_specifier, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 36, - sym__soft_line_ending, + ACTIONS(5868), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142120,7 +148792,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -142137,23 +148808,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83768] = 2, - ACTIONS(6064), 4, + [95976] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2305), 1, + sym__pandoc_attr_specifier, + ACTIONS(5890), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6062), 35, - sym__soft_line_ending, + ACTIONS(5888), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142179,22 +148851,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [83812] = 2, - ACTIONS(6100), 3, + sym__whitespace, + [96023] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2306), 1, + sym__pandoc_attr_specifier, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 36, - sym__soft_line_ending, + ACTIONS(5892), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142204,7 +148878,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -142221,22 +148894,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83856] = 2, - ACTIONS(6104), 3, + [96070] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2307), 1, + sym__pandoc_attr_specifier, + ACTIONS(5898), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 36, - sym__soft_line_ending, + ACTIONS(5896), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142246,7 +148921,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -142263,22 +148937,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83900] = 2, - ACTIONS(6108), 3, + [96117] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2308), 1, + sym__pandoc_attr_specifier, + ACTIONS(5902), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 36, - sym__soft_line_ending, + ACTIONS(5900), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142288,7 +148964,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -142305,22 +148980,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83944] = 2, - ACTIONS(6112), 3, + [96164] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2309), 1, + sym__pandoc_attr_specifier, + ACTIONS(5906), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 36, - sym__soft_line_ending, + ACTIONS(5904), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142330,7 +149007,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -142347,22 +149023,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83988] = 2, - ACTIONS(6116), 3, + [96211] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2310), 1, + sym__pandoc_attr_specifier, + ACTIONS(5910), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 36, - sym__soft_line_ending, + ACTIONS(5908), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142372,7 +149050,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -142389,22 +149066,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84032] = 2, - ACTIONS(6120), 3, + [96258] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2315), 1, + sym__pandoc_attr_specifier, + ACTIONS(5914), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 36, - sym__soft_line_ending, + ACTIONS(5912), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142414,7 +149093,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -142431,23 +149109,24 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84076] = 2, - ACTIONS(6068), 4, + [96305] = 4, + ACTIONS(3546), 1, + anon_sym_LBRACE, + STATE(2316), 1, + sym__pandoc_attr_specifier, + ACTIONS(5918), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6066), 35, - sym__soft_line_ending, + ACTIONS(5916), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142473,23 +149152,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [84120] = 2, - ACTIONS(6072), 4, + sym__whitespace, + [96352] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6070), 35, - sym__soft_line_ending, + ACTIONS(6184), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142515,6 +149192,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -142522,15 +149200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [84164] = 2, - ACTIONS(6076), 4, + sym__whitespace, + [96395] = 2, + ACTIONS(5962), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6074), 35, + ACTIONS(5960), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142563,16 +149240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [84208] = 2, - ACTIONS(6080), 4, + [96438] = 2, + ACTIONS(5874), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6078), 35, + ACTIONS(5872), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142605,15 +149281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [84252] = 2, - ACTIONS(6124), 3, + [96481] = 2, + ACTIONS(5966), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 36, + sym__whitespace, + ACTIONS(5964), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142624,7 +149300,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -142647,15 +149322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84296] = 2, - ACTIONS(6128), 3, + [96524] = 2, + ACTIONS(5970), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 36, + sym__whitespace, + ACTIONS(5968), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142666,7 +149341,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -142689,16 +149363,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84340] = 2, - ACTIONS(6198), 3, + [96567] = 2, + ACTIONS(5974), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5972), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142724,23 +149398,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84384] = 2, - ACTIONS(6202), 3, + [96610] = 2, + ACTIONS(5978), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5976), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142766,23 +149439,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84428] = 2, - ACTIONS(6206), 3, + [96653] = 2, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5980), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142808,22 +149480,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84472] = 2, - ACTIONS(6250), 3, + [96696] = 2, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 36, + sym__whitespace, + ACTIONS(5984), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142843,7 +149514,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -142857,15 +149527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84516] = 2, - ACTIONS(6132), 3, + [96739] = 2, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 36, + sym__whitespace, + ACTIONS(5988), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142876,7 +149546,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -142899,16 +149568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84560] = 2, - ACTIONS(6210), 3, + [96782] = 2, + ACTIONS(5994), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5992), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142934,23 +149603,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84604] = 2, - ACTIONS(6214), 3, + [96825] = 2, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5996), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142976,23 +149644,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84648] = 2, - ACTIONS(6274), 3, + [96868] = 2, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6000), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143018,65 +149685,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84692] = 2, - ACTIONS(6218), 3, + [96911] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 36, - sym__line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, sym__whitespace, - [84736] = 2, - ACTIONS(6222), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 36, - sym__line_ending, + ACTIONS(6004), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143102,23 +149726,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84780] = 2, - ACTIONS(6226), 3, + [96954] = 2, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6008), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143144,23 +149767,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84824] = 2, - ACTIONS(6230), 3, + [96997] = 2, + ACTIONS(5870), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5868), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143186,22 +149808,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84868] = 2, - ACTIONS(6254), 3, + [97040] = 2, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 36, + sym__whitespace, + ACTIONS(6012), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143221,7 +149842,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -143235,15 +149855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84912] = 2, - ACTIONS(6030), 3, + [97083] = 2, + ACTIONS(5894), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 36, + sym__whitespace, + ACTIONS(5892), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143254,7 +149874,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -143277,16 +149896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [84956] = 2, - ACTIONS(6084), 4, + [97126] = 2, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6082), 35, + ACTIONS(6016), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143319,15 +149937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [85000] = 2, - ACTIONS(6108), 3, + [97169] = 2, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 36, + sym__whitespace, + ACTIONS(6020), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143337,7 +149955,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -143361,15 +149978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [85044] = 2, - ACTIONS(6112), 3, + [97212] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 36, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143406,14 +150022,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85088] = 2, - ACTIONS(6006), 4, + [97255] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6004), 35, - sym__soft_line_ending, + ACTIONS(6160), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143439,6 +150053,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -143446,15 +150061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [85132] = 2, - ACTIONS(5950), 3, + sym__whitespace, + [97298] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 36, - sym__soft_line_ending, + ACTIONS(6164), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143464,7 +150078,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -143481,6 +150094,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -143490,12 +150104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85176] = 2, - ACTIONS(6116), 3, + [97341] = 2, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 36, + sym__whitespace, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143505,7 +150119,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -143529,16 +150142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [85220] = 2, - ACTIONS(6088), 4, + [97384] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6086), 35, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143571,15 +150183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [85264] = 2, - ACTIONS(6120), 3, + [97427] = 2, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 36, + sym__whitespace, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143589,7 +150201,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -143613,15 +150224,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [85308] = 2, - ACTIONS(6136), 3, + [97470] = 2, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 36, + sym__whitespace, + ACTIONS(6036), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143632,7 +150243,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -143655,16 +150265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [85352] = 2, - ACTIONS(6092), 4, + [97513] = 2, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6090), 35, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143697,58 +150306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [85396] = 2, - ACTIONS(6234), 3, + [97556] = 2, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 36, - sym__line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, sym__whitespace, - [85440] = 2, - ACTIONS(6278), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 36, - sym__line_ending, + ACTIONS(6044), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143774,23 +150341,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [85484] = 2, - ACTIONS(6238), 3, + [97599] = 2, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6048), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143816,22 +150382,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [85528] = 2, - ACTIONS(6140), 3, + [97642] = 2, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 36, + sym__whitespace, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143842,7 +150407,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -143865,15 +150429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [85572] = 2, - ACTIONS(6258), 3, + [97685] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 36, + sym__whitespace, + ACTIONS(6056), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143883,7 +150447,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -143907,16 +150470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [85616] = 2, - ACTIONS(6242), 3, + [97728] = 2, + ACTIONS(6062), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6060), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143942,23 +150505,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [85660] = 2, - ACTIONS(6282), 3, + [97771] = 2, + ACTIONS(6066), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6064), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143984,23 +150546,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [85704] = 2, - ACTIONS(6246), 3, + [97814] = 2, + ACTIONS(6070), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6068), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -144026,23 +150587,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [85748] = 2, - ACTIONS(6096), 4, + [97857] = 2, + ACTIONS(6074), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6094), 35, + ACTIONS(6072), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144075,16 +150634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [85792] = 2, - ACTIONS(6242), 4, + [97900] = 2, + ACTIONS(6078), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6240), 35, + ACTIONS(6076), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144120,13 +150678,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [85836] = 2, - ACTIONS(6104), 4, + [97943] = 2, + ACTIONS(6082), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6102), 35, + ACTIONS(6080), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144159,16 +150716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [85880] = 2, - ACTIONS(6108), 4, + [97986] = 2, + ACTIONS(6086), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6106), 35, + ACTIONS(6084), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144201,16 +150757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [85924] = 2, - ACTIONS(6112), 4, + [98029] = 2, + ACTIONS(6090), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6110), 35, + ACTIONS(6088), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144243,16 +150798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [85968] = 2, - ACTIONS(6116), 4, + [98072] = 2, + ACTIONS(6094), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6114), 35, + ACTIONS(6092), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144285,16 +150839,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [86012] = 2, - ACTIONS(6120), 4, + [98115] = 2, + ACTIONS(6098), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6118), 35, + ACTIONS(6096), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144327,16 +150880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [86056] = 2, - ACTIONS(6124), 4, + [98158] = 2, + ACTIONS(6102), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6122), 35, + ACTIONS(6100), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144369,16 +150921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [86100] = 2, - ACTIONS(6128), 4, + [98201] = 2, + ACTIONS(6106), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6126), 35, + ACTIONS(6104), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144411,16 +150962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [86144] = 2, - ACTIONS(6132), 4, + [98244] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6130), 35, + ACTIONS(6168), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144453,16 +151003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [86188] = 2, - ACTIONS(6030), 4, + [98287] = 2, + ACTIONS(6110), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6028), 35, + ACTIONS(6108), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144495,16 +151044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [86232] = 2, - ACTIONS(6064), 4, + [98330] = 2, + ACTIONS(6114), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6062), 35, + ACTIONS(6112), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144540,12 +151088,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [86276] = 2, - ACTIONS(6262), 3, + [98373] = 2, + ACTIONS(6118), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 36, + sym__whitespace, + ACTIONS(6116), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144555,7 +151103,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -144579,15 +151126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [86320] = 2, - ACTIONS(6298), 3, + [98416] = 2, + ACTIONS(6122), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6296), 36, + sym__whitespace, + ACTIONS(6120), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144605,7 +151152,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -144621,16 +151167,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [86364] = 2, - ACTIONS(5950), 4, + [98459] = 2, + ACTIONS(6126), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(5948), 35, + ACTIONS(6124), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144663,15 +151208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [86408] = 2, - ACTIONS(6124), 3, + [98502] = 2, + ACTIONS(6130), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 36, + sym__whitespace, + ACTIONS(6128), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144681,7 +151226,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -144705,15 +151249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [86452] = 2, - ACTIONS(6266), 3, + [98545] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 36, + sym__whitespace, + ACTIONS(6172), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144723,7 +151267,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -144747,16 +151290,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [86496] = 2, - ACTIONS(6136), 4, + [98588] = 2, + ACTIONS(6134), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6134), 35, + ACTIONS(6132), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144789,16 +151331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [86540] = 2, - ACTIONS(6140), 4, + [98631] = 2, + ACTIONS(6138), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6138), 35, + ACTIONS(6136), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144831,15 +151372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [86584] = 2, - ACTIONS(6258), 3, + [98674] = 2, + ACTIONS(6142), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 36, + sym__whitespace, + ACTIONS(6140), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144859,7 +151400,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -144873,15 +151413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [86628] = 2, - ACTIONS(6262), 3, + [98717] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 36, + sym__whitespace, + ACTIONS(6176), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144901,7 +151441,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -144915,15 +151454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [86672] = 2, - ACTIONS(6298), 3, + [98760] = 2, + ACTIONS(6146), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6296), 36, + sym__whitespace, + ACTIONS(6144), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144945,7 +151484,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -144957,16 +151495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [86716] = 2, - ACTIONS(6064), 3, + [98803] = 2, + ACTIONS(5942), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 36, - sym__line_ending, + ACTIONS(5940), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -144975,6 +151512,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -144992,7 +151530,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -145002,13 +151539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86760] = 2, - ACTIONS(6298), 4, + [98846] = 2, + ACTIONS(5946), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6296), 35, + ACTIONS(5944), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145018,6 +151553,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145041,15 +151577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [86804] = 2, - ACTIONS(6266), 3, + sym__whitespace, + [98889] = 2, + ACTIONS(5950), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 36, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145059,6 +151594,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145069,7 +151605,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -145086,12 +151621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86848] = 2, - ACTIONS(6270), 3, + [98932] = 2, + ACTIONS(5954), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 36, + ACTIONS(5952), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145101,6 +151635,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145111,7 +151646,6 @@ static const uint16_t ts_small_parse_table[] = { sym__strikeout_open, sym__subscript_open, sym__superscript_open, - sym__superscript_close, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, @@ -145128,13 +151662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86892] = 2, - ACTIONS(6144), 4, + [98975] = 2, + ACTIONS(5958), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6142), 35, + ACTIONS(5956), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145144,6 +151676,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145168,15 +151701,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [86936] = 2, - ACTIONS(6148), 4, + sym__whitespace, + [99018] = 2, + ACTIONS(6150), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6146), 35, + ACTIONS(6148), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145209,16 +151741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [86980] = 2, - ACTIONS(6152), 4, + [99061] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6150), 35, + ACTIONS(6184), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145251,15 +151782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87024] = 2, - ACTIONS(6270), 3, + [99104] = 2, + ACTIONS(5962), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 36, + ACTIONS(5960), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145296,14 +151826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87068] = 2, - ACTIONS(6156), 4, + [99147] = 2, + ACTIONS(5942), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6154), 35, - sym__soft_line_ending, + ACTIONS(5940), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -145329,6 +151857,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -145336,15 +151865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87112] = 2, - ACTIONS(6160), 4, + sym__whitespace, + [99190] = 2, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6158), 35, + ACTIONS(5872), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145354,6 +151881,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145378,14 +151906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87156] = 2, - ACTIONS(6144), 3, + sym__whitespace, + [99233] = 2, + ACTIONS(5966), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 36, + ACTIONS(5964), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145395,8 +151922,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -145422,13 +151949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87200] = 2, - ACTIONS(6288), 4, + [99276] = 2, + ACTIONS(5970), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6286), 35, + ACTIONS(5968), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145438,6 +151963,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145462,15 +151988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87244] = 2, - ACTIONS(6166), 4, + sym__whitespace, + [99319] = 2, + ACTIONS(5974), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6164), 35, + ACTIONS(5972), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145480,6 +152004,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145504,14 +152029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87288] = 2, - ACTIONS(6148), 3, + sym__whitespace, + [99362] = 2, + ACTIONS(5978), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 36, + ACTIONS(5976), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145521,8 +152045,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -145548,13 +152072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87332] = 2, - ACTIONS(6170), 4, + [99405] = 2, + ACTIONS(5982), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6168), 35, + ACTIONS(5980), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145564,6 +152086,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145588,15 +152111,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87376] = 2, - ACTIONS(6174), 4, + sym__whitespace, + [99448] = 2, + ACTIONS(5986), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6172), 35, + ACTIONS(5984), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145606,6 +152127,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145630,14 +152152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87420] = 2, - ACTIONS(6152), 3, + sym__whitespace, + [99491] = 2, + ACTIONS(5990), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 36, + ACTIONS(5988), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145647,8 +152168,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -145674,13 +152195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87464] = 2, - ACTIONS(6058), 4, + [99534] = 2, + ACTIONS(5994), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6056), 35, + ACTIONS(5992), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145690,6 +152209,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145714,15 +152234,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87508] = 2, - ACTIONS(6178), 4, + sym__whitespace, + [99577] = 2, + ACTIONS(5998), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6176), 35, + ACTIONS(5996), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145732,6 +152250,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145756,15 +152275,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87552] = 2, - ACTIONS(6068), 4, + sym__whitespace, + [99620] = 2, + ACTIONS(6002), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6066), 35, + ACTIONS(6000), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145774,6 +152291,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145797,16 +152315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [87596] = 2, - ACTIONS(6072), 4, + sym__whitespace, + [99663] = 2, + ACTIONS(6006), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6070), 35, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145816,6 +152332,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145839,16 +152356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [87640] = 2, - ACTIONS(6076), 4, + sym__whitespace, + [99706] = 2, + ACTIONS(6010), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6074), 35, + ACTIONS(6008), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145858,6 +152373,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145881,16 +152397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [87684] = 2, - ACTIONS(6080), 4, + sym__whitespace, + [99749] = 2, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6078), 35, + ACTIONS(5868), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145900,6 +152414,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145923,16 +152438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [87728] = 2, - ACTIONS(6182), 4, + sym__whitespace, + [99792] = 2, + ACTIONS(6014), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6180), 35, + ACTIONS(6012), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145942,6 +152455,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -145966,15 +152480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87772] = 2, - ACTIONS(6186), 4, + sym__whitespace, + [99835] = 2, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6184), 35, + ACTIONS(5892), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145984,6 +152496,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146008,14 +152521,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87816] = 2, - ACTIONS(6128), 3, + sym__whitespace, + [99878] = 2, + ACTIONS(6018), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 36, + ACTIONS(6016), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146052,13 +152564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87860] = 2, - ACTIONS(6190), 4, + [99921] = 2, + ACTIONS(6022), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6188), 35, + ACTIONS(6020), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146068,6 +152578,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146092,15 +152603,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87904] = 2, - ACTIONS(6194), 4, + sym__whitespace, + [99964] = 2, + ACTIONS(6154), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6192), 35, + ACTIONS(6152), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146133,15 +152643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [87948] = 2, - ACTIONS(6156), 3, + [100007] = 2, + ACTIONS(6158), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 36, + sym__whitespace, + ACTIONS(6156), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146152,7 +152662,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -146175,16 +152684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [87992] = 2, - ACTIONS(6198), 4, + [100050] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6196), 35, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146195,6 +152702,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -146218,15 +152726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88036] = 2, - ACTIONS(6202), 4, + sym__whitespace, + [100093] = 2, + ACTIONS(6162), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6200), 35, + ACTIONS(6160), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146259,16 +152766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88080] = 2, - ACTIONS(6206), 4, + [100136] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6204), 35, + ACTIONS(6164), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146301,16 +152807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88124] = 2, - ACTIONS(6210), 4, + [100179] = 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6208), 35, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146320,6 +152824,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146344,15 +152849,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88168] = 2, - ACTIONS(6214), 4, + sym__whitespace, + [100222] = 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6212), 35, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146362,6 +152865,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146386,15 +152890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88212] = 2, - ACTIONS(6274), 4, + sym__whitespace, + [100265] = 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6272), 35, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146404,6 +152906,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146428,15 +152931,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88256] = 2, - ACTIONS(6218), 4, + sym__whitespace, + [100308] = 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6216), 35, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146446,6 +152947,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146470,15 +152972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88300] = 2, - ACTIONS(6222), 4, + sym__whitespace, + [100351] = 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6220), 35, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146488,6 +152988,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146512,15 +153013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88344] = 2, - ACTIONS(6226), 4, + sym__whitespace, + [100394] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6224), 35, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146530,6 +153029,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146554,15 +153054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88388] = 2, - ACTIONS(6068), 3, + sym__whitespace, + [100437] = 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 36, - sym__line_ending, + ACTIONS(6048), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146571,6 +153070,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146588,7 +153088,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -146598,13 +153097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88432] = 2, - ACTIONS(6230), 4, + [100480] = 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6228), 35, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146614,6 +153111,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146638,15 +153136,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88476] = 2, - ACTIONS(6234), 4, + sym__whitespace, + [100523] = 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6232), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146656,6 +153152,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146680,15 +153177,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88520] = 2, - ACTIONS(6072), 3, + sym__whitespace, + [100566] = 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 36, - sym__line_ending, + ACTIONS(6060), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146697,6 +153193,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146714,7 +153211,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -146724,13 +153220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88564] = 2, - ACTIONS(6076), 3, + [100609] = 2, + ACTIONS(6066), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 36, - sym__line_ending, + ACTIONS(6064), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146739,6 +153234,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146756,7 +153252,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -146766,13 +153261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88608] = 2, - ACTIONS(6080), 3, + [100652] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 36, - sym__line_ending, + ACTIONS(6068), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146781,6 +153275,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146798,7 +153293,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -146808,13 +153302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88652] = 2, - ACTIONS(6278), 4, + [100695] = 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6276), 35, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146824,6 +153316,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146848,15 +153341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88696] = 2, - ACTIONS(6238), 4, + sym__whitespace, + [100738] = 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6236), 35, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146866,6 +153357,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146890,15 +153382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88740] = 2, - ACTIONS(6250), 3, + sym__whitespace, + [100781] = 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 36, - sym__line_ending, + ACTIONS(6080), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146907,6 +153398,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146924,7 +153416,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -146934,13 +153425,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88784] = 2, - ACTIONS(6242), 4, + [100824] = 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6240), 35, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146950,6 +153439,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -146974,15 +153464,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88828] = 2, - ACTIONS(6282), 4, + sym__whitespace, + [100867] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6280), 35, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146992,6 +153480,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -147016,15 +153505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88872] = 2, - ACTIONS(6254), 3, + sym__whitespace, + [100910] = 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 36, - sym__line_ending, + ACTIONS(6092), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -147033,6 +153521,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -147050,7 +153539,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -147060,13 +153548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88916] = 2, - ACTIONS(6246), 4, + [100953] = 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6244), 35, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147076,6 +153562,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -147100,14 +153587,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [88960] = 2, - ACTIONS(6064), 3, + sym__whitespace, + [100996] = 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 36, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147117,6 +153603,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -147129,7 +153616,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -147144,12 +153630,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89004] = 2, - ACTIONS(6160), 3, + [101039] = 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147159,8 +153644,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -147186,12 +153671,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89048] = 2, - ACTIONS(6132), 3, + [101082] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 36, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147228,12 +153712,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89092] = 2, - ACTIONS(6288), 3, + [101125] = 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147243,8 +153726,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -147270,12 +153753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89136] = 2, - ACTIONS(6166), 3, + [101168] = 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6164), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147285,8 +153767,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -147312,12 +153794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89180] = 2, - ACTIONS(6030), 3, + [101211] = 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147354,13 +153835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89224] = 2, - ACTIONS(6084), 4, + [101254] = 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6082), 35, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147370,6 +153849,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -147393,15 +153873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [89268] = 2, - ACTIONS(6068), 3, + sym__whitespace, + [101297] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 36, + ACTIONS(6124), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147411,6 +153890,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -147423,7 +153903,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -147438,12 +153917,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89312] = 2, - ACTIONS(6072), 3, + [101340] = 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 36, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147453,6 +153931,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -147465,7 +153944,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -147480,13 +153958,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89356] = 2, - ACTIONS(6006), 4, + [101383] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6004), 35, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147496,6 +153972,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -147519,15 +153996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [89400] = 2, - ACTIONS(6076), 3, + sym__whitespace, + [101426] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 36, + ACTIONS(6132), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147537,6 +154013,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -147549,7 +154026,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -147564,12 +154040,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89444] = 2, - ACTIONS(6080), 3, + [101469] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 36, + ACTIONS(6136), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147579,6 +154054,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -147591,7 +154067,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -147606,13 +154081,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89488] = 2, - ACTIONS(6088), 4, + [101512] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6086), 35, + ACTIONS(6140), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147622,6 +154095,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -147645,15 +154119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [89532] = 2, - ACTIONS(6170), 3, + sym__whitespace, + [101555] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6168), 36, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147663,8 +154136,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -147690,12 +154163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89576] = 2, - ACTIONS(6174), 3, + [101598] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 36, + ACTIONS(6144), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147705,8 +154177,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -147732,14 +154204,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89620] = 2, - ACTIONS(6092), 4, + [101641] = 3, + ACTIONS(6230), 1, + sym_block_continuation, + ACTIONS(2421), 3, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6090), 35, - sym__soft_line_ending, + ACTIONS(2419), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -147770,17 +154242,15 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [89664] = 2, - ACTIONS(6250), 4, + [101686] = 2, + ACTIONS(5942), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6248), 35, + ACTIONS(5940), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147791,6 +154261,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -147814,57 +154285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [89708] = 2, - ACTIONS(6096), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6094), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_LBRACE, - anon_sym_PIPE, - [89752] = 2, - ACTIONS(6100), 4, + [101729] = 2, + ACTIONS(5946), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6098), 35, + ACTIONS(5944), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147875,6 +154302,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -147897,57 +154325,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [89796] = 2, - ACTIONS(6254), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6252), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [89840] = 2, - ACTIONS(6068), 3, + [101772] = 2, + ACTIONS(5950), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 36, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147957,8 +154342,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -147984,13 +154369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89884] = 2, - ACTIONS(6104), 4, + [101815] = 2, + ACTIONS(5954), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6102), 35, + ACTIONS(5952), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148001,6 +154384,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148023,58 +154407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [89928] = 2, - ACTIONS(6108), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6106), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_LBRACE, - anon_sym_PIPE, - [89972] = 2, - ACTIONS(6112), 4, + [101858] = 2, + ACTIONS(5958), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6110), 35, + ACTIONS(5956), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148085,6 +154425,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148107,16 +154448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [90016] = 2, - ACTIONS(6116), 4, + sym__whitespace, + [101901] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6114), 35, + ACTIONS(6148), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148126,6 +154465,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -148149,16 +154489,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [90060] = 2, - ACTIONS(6120), 4, + sym__whitespace, + [101944] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6118), 35, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148168,6 +154506,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -148191,16 +154530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [90104] = 2, - ACTIONS(6124), 4, + sym__whitespace, + [101987] = 2, + ACTIONS(5962), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6122), 35, + ACTIONS(5960), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148211,6 +154548,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148233,16 +154571,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [90148] = 2, - ACTIONS(6128), 4, + sym__whitespace, + [102030] = 2, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6126), 35, + ACTIONS(5872), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148253,6 +154589,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148275,16 +154612,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [90192] = 2, - ACTIONS(6132), 4, + sym__whitespace, + [102073] = 2, + ACTIONS(5966), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6130), 35, + ACTIONS(5964), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148295,6 +154630,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148317,16 +154653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [90236] = 2, - ACTIONS(6030), 4, + sym__whitespace, + [102116] = 2, + ACTIONS(5970), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6028), 35, + ACTIONS(5968), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148337,6 +154671,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148359,15 +154694,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [90280] = 2, - ACTIONS(6084), 3, + sym__whitespace, + [102159] = 2, + ACTIONS(5974), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 36, + ACTIONS(5972), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148378,6 +154712,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148389,7 +154724,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -148404,12 +154738,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90324] = 2, - ACTIONS(6058), 3, + [102202] = 2, + ACTIONS(5978), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 36, + ACTIONS(5976), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148446,13 +154779,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90368] = 2, - ACTIONS(5950), 4, + [102245] = 2, + ACTIONS(5982), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(5948), 35, + ACTIONS(5980), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148463,6 +154794,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148485,15 +154817,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [90412] = 2, - ACTIONS(6178), 3, + sym__whitespace, + [102288] = 2, + ACTIONS(5986), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 36, + ACTIONS(5984), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148530,12 +154861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90456] = 2, - ACTIONS(6006), 3, + [102331] = 2, + ACTIONS(5990), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 36, + ACTIONS(5988), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148546,6 +154876,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148557,7 +154888,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -148572,13 +154902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90500] = 2, - ACTIONS(6136), 4, + [102374] = 2, + ACTIONS(5994), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6134), 35, + ACTIONS(5992), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148589,6 +154917,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148611,16 +154940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [90544] = 2, - ACTIONS(6140), 4, + sym__whitespace, + [102417] = 2, + ACTIONS(5998), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6138), 35, + ACTIONS(5996), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148631,6 +154958,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148653,15 +154981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [90588] = 2, - ACTIONS(6182), 3, + sym__whitespace, + [102460] = 2, + ACTIONS(6002), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 36, + ACTIONS(6000), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148698,12 +155025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90632] = 2, - ACTIONS(6186), 3, + [102503] = 2, + ACTIONS(6006), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 36, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148740,12 +155066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90676] = 2, - ACTIONS(6088), 3, + [102546] = 2, + ACTIONS(6010), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 36, + ACTIONS(6008), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148756,6 +155081,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148767,7 +155093,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -148782,12 +155107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90720] = 2, - ACTIONS(6072), 3, + [102589] = 2, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 36, + ACTIONS(5868), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148797,8 +155121,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148824,12 +155148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90764] = 2, - ACTIONS(6190), 3, + [102632] = 2, + ACTIONS(6014), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 36, + ACTIONS(6012), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148866,12 +155189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90808] = 2, - ACTIONS(6298), 3, + [102675] = 2, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6296), 36, + ACTIONS(5892), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148881,8 +155203,8 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148908,12 +155230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90852] = 2, - ACTIONS(6092), 3, + [102718] = 2, + ACTIONS(6018), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 36, + ACTIONS(6016), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148924,6 +155245,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -148935,7 +155257,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -148950,12 +155271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90896] = 2, - ACTIONS(6194), 3, + [102761] = 2, + ACTIONS(6022), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 36, + ACTIONS(6020), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148992,12 +155312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90940] = 2, - ACTIONS(5950), 3, + [102804] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 36, + ACTIONS(6152), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149034,12 +155353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90984] = 2, - ACTIONS(6096), 3, + [102847] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 36, + ACTIONS(6156), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149049,6 +155367,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -149061,7 +155380,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -149076,12 +155394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91028] = 2, - ACTIONS(6100), 3, + [102890] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 36, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149099,11 +155416,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -149118,12 +155435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91072] = 2, - ACTIONS(6104), 3, + [102933] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 36, + ACTIONS(6160), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149133,6 +155449,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -149145,7 +155462,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -149160,13 +155476,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91116] = 2, - ACTIONS(6266), 3, + [102976] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 36, - sym__line_ending, + ACTIONS(6164), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -149175,6 +155490,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, + sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -149192,7 +155508,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -149202,13 +155517,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91160] = 2, - ACTIONS(6270), 3, + [103019] = 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 36, - sym__line_ending, + ACTIONS(6024), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -149218,6 +155532,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149234,7 +155549,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -149244,12 +155558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91204] = 2, - ACTIONS(6108), 3, + [103062] = 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 36, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149260,6 +155573,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149271,7 +155585,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -149286,13 +155599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91248] = 2, - ACTIONS(6144), 4, + [103105] = 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6142), 35, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149303,6 +155614,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149325,16 +155637,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [91292] = 2, - ACTIONS(6148), 4, + sym__whitespace, + [103148] = 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, + ACTIONS(6036), 36, + sym__soft_line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__double_quote_span_close, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6146), 35, + [103191] = 2, + ACTIONS(6042), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149345,6 +155696,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149367,16 +155719,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [91336] = 2, - ACTIONS(6152), 4, + sym__whitespace, + [103234] = 2, + ACTIONS(5946), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, + ACTIONS(5944), 36, + sym__line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6150), 35, + [103277] = 2, + ACTIONS(6046), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149387,6 +155778,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149409,15 +155801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [91380] = 2, - ACTIONS(6112), 3, + sym__whitespace, + [103320] = 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 36, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149428,6 +155819,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149439,7 +155831,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -149454,13 +155845,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91424] = 2, - ACTIONS(6156), 4, + [103363] = 2, + ACTIONS(5950), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, + ACTIONS(5948), 36, + sym__line_ending, + sym__code_span_start, + sym__html_comment, + sym__autolink, + sym__highlight_span_start, + sym__insert_span_start, + sym__delete_span_start, + sym__edit_comment_span_start, + sym__single_quote_span_open, + sym__double_quote_span_open, + sym__shortcode_open_escaped, + sym__shortcode_open, + sym__cite_author_in_text_with_open_bracket, + sym__cite_suppress_author_with_open_bracket, + sym__cite_author_in_text, + sym__cite_suppress_author, + sym__strikeout_open, + sym__subscript_open, + sym__superscript_open, + sym__inline_note_start_token, + sym__strong_emphasis_open_star, + sym__strong_emphasis_open_underscore, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_inline_note_reference, + sym_html_element, + sym__pipe_table_delimiter, + sym__pandoc_line_break, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6154), 35, + [103406] = 2, + ACTIONS(6054), 2, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149471,6 +155901,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149493,16 +155924,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [91468] = 2, - ACTIONS(6160), 4, + sym__whitespace, + [103449] = 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6158), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149513,6 +155942,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149535,15 +155965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [91512] = 2, - ACTIONS(6116), 3, + sym__whitespace, + [103492] = 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 36, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149554,6 +155983,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149565,7 +155995,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -149580,13 +156009,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91556] = 2, - ACTIONS(6288), 4, + [103535] = 2, + ACTIONS(6066), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6286), 35, + ACTIONS(6064), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149597,6 +156024,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149619,16 +156047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [91600] = 2, - ACTIONS(6166), 4, + sym__whitespace, + [103578] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6164), 35, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149639,6 +156065,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149661,15 +156088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [91644] = 2, - ACTIONS(6120), 3, + sym__whitespace, + [103621] = 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 36, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149680,6 +156106,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149691,7 +156118,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -149706,13 +156132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91688] = 2, - ACTIONS(6170), 4, + [103664] = 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6168), 35, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149723,6 +156147,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149745,16 +156170,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [91732] = 2, - ACTIONS(6174), 4, + sym__whitespace, + [103707] = 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6172), 35, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149765,6 +156188,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149787,15 +156211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [91776] = 2, - ACTIONS(6124), 3, + sym__whitespace, + [103750] = 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 36, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149806,6 +156229,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149817,7 +156241,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -149832,14 +156255,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91820] = 2, - ACTIONS(6058), 4, + [103793] = 2, + ACTIONS(5954), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6056), 35, - sym__soft_line_ending, + ACTIONS(5952), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -149865,21 +156286,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [91864] = 2, - ACTIONS(6128), 3, + sym__whitespace, + [103836] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149890,6 +156311,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149901,7 +156323,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -149916,13 +156337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91908] = 2, - ACTIONS(6178), 4, + [103879] = 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6176), 35, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149933,6 +156352,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149955,16 +156375,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [91952] = 2, - ACTIONS(6182), 4, + sym__whitespace, + [103922] = 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6180), 35, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149975,6 +156393,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -149997,16 +156416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [91996] = 2, - ACTIONS(6186), 4, + sym__whitespace, + [103965] = 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6184), 35, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150017,6 +156434,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150039,15 +156457,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [92040] = 2, - ACTIONS(6132), 3, + sym__whitespace, + [104008] = 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150058,6 +156475,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150069,7 +156487,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -150084,13 +156501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92084] = 2, - ACTIONS(6190), 4, + [104051] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6188), 35, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150101,6 +156516,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150123,16 +156539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [92128] = 2, - ACTIONS(6194), 4, + sym__whitespace, + [104094] = 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6192), 35, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150143,6 +156557,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150165,15 +156580,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [92172] = 2, - ACTIONS(6030), 3, + sym__whitespace, + [104137] = 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150184,6 +156598,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150195,7 +156610,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -150210,12 +156624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92216] = 2, - ACTIONS(6198), 3, + [104180] = 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150252,12 +156665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92260] = 2, - ACTIONS(6202), 3, + [104223] = 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150294,12 +156706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92304] = 2, - ACTIONS(5950), 3, + [104266] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 36, + ACTIONS(6124), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150310,6 +156721,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150321,7 +156733,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -150336,12 +156747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92348] = 2, - ACTIONS(6206), 3, + [104309] = 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 36, + ACTIONS(6128), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150378,12 +156788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92392] = 2, - ACTIONS(6210), 3, + [104352] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 36, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150420,12 +156829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92436] = 2, - ACTIONS(6136), 3, + [104395] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 36, + ACTIONS(6132), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150436,6 +156844,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150447,7 +156856,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -150462,12 +156870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92480] = 2, - ACTIONS(6140), 3, + [104438] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 36, + ACTIONS(6136), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150478,6 +156885,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150489,7 +156897,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -150504,13 +156911,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92524] = 2, - ACTIONS(6258), 4, + [104481] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6256), 35, + ACTIONS(6140), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150521,6 +156926,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150544,15 +156950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [92568] = 2, - ACTIONS(6262), 4, + sym__whitespace, + [104524] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6260), 35, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150563,6 +156967,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150586,14 +156991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [92612] = 2, - ACTIONS(6298), 3, + sym__whitespace, + [104567] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6296), 36, + ACTIONS(6144), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150604,6 +157008,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150616,7 +157021,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -150630,13 +157034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92656] = 2, - ACTIONS(6266), 4, + [104610] = 2, + ACTIONS(5942), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6264), 35, + ACTIONS(5940), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150654,6 +157056,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -150670,16 +157073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [92700] = 2, - ACTIONS(6270), 4, + sym__whitespace, + [104653] = 2, + ACTIONS(5958), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6268), 35, - sym__soft_line_ending, + ACTIONS(5956), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -150705,6 +157106,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -150712,15 +157114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [92744] = 2, - ACTIONS(6144), 3, + sym__whitespace, + [104696] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 36, - sym__soft_line_ending, + ACTIONS(6148), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -150741,12 +157142,12 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -150756,12 +157157,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92788] = 2, - ACTIONS(6148), 3, + [104739] = 2, + ACTIONS(5946), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 36, + ACTIONS(5944), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150779,11 +157179,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -150798,12 +157198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92832] = 2, - ACTIONS(6152), 3, + [104782] = 2, + ACTIONS(5950), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 36, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150821,11 +157220,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -150840,12 +157239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92876] = 2, - ACTIONS(6214), 3, + [104825] = 2, + ACTIONS(5954), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 36, + ACTIONS(5952), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150856,7 +157254,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150864,6 +157261,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -150882,12 +157280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92920] = 2, - ACTIONS(6156), 3, + [104868] = 2, + ACTIONS(5958), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 36, + ACTIONS(5956), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150905,11 +157302,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -150924,12 +157321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92964] = 2, - ACTIONS(6160), 3, + [104911] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 36, + ACTIONS(6148), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150940,6 +157336,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -150951,7 +157348,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -150966,12 +157362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93008] = 2, - ACTIONS(6274), 3, + [104954] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 36, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151008,12 +157403,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93052] = 2, - ACTIONS(6288), 3, + [104997] = 2, + ACTIONS(5962), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 36, + ACTIONS(5960), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151031,11 +157425,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -151050,12 +157444,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93096] = 2, - ACTIONS(6166), 3, + [105040] = 2, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6164), 36, + ACTIONS(5872), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151073,11 +157466,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -151092,12 +157485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93140] = 2, - ACTIONS(6218), 3, + [105083] = 2, + ACTIONS(5966), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 36, + ACTIONS(5964), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151108,7 +157500,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -151116,6 +157507,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -151134,12 +157526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93184] = 2, - ACTIONS(6170), 3, + [105126] = 2, + ACTIONS(5970), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6168), 36, + ACTIONS(5968), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151157,11 +157548,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -151176,13 +157567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93228] = 2, - ACTIONS(6198), 4, + [105169] = 2, + ACTIONS(5974), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6196), 35, + ACTIONS(5972), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151200,6 +157589,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -151215,58 +157605,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [93272] = 2, - ACTIONS(6202), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, sym__whitespace, - ACTIONS(6200), 35, - sym__soft_line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_LBRACE, - anon_sym_PIPE, - [93316] = 2, - ACTIONS(6206), 4, + [105212] = 2, + ACTIONS(5978), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6204), 35, + ACTIONS(5976), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151284,6 +157630,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -151299,16 +157646,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [93360] = 2, - ACTIONS(6210), 4, + sym__whitespace, + [105255] = 2, + ACTIONS(5982), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6208), 35, + ACTIONS(5980), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151326,6 +157671,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -151341,15 +157687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [93404] = 2, - ACTIONS(6174), 3, + sym__whitespace, + [105298] = 2, + ACTIONS(5986), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 36, + ACTIONS(5984), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151367,11 +157712,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -151386,13 +157731,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93448] = 2, - ACTIONS(6214), 4, + [105341] = 2, + ACTIONS(5990), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6212), 35, + ACTIONS(5988), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151410,6 +157753,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -151425,16 +157769,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [93492] = 2, - ACTIONS(6274), 4, + sym__whitespace, + [105384] = 2, + ACTIONS(5994), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6272), 35, + ACTIONS(5992), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151452,6 +157794,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -151467,16 +157810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [93536] = 2, - ACTIONS(6218), 4, + sym__whitespace, + [105427] = 2, + ACTIONS(5998), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6216), 35, + ACTIONS(5996), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151494,6 +157835,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -151509,16 +157851,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [93580] = 2, - ACTIONS(6222), 4, + sym__whitespace, + [105470] = 2, + ACTIONS(6002), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6220), 35, + ACTIONS(6000), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151536,6 +157876,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -151551,16 +157892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [93624] = 2, - ACTIONS(6226), 4, + sym__whitespace, + [105513] = 2, + ACTIONS(6006), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6224), 35, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151578,6 +157917,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -151593,16 +157933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [93668] = 2, - ACTIONS(6230), 4, + sym__whitespace, + [105556] = 2, + ACTIONS(6010), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6228), 35, + ACTIONS(6008), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151620,6 +157958,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -151635,15 +157974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [93712] = 2, - ACTIONS(6222), 3, + sym__whitespace, + [105599] = 2, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 36, + ACTIONS(5868), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151654,7 +157992,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -151662,6 +157999,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -151680,12 +158018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93756] = 2, - ACTIONS(6058), 3, + [105642] = 2, + ACTIONS(6014), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 36, + ACTIONS(6012), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151703,11 +158040,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -151722,12 +158059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93800] = 2, - ACTIONS(6178), 3, + [105685] = 2, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 36, + ACTIONS(5892), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151745,11 +158081,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -151764,12 +158100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93844] = 2, - ACTIONS(6182), 3, + [105728] = 2, + ACTIONS(6018), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 36, + ACTIONS(6016), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151787,11 +158122,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -151806,12 +158141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93888] = 2, - ACTIONS(6186), 3, + [105771] = 2, + ACTIONS(6022), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 36, + ACTIONS(6020), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151829,11 +158163,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -151848,12 +158182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93932] = 2, - ACTIONS(6226), 3, + [105814] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 36, + ACTIONS(6152), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151890,12 +158223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93976] = 2, - ACTIONS(6190), 3, + [105857] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 36, + ACTIONS(6156), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151906,6 +158238,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -151917,7 +158250,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -151932,12 +158264,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94020] = 2, - ACTIONS(6194), 3, + [105900] = 2, + ACTIONS(6206), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 36, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151956,10 +158287,10 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -151974,12 +158305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94064] = 2, - ACTIONS(6230), 3, + [105943] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 36, + ACTIONS(6160), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152016,12 +158346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94108] = 2, - ACTIONS(6198), 3, + [105986] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 36, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152032,6 +158361,7 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, + sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -152043,7 +158373,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152058,12 +158387,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94152] = 2, - ACTIONS(6202), 3, + [106029] = 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 36, + ACTIONS(6024), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152081,11 +158409,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152100,13 +158428,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94196] = 2, - ACTIONS(6284), 3, + [106072] = 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(2324), 36, - sym__line_ending, + ACTIONS(6028), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -152123,6 +158450,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -152132,7 +158460,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -152142,12 +158469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94240] = 2, - ACTIONS(6206), 3, + [106115] = 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 36, + ACTIONS(6032), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152165,11 +158491,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152184,12 +158510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94284] = 2, - ACTIONS(6210), 3, + [106158] = 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 36, + ACTIONS(6036), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152207,11 +158532,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152226,12 +158551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94328] = 2, - ACTIONS(6214), 3, + [106201] = 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 36, + ACTIONS(6040), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152249,11 +158573,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152268,12 +158592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94372] = 2, - ACTIONS(6274), 3, + [106244] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 36, + ACTIONS(6044), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152291,11 +158614,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152310,12 +158633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94416] = 2, - ACTIONS(6218), 3, + [106287] = 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 36, + ACTIONS(6048), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152333,11 +158655,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152352,12 +158674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94460] = 2, - ACTIONS(6222), 3, + [106330] = 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 36, + ACTIONS(6052), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152375,11 +158696,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152394,12 +158715,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94504] = 2, - ACTIONS(6226), 3, + [106373] = 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 36, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152417,11 +158737,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152436,12 +158756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94548] = 2, - ACTIONS(6230), 3, + [106416] = 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 36, + ACTIONS(6060), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152459,11 +158778,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152478,12 +158797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94592] = 2, - ACTIONS(6234), 3, + [106459] = 2, + ACTIONS(6066), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 36, + ACTIONS(6064), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152501,11 +158819,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152520,12 +158838,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94636] = 2, - ACTIONS(6278), 3, + [106502] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 36, + ACTIONS(6068), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152543,11 +158860,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152562,12 +158879,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94680] = 2, - ACTIONS(6238), 3, + [106545] = 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 36, + ACTIONS(6072), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152585,11 +158901,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152604,12 +158920,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94724] = 2, - ACTIONS(6242), 3, + [106588] = 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 36, + ACTIONS(6076), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152627,11 +158942,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152646,12 +158961,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94768] = 2, - ACTIONS(6282), 3, + [106631] = 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 36, + ACTIONS(6080), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152669,11 +158983,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152688,12 +159002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94812] = 2, - ACTIONS(6246), 3, + [106674] = 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 36, + ACTIONS(6084), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152711,11 +159024,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -152730,12 +159043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94856] = 2, - ACTIONS(6064), 3, + [106717] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 36, + ACTIONS(6088), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152753,12 +159065,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -152772,12 +159084,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94900] = 2, - ACTIONS(6234), 3, + [106760] = 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 36, + ACTIONS(6092), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152788,7 +159099,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -152796,6 +159106,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -152814,12 +159125,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94944] = 2, - ACTIONS(6278), 3, + [106803] = 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 36, + ACTIONS(6096), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152830,7 +159140,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -152838,6 +159147,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -152856,12 +159166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94988] = 2, - ACTIONS(6238), 3, + [106846] = 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 36, + ACTIONS(6100), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152872,7 +159181,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -152880,6 +159188,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -152898,12 +159207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95032] = 2, - ACTIONS(6242), 3, + [106889] = 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 36, + ACTIONS(6104), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152914,7 +159222,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -152922,6 +159229,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -152940,12 +159248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95076] = 2, - ACTIONS(6282), 3, + [106932] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 36, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152956,7 +159263,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -152964,6 +159270,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -152982,12 +159289,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95120] = 2, - ACTIONS(6068), 3, + [106975] = 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 36, + ACTIONS(6108), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153005,12 +159311,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -153024,12 +159330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95164] = 2, - ACTIONS(6072), 3, + [107018] = 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 36, + ACTIONS(6112), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153047,12 +159352,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -153066,12 +159371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95208] = 2, - ACTIONS(6076), 3, + [107061] = 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 36, + ACTIONS(6116), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153089,12 +159393,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -153108,12 +159412,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95252] = 2, - ACTIONS(6080), 3, + [107104] = 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 36, + ACTIONS(6120), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153131,12 +159434,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -153150,12 +159453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95296] = 2, - ACTIONS(6246), 3, + [107147] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 36, + ACTIONS(6124), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153166,7 +159468,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -153174,6 +159475,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -153192,13 +159494,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95340] = 2, - ACTIONS(6084), 3, + [107190] = 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 36, - sym__line_ending, + ACTIONS(6128), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -153215,6 +159516,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -153224,7 +159526,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -153234,12 +159535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95384] = 2, - ACTIONS(6064), 3, + [107233] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 36, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153276,12 +159576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95428] = 2, - ACTIONS(6250), 3, + [107276] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 36, + ACTIONS(6132), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153299,11 +159598,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -153318,12 +159617,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95472] = 2, - ACTIONS(6076), 3, + [107319] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 36, + ACTIONS(6136), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153333,7 +159631,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -153342,6 +159639,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -153360,12 +159658,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95516] = 2, - ACTIONS(6254), 3, + [107362] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 36, + ACTIONS(6140), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153383,11 +159680,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -153402,12 +159699,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95560] = 2, - ACTIONS(6080), 3, + [107405] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 36, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153417,7 +159713,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -153426,6 +159721,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -153444,12 +159740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95604] = 2, - ACTIONS(6084), 3, + [107448] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 36, + ACTIONS(6144), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153467,12 +159762,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -153486,12 +159781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95648] = 2, - ACTIONS(6136), 3, + [107491] = 2, + ACTIONS(5942), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 36, + ACTIONS(5940), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153501,7 +159795,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -153511,6 +159804,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -153528,12 +159822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95692] = 2, - ACTIONS(6140), 3, + [107534] = 2, + ACTIONS(5946), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 36, + ACTIONS(5944), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153543,7 +159836,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -153553,6 +159845,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -153570,12 +159863,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95736] = 2, - ACTIONS(6006), 3, + [107577] = 2, + ACTIONS(5950), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 36, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153594,11 +159886,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -153612,13 +159904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95780] = 2, - ACTIONS(6258), 4, + [107620] = 2, + ACTIONS(5954), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6256), 35, + ACTIONS(5952), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153637,6 +159927,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -153651,15 +159942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [95824] = 2, - ACTIONS(6068), 3, + sym__whitespace, + [107663] = 2, + ACTIONS(5958), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 36, + ACTIONS(5956), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153677,8 +159967,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -153696,12 +159986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95868] = 2, - ACTIONS(6088), 3, + [107706] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 36, + ACTIONS(6148), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153719,12 +160008,12 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, + sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -153738,12 +160027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95912] = 2, - ACTIONS(6072), 3, + [107749] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 36, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153780,12 +160068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95956] = 2, - ACTIONS(6076), 3, + [107792] = 2, + ACTIONS(5962), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 36, + ACTIONS(5960), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153803,8 +160090,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -153822,12 +160109,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96000] = 2, - ACTIONS(6092), 3, + [107835] = 2, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 36, + ACTIONS(5872), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153846,11 +160132,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -153864,12 +160150,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96044] = 2, - ACTIONS(6080), 3, + [107878] = 2, + ACTIONS(6014), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 36, + ACTIONS(6012), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153887,8 +160172,8 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -153906,13 +160191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96088] = 2, - ACTIONS(6262), 4, + [107921] = 2, + ACTIONS(5966), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6260), 35, + ACTIONS(5964), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153931,6 +160214,7 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, @@ -153945,15 +160229,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [96132] = 2, - ACTIONS(6096), 3, + sym__whitespace, + [107964] = 2, + ACTIONS(5970), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 36, + ACTIONS(5968), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153972,11 +160255,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -153990,12 +160273,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96176] = 2, - ACTIONS(6100), 3, + [108007] = 2, + ACTIONS(5974), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 36, + ACTIONS(5972), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154014,11 +160296,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -154032,12 +160314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96220] = 2, - ACTIONS(6104), 3, + [108050] = 2, + ACTIONS(5978), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 36, + ACTIONS(5976), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154056,11 +160337,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -154074,12 +160355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96264] = 2, - ACTIONS(6108), 3, + [108093] = 2, + ACTIONS(5982), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 36, + ACTIONS(5980), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154098,11 +160378,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -154116,12 +160396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96308] = 2, - ACTIONS(6112), 3, + [108136] = 2, + ACTIONS(5986), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 36, + ACTIONS(5984), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154140,11 +160419,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -154158,12 +160437,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96352] = 2, - ACTIONS(6116), 3, + [108179] = 2, + ACTIONS(5990), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 36, + ACTIONS(5988), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154182,11 +160460,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -154200,12 +160478,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96396] = 2, - ACTIONS(6120), 3, + [108222] = 2, + ACTIONS(5994), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 36, + ACTIONS(5992), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154224,11 +160501,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -154242,12 +160519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96440] = 2, - ACTIONS(6124), 3, + [108265] = 2, + ACTIONS(5998), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 36, + ACTIONS(5996), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154266,11 +160542,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -154284,12 +160560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96484] = 2, - ACTIONS(6128), 3, + [108308] = 2, + ACTIONS(6002), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 36, + ACTIONS(6000), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154308,11 +160583,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -154326,54 +160601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96528] = 2, - ACTIONS(6006), 3, + [108351] = 2, + ACTIONS(6006), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, ACTIONS(6004), 36, - sym__line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, - sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [96572] = 2, - ACTIONS(6132), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154392,11 +160624,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -154410,12 +160642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96616] = 2, - ACTIONS(6030), 3, + [108394] = 2, + ACTIONS(6010), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 36, + ACTIONS(6008), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154434,11 +160665,11 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_suppress_author, sym__strikeout_open, sym__subscript_open, + sym__subscript_close, sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -154452,13 +160683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96660] = 2, - ACTIONS(6298), 3, + [108437] = 2, + ACTIONS(6010), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6296), 36, - sym__soft_line_ending, + ACTIONS(6008), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154468,7 +160698,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -154485,6 +160714,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -154494,13 +160724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96704] = 2, - ACTIONS(6250), 3, + [108480] = 2, + ACTIONS(6054), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 36, - sym__soft_line_ending, + ACTIONS(6052), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154510,7 +160738,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -154527,6 +160754,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -154536,13 +160764,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96748] = 2, - ACTIONS(5950), 3, + [108522] = 2, + ACTIONS(6050), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 36, - sym__soft_line_ending, + ACTIONS(6048), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154564,11 +160790,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -154578,13 +160804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96792] = 2, - ACTIONS(5950), 3, + [108564] = 2, + ACTIONS(6062), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 36, - sym__line_ending, + ACTIONS(6060), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154620,13 +160844,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96836] = 2, - ACTIONS(6254), 3, + [108606] = 2, + ACTIONS(6066), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 36, - sym__soft_line_ending, + ACTIONS(6064), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154636,7 +160858,6 @@ static const uint16_t ts_small_parse_table[] = { sym__edit_comment_span_start, sym__single_quote_span_open, sym__double_quote_span_open, - sym__double_quote_span_close, sym__shortcode_open_escaped, sym__shortcode_open, sym__cite_author_in_text_with_open_bracket, @@ -154653,6 +160874,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -154662,13 +160884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96880] = 2, - ACTIONS(6136), 3, + [108648] = 2, + ACTIONS(6070), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 36, - sym__soft_line_ending, + ACTIONS(6068), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154690,11 +160910,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -154704,13 +160924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96924] = 2, - ACTIONS(6140), 3, + [108690] = 2, + ACTIONS(6074), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 36, - sym__soft_line_ending, + ACTIONS(6072), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154732,11 +160950,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -154746,13 +160964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96968] = 2, - ACTIONS(6258), 3, + [108732] = 2, + ACTIONS(6078), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 36, - sym__soft_line_ending, + ACTIONS(6076), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154773,12 +160989,12 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -154788,13 +161004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97012] = 2, - ACTIONS(6262), 3, + [108774] = 3, + ACTIONS(6232), 1, + sym_block_continuation, + ACTIONS(2421), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 36, - sym__soft_line_ending, + ACTIONS(2419), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154815,7 +161031,6 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -154827,16 +161042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [97056] = 2, - ACTIONS(6298), 3, + [108818] = 2, + ACTIONS(6082), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6296), 36, - sym__soft_line_ending, + ACTIONS(6080), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154859,10 +161072,10 @@ static const uint16_t ts_small_parse_table[] = { sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, - sym__emphasis_close_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -154872,13 +161085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97100] = 2, - ACTIONS(6120), 3, + [108860] = 2, + ACTIONS(6086), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 36, - sym__line_ending, + ACTIONS(6084), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154914,13 +161125,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97144] = 2, - ACTIONS(6266), 3, + [108902] = 2, + ACTIONS(6090), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 36, - sym__soft_line_ending, + ACTIONS(6088), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154941,12 +161150,12 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -154956,13 +161165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97188] = 2, - ACTIONS(6270), 3, + [108944] = 2, + ACTIONS(6094), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 36, - sym__soft_line_ending, + ACTIONS(6092), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154983,12 +161190,12 @@ static const uint16_t ts_small_parse_table[] = { sym__superscript_open, sym__inline_note_start_token, sym__strong_emphasis_open_star, - sym__strong_emphasis_close_star, sym__strong_emphasis_open_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -154998,13 +161205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97232] = 2, - ACTIONS(6144), 3, + [108986] = 2, + ACTIONS(6098), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 36, - sym__soft_line_ending, + ACTIONS(6096), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155026,11 +161231,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155040,13 +161245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97276] = 2, - ACTIONS(6148), 3, + [109028] = 2, + ACTIONS(6102), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 36, - sym__soft_line_ending, + ACTIONS(6100), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155068,11 +161271,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155082,13 +161285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97320] = 2, - ACTIONS(6152), 3, + [109070] = 2, + ACTIONS(6106), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 36, - sym__soft_line_ending, + ACTIONS(6104), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155110,11 +161311,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155124,13 +161325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97364] = 2, - ACTIONS(6084), 3, + [109112] = 2, + ACTIONS(6110), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 36, - sym__soft_line_ending, + ACTIONS(6108), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155147,7 +161346,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -155157,6 +161355,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155166,13 +161365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97408] = 2, - ACTIONS(6156), 3, + [109154] = 2, + ACTIONS(6114), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 36, - sym__soft_line_ending, + ACTIONS(6112), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155194,11 +161391,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155208,13 +161405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97452] = 2, - ACTIONS(6160), 3, + [109196] = 2, + ACTIONS(6118), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 36, - sym__soft_line_ending, + ACTIONS(6116), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155236,11 +161431,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155250,14 +161445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97496] = 2, - ACTIONS(6266), 4, + [109238] = 2, + ACTIONS(6122), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6264), 35, - sym__soft_line_ending, + ACTIONS(6120), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155283,22 +161475,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [97540] = 2, - ACTIONS(6288), 3, + sym__whitespace, + [109280] = 2, + ACTIONS(6126), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 36, - sym__soft_line_ending, + ACTIONS(6124), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155320,11 +161511,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155334,13 +161525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97584] = 2, - ACTIONS(6166), 3, + [109322] = 2, + ACTIONS(6130), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6164), 36, - sym__soft_line_ending, + ACTIONS(6128), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155362,11 +161551,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155376,14 +161565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97628] = 2, - ACTIONS(6270), 4, + [109364] = 2, + ACTIONS(6134), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6268), 35, - sym__soft_line_ending, + ACTIONS(6132), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155409,22 +161595,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [97672] = 2, - ACTIONS(6170), 3, + sym__whitespace, + [109406] = 2, + ACTIONS(6138), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6168), 36, - sym__soft_line_ending, + ACTIONS(6136), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155446,11 +161631,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155460,14 +161645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97716] = 2, - ACTIONS(6234), 4, + [109448] = 2, + ACTIONS(6142), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6232), 35, - sym__soft_line_ending, + ACTIONS(6140), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155493,22 +161675,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [97760] = 2, - ACTIONS(6174), 3, + sym__whitespace, + [109490] = 2, + ACTIONS(6146), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 36, - sym__soft_line_ending, + ACTIONS(6144), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155530,11 +161711,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155544,13 +161725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97804] = 2, - ACTIONS(6006), 3, + [109532] = 2, + ACTIONS(6150), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 36, - sym__soft_line_ending, + ACTIONS(6148), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155567,7 +161746,6 @@ static const uint16_t ts_small_parse_table[] = { sym__cite_author_in_text, sym__cite_suppress_author, sym__strikeout_open, - sym__strikeout_close, sym__subscript_open, sym__superscript_open, sym__inline_note_start_token, @@ -155577,6 +161755,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155586,13 +161765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97848] = 2, - ACTIONS(6058), 3, + [109574] = 2, + ACTIONS(6186), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 36, - sym__soft_line_ending, + ACTIONS(6184), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155614,11 +161791,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155628,13 +161805,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97892] = 2, - ACTIONS(6178), 3, + [109616] = 2, + ACTIONS(2867), 3, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 36, - sym__soft_line_ending, + ACTIONS(2865), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155656,7 +161832,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -155666,17 +161841,16 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [97936] = 2, - ACTIONS(6182), 3, + [109658] = 2, + ACTIONS(6210), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 36, - sym__soft_line_ending, + ACTIONS(6208), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155698,7 +161872,6 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, @@ -155712,13 +161885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97980] = 2, - ACTIONS(6186), 3, + [109700] = 2, + ACTIONS(6154), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 36, - sym__soft_line_ending, + ACTIONS(6152), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155740,11 +161911,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155754,13 +161925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98024] = 2, - ACTIONS(6144), 3, + [109742] = 2, + ACTIONS(6158), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 36, - sym__soft_line_ending, + ACTIONS(6156), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155769,7 +161938,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -155787,6 +161955,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155796,13 +161965,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98068] = 2, - ACTIONS(6190), 3, + [109784] = 2, + ACTIONS(6162), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 36, - sym__soft_line_ending, + ACTIONS(6160), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155824,11 +161991,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155838,14 +162005,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98112] = 2, - ACTIONS(6278), 4, + [109826] = 2, + ACTIONS(6166), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6276), 35, - sym__soft_line_ending, + ACTIONS(6164), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155871,22 +162035,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [98156] = 2, - ACTIONS(6194), 3, + sym__whitespace, + [109868] = 2, + ACTIONS(5942), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 36, - sym__soft_line_ending, + ACTIONS(5940), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155908,11 +162071,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -155922,13 +162085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98200] = 2, - ACTIONS(6148), 3, + [109910] = 2, + ACTIONS(6190), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 36, - sym__soft_line_ending, + ACTIONS(2534), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155937,7 +162099,6 @@ static const uint16_t ts_small_parse_table[] = { sym__delete_span_start, sym__edit_comment_span_start, sym__single_quote_span_open, - sym__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -155964,13 +162125,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98244] = 2, - ACTIONS(6198), 3, + [109952] = 2, + ACTIONS(6170), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 36, - sym__soft_line_ending, + ACTIONS(6168), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155992,11 +162151,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156006,13 +162165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98288] = 2, - ACTIONS(6202), 3, + [109994] = 2, + ACTIONS(5946), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 36, - sym__soft_line_ending, + ACTIONS(5944), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156034,11 +162191,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156048,13 +162205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98332] = 2, - ACTIONS(6206), 3, + [110036] = 2, + ACTIONS(5950), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 36, - sym__soft_line_ending, + ACTIONS(5948), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156076,11 +162231,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156090,13 +162245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98376] = 2, - ACTIONS(6210), 3, + [110078] = 2, + ACTIONS(5954), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 36, - sym__soft_line_ending, + ACTIONS(5952), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156118,11 +162271,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156132,13 +162285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98420] = 2, - ACTIONS(6214), 3, + [110120] = 2, + ACTIONS(6174), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 36, - sym__soft_line_ending, + ACTIONS(6172), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156160,11 +162311,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156174,13 +162325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98464] = 2, - ACTIONS(6274), 3, + [110162] = 2, + ACTIONS(5958), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 36, - sym__soft_line_ending, + ACTIONS(5956), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156202,11 +162351,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156216,14 +162365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98508] = 2, - ACTIONS(6238), 4, + [110204] = 2, + ACTIONS(6178), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6236), 35, - sym__soft_line_ending, + ACTIONS(6176), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156249,22 +162395,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [98552] = 2, - ACTIONS(6218), 3, + sym__whitespace, + [110246] = 2, + ACTIONS(5962), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 36, - sym__soft_line_ending, + ACTIONS(5960), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156286,11 +162431,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156300,13 +162445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98596] = 2, - ACTIONS(6222), 3, + [110288] = 2, + ACTIONS(5874), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 36, - sym__soft_line_ending, + ACTIONS(5872), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156328,11 +162471,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156342,13 +162485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98640] = 2, - ACTIONS(6226), 3, + [110330] = 2, + ACTIONS(5966), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 36, - sym__soft_line_ending, + ACTIONS(5964), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156370,11 +162511,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156384,13 +162525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98684] = 2, - ACTIONS(6230), 3, + [110372] = 2, + ACTIONS(5970), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 36, - sym__soft_line_ending, + ACTIONS(5968), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156412,11 +162551,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156426,13 +162565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98728] = 2, - ACTIONS(6234), 3, + [110414] = 2, + ACTIONS(5974), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 36, - sym__soft_line_ending, + ACTIONS(5972), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156454,11 +162591,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156468,13 +162605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98772] = 2, - ACTIONS(6088), 3, + [110456] = 2, + ACTIONS(5978), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 36, - sym__line_ending, + ACTIONS(5976), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156510,13 +162645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98816] = 2, - ACTIONS(6278), 3, + [110498] = 2, + ACTIONS(5982), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 36, - sym__soft_line_ending, + ACTIONS(5980), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156538,11 +162671,11 @@ static const uint16_t ts_small_parse_table[] = { sym__inline_note_start_token, sym__strong_emphasis_open_star, sym__strong_emphasis_open_underscore, - sym__strong_emphasis_close_underscore, sym__emphasis_open_star, sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156552,14 +162685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98860] = 2, - ACTIONS(6100), 4, + [110540] = 2, + ACTIONS(5986), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - sym__whitespace, - ACTIONS(6098), 35, - sym__soft_line_ending, + ACTIONS(5984), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156585,6 +162715,7 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156592,14 +162723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [98904] = 2, - ACTIONS(6234), 3, + sym__whitespace, + [110582] = 2, + ACTIONS(5990), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6232), 35, + ACTIONS(5988), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156635,12 +162765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98947] = 2, - ACTIONS(6156), 3, + [110624] = 2, + ACTIONS(6198), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6154), 35, + ACTIONS(2505), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156666,7 +162796,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156676,12 +162805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98990] = 2, - ACTIONS(6160), 3, + [110666] = 2, + ACTIONS(5994), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6158), 35, + ACTIONS(5992), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156717,12 +162845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99033] = 2, - ACTIONS(6080), 3, + [110708] = 2, + ACTIONS(5998), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6078), 35, + ACTIONS(5996), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156758,12 +162885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99076] = 2, - ACTIONS(6288), 3, + [110750] = 2, + ACTIONS(6002), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6286), 35, + ACTIONS(6000), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156799,12 +162925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99119] = 2, - ACTIONS(6166), 3, + [110792] = 2, + ACTIONS(6006), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6164), 35, + ACTIONS(6004), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156840,12 +162965,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99162] = 2, - ACTIONS(6170), 3, + [110834] = 2, + ACTIONS(6010), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6168), 35, + ACTIONS(6008), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156881,13 +163005,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99205] = 2, - ACTIONS(3083), 4, - aux_sym_pandoc_span_token1, + [110876] = 2, + ACTIONS(5870), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(3081), 34, + ACTIONS(5868), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156913,21 +163035,22 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, - aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [99248] = 2, - ACTIONS(6174), 3, + sym__whitespace, + [110918] = 2, + ACTIONS(6202), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6172), 35, + ACTIONS(6200), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156953,7 +163076,6 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, @@ -156963,12 +163085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99291] = 2, - ACTIONS(6092), 3, + [110960] = 2, + ACTIONS(6014), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6090), 35, + ACTIONS(6012), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157004,12 +163125,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99334] = 2, - ACTIONS(6058), 3, + [111002] = 2, + ACTIONS(5894), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6056), 35, + ACTIONS(5892), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157045,12 +163165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99377] = 2, - ACTIONS(6178), 3, + [111044] = 2, + ACTIONS(6018), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6176), 35, + ACTIONS(6016), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157086,12 +163205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99420] = 2, - ACTIONS(6182), 3, + [111086] = 2, + ACTIONS(6022), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6180), 35, + ACTIONS(6020), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157127,12 +163245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99463] = 2, - ACTIONS(6186), 3, + [111128] = 2, + ACTIONS(6026), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6184), 35, + ACTIONS(6024), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157168,12 +163285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99506] = 2, - ACTIONS(6064), 3, + [111170] = 2, + ACTIONS(6030), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6062), 35, + ACTIONS(6028), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157209,14 +163325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99549] = 3, - ACTIONS(6334), 1, - sym_block_continuation, - ACTIONS(2707), 3, + [111212] = 2, + ACTIONS(6034), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(2705), 34, + ACTIONS(6032), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157242,21 +163355,21 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, + sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [99594] = 2, - ACTIONS(6190), 3, + sym__whitespace, + [111254] = 2, + ACTIONS(5938), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6188), 35, + ACTIONS(2495), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157292,12 +163405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99637] = 2, - ACTIONS(6258), 3, + [111296] = 2, + ACTIONS(6038), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6256), 35, + ACTIONS(6036), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157333,12 +163445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99680] = 2, - ACTIONS(6262), 3, + [111338] = 2, + ACTIONS(6042), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6260), 35, + ACTIONS(6040), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157374,12 +163485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99723] = 2, - ACTIONS(6266), 3, + [111380] = 2, + ACTIONS(6046), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6264), 35, + ACTIONS(6044), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157415,12 +163525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99766] = 2, - ACTIONS(6270), 3, + [111422] = 2, + ACTIONS(6058), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6268), 35, + ACTIONS(6056), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157456,12 +163565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99809] = 2, - ACTIONS(6194), 3, + [111464] = 2, + ACTIONS(2867), 2, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6192), 35, + ACTIONS(2865), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157487,21948 +163595,22067 @@ static const uint16_t ts_small_parse_table[] = { sym__emphasis_open_underscore, sym_inline_note_reference, sym_html_element, - sym__pipe_table_delimiter, sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, anon_sym_BANG_LBRACK, anon_sym_DOLLAR_DOLLAR, + aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, + [111505] = 15, + ACTIONS(6234), 1, + ts_builtin_sym_end, + ACTIONS(6236), 1, + sym_atx_h1_marker, + ACTIONS(6239), 1, + sym_atx_h2_marker, + ACTIONS(6242), 1, + sym_atx_h3_marker, + ACTIONS(6245), 1, + sym_atx_h4_marker, + ACTIONS(6248), 1, + sym_atx_h5_marker, + ACTIONS(6251), 1, + sym_atx_h6_marker, + STATE(82), 1, + sym__atx_heading1, + STATE(90), 1, + sym__atx_heading2, + STATE(100), 1, + sym__atx_heading3, + STATE(105), 1, + sym__atx_heading4, + STATE(116), 1, + sym__atx_heading5, + STATE(124), 1, + sym__atx_heading6, + STATE(2369), 2, + sym_section, + aux_sym_document_repeat2, + STATE(2594), 6, + sym__section1, + sym__section2, + sym__section3, + sym__section4, + sym__section5, + sym__section6, + [111557] = 15, + ACTIONS(31), 1, + sym_atx_h1_marker, + ACTIONS(33), 1, + sym_atx_h2_marker, + ACTIONS(35), 1, + sym_atx_h3_marker, + ACTIONS(37), 1, + sym_atx_h4_marker, + ACTIONS(39), 1, + sym_atx_h5_marker, + ACTIONS(41), 1, + sym_atx_h6_marker, + ACTIONS(6254), 1, + ts_builtin_sym_end, + STATE(82), 1, + sym__atx_heading1, + STATE(90), 1, + sym__atx_heading2, + STATE(100), 1, + sym__atx_heading3, + STATE(105), 1, + sym__atx_heading4, + STATE(116), 1, + sym__atx_heading5, + STATE(124), 1, + sym__atx_heading6, + STATE(2369), 2, + sym_section, + aux_sym_document_repeat2, + STATE(2594), 6, + sym__section1, + sym__section2, + sym__section3, + sym__section4, + sym__section5, + sym__section6, + [111609] = 15, + ACTIONS(31), 1, + sym_atx_h1_marker, + ACTIONS(33), 1, + sym_atx_h2_marker, + ACTIONS(35), 1, + sym_atx_h3_marker, + ACTIONS(37), 1, + sym_atx_h4_marker, + ACTIONS(39), 1, + sym_atx_h5_marker, + ACTIONS(41), 1, + sym_atx_h6_marker, + ACTIONS(473), 1, + ts_builtin_sym_end, + STATE(82), 1, + sym__atx_heading1, + STATE(90), 1, + sym__atx_heading2, + STATE(100), 1, + sym__atx_heading3, + STATE(105), 1, + sym__atx_heading4, + STATE(116), 1, + sym__atx_heading5, + STATE(124), 1, + sym__atx_heading6, + STATE(2369), 2, + sym_section, + aux_sym_document_repeat2, + STATE(2594), 6, + sym__section1, + sym__section2, + sym__section3, + sym__section4, + sym__section5, + sym__section6, + [111661] = 15, + ACTIONS(31), 1, + sym_atx_h1_marker, + ACTIONS(33), 1, + sym_atx_h2_marker, + ACTIONS(35), 1, + sym_atx_h3_marker, + ACTIONS(37), 1, + sym_atx_h4_marker, + ACTIONS(39), 1, + sym_atx_h5_marker, + ACTIONS(41), 1, + sym_atx_h6_marker, + ACTIONS(6256), 1, + ts_builtin_sym_end, + STATE(82), 1, + sym__atx_heading1, + STATE(90), 1, + sym__atx_heading2, + STATE(100), 1, + sym__atx_heading3, + STATE(105), 1, + sym__atx_heading4, + STATE(116), 1, + sym__atx_heading5, + STATE(124), 1, + sym__atx_heading6, + STATE(2369), 2, + sym_section, + aux_sym_document_repeat2, + STATE(2594), 6, + sym__section1, + sym__section2, + sym__section3, + sym__section4, + sym__section5, + sym__section6, + [111713] = 15, + ACTIONS(31), 1, + sym_atx_h1_marker, + ACTIONS(33), 1, + sym_atx_h2_marker, + ACTIONS(35), 1, + sym_atx_h3_marker, + ACTIONS(37), 1, + sym_atx_h4_marker, + ACTIONS(39), 1, + sym_atx_h5_marker, + ACTIONS(41), 1, + sym_atx_h6_marker, + ACTIONS(6258), 1, + ts_builtin_sym_end, + STATE(82), 1, + sym__atx_heading1, + STATE(90), 1, + sym__atx_heading2, + STATE(100), 1, + sym__atx_heading3, + STATE(105), 1, + sym__atx_heading4, + STATE(116), 1, + sym__atx_heading5, + STATE(124), 1, + sym__atx_heading6, + STATE(2369), 2, + sym_section, + aux_sym_document_repeat2, + STATE(2594), 6, + sym__section1, + sym__section2, + sym__section3, + sym__section4, + sym__section5, + sym__section6, + [111765] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6270), 1, sym__whitespace, - [99852] = 2, - ACTIONS(6198), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6196), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6272), 1, + sym__soft_line_ending, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + STATE(3276), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(2468), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [111810] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6272), 1, + sym__soft_line_ending, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6278), 1, + sym__whitespace, + STATE(3369), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(2472), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [111855] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6282), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [111899] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6286), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [111943] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6288), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [111987] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6290), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112031] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6292), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112075] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6294), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112119] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [99895] = 2, - ACTIONS(6284), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(2324), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6296), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112163] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [99938] = 2, - ACTIONS(6202), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6200), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6298), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112207] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [99981] = 2, - ACTIONS(6206), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6204), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6300), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112251] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100024] = 2, - ACTIONS(6210), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6208), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6302), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112295] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100067] = 2, - ACTIONS(6214), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6212), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6304), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112339] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100110] = 2, - ACTIONS(6218), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6216), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6306), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112383] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100153] = 2, - ACTIONS(6222), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6220), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6308), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112427] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100196] = 2, - ACTIONS(6226), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6224), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6310), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112471] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6312), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112515] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100239] = 2, - ACTIONS(6230), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6228), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6314), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112559] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100282] = 2, - ACTIONS(6152), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6150), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6316), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112603] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100325] = 2, - ACTIONS(6088), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6086), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6318), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112647] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100368] = 2, - ACTIONS(6242), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6240), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6320), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112691] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100411] = 2, - ACTIONS(6246), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6244), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6322), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112735] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100454] = 2, - ACTIONS(6096), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6094), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6324), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112779] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100497] = 2, - ACTIONS(6100), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6098), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6326), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112823] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100540] = 2, - ACTIONS(6300), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(2334), 35, - sym__line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6328), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112867] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6330), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112911] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100583] = 2, - ACTIONS(6104), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6102), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6332), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112955] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100626] = 2, - ACTIONS(6108), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6106), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6334), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [112999] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100669] = 2, - ACTIONS(6112), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6110), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6336), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113043] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100712] = 2, - ACTIONS(6304), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6302), 35, - sym__line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6338), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113087] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100755] = 2, - ACTIONS(6116), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6114), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6340), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113131] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100798] = 2, - ACTIONS(6120), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6118), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6342), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113175] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100841] = 2, - ACTIONS(6318), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(2366), 35, - sym__line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6344), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113219] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100884] = 2, - ACTIONS(6124), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6122), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6346), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113263] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6348), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113307] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100927] = 2, - ACTIONS(6128), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6126), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6350), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113351] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [100970] = 2, - ACTIONS(6132), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6130), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6352), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113395] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101013] = 2, - ACTIONS(6274), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6272), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6354), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113439] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101056] = 2, - ACTIONS(6030), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6028), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6356), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113483] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101099] = 2, - ACTIONS(6250), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6248), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6358), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113527] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101142] = 2, - ACTIONS(6254), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6252), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6360), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113571] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101185] = 2, - ACTIONS(6278), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6276), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6362), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113615] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101228] = 2, - ACTIONS(5950), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6364), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113659] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101271] = 2, - ACTIONS(6084), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6082), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6366), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113703] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101314] = 2, - ACTIONS(6282), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6280), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6368), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113747] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101357] = 2, - ACTIONS(6136), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6134), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6370), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113791] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101400] = 2, - ACTIONS(6140), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6138), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6372), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113835] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101443] = 2, - ACTIONS(6068), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6066), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6374), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113879] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101486] = 2, - ACTIONS(6006), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6004), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6376), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113923] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101529] = 2, - ACTIONS(6072), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6070), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6378), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [113967] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101572] = 2, - ACTIONS(6310), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6308), 35, - sym__line_ending, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6380), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114011] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6382), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114055] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101615] = 2, - ACTIONS(6076), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6074), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6384), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114099] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101658] = 2, - ACTIONS(6144), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6142), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6386), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114143] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101701] = 2, - ACTIONS(6148), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6146), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6388), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114187] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101744] = 2, - ACTIONS(6238), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(6236), 35, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6390), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114231] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pipe_table_delimiter, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [101787] = 2, - ACTIONS(3083), 3, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - ACTIONS(3081), 34, - sym__code_span_start, - sym__html_comment, - sym__autolink, - sym__highlight_span_start, - sym__insert_span_start, - sym__delete_span_start, - sym__edit_comment_span_start, - sym__single_quote_span_open, - sym__double_quote_span_open, - sym__shortcode_open_escaped, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6392), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114275] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, sym__shortcode_open, - sym__cite_author_in_text_with_open_bracket, - sym__cite_suppress_author_with_open_bracket, - sym__cite_author_in_text, - sym__cite_suppress_author, - sym__strikeout_open, - sym__subscript_open, - sym__superscript_open, - sym__inline_note_start_token, - sym__strong_emphasis_open_star, - sym__strong_emphasis_open_underscore, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym_inline_note_reference, - sym_html_element, - sym__pandoc_line_break, - sym_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_LBRACE, - anon_sym_PIPE, - [101829] = 15, - ACTIONS(31), 1, - sym_atx_h1_marker, - ACTIONS(33), 1, - sym_atx_h2_marker, - ACTIONS(35), 1, - sym_atx_h3_marker, - ACTIONS(37), 1, - sym_atx_h4_marker, - ACTIONS(39), 1, - sym_atx_h5_marker, - ACTIONS(41), 1, - sym_atx_h6_marker, - ACTIONS(6336), 1, - ts_builtin_sym_end, - STATE(82), 1, - sym__atx_heading1, - STATE(89), 1, - sym__atx_heading2, - STATE(97), 1, - sym__atx_heading3, - STATE(108), 1, - sym__atx_heading4, - STATE(117), 1, - sym__atx_heading5, - STATE(126), 1, - sym__atx_heading6, - STATE(2302), 2, - sym_section, - aux_sym_document_repeat2, - STATE(2484), 6, - sym__section1, - sym__section2, - sym__section3, - sym__section4, - sym__section5, - sym__section6, - [101881] = 15, - ACTIONS(31), 1, - sym_atx_h1_marker, - ACTIONS(33), 1, - sym_atx_h2_marker, - ACTIONS(35), 1, - sym_atx_h3_marker, - ACTIONS(37), 1, - sym_atx_h4_marker, - ACTIONS(39), 1, - sym_atx_h5_marker, - ACTIONS(41), 1, - sym_atx_h6_marker, - ACTIONS(6338), 1, - ts_builtin_sym_end, - STATE(82), 1, - sym__atx_heading1, - STATE(89), 1, - sym__atx_heading2, - STATE(97), 1, - sym__atx_heading3, - STATE(108), 1, - sym__atx_heading4, - STATE(117), 1, - sym__atx_heading5, - STATE(126), 1, - sym__atx_heading6, - STATE(2302), 2, - sym_section, - aux_sym_document_repeat2, - STATE(2484), 6, - sym__section1, - sym__section2, - sym__section3, - sym__section4, - sym__section5, - sym__section6, - [101933] = 15, - ACTIONS(31), 1, - sym_atx_h1_marker, - ACTIONS(33), 1, - sym_atx_h2_marker, - ACTIONS(35), 1, - sym_atx_h3_marker, - ACTIONS(37), 1, - sym_atx_h4_marker, - ACTIONS(39), 1, - sym_atx_h5_marker, - ACTIONS(41), 1, - sym_atx_h6_marker, - ACTIONS(6340), 1, - ts_builtin_sym_end, - STATE(82), 1, - sym__atx_heading1, - STATE(89), 1, - sym__atx_heading2, - STATE(97), 1, - sym__atx_heading3, - STATE(108), 1, - sym__atx_heading4, - STATE(117), 1, - sym__atx_heading5, - STATE(126), 1, - sym__atx_heading6, - STATE(2302), 2, - sym_section, - aux_sym_document_repeat2, - STATE(2484), 6, - sym__section1, - sym__section2, - sym__section3, - sym__section4, - sym__section5, - sym__section6, - [101985] = 15, - ACTIONS(6342), 1, - ts_builtin_sym_end, - ACTIONS(6344), 1, - sym_atx_h1_marker, - ACTIONS(6347), 1, - sym_atx_h2_marker, - ACTIONS(6350), 1, - sym_atx_h3_marker, - ACTIONS(6353), 1, - sym_atx_h4_marker, - ACTIONS(6356), 1, - sym_atx_h5_marker, - ACTIONS(6359), 1, - sym_atx_h6_marker, - STATE(82), 1, - sym__atx_heading1, - STATE(89), 1, - sym__atx_heading2, - STATE(97), 1, - sym__atx_heading3, - STATE(108), 1, - sym__atx_heading4, - STATE(117), 1, - sym__atx_heading5, - STATE(126), 1, - sym__atx_heading6, - STATE(2302), 2, - sym_section, - aux_sym_document_repeat2, - STATE(2484), 6, - sym__section1, - sym__section2, - sym__section3, - sym__section4, - sym__section5, - sym__section6, - [102037] = 15, - ACTIONS(31), 1, - sym_atx_h1_marker, - ACTIONS(33), 1, - sym_atx_h2_marker, - ACTIONS(35), 1, - sym_atx_h3_marker, - ACTIONS(37), 1, - sym_atx_h4_marker, - ACTIONS(39), 1, - sym_atx_h5_marker, - ACTIONS(41), 1, - sym_atx_h6_marker, - ACTIONS(471), 1, - ts_builtin_sym_end, - STATE(82), 1, - sym__atx_heading1, - STATE(89), 1, - sym__atx_heading2, - STATE(97), 1, - sym__atx_heading3, - STATE(108), 1, - sym__atx_heading4, - STATE(117), 1, - sym__atx_heading5, - STATE(126), 1, - sym__atx_heading6, - STATE(2302), 2, - sym_section, - aux_sym_document_repeat2, - STATE(2484), 6, - sym__section1, - sym__section2, - sym__section3, - sym__section4, - sym__section5, - sym__section6, - [102089] = 13, - ACTIONS(6362), 1, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6394), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114319] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6396), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114363] = 13, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6372), 1, - sym__whitespace, - ACTIONS(6374), 1, - sym__soft_line_ending, - ACTIONS(6376), 1, + ACTIONS(6274), 1, sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6276), 1, sym__shortcode_open, - STATE(3605), 1, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6398), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, sym__shortcode_value, - ACTIONS(6368), 2, + ACTIONS(6266), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(2410), 2, - sym__soft_line_break, - sym__inline_whitespace, - STATE(3760), 2, + STATE(3262), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3258), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102134] = 13, - ACTIONS(6362), 1, + [114407] = 13, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6374), 1, - sym__soft_line_ending, - ACTIONS(6376), 1, + ACTIONS(6274), 1, sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6276), 1, sym__shortcode_open, - ACTIONS(6380), 1, - sym__whitespace, - STATE(3234), 1, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6400), 1, + sym__shortcode_close, + STATE(3268), 1, sym__shortcode_value, - ACTIONS(6368), 2, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(2413), 2, - sym__soft_line_break, - sym__inline_whitespace, - STATE(3760), 2, + STATE(3262), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3258), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102179] = 13, - ACTIONS(6362), 1, + [114451] = 13, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6274), 1, sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6276), 1, sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6384), 1, + ACTIONS(6402), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114495] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6404), 1, sym__shortcode_close, - STATE(3762), 1, + STATE(3268), 1, sym__shortcode_value, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + ACTIONS(6266), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + STATE(3262), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3258), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102223] = 13, - ACTIONS(6362), 1, + [114539] = 13, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6274), 1, sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6276), 1, sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6386), 1, + ACTIONS(6406), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114583] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6408), 1, sym__shortcode_close, - STATE(3762), 1, + STATE(3268), 1, sym__shortcode_value, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + ACTIONS(6266), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + STATE(3262), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3258), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102267] = 13, - ACTIONS(6362), 1, + [114627] = 13, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6274), 1, sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6276), 1, sym__shortcode_open, - ACTIONS(6388), 1, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6390), 1, + ACTIONS(6410), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, sym__commonmark_key_value_specifier, - STATE(3762), 1, + STATE(3268), 1, sym__shortcode_value, - ACTIONS(6368), 2, + ACTIONS(6266), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + STATE(3262), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3258), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102311] = 13, - ACTIONS(6362), 1, + [114671] = 13, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6274), 1, sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6276), 1, sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6392), 1, + ACTIONS(6412), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114715] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6414), 1, sym__shortcode_close, - STATE(3762), 1, + STATE(3268), 1, sym__shortcode_value, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + ACTIONS(6266), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + STATE(3262), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3258), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102355] = 13, - ACTIONS(6362), 1, + [114759] = 13, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6274), 1, sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6276), 1, sym__shortcode_open, - ACTIONS(6388), 1, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6394), 1, + ACTIONS(6416), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, sym__commonmark_key_value_specifier, - STATE(3762), 1, + STATE(3268), 1, sym__shortcode_value, - ACTIONS(6368), 2, + ACTIONS(6266), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + STATE(3262), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3258), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102399] = 13, - ACTIONS(6362), 1, + [114803] = 13, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6274), 1, sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6276), 1, sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(6396), 1, + ACTIONS(6418), 1, sym__shortcode_close, - STATE(3762), 1, + STATE(3268), 1, sym__shortcode_value, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + ACTIONS(6266), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + STATE(3262), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3258), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102443] = 13, - ACTIONS(6362), 1, + [114847] = 13, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6274), 1, sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6276), 1, sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6398), 1, + ACTIONS(6420), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + STATE(3268), 1, + sym__shortcode_value, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114891] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6422), 1, sym__shortcode_close, - STATE(3762), 1, + STATE(3268), 1, sym__shortcode_value, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + ACTIONS(6266), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + STATE(3262), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3258), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102487] = 13, - ACTIONS(6362), 1, + [114935] = 13, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6424), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [114979] = 13, + ACTIONS(6260), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6262), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6264), 1, + sym_shortcode_name, + ACTIONS(6268), 1, + sym_shortcode_number, + ACTIONS(6274), 1, + sym__language_specifier_token, + ACTIONS(6276), 1, + sym__shortcode_open, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6426), 1, + sym__shortcode_close, + STATE(3268), 1, + sym__shortcode_value, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6266), 2, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + STATE(3262), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + STATE(3258), 3, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [115023] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6430), 1, + anon_sym_RBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6440), 1, + sym_raw_specifier, + ACTIONS(6442), 1, + sym__language_specifier_token, + ACTIONS(6444), 1, + sym__key_specifier_token, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(4062), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(4063), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115066] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, + sym__language_specifier_token, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6446), 1, + anon_sym_RBRACE, + ACTIONS(6448), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3554), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3566), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115109] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, + sym__language_specifier_token, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6450), 1, + anon_sym_RBRACE, + ACTIONS(6452), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3717), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3718), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115152] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, + sym__language_specifier_token, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6454), 1, + anon_sym_RBRACE, + ACTIONS(6456), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3491), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3492), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115195] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, + sym__language_specifier_token, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6458), 1, + anon_sym_RBRACE, + ACTIONS(6460), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3520), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3521), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115238] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, + sym__language_specifier_token, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6462), 1, + anon_sym_RBRACE, + ACTIONS(6464), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3639), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + STATE(4023), 2, + sym_language_specifier, + sym_commonmark_specifier, + [115281] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, + sym__language_specifier_token, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6466), 1, + anon_sym_RBRACE, + ACTIONS(6468), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3858), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3859), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115324] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6400), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [102531] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6470), 1, + anon_sym_RBRACE, + ACTIONS(6472), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3894), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3896), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115367] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6402), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [102575] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6474), 1, + anon_sym_RBRACE, + ACTIONS(6476), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3872), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3873), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115410] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6404), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [102619] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6478), 1, + anon_sym_RBRACE, + ACTIONS(6480), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3981), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(4049), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115453] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6406), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [102663] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6482), 1, + anon_sym_RBRACE, + ACTIONS(6484), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3559), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3560), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115496] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6408), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [102707] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6486), 1, + anon_sym_RBRACE, + ACTIONS(6488), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3618), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3649), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115539] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6410), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [102751] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6490), 1, + anon_sym_RBRACE, + ACTIONS(6492), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3423), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3424), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115582] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6412), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [102795] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6494), 1, + anon_sym_RBRACE, + ACTIONS(6496), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3525), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3529), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115625] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6414), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, + ACTIONS(6498), 1, + anon_sym_RBRACE, + ACTIONS(6500), 1, + sym_raw_specifier, + STATE(2571), 1, sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [102839] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3589), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3590), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115668] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6416), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [102883] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6502), 1, + anon_sym_RBRACE, + ACTIONS(6504), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3691), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3695), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115711] = 13, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6442), 1, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6418), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, + ACTIONS(6506), 1, + anon_sym_RBRACE, + ACTIONS(6508), 1, + sym_raw_specifier, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3790), 2, + sym_language_specifier, + sym_commonmark_specifier, + STATE(3799), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115754] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6512), 1, + anon_sym_RBRACE, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3715), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3716), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115791] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6514), 1, + anon_sym_RBRACE, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3836), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3840), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115828] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6516), 1, + anon_sym_RBRACE, + STATE(2571), 1, sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [102927] = 13, - ACTIONS(6362), 1, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3486), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3499), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115865] = 10, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6274), 1, sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6276), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6420), 1, - sym__shortcode_close, - STATE(3762), 1, + STATE(3369), 1, sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + ACTIONS(6266), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + STATE(3262), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3258), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102971] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, + [115900] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6422), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103015] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6518), 1, + anon_sym_RBRACE, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3551), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3553), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115937] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6424), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6520), 1, + anon_sym_RBRACE, + STATE(2571), 1, sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103059] = 13, - ACTIONS(6362), 1, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3861), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3862), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [115974] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6522), 1, + anon_sym_RBRACE, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3885), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3886), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [116011] = 10, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6274), 1, sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6276), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6426), 1, - sym__shortcode_close, - STATE(3762), 1, + STATE(3383), 1, sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + ACTIONS(6266), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + STATE(3262), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3258), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103103] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, + [116046] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6428), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6524), 1, + anon_sym_RBRACE, + STATE(2571), 1, sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103147] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3583), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3601), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [116083] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6430), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103191] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6526), 1, + anon_sym_RBRACE, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3688), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3690), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [116120] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, sym__key_specifier_token, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6528), 1, + anon_sym_RBRACE, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3557), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3558), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [116157] = 11, ACTIONS(6432), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6530), 1, + anon_sym_RBRACE, + STATE(2571), 1, sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103235] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3489), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3490), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [116194] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, sym__key_specifier_token, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6532), 1, + anon_sym_RBRACE, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(4145), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(4153), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [116231] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, ACTIONS(6434), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6534), 1, + anon_sym_RBRACE, + STATE(2571), 1, sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103279] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3467), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3519), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [116268] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, sym__key_specifier_token, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6536), 1, + anon_sym_RBRACE, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3421), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3422), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [116305] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, ACTIONS(6436), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103323] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, sym__key_specifier_token, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6538), 1, + anon_sym_RBRACE, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3587), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3588), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [116342] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, ACTIONS(6438), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103367] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6440), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6540), 1, + anon_sym_RBRACE, + STATE(2571), 1, sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103411] = 13, - ACTIONS(6362), 1, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3942), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(4043), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [116379] = 10, + ACTIONS(6260), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6262), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6264), 1, sym_shortcode_name, - ACTIONS(6370), 1, + ACTIONS(6268), 1, sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6274), 1, sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6276), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6442), 1, - sym__shortcode_close, - STATE(3762), 1, + STATE(3268), 1, sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + ACTIONS(6266), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + STATE(3262), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3258), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103455] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, + [116414] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, ACTIONS(6444), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, + sym__key_specifier_token, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6542), 1, + anon_sym_RBRACE, + STATE(2571), 1, sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103499] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3769), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(3770), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [116451] = 11, + ACTIONS(6432), 1, + aux_sym_commonmark_specifier_token1, + ACTIONS(6434), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(6436), 1, + sym__whitespace, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6446), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, + ACTIONS(6510), 1, + anon_sym_DASH, + ACTIONS(6544), 1, + anon_sym_RBRACE, + STATE(2571), 1, sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103543] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + STATE(3399), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(4058), 2, + sym_unnumbered_specifier, + sym_commonmark_specifier, + STATE(4059), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [116488] = 3, + ACTIONS(6546), 1, + sym_block_continuation, + ACTIONS(2421), 3, sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6448), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103587] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(2419), 8, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6450), 1, sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103631] = 13, - ACTIONS(6362), 1, + sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6452), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + sym__whitespace, + [116507] = 3, + ACTIONS(6548), 1, + sym_block_continuation, + ACTIONS(2421), 3, + sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103675] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(2419), 8, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6454), 1, + sym__shortcode_open, sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103719] = 13, - ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6456), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103763] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + sym__whitespace, + [116526] = 4, + ACTIONS(6554), 1, + sym__soft_line_ending, + STATE(2516), 1, + sym__soft_line_break, + ACTIONS(6552), 3, sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6458), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103807] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6550), 7, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6460), 1, + sym__shortcode_open, sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103851] = 13, - ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6462), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + [116547] = 4, + ACTIONS(6556), 1, + sym__soft_line_ending, + STATE(2515), 1, + sym__soft_line_break, + ACTIONS(6552), 3, + sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103895] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6550), 7, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6464), 1, sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103939] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6466), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103983] = 13, - ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + [116568] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6560), 1, + anon_sym_RPAREN, + ACTIONS(6562), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6564), 1, + sym__whitespace, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6468), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(2540), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104027] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + STATE(3916), 1, + sym__commonmark_double_quote_string, + STATE(3325), 2, + sym__soft_line_break, + sym__inline_whitespace, + [116600] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6470), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6568), 1, + anon_sym_RPAREN, + ACTIONS(6570), 1, + sym__whitespace, + STATE(2551), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104071] = 13, - ACTIONS(6362), 1, + STATE(3919), 1, + sym__commonmark_double_quote_string, + STATE(3328), 2, + sym__soft_line_break, + sym__inline_whitespace, + [116632] = 7, + ACTIONS(6574), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6576), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6472), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + ACTIONS(6578), 1, + sym__whitespace, + ACTIONS(6580), 1, + sym__soft_line_ending, + STATE(2589), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3312), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104115] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6572), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [116658] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6474), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6582), 1, + anon_sym_RPAREN, + ACTIONS(6584), 1, + sym__whitespace, + STATE(2545), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104159] = 13, - ACTIONS(6362), 1, + STATE(3630), 1, + sym__commonmark_double_quote_string, + STATE(3373), 2, + sym__soft_line_break, + sym__inline_whitespace, + [116690] = 7, + ACTIONS(6574), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6576), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6476), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + ACTIONS(6580), 1, + sym__soft_line_ending, + ACTIONS(6588), 1, + sym__whitespace, + STATE(2593), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3270), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104203] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + ACTIONS(6586), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [116716] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6590), 1, + anon_sym_RPAREN, + ACTIONS(6592), 1, + sym__whitespace, + STATE(2568), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3574), 1, + sym__commonmark_double_quote_string, + STATE(3390), 2, + sym__soft_line_break, + sym__inline_whitespace, + [116748] = 3, + ACTIONS(6594), 1, + sym__whitespace, + ACTIONS(6552), 3, sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(6550), 7, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6478), 1, + sym__shortcode_open, sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104247] = 13, - ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6480), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + [116766] = 7, + ACTIONS(6580), 1, + sym__soft_line_ending, + ACTIONS(6598), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6600), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6602), 1, + sym__whitespace, + STATE(2585), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(2956), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6596), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [116792] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6604), 1, + anon_sym_RPAREN, + ACTIONS(6606), 1, + sym__whitespace, + STATE(2564), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104291] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + STATE(3932), 1, + sym__commonmark_double_quote_string, + STATE(3357), 2, + sym__soft_line_break, + sym__inline_whitespace, + [116824] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6608), 1, + anon_sym_RPAREN, + ACTIONS(6610), 1, + sym__whitespace, + STATE(2527), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3614), 1, + sym__commonmark_double_quote_string, + STATE(3309), 2, + sym__soft_line_break, + sym__inline_whitespace, + [116856] = 2, + ACTIONS(2867), 3, sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(2865), 8, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6482), 1, sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104335] = 13, - ACTIONS(6362), 1, + sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6484), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + sym__whitespace, + [116872] = 3, + ACTIONS(6612), 1, + sym__whitespace, + ACTIONS(6552), 3, + sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104379] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(6550), 7, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6486), 1, sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104423] = 13, - ACTIONS(6362), 1, + sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + [116890] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6488), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6614), 1, + anon_sym_RPAREN, + ACTIONS(6616), 1, + sym__whitespace, + STATE(2550), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104467] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + STATE(3506), 1, + sym__commonmark_double_quote_string, + STATE(3387), 2, + sym__soft_line_break, + sym__inline_whitespace, + [116922] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6490), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6618), 1, + anon_sym_RPAREN, + ACTIONS(6620), 1, + sym__whitespace, + STATE(2561), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104511] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + STATE(3976), 1, + sym__commonmark_double_quote_string, + STATE(3334), 2, + sym__soft_line_break, + sym__inline_whitespace, + [116954] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6492), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, + ACTIONS(6622), 1, + anon_sym_RPAREN, + ACTIONS(6624), 1, + sym__whitespace, + STATE(2560), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3597), 1, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3349), 2, + sym__soft_line_break, + sym__inline_whitespace, + [116986] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6626), 1, + anon_sym_RPAREN, + ACTIONS(6628), 1, + sym__whitespace, + STATE(2563), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104555] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + STATE(3925), 1, + sym__commonmark_double_quote_string, + STATE(3345), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117018] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6494), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, + ACTIONS(6630), 1, + anon_sym_RPAREN, + ACTIONS(6632), 1, + sym__whitespace, + STATE(2532), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3438), 1, sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(3384), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117050] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6634), 1, + anon_sym_RPAREN, + ACTIONS(6636), 1, + sym__whitespace, + STATE(2538), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104599] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + STATE(3943), 1, + sym__commonmark_double_quote_string, + STATE(3340), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117082] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6638), 1, + anon_sym_RPAREN, + ACTIONS(6640), 1, + sym__whitespace, + STATE(2521), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3930), 1, + sym__commonmark_double_quote_string, + STATE(3378), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117114] = 2, + ACTIONS(2867), 3, sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(2865), 8, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6496), 1, + sym__shortcode_open, sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104643] = 13, - ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + sym__whitespace, + [117130] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6498), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, + ACTIONS(6642), 1, + anon_sym_RPAREN, + ACTIONS(6644), 1, + sym__whitespace, + STATE(2528), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(4132), 1, + sym__commonmark_double_quote_string, + STATE(3365), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117162] = 7, + ACTIONS(6580), 1, + sym__soft_line_ending, + ACTIONS(6598), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6600), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6648), 1, + sym__whitespace, + STATE(2596), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(2961), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6646), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [117188] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6650), 1, + anon_sym_RPAREN, + ACTIONS(6652), 1, + sym__whitespace, + STATE(2557), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104687] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + STATE(3911), 1, + sym__commonmark_double_quote_string, + STATE(3370), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117220] = 10, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6562), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6500), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, + ACTIONS(6654), 1, + anon_sym_RPAREN, + ACTIONS(6656), 1, + sym__whitespace, + STATE(2522), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3741), 1, + sym__commonmark_double_quote_string, + STATE(3354), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117252] = 3, + ACTIONS(6658), 1, + sym_block_continuation, + ACTIONS(2421), 3, + sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104731] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, + ACTIONS(2419), 6, sym__language_specifier_token, - ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6502), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104775] = 13, - ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6504), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + sym__whitespace, + [117269] = 4, + ACTIONS(6272), 1, + sym__soft_line_ending, + STATE(2572), 1, + sym__soft_line_break, + ACTIONS(6552), 3, + sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104819] = 13, - ACTIONS(6362), 1, + ACTIONS(6550), 5, + sym__language_specifier_token, + sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, + [117288] = 2, + ACTIONS(6662), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(6660), 7, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6506), 1, sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104863] = 13, - ACTIONS(6362), 1, + sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, + [117303] = 2, + ACTIONS(6662), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(6660), 7, sym__language_specifier_token, - ACTIONS(6378), 1, - sym__shortcode_open, - ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6508), 1, + sym__shortcode_open, sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_number, + [117318] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6664), 1, + anon_sym_RPAREN, + ACTIONS(6666), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3310), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117344] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6668), 1, + anon_sym_RPAREN, + ACTIONS(6670), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3379), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117370] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6672), 1, + anon_sym_RPAREN, + ACTIONS(6674), 1, + sym__whitespace, + ACTIONS(6676), 1, + sym__soft_line_ending, + STATE(2570), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2504), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117396] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6678), 1, + anon_sym_RPAREN, + ACTIONS(6680), 1, + sym__whitespace, + STATE(2544), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2503), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117422] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6682), 1, + anon_sym_RPAREN, + ACTIONS(6684), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3380), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117448] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6686), 1, + anon_sym_RPAREN, + ACTIONS(6688), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3356), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117474] = 7, + ACTIONS(6690), 1, + anon_sym_COLON, + ACTIONS(6692), 1, + anon_sym_DASH, + ACTIONS(6694), 1, + sym__whitespace, + STATE(2567), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2580), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(2761), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(6696), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [117498] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6698), 1, + anon_sym_RPAREN, + ACTIONS(6700), 1, + sym__whitespace, + STATE(2525), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2509), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117524] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6702), 1, + anon_sym_RPAREN, + ACTIONS(6704), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3366), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117550] = 2, + ACTIONS(2867), 3, + sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104907] = 13, - ACTIONS(6362), 1, + ACTIONS(2865), 6, + sym__language_specifier_token, + sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + sym__whitespace, + [117564] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6510), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, + ACTIONS(6706), 1, + anon_sym_RPAREN, + ACTIONS(6708), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3313), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117590] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6710), 1, + anon_sym_RPAREN, + ACTIONS(6712), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3368), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117616] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6714), 1, + anon_sym_RPAREN, + ACTIONS(6716), 1, + sym__whitespace, + STATE(2531), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2505), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117642] = 3, + ACTIONS(6718), 1, + sym__whitespace, + ACTIONS(6552), 3, + sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104951] = 13, - ACTIONS(6362), 1, + ACTIONS(6550), 5, + sym__language_specifier_token, + sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + [117658] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6720), 1, + anon_sym_RPAREN, + ACTIONS(6722), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3385), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117684] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6724), 1, + anon_sym_RPAREN, + ACTIONS(6726), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3386), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117710] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6728), 1, + anon_sym_RPAREN, + ACTIONS(6730), 1, + sym__whitespace, + STATE(2534), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2511), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117736] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6732), 1, + anon_sym_RPAREN, + ACTIONS(6734), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3289), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117762] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6736), 1, + anon_sym_RPAREN, + ACTIONS(6738), 1, + sym__whitespace, + STATE(2537), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2489), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117788] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6740), 1, + anon_sym_RPAREN, + ACTIONS(6742), 1, + sym__whitespace, + STATE(2539), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2492), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117814] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6744), 1, + anon_sym_RPAREN, + ACTIONS(6746), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3326), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117840] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6748), 1, + anon_sym_RPAREN, + ACTIONS(6750), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3342), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117866] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6752), 1, + anon_sym_RPAREN, + ACTIONS(6754), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3374), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117892] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6756), 1, + anon_sym_RPAREN, + ACTIONS(6758), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3327), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117918] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6760), 1, + anon_sym_RPAREN, + ACTIONS(6762), 1, + sym__whitespace, + STATE(2558), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2506), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117944] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6764), 1, + anon_sym_RPAREN, + ACTIONS(6766), 1, + sym__whitespace, + STATE(2547), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2501), 2, + sym__soft_line_break, + sym__inline_whitespace, + [117970] = 7, + ACTIONS(6690), 1, + anon_sym_COLON, + ACTIONS(6692), 1, + anon_sym_DASH, + ACTIONS(6768), 1, + sym__whitespace, + STATE(2567), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2580), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(2736), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(6770), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [117994] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6772), 1, + anon_sym_RPAREN, + ACTIONS(6774), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3350), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118020] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6776), 1, + anon_sym_RPAREN, + ACTIONS(6778), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3375), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118046] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6512), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6780), 1, + anon_sym_RPAREN, + ACTIONS(6782), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104995] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + STATE(3355), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118072] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6514), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6784), 1, + anon_sym_RPAREN, + ACTIONS(6786), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [105039] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + STATE(3388), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118098] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6516), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6788), 1, + anon_sym_RPAREN, + ACTIONS(6790), 1, + sym__whitespace, + STATE(2549), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [105083] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + STATE(2490), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118124] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6518), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6792), 1, + anon_sym_RPAREN, + ACTIONS(6794), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [105127] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + STATE(3329), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118150] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6520), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6796), 1, + anon_sym_RPAREN, + ACTIONS(6798), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [105171] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + STATE(3389), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118176] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6522), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6800), 1, + anon_sym_RPAREN, + ACTIONS(6802), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [105215] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + STATE(3330), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118202] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6524), 1, - sym__shortcode_close, - STATE(3762), 1, - sym__shortcode_value, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6804), 1, + anon_sym_RPAREN, + ACTIONS(6806), 1, + sym__whitespace, + STATE(2555), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [105259] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + STATE(2497), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118228] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6526), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6808), 1, + anon_sym_RPAREN, + ACTIONS(6810), 1, + sym__whitespace, + STATE(2517), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [105303] = 13, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + STATE(2498), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118254] = 7, + ACTIONS(6690), 1, + anon_sym_COLON, + ACTIONS(6692), 1, + anon_sym_DASH, + ACTIONS(6812), 1, + sym__whitespace, + STATE(2567), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2580), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(2727), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(6814), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [118278] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, sym__shortcode_open, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6528), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + ACTIONS(6816), 1, + anon_sym_RPAREN, + ACTIONS(6818), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [105347] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6532), 1, - anon_sym_RBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(3358), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118304] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6820), 1, + anon_sym_RPAREN, + ACTIONS(6822), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2559), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2502), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118330] = 8, + ACTIONS(6438), 1, sym__soft_line_ending, - ACTIONS(6542), 1, - sym_raw_specifier, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, - sym__key_specifier_token, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3391), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3392), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6824), 1, + anon_sym_RPAREN, + ACTIONS(6826), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3296), 2, sym__soft_line_break, sym__inline_whitespace, - [105390] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + [118356] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6828), 1, + anon_sym_RPAREN, + ACTIONS(6830), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3341), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118382] = 8, + ACTIONS(6438), 1, sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6548), 1, - anon_sym_RBRACE, - ACTIONS(6550), 1, - sym_raw_specifier, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3668), 2, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6832), 1, + anon_sym_RPAREN, + ACTIONS(6834), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3335), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3728), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3729), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [105433] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + [118408] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6836), 1, + anon_sym_RPAREN, + ACTIONS(6838), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3351), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118434] = 8, + ACTIONS(6438), 1, sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6552), 1, - anon_sym_RBRACE, - ACTIONS(6554), 1, - sym_raw_specifier, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3668), 2, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6840), 1, + anon_sym_RPAREN, + ACTIONS(6842), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3336), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3862), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3864), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [105476] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + [118460] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6676), 1, + sym__soft_line_ending, + ACTIONS(6844), 1, + anon_sym_RPAREN, + ACTIONS(6846), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2565), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2494), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118486] = 8, + ACTIONS(6438), 1, sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6556), 1, - anon_sym_RBRACE, ACTIONS(6558), 1, - sym_raw_specifier, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3338), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3339), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6848), 1, + anon_sym_RPAREN, + ACTIONS(6850), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3347), 2, sym__soft_line_break, sym__inline_whitespace, - [105519] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + [118512] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6852), 1, + anon_sym_RPAREN, + ACTIONS(6854), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3359), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118538] = 8, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6856), 1, + anon_sym_RPAREN, + ACTIONS(6858), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3391), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118564] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6676), 1, sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6560), 1, - anon_sym_RBRACE, - ACTIONS(6562), 1, - sym_raw_specifier, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3641), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3650), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6860), 1, + anon_sym_RPAREN, + ACTIONS(6862), 1, + sym__whitespace, + STATE(2546), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2512), 2, sym__soft_line_break, sym__inline_whitespace, - [105562] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + [118590] = 7, + ACTIONS(6864), 1, + anon_sym_COLON, + ACTIONS(6867), 1, + anon_sym_DASH, + ACTIONS(6870), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2567), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2834), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3353), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(6873), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [118614] = 8, + ACTIONS(6438), 1, sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6564), 1, - anon_sym_RBRACE, + ACTIONS(6558), 1, + aux_sym_target_token2, ACTIONS(6566), 1, - sym_raw_specifier, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3521), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + sym__shortcode_open, + ACTIONS(6875), 1, + anon_sym_RPAREN, + ACTIONS(6877), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3392), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3817), 2, - sym_language_specifier, - sym_commonmark_specifier, - [105605] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, - sym__whitespace, - ACTIONS(6540), 1, + [118640] = 8, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6676), 1, sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6568), 1, - anon_sym_RBRACE, - ACTIONS(6570), 1, - sym_raw_specifier, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3263), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3264), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6879), 1, + anon_sym_RPAREN, + ACTIONS(6881), 1, + sym__whitespace, + STATE(2518), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(2507), 2, sym__soft_line_break, sym__inline_whitespace, - [105648] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, - sym__whitespace, - ACTIONS(6540), 1, + [118666] = 8, + ACTIONS(6438), 1, sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, + ACTIONS(6558), 1, + aux_sym_target_token2, + ACTIONS(6566), 1, + sym__shortcode_open, + ACTIONS(6883), 1, + anon_sym_RPAREN, + ACTIONS(6885), 1, + sym__whitespace, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + STATE(3346), 2, + sym__soft_line_break, + sym__inline_whitespace, + [118692] = 6, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6572), 1, + ACTIONS(6887), 1, anon_sym_RBRACE, - ACTIONS(6574), 1, - sym_raw_specifier, - STATE(2479), 1, + ACTIONS(6889), 1, + sym__whitespace, + ACTIONS(6891), 1, + sym__soft_line_ending, + STATE(2579), 2, sym__commonmark_key_value_specifier, - STATE(3418), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3419), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + aux_sym__commonmark_specifier_start_with_kv_repeat1, + STATE(3177), 2, sym__soft_line_break, sym__inline_whitespace, - [105691] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, - sym__whitespace, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(6544), 1, + [118713] = 2, + ACTIONS(6662), 3, + sym_shortcode_name, + aux_sym_shortcode_naked_string_token1, + aux_sym_shortcode_naked_string_token2, + ACTIONS(6660), 5, sym__language_specifier_token, - ACTIONS(6546), 1, + sym__shortcode_open, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_number, + [118726] = 6, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6576), 1, + ACTIONS(6893), 1, anon_sym_RBRACE, - ACTIONS(6578), 1, - sym_raw_specifier, - STATE(2479), 1, + ACTIONS(6895), 1, + sym__whitespace, + ACTIONS(6897), 1, + sym__soft_line_ending, + STATE(2578), 2, sym__commonmark_key_value_specifier, - STATE(3327), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3328), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + aux_sym__commonmark_specifier_start_with_kv_repeat1, + STATE(2722), 2, sym__soft_line_break, sym__inline_whitespace, - [105734] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + [118747] = 8, + ACTIONS(6899), 1, + anon_sym_COLON, + ACTIONS(6901), 1, + anon_sym_DASH, + ACTIONS(6903), 1, sym__whitespace, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, + ACTIONS(6905), 1, + sym__pipe_table_delimiter, + STATE(2554), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2664), 1, + sym_pipe_table_delimiter_row, + STATE(2834), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3353), 1, + sym_pipe_table_delimiter_cell, + [118772] = 4, + ACTIONS(6907), 1, + anon_sym_COLON, + ACTIONS(6909), 1, + anon_sym_DASH, + STATE(2583), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(6911), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__pipe_table_delimiter, + sym__whitespace, + [118789] = 6, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6580), 1, + ACTIONS(6887), 1, anon_sym_RBRACE, - ACTIONS(6582), 1, - sym_raw_specifier, - STATE(2479), 1, + ACTIONS(6897), 1, + sym__soft_line_ending, + ACTIONS(6913), 1, + sym__whitespace, + STATE(2573), 2, sym__commonmark_key_value_specifier, - STATE(3668), 2, + aux_sym__commonmark_specifier_start_with_kv_repeat1, + STATE(2777), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3813), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3859), 2, - sym_language_specifier, - sym_commonmark_specifier, - [105777] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + [118810] = 8, + ACTIONS(6899), 1, + anon_sym_COLON, + ACTIONS(6901), 1, + anon_sym_DASH, + ACTIONS(6903), 1, sym__whitespace, - ACTIONS(6540), 1, + ACTIONS(6905), 1, + sym__pipe_table_delimiter, + STATE(2554), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2676), 1, + sym_pipe_table_delimiter_row, + STATE(2834), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3353), 1, + sym_pipe_table_delimiter_cell, + [118835] = 6, + ACTIONS(6915), 1, + anon_sym_RBRACE, + ACTIONS(6917), 1, + sym__whitespace, + ACTIONS(6920), 1, sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, + ACTIONS(6923), 1, sym__key_specifier_token, - ACTIONS(6584), 1, - anon_sym_RBRACE, - ACTIONS(6586), 1, - sym_raw_specifier, - STATE(2479), 1, + STATE(2578), 2, sym__commonmark_key_value_specifier, - STATE(3668), 2, + aux_sym__commonmark_specifier_start_with_kv_repeat1, + STATE(3331), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3801), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3805), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [105820] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, - sym__whitespace, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, + [118856] = 6, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(6588), 1, + ACTIONS(6891), 1, + sym__soft_line_ending, + ACTIONS(6893), 1, anon_sym_RBRACE, - ACTIONS(6590), 1, - sym_raw_specifier, - STATE(2479), 1, + ACTIONS(6926), 1, + sym__whitespace, + STATE(2578), 2, sym__commonmark_key_value_specifier, - STATE(3242), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3256), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + aux_sym__commonmark_specifier_start_with_kv_repeat1, + STATE(3056), 2, sym__soft_line_break, sym__inline_whitespace, - [105863] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, + [118877] = 4, + ACTIONS(6909), 1, + anon_sym_DASH, + ACTIONS(6928), 1, + anon_sym_COLON, + STATE(2583), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(6930), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__pipe_table_delimiter, + sym__whitespace, + [118894] = 8, + ACTIONS(6899), 1, + anon_sym_COLON, + ACTIONS(6901), 1, + anon_sym_DASH, + ACTIONS(6903), 1, + sym__whitespace, + ACTIONS(6905), 1, + sym__pipe_table_delimiter, + STATE(2554), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2623), 1, + sym_pipe_table_delimiter_row, + STATE(2834), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3353), 1, + sym_pipe_table_delimiter_cell, + [118919] = 2, + ACTIONS(6932), 1, + sym_block_continuation, + ACTIONS(2419), 7, + anon_sym_RBRACE, aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + aux_sym__commonmark_specifier_start_with_class_token2, + anon_sym_EQ, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_name, sym__whitespace, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6592), 1, + [118932] = 3, + ACTIONS(6936), 1, + anon_sym_DASH, + STATE(2583), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(6934), 6, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__pipe_table_delimiter, + anon_sym_COLON, + sym__whitespace, + [118947] = 6, + ACTIONS(6939), 1, + sym__code_line, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(6943), 1, + sym__block_close, + ACTIONS(6945), 1, + sym__fenced_code_block_end_backtick, + STATE(3293), 1, + sym_code_fence_content, + STATE(2667), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [118967] = 4, + ACTIONS(6598), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6600), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(2961), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + ACTIONS(6646), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [118983] = 6, + ACTIONS(6939), 1, + sym__code_line, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(6947), 1, + sym__block_close, + ACTIONS(6949), 1, + sym__fenced_code_block_end_backtick, + STATE(3360), 1, + sym_code_fence_content, + STATE(2667), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [119003] = 6, + ACTIONS(6939), 1, + sym__code_line, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(6951), 1, + sym__block_close, + ACTIONS(6953), 1, + sym__fenced_code_block_end_backtick, + STATE(3364), 1, + sym_code_fence_content, + STATE(2667), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [119023] = 6, + ACTIONS(6939), 1, + sym__code_line, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(6955), 1, + sym__block_close, + ACTIONS(6957), 1, + sym__fenced_code_block_end_backtick, + STATE(3284), 1, + sym_code_fence_content, + STATE(2667), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [119043] = 4, + ACTIONS(6574), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6576), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3307), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + ACTIONS(6959), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [119059] = 6, + ACTIONS(6939), 1, + sym__code_line, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(6961), 1, + sym__block_close, + ACTIONS(6963), 1, + sym__fenced_code_block_end_backtick, + STATE(3311), 1, + sym_code_fence_content, + STATE(2667), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [119079] = 1, + ACTIONS(2865), 7, anon_sym_RBRACE, - ACTIONS(6594), 1, - sym_raw_specifier, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3593), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3596), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, - sym__soft_line_break, - sym__inline_whitespace, - [105906] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + aux_sym__commonmark_specifier_start_with_class_token2, + anon_sym_EQ, + aux_sym__commonmark_double_quote_string_token1, + sym_shortcode_name, sym__whitespace, - ACTIONS(6540), 1, + [119089] = 6, + ACTIONS(6939), 1, + sym__code_line, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(6965), 1, + sym__block_close, + ACTIONS(6967), 1, + sym__fenced_code_block_end_backtick, + STATE(3315), 1, + sym_code_fence_content, + STATE(2667), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [119109] = 4, + ACTIONS(6574), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6576), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3312), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + ACTIONS(6572), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [119125] = 1, + ACTIONS(2635), 7, + sym_atx_h1_marker, + sym_atx_h2_marker, + sym_atx_h3_marker, + sym_atx_h4_marker, + sym_atx_h5_marker, + sym_atx_h6_marker, + ts_builtin_sym_end, + [119135] = 6, + ACTIONS(6939), 1, + sym__code_line, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(6969), 1, + sym__block_close, + ACTIONS(6971), 1, + sym__fenced_code_block_end_backtick, + STATE(3299), 1, + sym_code_fence_content, + STATE(2667), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [119155] = 4, + ACTIONS(6598), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(6600), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(2960), 2, + sym__commonmark_single_quote_string, + sym__commonmark_double_quote_string, + ACTIONS(6973), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [119171] = 5, + ACTIONS(6975), 1, + aux_sym_target_token2, + ACTIONS(6980), 1, + sym__shortcode_open, + STATE(2597), 1, + aux_sym_target_repeat1, + STATE(2793), 1, + sym_shortcode, + ACTIONS(6978), 3, + sym__soft_line_ending, + anon_sym_RPAREN, + sym__whitespace, + [119189] = 5, + ACTIONS(6690), 1, + anon_sym_COLON, + ACTIONS(6692), 1, + anon_sym_DASH, + STATE(2580), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(2757), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(6696), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [119207] = 6, + ACTIONS(6939), 1, + sym__code_line, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(6983), 1, + sym__block_close, + ACTIONS(6985), 1, + sym__fenced_code_block_end_backtick, + STATE(3257), 1, + sym_code_fence_content, + STATE(2667), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [119227] = 3, + ACTIONS(2421), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(6987), 1, + sym_block_continuation, + ACTIONS(2419), 5, + sym__soft_line_ending, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, + sym__whitespace, + [119241] = 5, + ACTIONS(6690), 1, + anon_sym_COLON, + ACTIONS(6692), 1, + anon_sym_DASH, + STATE(2580), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(2742), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(6770), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [119259] = 6, + ACTIONS(6939), 1, + sym__code_line, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(6989), 1, + sym__block_close, + ACTIONS(6991), 1, + sym__fenced_code_block_end_backtick, + STATE(3352), 1, + sym_code_fence_content, + STATE(2667), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [119279] = 5, + ACTIONS(6690), 1, + anon_sym_COLON, + ACTIONS(6692), 1, + anon_sym_DASH, + STATE(2580), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(2795), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(6993), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [119297] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6596), 1, - anon_sym_RBRACE, - ACTIONS(6598), 1, - sym_raw_specifier, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3668), 2, - sym__soft_line_break, - sym__inline_whitespace, - STATE(3678), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3680), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [105949] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + ACTIONS(6995), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2381), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2838), 1, + aux_sym_shortcode_escaped_repeat2, + [119316] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6600), 1, - anon_sym_RBRACE, - ACTIONS(6602), 1, - sym_raw_specifier, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3628), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3630), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6997), 1, + sym__whitespace, + STATE(2383), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [105992] = 13, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2607), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2810), 1, + aux_sym_shortcode_repeat1, + [119335] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2384), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2811), 1, + aux_sym_shortcode_escaped_repeat2, + [119354] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6604), 1, - anon_sym_RBRACE, - ACTIONS(6606), 1, - sym_raw_specifier, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3314), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3319), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6997), 1, + sym__whitespace, + STATE(2386), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [106035] = 13, - ACTIONS(6530), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2812), 1, + aux_sym_shortcode_repeat1, + [119373] = 5, + ACTIONS(6999), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(7001), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7003), 1, + aux_sym__commonmark_double_quote_string_token4, + ACTIONS(7005), 1, + sym__shortcode_open, + STATE(2622), 2, + sym_shortcode, + aux_sym__commonmark_double_quote_string_repeat1, + [119390] = 6, + ACTIONS(6899), 1, + anon_sym_COLON, + ACTIONS(6901), 1, + anon_sym_DASH, + ACTIONS(7007), 1, + sym__whitespace, + STATE(2543), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(2834), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3353), 1, + sym_pipe_table_delimiter_cell, + [119409] = 6, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(7009), 1, anon_sym_LBRACE, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + ACTIONS(7011), 1, + sym__commonmark_naked_value, + ACTIONS(7013), 1, sym__whitespace, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(6544), 1, - sym__language_specifier_token, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6608), 1, - anon_sym_RBRACE, - ACTIONS(6610), 1, - sym_raw_specifier, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3479), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3480), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, - sym__soft_line_break, - sym__inline_whitespace, - [106078] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2588), 1, + sym__newline, + STATE(3298), 1, + sym_attribute_specifier, + [119428] = 5, + ACTIONS(7005), 1, + sym__shortcode_open, + ACTIONS(7015), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(7017), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7019), 1, + aux_sym__commonmark_double_quote_string_token4, + STATE(2612), 2, + sym_shortcode, + aux_sym__commonmark_double_quote_string_repeat1, + [119445] = 5, + ACTIONS(7005), 1, + sym__shortcode_open, + ACTIONS(7021), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(7023), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7025), 1, + aux_sym__commonmark_double_quote_string_token4, + STATE(2650), 2, + sym_shortcode, + aux_sym__commonmark_double_quote_string_repeat1, + [119462] = 6, + ACTIONS(25), 1, + sym__line_ending, + ACTIONS(7027), 1, + sym__eof, + ACTIONS(7029), 1, + sym__pipe_table_line_ending, + STATE(130), 1, + sym__pipe_table_newline, + STATE(456), 1, + sym__newline, + STATE(2740), 1, + aux_sym_pipe_table_repeat1, + [119481] = 1, + ACTIONS(7031), 6, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_COLON, + anon_sym_DASH, sym__whitespace, - ACTIONS(6540), 1, + [119490] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6614), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3565), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3566), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, - sym__soft_line_break, - sym__inline_whitespace, - [106115] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + ACTIONS(6995), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2387), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2617), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2814), 1, + aux_sym_shortcode_escaped_repeat2, + [119509] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6616), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3668), 2, + ACTIONS(6997), 1, + sym__whitespace, + STATE(2388), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - STATE(3883), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3911), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [106152] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2618), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2815), 1, + aux_sym_shortcode_repeat1, + [119528] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2393), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2816), 1, + aux_sym_shortcode_escaped_repeat2, + [119547] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6618), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3668), 2, + ACTIONS(6997), 1, + sym__whitespace, + STATE(2394), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - STATE(3797), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3800), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [106189] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2817), 1, + aux_sym_shortcode_repeat1, + [119566] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2417), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2656), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2783), 1, + aux_sym_shortcode_escaped_repeat2, + [119585] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6620), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3233), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3238), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6997), 1, + sym__whitespace, + STATE(2418), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [106226] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2674), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2784), 1, + aux_sym_shortcode_repeat1, + [119604] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2377), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2626), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2804), 1, + aux_sym_shortcode_escaped_repeat2, + [119623] = 5, + ACTIONS(7005), 1, + sym__shortcode_open, + ACTIONS(7023), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7025), 1, + aux_sym__commonmark_double_quote_string_token4, + ACTIONS(7033), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(2650), 2, + sym_shortcode, + aux_sym__commonmark_double_quote_string_repeat1, + [119640] = 6, + ACTIONS(25), 1, + sym__line_ending, + ACTIONS(7029), 1, + sym__pipe_table_line_ending, + ACTIONS(7035), 1, + sym__eof, + STATE(128), 1, + sym__pipe_table_newline, + STATE(440), 1, + sym__newline, + STATE(2613), 1, + aux_sym_pipe_table_repeat1, + [119659] = 5, + ACTIONS(7037), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(7039), 1, + aux_sym__commonmark_single_quote_string_token3, + ACTIONS(7041), 1, + aux_sym__commonmark_single_quote_string_token4, + ACTIONS(7043), 1, + sym__shortcode_open, + STATE(2658), 2, + sym_shortcode, + aux_sym__commonmark_single_quote_string_repeat1, + [119676] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6622), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3476), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3477), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6997), 1, + sym__whitespace, + STATE(2378), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [106263] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2631), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2805), 1, + aux_sym_shortcode_repeat1, + [119695] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2395), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2806), 1, + aux_sym_shortcode_escaped_repeat2, + [119714] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6624), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3416), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3417), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6995), 1, + sym__whitespace, + STATE(2422), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [106300] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2629), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2818), 1, + aux_sym_shortcode_escaped_repeat2, + [119733] = 6, + ACTIONS(6554), 1, + sym__soft_line_ending, + ACTIONS(6997), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2423), 1, + sym__shortcode_sep, + STATE(2495), 1, + sym__soft_line_break, + STATE(2630), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2819), 1, + aux_sym_shortcode_repeat1, + [119752] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6626), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3658), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3659), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6995), 1, + sym__whitespace, + STATE(2424), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [106337] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2820), 1, + aux_sym_shortcode_escaped_repeat2, + [119771] = 6, + ACTIONS(6554), 1, + sym__soft_line_ending, + ACTIONS(6997), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2425), 1, + sym__shortcode_sep, + STATE(2495), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2821), 1, + aux_sym_shortcode_repeat1, + [119790] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6628), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3261), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3262), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6997), 1, + sym__whitespace, + STATE(2400), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [106374] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2807), 1, + aux_sym_shortcode_repeat1, + [119809] = 1, + ACTIONS(6873), 6, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_COLON, + anon_sym_DASH, sym__whitespace, - ACTIONS(6540), 1, + [119818] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6630), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3668), 2, + ACTIONS(6997), 1, + sym__whitespace, + STATE(2426), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - STATE(3841), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3842), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [106411] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2774), 1, + aux_sym_shortcode_repeat1, + [119837] = 5, + ACTIONS(7045), 1, + anon_sym_RBRACE, + ACTIONS(7047), 1, sym__whitespace, - ACTIONS(6540), 1, + ACTIONS(7049), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6632), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3668), 2, + STATE(2673), 1, + aux_sym__commonmark_specifier_start_with_class_repeat1, + STATE(2905), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3707), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3726), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [106448] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + [119854] = 4, + ACTIONS(7051), 1, + sym__code_line, + ACTIONS(7054), 1, + sym__line_ending, + ACTIONS(7057), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + STATE(2635), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [119869] = 5, + ACTIONS(7043), 1, + sym__shortcode_open, + ACTIONS(7059), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(7061), 1, + aux_sym__commonmark_single_quote_string_token3, + ACTIONS(7063), 1, + aux_sym__commonmark_single_quote_string_token4, + STATE(2637), 2, + sym_shortcode, + aux_sym__commonmark_single_quote_string_repeat1, + [119886] = 5, + ACTIONS(7039), 1, + aux_sym__commonmark_single_quote_string_token3, + ACTIONS(7041), 1, + aux_sym__commonmark_single_quote_string_token4, + ACTIONS(7043), 1, + sym__shortcode_open, + ACTIONS(7065), 1, + aux_sym__commonmark_single_quote_string_token1, + STATE(2658), 2, + sym_shortcode, + aux_sym__commonmark_single_quote_string_repeat1, + [119903] = 6, + ACTIONS(6554), 1, + sym__soft_line_ending, + ACTIONS(6997), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2446), 1, + sym__shortcode_sep, + STATE(2495), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2803), 1, + aux_sym_shortcode_repeat1, + [119922] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6634), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3274), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3294), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6995), 1, + sym__whitespace, + STATE(2427), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [106485] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2645), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2789), 1, + aux_sym_shortcode_escaped_repeat2, + [119941] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2437), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2642), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2823), 1, + aux_sym_shortcode_escaped_repeat2, + [119960] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6636), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3612), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3623), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6997), 1, + sym__whitespace, + STATE(2438), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [106522] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2643), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2824), 1, + aux_sym_shortcode_repeat1, + [119979] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2439), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2825), 1, + aux_sym_shortcode_escaped_repeat2, + [119998] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6638), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3325), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3326), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6997), 1, + sym__whitespace, + STATE(2445), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [106559] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2826), 1, + aux_sym_shortcode_repeat1, + [120017] = 6, + ACTIONS(6554), 1, + sym__soft_line_ending, + ACTIONS(6997), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2428), 1, + sym__shortcode_sep, + STATE(2495), 1, + sym__soft_line_break, + STATE(2648), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2790), 1, + aux_sym_shortcode_repeat1, + [120036] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6640), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3638), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3639), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6995), 1, + sym__whitespace, + STATE(2429), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [106596] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2791), 1, + aux_sym_shortcode_escaped_repeat2, + [120055] = 5, + ACTIONS(7005), 1, + sym__shortcode_open, + ACTIONS(7023), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7025), 1, + aux_sym__commonmark_double_quote_string_token4, + ACTIONS(7067), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(2650), 2, + sym_shortcode, + aux_sym__commonmark_double_quote_string_repeat1, + [120072] = 6, + ACTIONS(191), 1, + sym__line_ending, + ACTIONS(7029), 1, + sym__pipe_table_line_ending, + ACTIONS(7069), 1, + sym__eof, + STATE(131), 1, + sym__pipe_table_newline, + STATE(307), 1, + sym__newline, + STATE(2740), 1, + aux_sym_pipe_table_repeat1, + [120091] = 6, + ACTIONS(6554), 1, + sym__soft_line_ending, + ACTIONS(6997), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2430), 1, + sym__shortcode_sep, + STATE(2495), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2792), 1, + aux_sym_shortcode_repeat1, + [120110] = 5, + ACTIONS(7049), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6642), 1, + ACTIONS(7071), 1, anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3389), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3390), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(7073), 1, + sym__whitespace, + STATE(2686), 1, + aux_sym__commonmark_specifier_start_with_class_repeat1, + STATE(2939), 2, sym__soft_line_break, sym__inline_whitespace, - [106633] = 10, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + [120127] = 5, + ACTIONS(7075), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(7077), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7080), 1, + aux_sym__commonmark_double_quote_string_token4, + ACTIONS(7083), 1, sym__shortcode_open, - STATE(3489), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(2650), 2, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [106668] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + aux_sym__commonmark_double_quote_string_repeat1, + [120144] = 3, + ACTIONS(7086), 1, + sym_block_continuation, + ACTIONS(2421), 2, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(2419), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [120157] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2431), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2654), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2830), 1, + aux_sym_shortcode_escaped_repeat2, + [120176] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6644), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3496), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3497), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6997), 1, + sym__whitespace, + STATE(2432), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [106705] = 11, - ACTIONS(6534), 1, - aux_sym_commonmark_specifier_token1, - ACTIONS(6536), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6538), 1, + STATE(2655), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2831), 1, + aux_sym_shortcode_repeat1, + [120195] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, sym__whitespace, - ACTIONS(6540), 1, + STATE(2440), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2832), 1, + aux_sym_shortcode_escaped_repeat2, + [120214] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6612), 1, - anon_sym_DASH, - ACTIONS(6646), 1, - anon_sym_RBRACE, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3336), 2, - sym_unnumbered_specifier, - sym_commonmark_specifier, - STATE(3337), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3668), 2, + ACTIONS(6997), 1, + sym__whitespace, + STATE(2441), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [106742] = 10, - ACTIONS(6362), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2833), 1, + aux_sym_shortcode_repeat1, + [120233] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, + sym__whitespace, + STATE(2419), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2785), 1, + aux_sym_shortcode_escaped_repeat2, + [120252] = 6, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(7009), 1, + anon_sym_LBRACE, + ACTIONS(7088), 1, + sym__commonmark_naked_value, + ACTIONS(7090), 1, + sym__whitespace, + STATE(2590), 1, + sym__newline, + STATE(3371), 1, + sym_attribute_specifier, + [120271] = 5, + ACTIONS(7092), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(7094), 1, + aux_sym__commonmark_single_quote_string_token3, + ACTIONS(7097), 1, + aux_sym__commonmark_single_quote_string_token4, + ACTIONS(7100), 1, sym__shortcode_open, - STATE(3605), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, + STATE(2658), 2, sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [106777] = 10, - ACTIONS(6362), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6364), 1, + aux_sym__commonmark_single_quote_string_repeat1, + [120288] = 2, + ACTIONS(2867), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6366), 1, - sym_shortcode_name, - ACTIONS(6370), 1, - sym_shortcode_number, - ACTIONS(6376), 1, - sym__language_specifier_token, - ACTIONS(6378), 1, + ACTIONS(2865), 5, + sym__soft_line_ending, sym__shortcode_open, - STATE(3762), 1, - sym__shortcode_value, - ACTIONS(6368), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3760), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3716), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [106812] = 7, - ACTIONS(6650), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6652), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6654), 1, + aux_sym_target_token2, + anon_sym_RPAREN, sym__whitespace, - ACTIONS(6656), 1, + [120299] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - STATE(2501), 2, + ACTIONS(6995), 1, + sym__whitespace, + STATE(2444), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - STATE(2676), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6648), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [106838] = 7, - ACTIONS(6650), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6652), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6656), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2802), 1, + aux_sym_shortcode_escaped_repeat2, + [120318] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6660), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2500), 2, + STATE(2447), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - STATE(2631), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6658), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [106864] = 7, - ACTIONS(6656), 1, + STATE(2663), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2837), 1, + aux_sym_shortcode_repeat1, + [120337] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6664), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6666), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6668), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2488), 2, + STATE(2443), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - STATE(3344), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6662), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [106890] = 7, - ACTIONS(6656), 1, + STATE(2638), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2801), 1, + aux_sym_shortcode_repeat1, + [120356] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6664), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6666), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6672), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2495), 2, + STATE(2382), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - STATE(3562), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6670), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [106916] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2839), 1, + aux_sym_shortcode_repeat1, + [120375] = 6, + ACTIONS(191), 1, + sym__line_ending, + ACTIONS(7029), 1, + sym__pipe_table_line_ending, + ACTIONS(7103), 1, + sym__eof, + STATE(129), 1, + sym__pipe_table_newline, + STATE(297), 1, + sym__newline, + STATE(2647), 1, + aux_sym_pipe_table_repeat1, + [120394] = 5, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(7105), 1, + anon_sym_RBRACE, + ACTIONS(7107), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + STATE(2576), 1, + sym__commonmark_key_value_specifier, + STATE(2717), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [120411] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6676), 1, - anon_sym_RPAREN, - ACTIONS(6678), 1, + ACTIONS(6995), 1, sym__whitespace, - ACTIONS(6680), 1, + STATE(2405), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2691), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2728), 1, + aux_sym_shortcode_escaped_repeat2, + [120430] = 4, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(7109), 1, + sym__code_line, + ACTIONS(7111), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + STATE(2635), 2, + sym__newline, + aux_sym_code_fence_content_repeat1, + [120445] = 5, + ACTIONS(7005), 1, sym__shortcode_open, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, + ACTIONS(7113), 1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(7115), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(7117), 1, + aux_sym__commonmark_double_quote_string_token4, + STATE(2646), 2, sym_shortcode, - STATE(3209), 2, + aux_sym__commonmark_double_quote_string_repeat1, + [120462] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, + sym__whitespace, + STATE(2389), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [106942] = 7, - ACTIONS(6682), 1, - anon_sym_COLON, - ACTIONS(6684), 1, - anon_sym_DASH, - ACTIONS(6686), 1, + STATE(2671), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2840), 1, + aux_sym_shortcode_escaped_repeat2, + [120481] = 6, + ACTIONS(6554), 1, + sym__soft_line_ending, + ACTIONS(6997), 1, sym__whitespace, - STATE(2436), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2465), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2553), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(6688), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [106966] = 8, - ACTIONS(6540), 1, + STATE(2390), 1, + sym__shortcode_sep, + STATE(2495), 1, + sym__soft_line_break, + STATE(2672), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2841), 1, + aux_sym_shortcode_repeat1, + [120500] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6690), 1, - anon_sym_RPAREN, - ACTIONS(6692), 1, + ACTIONS(6995), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3067), 2, + STATE(2391), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [106992] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2842), 1, + aux_sym_shortcode_escaped_repeat2, + [120519] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6694), 1, - anon_sym_RPAREN, - ACTIONS(6696), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3099), 2, + STATE(2392), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107018] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2843), 1, + aux_sym_shortcode_repeat1, + [120538] = 5, + ACTIONS(7049), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6698), 1, - anon_sym_RPAREN, - ACTIONS(6700), 1, + ACTIONS(7071), 1, + anon_sym_RBRACE, + ACTIONS(7119), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3129), 2, + STATE(2686), 1, + aux_sym__commonmark_specifier_start_with_class_repeat1, + STATE(2933), 2, sym__soft_line_break, sym__inline_whitespace, - [107044] = 8, - ACTIONS(6540), 1, + [120555] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6702), 1, - anon_sym_RPAREN, - ACTIONS(6704), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3153), 2, + STATE(2420), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107070] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2786), 1, + aux_sym_shortcode_repeat1, + [120574] = 5, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(7107), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(7121), 1, + anon_sym_RBRACE, + STATE(2576), 1, + sym__commonmark_key_value_specifier, + STATE(2799), 2, + sym__commonmark_specifier_start_with_class, + sym__commonmark_specifier_start_with_kv, + [120591] = 6, + ACTIONS(113), 1, + sym__line_ending, + ACTIONS(7029), 1, + sym__pipe_table_line_ending, + ACTIONS(7123), 1, + sym__eof, + STATE(132), 1, + sym__pipe_table_newline, + STATE(389), 1, + sym__newline, + STATE(2695), 1, + aux_sym_pipe_table_repeat1, + [120610] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6706), 1, - anon_sym_RPAREN, - ACTIONS(6708), 1, + ACTIONS(6995), 1, + sym__whitespace, + STATE(2433), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2683), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2794), 1, + aux_sym_shortcode_escaped_repeat2, + [120629] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, + sym__whitespace, + STATE(2396), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2680), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2846), 1, + aux_sym_shortcode_escaped_repeat2, + [120648] = 6, + ACTIONS(6554), 1, + sym__soft_line_ending, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3188), 2, + STATE(2397), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107096] = 8, - ACTIONS(6540), 1, + STATE(2681), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2847), 1, + aux_sym_shortcode_repeat1, + [120667] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6710), 1, - anon_sym_RPAREN, - ACTIONS(6712), 1, + ACTIONS(6995), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3140), 2, + STATE(2398), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [107122] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2848), 1, + aux_sym_shortcode_escaped_repeat2, + [120686] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6714), 1, - anon_sym_RPAREN, - ACTIONS(6716), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3200), 2, + STATE(2399), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107148] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2849), 1, + aux_sym_shortcode_repeat1, + [120705] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6718), 1, - anon_sym_RPAREN, - ACTIONS(6720), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3166), 2, + STATE(2434), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107174] = 8, - ACTIONS(6540), 1, + STATE(2684), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2796), 1, + aux_sym_shortcode_repeat1, + [120724] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6722), 1, - anon_sym_RPAREN, - ACTIONS(6724), 1, + ACTIONS(6995), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3137), 2, + STATE(2435), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [107200] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2871), 1, + aux_sym_shortcode_escaped_repeat2, + [120743] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6726), 1, - anon_sym_RPAREN, - ACTIONS(6728), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3169), 2, + STATE(2436), 1, + sym__shortcode_sep, + STATE(2495), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2798), 1, + aux_sym_shortcode_repeat1, + [120762] = 6, + ACTIONS(6941), 1, + sym__line_ending, + ACTIONS(7009), 1, + anon_sym_LBRACE, + ACTIONS(7125), 1, + sym__commonmark_naked_value, + ACTIONS(7127), 1, + sym__whitespace, + STATE(2602), 1, + sym__newline, + STATE(3317), 1, + sym_attribute_specifier, + [120781] = 5, + ACTIONS(7129), 1, + anon_sym_RBRACE, + ACTIONS(7131), 1, + sym__whitespace, + ACTIONS(7134), 1, + sym__soft_line_ending, + STATE(2686), 1, + aux_sym__commonmark_specifier_start_with_class_repeat1, + STATE(3756), 2, sym__soft_line_break, sym__inline_whitespace, - [107226] = 8, - ACTIONS(6540), 1, + [120798] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6730), 1, - anon_sym_RPAREN, - ACTIONS(6732), 1, + ACTIONS(6995), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3212), 2, + STATE(2401), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [107252] = 8, - ACTIONS(6540), 1, + STATE(2689), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2852), 1, + aux_sym_shortcode_escaped_repeat2, + [120817] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6734), 1, - anon_sym_RPAREN, - ACTIONS(6736), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3143), 2, + STATE(2402), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107278] = 8, - ACTIONS(6540), 1, + STATE(2690), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2854), 1, + aux_sym_shortcode_repeat1, + [120836] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6738), 1, - anon_sym_RPAREN, - ACTIONS(6740), 1, + ACTIONS(6995), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3112), 2, + STATE(2403), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [107304] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2855), 1, + aux_sym_shortcode_escaped_repeat2, + [120855] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6742), 1, - anon_sym_RPAREN, - ACTIONS(6744), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3115), 2, + STATE(2404), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107330] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2856), 1, + aux_sym_shortcode_repeat1, + [120874] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6746), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, + ACTIONS(6995), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, + STATE(2421), 1, + sym__shortcode_sep, + STATE(2500), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2760), 1, + aux_sym_shortcode_escaped_repeat2, + [120893] = 5, + ACTIONS(7043), 1, + sym__shortcode_open, + ACTIONS(7137), 1, + aux_sym__commonmark_single_quote_string_token1, + ACTIONS(7139), 1, + aux_sym__commonmark_single_quote_string_token3, + ACTIONS(7141), 1, + aux_sym__commonmark_single_quote_string_token4, + STATE(2624), 2, sym_shortcode, - STATE(3185), 2, + aux_sym__commonmark_single_quote_string_repeat1, + [120910] = 6, + ACTIONS(6556), 1, + sym__soft_line_ending, + ACTIONS(6995), 1, + sym__whitespace, + STATE(2379), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [107356] = 7, - ACTIONS(6750), 1, + STATE(2606), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2809), 1, + aux_sym_shortcode_escaped_repeat2, + [120929] = 6, + ACTIONS(6899), 1, anon_sym_COLON, - ACTIONS(6753), 1, + ACTIONS(6901), 1, anon_sym_DASH, - ACTIONS(6756), 1, + ACTIONS(7007), 1, sym__whitespace, - STATE(2436), 1, + STATE(2523), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2552), 1, + STATE(2834), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3222), 1, + STATE(3353), 1, sym_pipe_table_delimiter_cell, - ACTIONS(6759), 3, + [120948] = 6, + ACTIONS(113), 1, sym__line_ending, - sym__eof, + ACTIONS(7029), 1, sym__pipe_table_line_ending, - [107380] = 8, - ACTIONS(6540), 1, + ACTIONS(7143), 1, + sym__eof, + STATE(133), 1, + sym__pipe_table_newline, + STATE(399), 1, + sym__newline, + STATE(2740), 1, + aux_sym_pipe_table_repeat1, + [120967] = 5, + ACTIONS(7045), 1, + anon_sym_RBRACE, + ACTIONS(7049), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6761), 1, - anon_sym_RPAREN, - ACTIONS(6763), 1, + ACTIONS(7145), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3203), 2, + STATE(2649), 1, + aux_sym__commonmark_specifier_start_with_class_repeat1, + STATE(2935), 2, sym__soft_line_break, sym__inline_whitespace, - [107406] = 7, - ACTIONS(6682), 1, - anon_sym_COLON, - ACTIONS(6684), 1, - anon_sym_DASH, - ACTIONS(6765), 1, - sym__whitespace, - STATE(2436), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2465), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2583), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(6767), 3, + [120984] = 1, + ACTIONS(7147), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [107430] = 8, - ACTIONS(6540), 1, + anon_sym_COLON, + anon_sym_DASH, + sym__whitespace, + [120993] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6769), 1, - anon_sym_RPAREN, - ACTIONS(6771), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3126), 2, + STATE(2385), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107456] = 8, - ACTIONS(6540), 1, + STATE(2633), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2829), 1, + aux_sym_shortcode_repeat1, + [121012] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6773), 1, - anon_sym_RPAREN, - ACTIONS(6775), 1, + ACTIONS(6995), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3172), 2, + STATE(2406), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [107482] = 8, - ACTIONS(6540), 1, + STATE(2701), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2859), 1, + aux_sym_shortcode_escaped_repeat2, + [121031] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6777), 1, - anon_sym_RPAREN, - ACTIONS(6779), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3096), 2, + STATE(2407), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107508] = 8, - ACTIONS(6540), 1, + STATE(2702), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2860), 1, + aux_sym_shortcode_repeat1, + [121050] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6781), 1, - anon_sym_RPAREN, - ACTIONS(6783), 1, + ACTIONS(6995), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3175), 2, + STATE(2408), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [107534] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2861), 1, + aux_sym_shortcode_escaped_repeat2, + [121069] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6785), 1, - anon_sym_RPAREN, - ACTIONS(6787), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3194), 2, + STATE(2409), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107560] = 3, - ACTIONS(6789), 1, - sym_block_continuation, - ACTIONS(2707), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(2705), 5, - sym__language_specifier_token, - sym__shortcode_open, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_number, - [107576] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2862), 1, + aux_sym_shortcode_repeat1, + [121088] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6791), 1, - anon_sym_RPAREN, - ACTIONS(6793), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3158), 2, + STATE(2410), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107602] = 8, - ACTIONS(6540), 1, + STATE(2704), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2863), 1, + aux_sym_shortcode_repeat1, + [121107] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6795), 1, - anon_sym_RPAREN, - ACTIONS(6797), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3083), 2, + STATE(2411), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107628] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2864), 1, + aux_sym_shortcode_repeat1, + [121126] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6799), 1, - anon_sym_RPAREN, - ACTIONS(6801), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3161), 2, + STATE(2412), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107654] = 8, - ACTIONS(6540), 1, + STATE(2706), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2865), 1, + aux_sym_shortcode_repeat1, + [121145] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6803), 1, - anon_sym_RPAREN, - ACTIONS(6805), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3123), 2, + STATE(2413), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107680] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2866), 1, + aux_sym_shortcode_repeat1, + [121164] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6807), 1, - anon_sym_RPAREN, - ACTIONS(6809), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3150), 2, + STATE(2376), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107706] = 8, - ACTIONS(6540), 1, + STATE(2708), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2867), 1, + aux_sym_shortcode_repeat1, + [121183] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6811), 1, - anon_sym_RPAREN, - ACTIONS(6813), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3179), 2, + STATE(2414), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107732] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2868), 1, + aux_sym_shortcode_repeat1, + [121202] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6815), 1, - anon_sym_RPAREN, - ACTIONS(6817), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3197), 2, + STATE(2415), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107758] = 8, - ACTIONS(6540), 1, + STATE(2710), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2870), 1, + aux_sym_shortcode_repeat1, + [121221] = 6, + ACTIONS(6554), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6819), 1, - anon_sym_RPAREN, - ACTIONS(6821), 1, + ACTIONS(6997), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3182), 2, + STATE(2416), 1, + sym__shortcode_sep, + STATE(2495), 1, sym__soft_line_break, - sym__inline_whitespace, - [107784] = 8, - ACTIONS(6540), 1, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2797), 1, + aux_sym_shortcode_repeat1, + [121240] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6823), 1, - anon_sym_RPAREN, - ACTIONS(6825), 1, + ACTIONS(6995), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3134), 2, + STATE(2442), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [107810] = 8, - ACTIONS(6540), 1, + STATE(2660), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2800), 1, + aux_sym_shortcode_escaped_repeat2, + [121259] = 6, + ACTIONS(6556), 1, sym__soft_line_ending, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6827), 1, - anon_sym_RPAREN, - ACTIONS(6829), 1, + ACTIONS(6995), 1, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(3120), 2, + STATE(2380), 1, + sym__shortcode_sep, + STATE(2500), 1, sym__soft_line_break, - sym__inline_whitespace, - [107836] = 7, - ACTIONS(6682), 1, - anon_sym_COLON, - ACTIONS(6684), 1, - anon_sym_DASH, - ACTIONS(6831), 1, + STATE(2604), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(2835), 1, + aux_sym_shortcode_escaped_repeat2, + [121278] = 3, + ACTIONS(7149), 1, sym__whitespace, - STATE(2436), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2465), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2617), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(6833), 3, + ACTIONS(7151), 1, + sym__pipe_table_delimiter, + ACTIONS(2501), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [107860] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6835), 1, - sym__whitespace, - ACTIONS(6837), 1, - sym__soft_line_ending, - STATE(2427), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2723), 2, - sym__soft_line_break, - sym__inline_whitespace, - [107883] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, - sym__soft_line_ending, - ACTIONS(6839), 1, - sym__whitespace, - STATE(2433), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2681), 2, - sym__soft_line_break, - sym__inline_whitespace, - [107906] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, - sym__soft_line_ending, - ACTIONS(6841), 1, + [121290] = 4, + ACTIONS(7153), 1, + aux_sym_inline_note_token1, + ACTIONS(7155), 1, sym__whitespace, - STATE(2428), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2704), 2, - sym__soft_line_break, - sym__inline_whitespace, - [107929] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, + ACTIONS(7157), 1, sym__soft_line_ending, - ACTIONS(6843), 1, - sym__whitespace, - STATE(2450), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2621), 2, + STATE(3729), 2, sym__soft_line_break, sym__inline_whitespace, - [107952] = 4, - ACTIONS(6845), 1, - anon_sym_COLON, - ACTIONS(6847), 1, - anon_sym_DASH, - STATE(2471), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(6849), 5, + [121304] = 1, + ACTIONS(7159), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, sym__pipe_table_delimiter, sym__whitespace, - [107969] = 6, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6851), 1, - anon_sym_RBRACE, - ACTIONS(6853), 1, - sym__whitespace, - ACTIONS(6855), 1, + [121312] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - STATE(2469), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - STATE(2581), 2, + ACTIONS(7161), 1, + aux_sym_inline_note_token1, + ACTIONS(7163), 1, + sym__whitespace, + STATE(4160), 2, sym__soft_line_break, sym__inline_whitespace, - [107990] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, + [121326] = 4, + ACTIONS(6438), 1, sym__soft_line_ending, - ACTIONS(6857), 1, + ACTIONS(7121), 1, + anon_sym_RBRACE, + ACTIONS(7165), 1, sym__whitespace, - STATE(2435), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2716), 2, + STATE(3733), 2, sym__soft_line_break, sym__inline_whitespace, - [108013] = 2, - ACTIONS(3083), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(3081), 5, - sym__language_specifier_token, - sym__shortcode_open, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - sym_shortcode_number, - [108026] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, + [121340] = 5, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7167), 1, + aux_sym_pandoc_span_token1, + ACTIONS(7169), 1, + aux_sym_target_token1, + STATE(894), 1, + sym__soft_line_break, + STATE(2726), 1, + aux_sym__inlines_repeat1, + [121356] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - ACTIONS(6859), 1, + ACTIONS(7171), 1, + aux_sym_inline_note_token1, + ACTIONS(7173), 1, sym__whitespace, - STATE(2439), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2684), 2, + STATE(3834), 2, sym__soft_line_break, sym__inline_whitespace, - [108049] = 4, - ACTIONS(6847), 1, - anon_sym_DASH, - ACTIONS(6861), 1, - anon_sym_COLON, - STATE(2471), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(6863), 5, + [121370] = 1, + ACTIONS(7175), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, sym__pipe_table_delimiter, sym__whitespace, - [108066] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, + [121378] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - ACTIONS(6865), 1, + ACTIONS(7177), 1, + aux_sym_inline_note_token1, + ACTIONS(7179), 1, sym__whitespace, - STATE(2443), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2721), 2, + STATE(3948), 2, sym__soft_line_break, sym__inline_whitespace, - [108089] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, + [121392] = 3, + ACTIONS(6444), 1, + sym__key_specifier_token, + STATE(2876), 1, + sym__commonmark_key_value_specifier, + ACTIONS(7181), 3, sym__soft_line_ending, - ACTIONS(6867), 1, + anon_sym_RBRACE, sym__whitespace, - STATE(2426), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2688), 2, - sym__soft_line_break, - sym__inline_whitespace, - [108112] = 8, - ACTIONS(6869), 1, - anon_sym_COLON, - ACTIONS(6871), 1, - anon_sym_DASH, - ACTIONS(6873), 1, + [121404] = 3, + ACTIONS(7183), 1, sym__whitespace, - ACTIONS(6875), 1, + ACTIONS(7185), 1, sym__pipe_table_delimiter, - STATE(2420), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2537), 1, - sym_pipe_table_delimiter_row, - STATE(2552), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3222), 1, - sym_pipe_table_delimiter_cell, - [108137] = 6, - ACTIONS(6877), 1, - anon_sym_RBRACE, - ACTIONS(6879), 1, - sym__whitespace, - ACTIONS(6882), 1, + ACTIONS(2613), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [121416] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - ACTIONS(6885), 1, - sym__key_specifier_token, - STATE(2469), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - STATE(3069), 2, + ACTIONS(7187), 1, + aux_sym_inline_note_token1, + ACTIONS(7189), 1, + sym__whitespace, + STATE(3871), 2, sym__soft_line_break, sym__inline_whitespace, - [108158] = 6, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6851), 1, - anon_sym_RBRACE, - ACTIONS(6888), 1, - sym__whitespace, - ACTIONS(6890), 1, + [121430] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - STATE(2469), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - STATE(2834), 2, + ACTIONS(7191), 1, + aux_sym_inline_note_token1, + ACTIONS(7193), 1, + sym__whitespace, + STATE(3941), 2, sym__soft_line_break, sym__inline_whitespace, - [108179] = 3, - ACTIONS(6894), 1, - anon_sym_DASH, - STATE(2471), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(6892), 6, + [121444] = 5, + ACTIONS(7195), 1, + aux_sym_pandoc_span_token1, + ACTIONS(7197), 1, + aux_sym_target_token1, + ACTIONS(7199), 1, + sym__soft_line_ending, + STATE(894), 1, + sym__soft_line_break, + STATE(2726), 1, + aux_sym__inlines_repeat1, + [121460] = 3, + ACTIONS(7202), 1, + sym__whitespace, + ACTIONS(7204), 1, + sym__pipe_table_delimiter, + ACTIONS(6770), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - sym__pipe_table_delimiter, - anon_sym_COLON, + [121472] = 5, + ACTIONS(7206), 1, sym__whitespace, - [108194] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(6897), 1, - sym__whitespace, - STATE(2440), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2707), 2, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [108217] = 6, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6855), 1, + STATE(3190), 1, + sym__shortcode_sep, + [121488] = 4, + ACTIONS(6891), 1, sym__soft_line_ending, - ACTIONS(6899), 1, + ACTIONS(7105), 1, anon_sym_RBRACE, - ACTIONS(6901), 1, + ACTIONS(7210), 1, sym__whitespace, - STATE(2461), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - STATE(2557), 2, + STATE(2675), 2, sym__soft_line_break, sym__inline_whitespace, - [108238] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, + [121502] = 1, + ACTIONS(6168), 5, + sym__soft_line_ending, sym__shortcode_open, - ACTIONS(6837), 1, + aux_sym_target_token2, + anon_sym_RPAREN, + sym__whitespace, + [121510] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - ACTIONS(6903), 1, + ACTIONS(7212), 1, + aux_sym_inline_note_token1, + ACTIONS(7214), 1, sym__whitespace, - STATE(2454), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2683), 2, + STATE(3747), 2, sym__soft_line_break, sym__inline_whitespace, - [108261] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, + [121524] = 1, + ACTIONS(6172), 5, + sym__soft_line_ending, sym__shortcode_open, - ACTIONS(6837), 1, + aux_sym_target_token2, + anon_sym_RPAREN, + sym__whitespace, + [121532] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - ACTIONS(6905), 1, + ACTIONS(7216), 1, + aux_sym_inline_note_token1, + ACTIONS(7218), 1, sym__whitespace, - STATE(2453), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2686), 2, + STATE(3922), 2, sym__soft_line_break, sym__inline_whitespace, - [108284] = 8, - ACTIONS(6869), 1, - anon_sym_COLON, - ACTIONS(6871), 1, - anon_sym_DASH, - ACTIONS(6873), 1, + [121546] = 1, + ACTIONS(6176), 5, + sym__soft_line_ending, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, sym__whitespace, - ACTIONS(6875), 1, - sym__pipe_table_delimiter, - STATE(2420), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2513), 1, - sym_pipe_table_delimiter_row, - STATE(2552), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3222), 1, - sym_pipe_table_delimiter_cell, - [108309] = 8, - ACTIONS(6869), 1, - anon_sym_COLON, - ACTIONS(6871), 1, - anon_sym_DASH, - ACTIONS(6873), 1, + [121554] = 2, + ACTIONS(7220), 1, + sym_block_continuation, + ACTIONS(2419), 4, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_RBRACE, sym__whitespace, - ACTIONS(6875), 1, + [121564] = 3, + ACTIONS(7204), 1, sym__pipe_table_delimiter, - STATE(2420), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2507), 1, - sym_pipe_table_delimiter_row, - STATE(2552), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3222), 1, - sym_pipe_table_delimiter_cell, - [108334] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, - sym__soft_line_ending, - ACTIONS(6907), 1, + ACTIONS(7222), 1, sym__whitespace, - STATE(2445), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2700), 2, + ACTIONS(6696), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [121576] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + STATE(893), 1, sym__soft_line_break, - sym__inline_whitespace, - [108357] = 6, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6890), 1, + STATE(2743), 1, + aux_sym__inlines_repeat1, + ACTIONS(7169), 2, + sym__line_ending, + sym__eof, + [121590] = 4, + ACTIONS(6438), 1, sym__soft_line_ending, - ACTIONS(6899), 1, - anon_sym_RBRACE, - ACTIONS(6909), 1, + ACTIONS(7224), 1, + anon_sym_EQ, + ACTIONS(7226), 1, sym__whitespace, - STATE(2470), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - STATE(2811), 2, + STATE(3522), 2, sym__soft_line_break, sym__inline_whitespace, - [108378] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, + [121604] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - ACTIONS(6911), 1, + ACTIONS(7228), 1, + aux_sym_inline_note_token1, + ACTIONS(7230), 1, sym__whitespace, - STATE(2419), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2725), 2, + STATE(3572), 2, sym__soft_line_break, sym__inline_whitespace, - [108401] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, + [121618] = 4, + ACTIONS(7234), 1, + sym__pipe_table_line_ending, + STATE(152), 1, + sym__pipe_table_newline, + STATE(2740), 1, + aux_sym_pipe_table_repeat1, + ACTIONS(7232), 2, + sym__line_ending, + sym__eof, + [121632] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - ACTIONS(6913), 1, + ACTIONS(7237), 1, + aux_sym_inline_note_token1, + ACTIONS(7239), 1, sym__whitespace, - STATE(2441), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2673), 2, + STATE(3596), 2, sym__soft_line_break, sym__inline_whitespace, - [108424] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, + [121646] = 3, + ACTIONS(7241), 1, + sym__whitespace, + ACTIONS(7243), 1, + sym__pipe_table_delimiter, + ACTIONS(6696), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [121658] = 4, + ACTIONS(7199), 1, sym__soft_line_ending, - ACTIONS(6915), 1, + STATE(893), 1, + sym__soft_line_break, + STATE(2743), 1, + aux_sym__inlines_repeat1, + ACTIONS(7197), 2, + sym__line_ending, + sym__eof, + [121672] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7245), 1, + aux_sym_inline_note_token1, + ACTIONS(7247), 1, sym__whitespace, - STATE(2449), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2694), 2, + STATE(3724), 2, sym__soft_line_break, sym__inline_whitespace, - [108447] = 7, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - ACTIONS(6837), 1, + [121686] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - ACTIONS(6917), 1, + ACTIONS(7249), 1, + aux_sym_inline_note_token1, + ACTIONS(7251), 1, sym__whitespace, - STATE(2446), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - STATE(2695), 2, + STATE(3737), 2, sym__soft_line_break, sym__inline_whitespace, - [108470] = 1, - ACTIONS(3169), 7, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - ts_builtin_sym_end, - [108480] = 6, - ACTIONS(6919), 1, - sym__code_line, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6923), 1, - sym__block_close, - ACTIONS(6925), 1, - sym__fenced_code_block_end_backtick, - STATE(3047), 1, - sym_code_fence_content, - STATE(2509), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [108500] = 5, - ACTIONS(6682), 1, - anon_sym_COLON, - ACTIONS(6684), 1, - anon_sym_DASH, - STATE(2465), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2615), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(6833), 3, + [121700] = 3, + ACTIONS(7151), 1, + sym__pipe_table_delimiter, + ACTIONS(7253), 1, + sym__whitespace, + ACTIONS(2613), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [108518] = 5, - ACTIONS(6682), 1, - anon_sym_COLON, - ACTIONS(6684), 1, + [121712] = 3, + ACTIONS(7255), 1, anon_sym_DASH, - STATE(2465), 1, + STATE(2747), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2612), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(6927), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [108536] = 4, - ACTIONS(6664), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6666), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(3562), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6670), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [108552] = 5, - ACTIONS(6682), 1, + ACTIONS(6934), 3, + sym__pipe_table_delimiter, anon_sym_COLON, - ACTIONS(6684), 1, - anon_sym_DASH, - STATE(2465), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2592), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(6767), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [108570] = 6, - ACTIONS(6919), 1, - sym__code_line, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6929), 1, - sym__block_close, - ACTIONS(6931), 1, - sym__fenced_code_block_end_backtick, - STATE(3189), 1, - sym_code_fence_content, - STATE(2509), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [108590] = 6, - ACTIONS(6919), 1, - sym__code_line, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6933), 1, - sym__block_close, - ACTIONS(6935), 1, - sym__fenced_code_block_end_backtick, - STATE(3077), 1, - sym_code_fence_content, - STATE(2509), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [108610] = 5, - ACTIONS(6937), 1, - aux_sym_target_token2, - ACTIONS(6942), 1, - sym__shortcode_open, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - ACTIONS(6940), 3, - sym__soft_line_ending, - anon_sym_RPAREN, sym__whitespace, - [108628] = 6, - ACTIONS(6919), 1, - sym__code_line, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6945), 1, - sym__block_close, - ACTIONS(6947), 1, - sym__fenced_code_block_end_backtick, - STATE(3074), 1, - sym_code_fence_content, - STATE(2509), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [108648] = 6, - ACTIONS(6919), 1, - sym__code_line, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6949), 1, - sym__block_close, - ACTIONS(6951), 1, - sym__fenced_code_block_end_backtick, - STATE(3130), 1, - sym_code_fence_content, - STATE(2509), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [108668] = 4, - ACTIONS(6664), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6666), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(3770), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6953), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [108684] = 6, - ACTIONS(6919), 1, - sym__code_line, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6955), 1, - sym__block_close, - ACTIONS(6957), 1, - sym__fenced_code_block_end_backtick, - STATE(3154), 1, - sym_code_fence_content, - STATE(2509), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [108704] = 6, - ACTIONS(6919), 1, - sym__code_line, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6959), 1, - sym__block_close, - ACTIONS(6961), 1, - sym__fenced_code_block_end_backtick, - STATE(3101), 1, - sym_code_fence_content, - STATE(2509), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [108724] = 6, - ACTIONS(6919), 1, - sym__code_line, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6963), 1, - sym__block_close, - ACTIONS(6965), 1, - sym__fenced_code_block_end_backtick, - STATE(3063), 1, - sym_code_fence_content, - STATE(2509), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [108744] = 6, - ACTIONS(6919), 1, - sym__code_line, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6967), 1, - sym__block_close, - ACTIONS(6969), 1, - sym__fenced_code_block_end_backtick, - STATE(3144), 1, - sym_code_fence_content, - STATE(2509), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [108764] = 4, - ACTIONS(6650), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6652), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(2699), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6971), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [108780] = 4, - ACTIONS(6650), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6652), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(2631), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6658), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [108796] = 2, - ACTIONS(6973), 1, - sym_block_continuation, - ACTIONS(2705), 6, + [121724] = 4, + ACTIONS(6891), 1, + sym__soft_line_ending, + ACTIONS(7258), 1, anon_sym_RBRACE, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token2, - anon_sym_EQ, - aux_sym__commonmark_double_quote_string_token1, + ACTIONS(7260), 1, + sym__whitespace, + STATE(2665), 2, + sym__soft_line_break, + sym__inline_whitespace, + [121738] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7262), 1, aux_sym_inline_note_token1, - [108808] = 6, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6975), 1, - anon_sym_LBRACE, - ACTIONS(6977), 1, - sym__commonmark_naked_value, - ACTIONS(6979), 1, + ACTIONS(7264), 1, sym__whitespace, - STATE(2493), 1, - sym__newline, - STATE(3103), 1, - sym_attribute_specifier, - [108827] = 5, - ACTIONS(6981), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6983), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(6986), 1, - aux_sym__commonmark_double_quote_string_token4, - ACTIONS(6989), 1, - sym__shortcode_open, - STATE(2504), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [108844] = 4, - ACTIONS(6992), 1, - sym__code_line, - ACTIONS(6995), 1, - sym__line_ending, - ACTIONS(6998), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(2505), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [108859] = 6, - ACTIONS(6869), 1, - anon_sym_COLON, - ACTIONS(6871), 1, - anon_sym_DASH, - ACTIONS(7000), 1, + STATE(3907), 2, + sym__soft_line_break, + sym__inline_whitespace, + [121752] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7266), 1, + aux_sym_inline_note_token1, + ACTIONS(7268), 1, sym__whitespace, - STATE(2438), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2552), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3222), 1, - sym_pipe_table_delimiter_cell, - [108878] = 6, - ACTIONS(25), 1, - sym__line_ending, - ACTIONS(7002), 1, - sym__eof, - ACTIONS(7004), 1, - sym__pipe_table_line_ending, - STATE(130), 1, - sym__pipe_table_newline, - STATE(486), 1, - sym__newline, - STATE(2516), 1, - aux_sym_pipe_table_repeat1, - [108897] = 3, - ACTIONS(7006), 1, - sym_block_continuation, - ACTIONS(2707), 2, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(2705), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [108910] = 4, - ACTIONS(6921), 1, + STATE(3927), 2, + sym__soft_line_break, + sym__inline_whitespace, + [121766] = 2, + ACTIONS(7270), 1, + sym_block_continuation, + ACTIONS(2413), 4, sym__line_ending, - ACTIONS(7008), 1, - sym__code_line, - ACTIONS(7010), 2, sym__block_close, sym__fenced_code_block_end_backtick, - STATE(2505), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [108925] = 5, - ACTIONS(7012), 1, - anon_sym_RBRACE, - ACTIONS(7014), 1, + sym__code_line, + [121776] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7272), 1, + aux_sym_inline_note_token1, + ACTIONS(7274), 1, sym__whitespace, - ACTIONS(7016), 1, + STATE(4070), 2, + sym__soft_line_break, + sym__inline_whitespace, + [121790] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - STATE(2523), 1, - aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(2639), 2, + ACTIONS(7276), 1, + aux_sym_inline_note_token1, + ACTIONS(7278), 1, + sym__whitespace, + STATE(4131), 2, sym__soft_line_break, sym__inline_whitespace, - [108942] = 5, - ACTIONS(7018), 1, - anon_sym_RBRACE, - ACTIONS(7020), 1, + [121804] = 3, + ACTIONS(7151), 1, + sym__pipe_table_delimiter, + ACTIONS(7280), 1, sym__whitespace, - ACTIONS(7023), 1, + ACTIONS(2737), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [121816] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - STATE(2511), 1, - aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(3290), 2, + ACTIONS(7282), 1, + aux_sym_inline_note_token1, + ACTIONS(7284), 1, + sym__whitespace, + STATE(3604), 2, sym__soft_line_break, sym__inline_whitespace, - [108959] = 5, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(7026), 1, - anon_sym_RBRACE, - ACTIONS(7028), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - STATE(2473), 1, - sym__commonmark_key_value_specifier, - STATE(2575), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [108976] = 6, - ACTIONS(181), 1, + [121830] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7286), 1, + aux_sym_inline_note_token1, + ACTIONS(7288), 1, + sym__whitespace, + STATE(3629), 2, + sym__soft_line_break, + sym__inline_whitespace, + [121844] = 3, + ACTIONS(7243), 1, + sym__pipe_table_delimiter, + ACTIONS(7290), 1, + sym__whitespace, + ACTIONS(6993), 3, sym__line_ending, - ACTIONS(7004), 1, - sym__pipe_table_line_ending, - ACTIONS(7030), 1, sym__eof, - STATE(132), 1, - sym__pipe_table_newline, - STATE(321), 1, - sym__newline, - STATE(2518), 1, - aux_sym_pipe_table_repeat1, - [108995] = 6, - ACTIONS(6869), 1, + sym__pipe_table_line_ending, + [121856] = 4, + ACTIONS(7292), 1, anon_sym_COLON, - ACTIONS(6871), 1, + ACTIONS(7294), 1, anon_sym_DASH, - ACTIONS(7000), 1, - sym__whitespace, - STATE(2455), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2552), 1, + STATE(2747), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3222), 1, - sym_pipe_table_delimiter_cell, - [109014] = 6, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6975), 1, - anon_sym_LBRACE, - ACTIONS(7032), 1, - sym__commonmark_naked_value, - ACTIONS(7034), 1, + ACTIONS(6911), 2, + sym__pipe_table_delimiter, sym__whitespace, - STATE(2498), 1, - sym__newline, - STATE(3068), 1, - sym_attribute_specifier, - [109033] = 6, - ACTIONS(25), 1, - sym__line_ending, - ACTIONS(7004), 1, - sym__pipe_table_line_ending, - ACTIONS(7036), 1, - sym__eof, - STATE(131), 1, - sym__pipe_table_newline, - STATE(521), 1, - sym__newline, - STATE(2591), 1, - aux_sym_pipe_table_repeat1, - [109052] = 1, - ACTIONS(6759), 6, + [121870] = 5, + ACTIONS(7296), 1, + sym__whitespace, + ACTIONS(7299), 1, + sym__soft_line_ending, + STATE(2482), 1, + sym__shortcode_sep, + STATE(2530), 1, + sym__soft_line_break, + STATE(2759), 1, + aux_sym_shortcode_escaped_repeat1, + [121886] = 5, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3063), 1, + sym__shortcode_sep, + STATE(3074), 1, + sym__soft_line_break, + [121902] = 3, + ACTIONS(7204), 1, + sym__pipe_table_delimiter, + ACTIONS(7302), 1, + sym__whitespace, + ACTIONS(6993), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - anon_sym_COLON, - anon_sym_DASH, + [121914] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7304), 1, + aux_sym_inline_note_token1, + ACTIONS(7306), 1, + sym__whitespace, + STATE(3905), 2, + sym__soft_line_break, + sym__inline_whitespace, + [121928] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7308), 1, + aux_sym_inline_note_token1, + ACTIONS(7310), 1, + sym__whitespace, + STATE(3926), 2, + sym__soft_line_break, + sym__inline_whitespace, + [121942] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7312), 1, + aux_sym_inline_note_token1, + ACTIONS(7314), 1, + sym__whitespace, + STATE(3609), 2, + sym__soft_line_break, + sym__inline_whitespace, + [121956] = 5, + ACTIONS(7316), 1, + sym__whitespace, + ACTIONS(7319), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3339), 1, + sym__shortcode_sep, + STATE(3376), 1, + sym__soft_line_break, + [121972] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7322), 1, + anon_sym_EQ, + ACTIONS(7324), 1, + sym__whitespace, + STATE(3796), 2, + sym__soft_line_break, + sym__inline_whitespace, + [121986] = 3, + ACTIONS(7185), 1, + sym__pipe_table_delimiter, + ACTIONS(7326), 1, sym__whitespace, - [109061] = 6, - ACTIONS(181), 1, + ACTIONS(2629), 3, sym__line_ending, - ACTIONS(7004), 1, - sym__pipe_table_line_ending, - ACTIONS(7038), 1, sym__eof, - STATE(133), 1, - sym__pipe_table_newline, - STATE(331), 1, - sym__newline, - STATE(2591), 1, - aux_sym_pipe_table_repeat1, - [109080] = 5, - ACTIONS(7040), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(7042), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7045), 1, - aux_sym__commonmark_single_quote_string_token4, - ACTIONS(7048), 1, - sym__shortcode_open, - STATE(2519), 2, - sym_shortcode, - aux_sym__commonmark_single_quote_string_repeat1, - [109097] = 5, - ACTIONS(7051), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(7053), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7055), 1, - aux_sym__commonmark_single_quote_string_token4, - ACTIONS(7057), 1, - sym__shortcode_open, - STATE(2529), 2, - sym_shortcode, - aux_sym__commonmark_single_quote_string_repeat1, - [109114] = 5, - ACTIONS(7059), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7061), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7063), 1, - aux_sym__commonmark_double_quote_string_token4, - ACTIONS(7065), 1, - sym__shortcode_open, - STATE(2530), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [109131] = 5, - ACTIONS(6546), 1, + sym__pipe_table_line_ending, + [121998] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7328), 1, + aux_sym_inline_note_token1, + ACTIONS(7330), 1, + sym__whitespace, + STATE(3429), 2, + sym__soft_line_break, + sym__inline_whitespace, + [122012] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7332), 1, + aux_sym_inline_note_token1, + ACTIONS(7334), 1, + sym__whitespace, + STATE(3437), 2, + sym__soft_line_break, + sym__inline_whitespace, + [122026] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7336), 1, + aux_sym_inline_note_token1, + ACTIONS(7338), 1, + sym__whitespace, + STATE(3537), 2, + sym__soft_line_break, + sym__inline_whitespace, + [122040] = 2, + ACTIONS(7340), 1, + sym_block_continuation, + ACTIONS(2419), 4, sym__key_specifier_token, - ACTIONS(7028), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(7067), 1, anon_sym_RBRACE, - STATE(2473), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + sym__whitespace, + [122050] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7342), 1, + aux_sym_inline_note_token1, + ACTIONS(7344), 1, + sym__whitespace, + STATE(3497), 2, + sym__soft_line_break, + sym__inline_whitespace, + [122064] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7346), 1, + aux_sym_inline_note_token1, + ACTIONS(7348), 1, + sym__whitespace, + STATE(3505), 2, + sym__soft_line_break, + sym__inline_whitespace, + [122078] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3090), 1, + sym__shortcode_sep, + STATE(3107), 1, + sym__soft_line_break, + [122094] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7354), 1, + aux_sym_inline_note_token1, + ACTIONS(7356), 1, + sym__whitespace, + STATE(3565), 2, + sym__soft_line_break, + sym__inline_whitespace, + [122108] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7358), 1, + aux_sym_inline_note_token1, + ACTIONS(7360), 1, + sym__whitespace, + STATE(3613), 2, + sym__soft_line_break, + sym__inline_whitespace, + [122122] = 3, + ACTIONS(6444), 1, + sym__key_specifier_token, + STATE(2876), 1, sym__commonmark_key_value_specifier, - STATE(2611), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [109148] = 5, - ACTIONS(7016), 1, + ACTIONS(6893), 3, sym__soft_line_ending, - ACTIONS(7069), 1, anon_sym_RBRACE, - ACTIONS(7071), 1, sym__whitespace, - STATE(2511), 1, - aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(2702), 2, + [122134] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7362), 1, + aux_sym_inline_note_token1, + ACTIONS(7364), 1, + sym__whitespace, + STATE(3573), 2, sym__soft_line_break, sym__inline_whitespace, - [109165] = 1, - ACTIONS(7073), 6, + [122148] = 5, + ACTIONS(7366), 1, + sym__whitespace, + ACTIONS(7369), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3363), 1, + sym__shortcode_sep, + STATE(3376), 1, + sym__soft_line_break, + [122164] = 1, + ACTIONS(7372), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - anon_sym_COLON, - anon_sym_DASH, + sym__pipe_table_delimiter, sym__whitespace, - [109174] = 6, - ACTIONS(6921), 1, + [122172] = 5, + ACTIONS(6941), 1, sym__line_ending, - ACTIONS(6975), 1, + ACTIONS(7009), 1, anon_sym_LBRACE, - ACTIONS(7075), 1, + ACTIONS(7374), 1, sym__commonmark_naked_value, - ACTIONS(7077), 1, - sym__whitespace, - STATE(2494), 1, + STATE(2599), 1, sym__newline, - STATE(3087), 1, + STATE(3304), 1, sym_attribute_specifier, - [109193] = 6, - ACTIONS(111), 1, - sym__line_ending, - ACTIONS(7004), 1, - sym__pipe_table_line_ending, - ACTIONS(7079), 1, - sym__eof, - STATE(129), 1, - sym__pipe_table_newline, - STATE(541), 1, - sym__newline, - STATE(2591), 1, - aux_sym_pipe_table_repeat1, - [109212] = 5, - ACTIONS(7012), 1, - anon_sym_RBRACE, - ACTIONS(7016), 1, + [122188] = 4, + ACTIONS(6438), 1, sym__soft_line_ending, - ACTIONS(7081), 1, + ACTIONS(7376), 1, + anon_sym_EQ, + ACTIONS(7378), 1, sym__whitespace, - STATE(2528), 1, - aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(2687), 2, + STATE(3647), 2, sym__soft_line_break, sym__inline_whitespace, - [109229] = 5, - ACTIONS(7016), 1, + [122202] = 5, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7069), 1, - anon_sym_RBRACE, - ACTIONS(7083), 1, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3037), 1, + sym__shortcode_sep, + STATE(3074), 1, + sym__soft_line_break, + [122218] = 5, + ACTIONS(7350), 1, sym__whitespace, - STATE(2511), 1, - aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(2697), 2, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3039), 1, + sym__shortcode_sep, + STATE(3107), 1, sym__soft_line_break, - sym__inline_whitespace, - [109246] = 5, - ACTIONS(7057), 1, - sym__shortcode_open, - ACTIONS(7085), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(7087), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7089), 1, - aux_sym__commonmark_single_quote_string_token4, - STATE(2519), 2, - sym_shortcode, - aux_sym__commonmark_single_quote_string_repeat1, - [109263] = 5, - ACTIONS(7065), 1, - sym__shortcode_open, - ACTIONS(7091), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7093), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7095), 1, - aux_sym__commonmark_double_quote_string_token4, - STATE(2504), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [109280] = 5, - ACTIONS(7057), 1, - sym__shortcode_open, - ACTIONS(7097), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(7099), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7101), 1, - aux_sym__commonmark_single_quote_string_token4, - STATE(2533), 2, - sym_shortcode, - aux_sym__commonmark_single_quote_string_repeat1, - [109297] = 5, - ACTIONS(7065), 1, - sym__shortcode_open, - ACTIONS(7103), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7105), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7107), 1, - aux_sym__commonmark_double_quote_string_token4, - STATE(2534), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [109314] = 5, - ACTIONS(7057), 1, - sym__shortcode_open, - ACTIONS(7087), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7089), 1, - aux_sym__commonmark_single_quote_string_token4, - ACTIONS(7109), 1, - aux_sym__commonmark_single_quote_string_token1, - STATE(2519), 2, - sym_shortcode, - aux_sym__commonmark_single_quote_string_repeat1, - [109331] = 5, - ACTIONS(7065), 1, - sym__shortcode_open, - ACTIONS(7093), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7095), 1, - aux_sym__commonmark_double_quote_string_token4, - ACTIONS(7111), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(2504), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [109348] = 1, - ACTIONS(3081), 6, - anon_sym_RBRACE, - aux_sym_commonmark_specifier_token1, - aux_sym__commonmark_specifier_start_with_class_token2, - anon_sym_EQ, - aux_sym__commonmark_double_quote_string_token1, - aux_sym_inline_note_token1, - [109357] = 1, - ACTIONS(7113), 6, + [122234] = 5, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3060), 1, + sym__shortcode_sep, + STATE(3074), 1, + sym__soft_line_break, + [122250] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3061), 1, + sym__shortcode_sep, + STATE(3107), 1, + sym__soft_line_break, + [122266] = 3, + ACTIONS(7151), 1, + sym__pipe_table_delimiter, + ACTIONS(7380), 1, + sym__whitespace, + ACTIONS(2629), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - anon_sym_COLON, - anon_sym_DASH, - sym__whitespace, - [109366] = 6, - ACTIONS(111), 1, + [122278] = 5, + ACTIONS(6941), 1, sym__line_ending, - ACTIONS(7004), 1, - sym__pipe_table_line_ending, - ACTIONS(7115), 1, - sym__eof, - STATE(128), 1, - sym__pipe_table_newline, - STATE(520), 1, + ACTIONS(7009), 1, + anon_sym_LBRACE, + ACTIONS(7382), 1, + sym__commonmark_naked_value, + STATE(2586), 1, sym__newline, - STATE(2526), 1, - aux_sym_pipe_table_repeat1, - [109385] = 1, - ACTIONS(6280), 5, + STATE(3322), 1, + sym_attribute_specifier, + [122294] = 5, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, + sym__soft_line_break, + STATE(3162), 1, + sym__shortcode_sep, + [122310] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, + sym__soft_line_break, + STATE(3164), 1, + sym__shortcode_sep, + [122326] = 5, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, + sym__soft_line_break, + STATE(3174), 1, + sym__shortcode_sep, + [122342] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, + sym__soft_line_break, + STATE(3175), 1, + sym__shortcode_sep, + [122358] = 1, + ACTIONS(7384), 5, sym__soft_line_ending, sym__shortcode_open, aux_sym_target_token2, anon_sym_RPAREN, sym__whitespace, - [109393] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7117), 1, - aux_sym_inline_note_token1, - ACTIONS(7119), 1, + [122366] = 5, + ACTIONS(7206), 1, sym__whitespace, - STATE(3834), 2, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [109407] = 3, - ACTIONS(7121), 1, - sym__whitespace, - ACTIONS(7123), 1, + STATE(3182), 1, + sym__shortcode_sep, + [122382] = 3, + ACTIONS(7243), 1, sym__pipe_table_delimiter, - ACTIONS(2330), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [109419] = 3, - ACTIONS(7125), 1, + ACTIONS(7386), 1, sym__whitespace, - ACTIONS(7127), 1, - sym__pipe_table_delimiter, - ACTIONS(2330), 3, + ACTIONS(7388), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [109431] = 4, - ACTIONS(6540), 1, + [122394] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7129), 1, - aux_sym_inline_note_token1, - ACTIONS(7131), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, + sym__soft_line_break, + STATE(3210), 1, + sym__shortcode_sep, + [122410] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3026), 1, + sym__shortcode_sep, + STATE(3107), 1, + sym__soft_line_break, + [122426] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3059), 1, + sym__shortcode_sep, + STATE(3107), 1, + sym__soft_line_break, + [122442] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7390), 1, + anon_sym_RBRACE, + ACTIONS(7392), 1, sym__whitespace, - STATE(3811), 2, + STATE(3996), 2, sym__soft_line_break, sym__inline_whitespace, - [109445] = 4, - ACTIONS(6540), 1, + [122456] = 5, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, + sym__soft_line_break, + STATE(3112), 1, + sym__shortcode_sep, + [122472] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, + sym__soft_line_break, + STATE(3119), 1, + sym__shortcode_sep, + [122488] = 5, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, + sym__soft_line_break, + STATE(3122), 1, + sym__shortcode_sep, + [122504] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, + sym__soft_line_break, + STATE(3151), 1, + sym__shortcode_sep, + [122520] = 5, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3017), 1, + sym__shortcode_sep, + STATE(3074), 1, + sym__soft_line_break, + [122536] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3036), 1, + sym__shortcode_sep, + STATE(3107), 1, + sym__soft_line_break, + [122552] = 5, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3048), 1, + sym__shortcode_sep, + STATE(3074), 1, + sym__soft_line_break, + [122568] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7133), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3049), 1, + sym__shortcode_sep, + STATE(3107), 1, + sym__soft_line_break, + [122584] = 4, + ACTIONS(7157), 1, + sym__soft_line_ending, + ACTIONS(7394), 1, aux_sym_inline_note_token1, - ACTIONS(7135), 1, + ACTIONS(7396), 1, sym__whitespace, - STATE(3833), 2, + STATE(3881), 2, sym__soft_line_break, sym__inline_whitespace, - [109459] = 2, - ACTIONS(7137), 1, - sym_block_continuation, - ACTIONS(2705), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, + [122598] = 5, + ACTIONS(7206), 1, sym__whitespace, - [109469] = 4, - ACTIONS(7139), 1, - anon_sym_COLON, - ACTIONS(7141), 1, - anon_sym_DASH, - STATE(2555), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(6849), 2, - sym__pipe_table_delimiter, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, + sym__soft_line_break, + STATE(3160), 1, + sym__shortcode_sep, + [122614] = 5, + ACTIONS(7350), 1, sym__whitespace, - [109483] = 5, - ACTIONS(7143), 1, - aux_sym_pandoc_span_token1, - ACTIONS(7145), 1, - aux_sym_target_token1, - ACTIONS(7147), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - STATE(893), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, sym__soft_line_break, - STATE(2546), 1, - aux_sym__inlines_repeat1, - [109499] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7150), 1, - aux_sym_inline_note_token1, - ACTIONS(7152), 1, + STATE(3169), 1, + sym__shortcode_sep, + [122630] = 5, + ACTIONS(7206), 1, sym__whitespace, - STATE(3352), 2, - sym__soft_line_break, - sym__inline_whitespace, - [109513] = 4, - ACTIONS(6540), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7154), 1, - aux_sym_inline_note_token1, - ACTIONS(7156), 1, - sym__whitespace, - STATE(3406), 2, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [109527] = 4, - ACTIONS(2465), 1, + STATE(3173), 1, + sym__shortcode_sep, + [122646] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, sym__soft_line_ending, - STATE(889), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, sym__soft_line_break, - STATE(2600), 1, - aux_sym__inlines_repeat1, - ACTIONS(7158), 2, - sym__line_ending, - sym__eof, - [109541] = 5, - ACTIONS(6869), 1, + STATE(3176), 1, + sym__shortcode_sep, + [122662] = 5, + ACTIONS(6899), 1, anon_sym_COLON, - ACTIONS(6871), 1, + ACTIONS(6901), 1, anon_sym_DASH, - ACTIONS(7160), 1, + ACTIONS(7398), 1, sym__pipe_table_delimiter, - STATE(2552), 1, + STATE(2834), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3142), 1, + STATE(3291), 1, sym_pipe_table_delimiter_cell, - [109557] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7162), 1, - aux_sym_inline_note_token1, - ACTIONS(7164), 1, + [122678] = 5, + ACTIONS(7206), 1, sym__whitespace, - STATE(3355), 2, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [109571] = 4, - ACTIONS(7141), 1, - anon_sym_DASH, - ACTIONS(7166), 1, - anon_sym_COLON, - STATE(2555), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(6863), 2, - sym__pipe_table_delimiter, - sym__whitespace, - [109585] = 3, - ACTIONS(7168), 1, + STATE(3218), 1, + sym__shortcode_sep, + [122694] = 5, + ACTIONS(7350), 1, sym__whitespace, - ACTIONS(7170), 1, - sym__pipe_table_delimiter, - ACTIONS(6767), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [109597] = 4, - ACTIONS(6540), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7172), 1, - aux_sym_inline_note_token1, - ACTIONS(7174), 1, - sym__whitespace, - STATE(3422), 2, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, sym__soft_line_break, - sym__inline_whitespace, - [109611] = 3, - ACTIONS(7176), 1, - anon_sym_DASH, - STATE(2555), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(6892), 3, - sym__pipe_table_delimiter, - anon_sym_COLON, + STATE(3226), 1, + sym__shortcode_sep, + [122710] = 5, + ACTIONS(7206), 1, sym__whitespace, - [109623] = 4, - ACTIONS(6540), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7179), 1, - aux_sym_inline_note_token1, - ACTIONS(7181), 1, - sym__whitespace, - STATE(3697), 2, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [109637] = 3, - ACTIONS(6546), 1, - sym__key_specifier_token, - STATE(2714), 1, - sym__commonmark_key_value_specifier, - ACTIONS(6851), 3, - sym__soft_line_ending, - anon_sym_RBRACE, + STATE(3228), 1, + sym__shortcode_sep, + [122726] = 5, + ACTIONS(7350), 1, sym__whitespace, - [109649] = 1, - ACTIONS(6272), 5, + ACTIONS(7352), 1, sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, + sym__soft_line_break, + STATE(3229), 1, + sym__shortcode_sep, + [122742] = 5, + ACTIONS(7206), 1, sym__whitespace, - [109657] = 4, - ACTIONS(6540), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7183), 1, - aux_sym_inline_note_token1, - ACTIONS(7185), 1, - sym__whitespace, - STATE(3654), 2, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3034), 1, + sym__shortcode_sep, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [109671] = 1, - ACTIONS(7187), 5, - sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, + [122758] = 5, + ACTIONS(7350), 1, sym__whitespace, - [109679] = 4, - ACTIONS(6540), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7189), 1, - aux_sym_inline_note_token1, - ACTIONS(7191), 1, - sym__whitespace, - STATE(3667), 2, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3040), 1, + sym__shortcode_sep, + STATE(3107), 1, sym__soft_line_break, - sym__inline_whitespace, - [109693] = 1, - ACTIONS(6276), 5, - sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, + [122774] = 5, + ACTIONS(7206), 1, sym__whitespace, - [109701] = 4, - ACTIONS(6540), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7193), 1, - aux_sym_inline_note_token1, - ACTIONS(7195), 1, - sym__whitespace, - STATE(3370), 2, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3042), 1, + sym__shortcode_sep, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [109715] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7197), 1, - aux_sym_inline_note_token1, - ACTIONS(7199), 1, + [122790] = 5, + ACTIONS(7350), 1, sym__whitespace, - STATE(3874), 2, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3043), 1, + sym__shortcode_sep, + STATE(3107), 1, sym__soft_line_break, - sym__inline_whitespace, - [109729] = 4, - ACTIONS(6540), 1, + [122806] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - ACTIONS(7201), 1, + ACTIONS(7400), 1, aux_sym_inline_note_token1, - ACTIONS(7203), 1, + ACTIONS(7402), 1, sym__whitespace, - STATE(3893), 2, + STATE(3912), 2, sym__soft_line_break, sym__inline_whitespace, - [109743] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7205), 1, - anon_sym_EQ, - ACTIONS(7207), 1, + [122820] = 5, + ACTIONS(7206), 1, sym__whitespace, - STATE(3597), 2, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [109757] = 3, - ACTIONS(7127), 1, - sym__pipe_table_delimiter, - ACTIONS(7209), 1, - sym__whitespace, - ACTIONS(2433), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [109769] = 3, - ACTIONS(7123), 1, - sym__pipe_table_delimiter, - ACTIONS(7211), 1, - sym__whitespace, - ACTIONS(2433), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [109781] = 2, - ACTIONS(7213), 1, - sym_block_continuation, - ACTIONS(2699), 4, - sym__pipe_table_delimiter, - anon_sym_COLON, - anon_sym_DASH, + STATE(3093), 1, + sym__shortcode_sep, + [122836] = 5, + ACTIONS(7350), 1, sym__whitespace, - [109791] = 4, - ACTIONS(6540), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7215), 1, - aux_sym_inline_note_token1, - ACTIONS(7217), 1, - sym__whitespace, - STATE(3825), 2, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3094), 1, + sym__shortcode_sep, + STATE(3107), 1, sym__soft_line_break, - sym__inline_whitespace, - [109805] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7219), 1, - aux_sym_inline_note_token1, - ACTIONS(7221), 1, + [122852] = 5, + ACTIONS(7206), 1, sym__whitespace, - STATE(3269), 2, - sym__soft_line_break, - sym__inline_whitespace, - [109819] = 4, - ACTIONS(6540), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7223), 1, - aux_sym_inline_note_token1, - ACTIONS(7225), 1, - sym__whitespace, - STATE(3276), 2, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [109833] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7227), 1, - aux_sym_inline_note_token1, - ACTIONS(7229), 1, + STATE(3097), 1, + sym__shortcode_sep, + [122868] = 5, + ACTIONS(7350), 1, sym__whitespace, - STATE(3399), 2, - sym__soft_line_break, - sym__inline_whitespace, - [109847] = 2, - ACTIONS(3083), 2, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(3081), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [109857] = 4, - ACTIONS(6540), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7231), 1, - anon_sym_RBRACE, - ACTIONS(7233), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3098), 1, + sym__shortcode_sep, + STATE(3107), 1, + sym__soft_line_break, + [122884] = 5, + ACTIONS(7195), 1, sym__whitespace, - STATE(3700), 2, + ACTIONS(7197), 1, + aux_sym_inline_note_token1, + ACTIONS(7199), 1, + sym__soft_line_ending, + STATE(887), 1, sym__soft_line_break, - sym__inline_whitespace, - [109871] = 5, - ACTIONS(2465), 1, + STATE(2827), 1, + aux_sym__inlines_repeat1, + [122900] = 5, + ACTIONS(2975), 1, sym__soft_line_ending, - ACTIONS(7235), 1, - aux_sym_inline_note_token1, - ACTIONS(7237), 1, + ACTIONS(7167), 1, sym__whitespace, + ACTIONS(7169), 1, + aux_sym_inline_note_token1, STATE(887), 1, sym__soft_line_break, - STATE(2620), 1, + STATE(2827), 1, aux_sym__inlines_repeat1, - [109887] = 1, - ACTIONS(7239), 5, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__pipe_table_delimiter, + [122916] = 5, + ACTIONS(7350), 1, sym__whitespace, - [109895] = 4, - ACTIONS(6540), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7241), 1, - aux_sym_inline_note_token1, - ACTIONS(7243), 1, - sym__whitespace, - STATE(3333), 2, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, sym__soft_line_break, - sym__inline_whitespace, - [109909] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7245), 1, - aux_sym_inline_note_token1, - ACTIONS(7247), 1, + STATE(3246), 1, + sym__shortcode_sep, + [122932] = 5, + ACTIONS(7206), 1, sym__whitespace, - STATE(3340), 2, - sym__soft_line_break, - sym__inline_whitespace, - [109923] = 4, - ACTIONS(6540), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7249), 1, - aux_sym_inline_note_token1, - ACTIONS(7251), 1, - sym__whitespace, - STATE(3350), 2, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [109937] = 3, - ACTIONS(6546), 1, - sym__key_specifier_token, - STATE(2714), 1, - sym__commonmark_key_value_specifier, - ACTIONS(7253), 3, - sym__soft_line_ending, - anon_sym_RBRACE, + STATE(3129), 1, + sym__shortcode_sep, + [122948] = 5, + ACTIONS(7350), 1, sym__whitespace, - [109949] = 4, - ACTIONS(6540), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7255), 1, - aux_sym_inline_note_token1, - ACTIONS(7257), 1, - sym__whitespace, - STATE(3781), 2, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, sym__soft_line_break, - sym__inline_whitespace, - [109963] = 3, - ACTIONS(7170), 1, - sym__pipe_table_delimiter, - ACTIONS(7259), 1, + STATE(3131), 1, + sym__shortcode_sep, + [122964] = 5, + ACTIONS(7206), 1, sym__whitespace, - ACTIONS(6833), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [109975] = 4, - ACTIONS(6890), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7067), 1, - anon_sym_RBRACE, - ACTIONS(7261), 1, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, + sym__soft_line_break, + STATE(3134), 1, + sym__shortcode_sep, + [122980] = 5, + ACTIONS(7350), 1, sym__whitespace, - STATE(2512), 2, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, sym__soft_line_break, - sym__inline_whitespace, - [109989] = 3, - ACTIONS(7123), 1, + STATE(3135), 1, + sym__shortcode_sep, + [122996] = 4, + ACTIONS(7294), 1, + anon_sym_DASH, + ACTIONS(7404), 1, + anon_sym_COLON, + STATE(2747), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(6930), 2, sym__pipe_table_delimiter, - ACTIONS(7263), 1, sym__whitespace, - ACTIONS(2439), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [110001] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7265), 1, - aux_sym_inline_note_token1, - ACTIONS(7267), 1, + [123010] = 5, + ACTIONS(7206), 1, sym__whitespace, - STATE(3397), 2, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [110015] = 4, - ACTIONS(6540), 1, + STATE(3163), 1, + sym__shortcode_sep, + [123026] = 5, + ACTIONS(2975), 1, sym__soft_line_ending, - ACTIONS(7269), 1, + ACTIONS(7406), 1, aux_sym_inline_note_token1, - ACTIONS(7271), 1, + ACTIONS(7408), 1, sym__whitespace, - STATE(3404), 2, + STATE(887), 1, sym__soft_line_break, - sym__inline_whitespace, - [110029] = 3, - ACTIONS(7127), 1, - sym__pipe_table_delimiter, - ACTIONS(7273), 1, - sym__whitespace, - ACTIONS(2435), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [110041] = 3, - ACTIONS(7123), 1, - sym__pipe_table_delimiter, - ACTIONS(7275), 1, + STATE(2828), 1, + aux_sym__inlines_repeat1, + [123042] = 5, + ACTIONS(7350), 1, sym__whitespace, - ACTIONS(2435), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [110053] = 4, - ACTIONS(6540), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7277), 1, - aux_sym_inline_note_token1, - ACTIONS(7279), 1, - sym__whitespace, - STATE(3364), 2, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, sym__soft_line_break, - sym__inline_whitespace, - [110067] = 4, - ACTIONS(7283), 1, - sym__pipe_table_line_ending, - STATE(134), 1, - sym__pipe_table_newline, - STATE(2591), 1, - aux_sym_pipe_table_repeat1, - ACTIONS(7281), 2, - sym__line_ending, - sym__eof, - [110081] = 3, - ACTIONS(7286), 1, - sym__whitespace, - ACTIONS(7288), 1, - sym__pipe_table_delimiter, - ACTIONS(6833), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [110093] = 5, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6975), 1, - anon_sym_LBRACE, - ACTIONS(7290), 1, - sym__commonmark_naked_value, - STATE(2497), 1, - sym__newline, - STATE(3060), 1, - sym_attribute_specifier, - [110109] = 1, - ACTIONS(7292), 5, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__pipe_table_delimiter, + STATE(3165), 1, + sym__shortcode_sep, + [123058] = 5, + ACTIONS(7206), 1, sym__whitespace, - [110117] = 5, - ACTIONS(6921), 1, - sym__line_ending, - ACTIONS(6975), 1, - anon_sym_LBRACE, - ACTIONS(7294), 1, - sym__commonmark_naked_value, - STATE(2499), 1, - sym__newline, - STATE(3091), 1, - sym_attribute_specifier, - [110133] = 4, - ACTIONS(6540), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7296), 1, - anon_sym_EQ, - ACTIONS(7298), 1, - sym__whitespace, - STATE(3478), 2, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [110147] = 4, - ACTIONS(6540), 1, + STATE(3166), 1, + sym__shortcode_sep, + [123074] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7300), 1, - anon_sym_EQ, - ACTIONS(7302), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, + sym__soft_line_break, + STATE(3167), 1, + sym__shortcode_sep, + [123090] = 5, + ACTIONS(7206), 1, sym__whitespace, - STATE(3295), 2, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [110161] = 4, - ACTIONS(6890), 1, + STATE(3201), 1, + sym__shortcode_sep, + [123106] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7304), 1, - anon_sym_RBRACE, - ACTIONS(7306), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, + sym__soft_line_break, + STATE(3203), 1, + sym__shortcode_sep, + [123122] = 5, + ACTIONS(7206), 1, sym__whitespace, - STATE(2522), 2, + ACTIONS(7208), 1, + sym__soft_line_ending, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [110175] = 5, - ACTIONS(7143), 1, + STATE(3205), 1, + sym__shortcode_sep, + [123138] = 5, + ACTIONS(7350), 1, sym__whitespace, - ACTIONS(7145), 1, - aux_sym_inline_note_token1, - ACTIONS(7147), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - STATE(887), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, sym__soft_line_break, - STATE(2599), 1, - aux_sym__inlines_repeat1, - [110191] = 4, - ACTIONS(7147), 1, + STATE(3206), 1, + sym__shortcode_sep, + [123154] = 4, + ACTIONS(2975), 1, sym__soft_line_ending, - STATE(889), 1, + STATE(893), 1, sym__soft_line_break, - STATE(2600), 1, + STATE(2737), 1, aux_sym__inlines_repeat1, - ACTIONS(7145), 2, + ACTIONS(7406), 2, sym__line_ending, sym__eof, - [110205] = 5, - ACTIONS(6921), 1, + [123168] = 5, + ACTIONS(6941), 1, sym__line_ending, - ACTIONS(6975), 1, + ACTIONS(7009), 1, anon_sym_LBRACE, - ACTIONS(7308), 1, + ACTIONS(7410), 1, sym__commonmark_naked_value, - STATE(2485), 1, + STATE(2592), 1, sym__newline, - STATE(3106), 1, + STATE(3381), 1, sym_attribute_specifier, - [110221] = 4, - ACTIONS(6540), 1, + [123184] = 5, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7310), 1, - aux_sym_inline_note_token1, - ACTIONS(7312), 1, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, + sym__soft_line_break, + STATE(3221), 1, + sym__shortcode_sep, + [123200] = 5, + ACTIONS(7350), 1, sym__whitespace, - STATE(3619), 2, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, sym__soft_line_break, - sym__inline_whitespace, - [110235] = 4, - ACTIONS(6540), 1, + STATE(3222), 1, + sym__shortcode_sep, + [123216] = 5, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7314), 1, - aux_sym_inline_note_token1, - ACTIONS(7316), 1, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, + sym__soft_line_break, + STATE(3223), 1, + sym__shortcode_sep, + [123232] = 5, + ACTIONS(7350), 1, sym__whitespace, - STATE(3675), 2, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, sym__soft_line_break, - sym__inline_whitespace, - [110249] = 3, - ACTIONS(7127), 1, + STATE(3224), 1, + sym__shortcode_sep, + [123248] = 2, + ACTIONS(7412), 1, + sym_block_continuation, + ACTIONS(2413), 4, sym__pipe_table_delimiter, - ACTIONS(7318), 1, + anon_sym_COLON, + anon_sym_DASH, sym__whitespace, - ACTIONS(7320), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [110261] = 1, - ACTIONS(7322), 5, + [123258] = 3, + ACTIONS(7185), 1, + sym__pipe_table_delimiter, + ACTIONS(7414), 1, + sym__whitespace, + ACTIONS(2501), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - sym__pipe_table_delimiter, - sym__whitespace, - [110269] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7324), 1, - aux_sym_inline_note_token1, - ACTIONS(7326), 1, - sym__whitespace, - STATE(3488), 2, - sym__soft_line_break, - sym__inline_whitespace, - [110283] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7328), 1, - aux_sym_inline_note_token1, - ACTIONS(7330), 1, - sym__whitespace, - STATE(3498), 2, - sym__soft_line_break, - sym__inline_whitespace, - [110297] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7332), 1, - aux_sym_inline_note_token1, - ACTIONS(7334), 1, + [123270] = 5, + ACTIONS(7206), 1, sym__whitespace, - STATE(3430), 2, - sym__soft_line_break, - sym__inline_whitespace, - [110311] = 4, - ACTIONS(2465), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - STATE(889), 1, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - STATE(2549), 1, - aux_sym__inlines_repeat1, - ACTIONS(7235), 2, - sym__line_ending, - sym__eof, - [110325] = 5, - ACTIONS(2465), 1, + STATE(3241), 1, + sym__shortcode_sep, + [123286] = 5, + ACTIONS(2975), 1, sym__soft_line_ending, - ACTIONS(7235), 1, + ACTIONS(7406), 1, aux_sym_target_token1, - ACTIONS(7237), 1, + ACTIONS(7408), 1, aux_sym_pandoc_span_token1, - STATE(893), 1, + STATE(894), 1, sym__soft_line_break, - STATE(2616), 1, + STATE(2718), 1, aux_sym__inlines_repeat1, - [110341] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7026), 1, - anon_sym_RBRACE, - ACTIONS(7336), 1, - sym__whitespace, - STATE(3286), 2, - sym__soft_line_break, - sym__inline_whitespace, - [110355] = 3, - ACTIONS(7288), 1, - sym__pipe_table_delimiter, - ACTIONS(7338), 1, + [123302] = 5, + ACTIONS(7350), 1, sym__whitespace, - ACTIONS(7340), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [110367] = 4, - ACTIONS(6540), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7342), 1, - aux_sym_inline_note_token1, - ACTIONS(7344), 1, - sym__whitespace, - STATE(3661), 2, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, sym__soft_line_break, - sym__inline_whitespace, - [110381] = 2, - ACTIONS(7346), 1, - sym_block_continuation, - ACTIONS(2699), 4, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - sym__code_line, - [110391] = 3, - ACTIONS(7288), 1, - sym__pipe_table_delimiter, - ACTIONS(7348), 1, + STATE(3242), 1, + sym__shortcode_sep, + [123318] = 5, + ACTIONS(7206), 1, sym__whitespace, - ACTIONS(6927), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [110403] = 5, - ACTIONS(2465), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7158), 1, - aux_sym_target_token1, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, + sym__soft_line_break, + STATE(3243), 1, + sym__shortcode_sep, + [123334] = 5, ACTIONS(7350), 1, - aux_sym_pandoc_span_token1, - STATE(893), 1, + sym__whitespace, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3107), 1, sym__soft_line_break, - STATE(2546), 1, - aux_sym__inlines_repeat1, - [110419] = 3, - ACTIONS(7170), 1, + STATE(3244), 1, + sym__shortcode_sep, + [123350] = 2, + ACTIONS(2867), 2, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_double_quote_string_token1, + ACTIONS(2865), 3, + sym__value_specifier_token, + anon_sym_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE, + [123360] = 3, + ACTIONS(7185), 1, sym__pipe_table_delimiter, - ACTIONS(7352), 1, + ACTIONS(7416), 1, sym__whitespace, - ACTIONS(6927), 3, + ACTIONS(7418), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [110431] = 4, - ACTIONS(6540), 1, - sym__soft_line_ending, - ACTIONS(7354), 1, - aux_sym_inline_note_token1, - ACTIONS(7356), 1, + [123372] = 5, + ACTIONS(7206), 1, sym__whitespace, - STATE(3676), 2, - sym__soft_line_break, - sym__inline_whitespace, - [110445] = 4, - ACTIONS(6540), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7358), 1, - aux_sym_inline_note_token1, - ACTIONS(7360), 1, - sym__whitespace, - STATE(3495), 2, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3012), 1, + sym__shortcode_sep, + STATE(3074), 1, sym__soft_line_break, - sym__inline_whitespace, - [110459] = 5, - ACTIONS(2465), 1, - sym__soft_line_ending, - ACTIONS(7158), 1, - aux_sym_inline_note_token1, + [123388] = 5, ACTIONS(7350), 1, sym__whitespace, - STATE(887), 1, - sym__soft_line_break, - STATE(2599), 1, - aux_sym__inlines_repeat1, - [110475] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - STATE(2452), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [110488] = 4, - ACTIONS(2465), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7158), 1, - sym__strong_emphasis_close_star, - STATE(888), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3013), 1, + sym__shortcode_sep, + STATE(3107), 1, sym__soft_line_break, - STATE(2712), 1, - aux_sym__inlines_repeat1, - [110501] = 4, - ACTIONS(2465), 1, + [123404] = 5, + ACTIONS(7206), 1, + sym__whitespace, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7235), 1, - sym__double_quote_span_close, - STATE(883), 1, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3014), 1, + sym__shortcode_sep, + STATE(3074), 1, sym__soft_line_break, - STATE(2632), 1, - aux_sym__inlines_repeat1, - [110514] = 3, - ACTIONS(7364), 1, - sym__code_span_close, - STATE(2671), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [110525] = 1, - ACTIONS(3073), 4, - sym__pipe_table_delimiter, - anon_sym_COLON, - anon_sym_DASH, + [123420] = 5, + ACTIONS(7350), 1, sym__whitespace, - [110532] = 4, - ACTIONS(2465), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7158), 1, - sym__subscript_close, - STATE(885), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3015), 1, + sym__shortcode_sep, + STATE(3107), 1, sym__soft_line_break, - STATE(2679), 1, - aux_sym__inlines_repeat1, - [110545] = 3, - ACTIONS(7366), 1, - sym__code_span_close, - STATE(2671), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [110556] = 4, - ACTIONS(7368), 1, - anon_sym_LBRACE, - ACTIONS(7370), 1, - sym__commonmark_naked_value, - ACTIONS(7372), 1, + [123436] = 5, + ACTIONS(7350), 1, sym__whitespace, - STATE(3162), 1, - sym__pandoc_attr_specifier, - [110569] = 4, - ACTIONS(7368), 1, - anon_sym_LBRACE, - ACTIONS(7374), 1, - sym__commonmark_naked_value, - ACTIONS(7376), 1, - sym_fenced_div_note_id, - STATE(3084), 1, - sym__pandoc_attr_specifier, - [110582] = 2, - ACTIONS(7127), 1, - sym__pipe_table_delimiter, - ACTIONS(2330), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [110591] = 1, - ACTIONS(7378), 4, + ACTIONS(7352), 1, sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3016), 1, + sym__shortcode_sep, + STATE(3107), 1, + sym__soft_line_break, + [123452] = 5, + ACTIONS(7350), 1, sym__whitespace, - [110598] = 4, - ACTIONS(2465), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7158), 1, - sym__double_quote_span_close, - STATE(883), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3006), 1, + sym__shortcode_sep, + STATE(3107), 1, sym__soft_line_break, - STATE(2655), 1, - aux_sym__inlines_repeat1, - [110611] = 4, - ACTIONS(2465), 1, + [123468] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7235), 1, - sym__emphasis_close_underscore, - STATE(892), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3019), 1, + sym__shortcode_sep, + STATE(3107), 1, sym__soft_line_break, - STATE(2641), 1, - aux_sym__inlines_repeat1, - [110624] = 3, - ACTIONS(7380), 1, - sym__code_span_close, - STATE(2671), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [110635] = 3, - ACTIONS(7382), 1, - sym__code_span_close, - STATE(2671), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [110646] = 3, - ACTIONS(7384), 1, - sym__code_span_close, - STATE(2671), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [110657] = 4, - ACTIONS(2465), 1, + [123484] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7158), 1, - sym__strong_emphasis_close_underscore, - STATE(890), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3020), 1, + sym__shortcode_sep, + STATE(3107), 1, sym__soft_line_break, - STATE(2685), 1, - aux_sym__inlines_repeat1, - [110670] = 1, - ACTIONS(7386), 4, + [123500] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3022), 1, + sym__shortcode_sep, + STATE(3107), 1, + sym__soft_line_break, + [123516] = 5, + ACTIONS(7350), 1, sym__whitespace, - [110677] = 4, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(7388), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3554), 1, - sym__commonmark_specifier_start_with_kv, - [110690] = 2, - ACTIONS(7390), 1, - sym_block_continuation, - ACTIONS(2705), 3, - sym__key_specifier_token, - anon_sym_RBRACE, - aux_sym__commonmark_specifier_start_with_class_token1, - [110699] = 4, - ACTIONS(2465), 1, + ACTIONS(7352), 1, sym__soft_line_ending, - ACTIONS(7158), 1, - sym__emphasis_close_underscore, - STATE(892), 1, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3023), 1, + sym__shortcode_sep, + STATE(3107), 1, sym__soft_line_break, - STATE(2668), 1, - aux_sym__inlines_repeat1, - [110712] = 4, - ACTIONS(2465), 1, + [123532] = 4, + ACTIONS(7157), 1, sym__soft_line_ending, - ACTIONS(7235), 1, - sym__emphasis_close_star, - STATE(891), 1, + ACTIONS(7420), 1, + aux_sym_inline_note_token1, + ACTIONS(7422), 1, + sym__whitespace, + STATE(3933), 2, sym__soft_line_break, - STATE(2649), 1, - aux_sym__inlines_repeat1, - [110725] = 1, - ACTIONS(3081), 4, + sym__inline_whitespace, + [123546] = 5, + ACTIONS(7350), 1, + sym__whitespace, + ACTIONS(7352), 1, sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, + STATE(2779), 1, + aux_sym_shortcode_repeat1, + STATE(3025), 1, + sym__shortcode_sep, + STATE(3107), 1, + sym__soft_line_break, + [123562] = 5, + ACTIONS(7206), 1, sym__whitespace, - [110732] = 4, - ACTIONS(2465), 1, + ACTIONS(7208), 1, sym__soft_line_ending, - ACTIONS(7235), 1, - sym__superscript_close, - STATE(886), 1, + STATE(2765), 1, + aux_sym_shortcode_escaped_repeat2, + STATE(3074), 1, sym__soft_line_break, - STATE(2660), 1, - aux_sym__inlines_repeat1, - [110745] = 3, - ACTIONS(7392), 1, - sym__code_span_close, - STATE(2671), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [110756] = 3, - ACTIONS(7394), 1, - sym__code_span_close, - STATE(2671), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [110767] = 4, - ACTIONS(6869), 1, - anon_sym_COLON, - ACTIONS(6871), 1, - anon_sym_DASH, - STATE(2552), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3142), 1, - sym_pipe_table_delimiter_cell, - [110780] = 3, - ACTIONS(7396), 1, - sym__code_span_close, - STATE(2671), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [110791] = 4, - ACTIONS(2465), 1, + STATE(3236), 1, + sym__shortcode_sep, + [123578] = 4, + ACTIONS(6438), 1, sym__soft_line_ending, - ACTIONS(7158), 1, - sym__emphasis_close_star, - STATE(891), 1, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, sym__soft_line_break, - STATE(2703), 1, - aux_sym__inlines_repeat1, - [110804] = 2, - ACTIONS(7288), 1, - sym__pipe_table_delimiter, - ACTIONS(7340), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [110813] = 2, - ACTIONS(7398), 1, + STATE(4113), 1, + sym__shortcode_sep, + [123591] = 2, + ACTIONS(7426), 1, sym__pipe_table_delimiter, - ACTIONS(2435), 3, + ACTIONS(7388), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [110822] = 3, - ACTIONS(7400), 1, + [123600] = 3, + ACTIONS(7430), 1, sym__code_span_close, - STATE(2671), 1, + STATE(2877), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [110833] = 2, - ACTIONS(7127), 1, + [123611] = 2, + ACTIONS(7432), 1, sym__pipe_table_delimiter, - ACTIONS(2435), 3, + ACTIONS(2629), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [110842] = 1, - ACTIONS(3073), 4, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - sym__code_line, - [110849] = 4, - ACTIONS(7145), 1, - sym__double_quote_span_close, - ACTIONS(7147), 1, - sym__soft_line_ending, - STATE(883), 1, - sym__soft_line_break, - STATE(2655), 1, - aux_sym__inlines_repeat1, - [110862] = 2, - ACTIONS(6274), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(6272), 3, - sym__shortcode_open, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_single_quote_string_token4, - [110871] = 2, - ACTIONS(6278), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(6276), 3, - sym__shortcode_open, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_single_quote_string_token4, - [110880] = 2, - ACTIONS(6282), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(6280), 3, - sym__shortcode_open, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_single_quote_string_token4, - [110889] = 2, - ACTIONS(6274), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(6272), 3, - sym__shortcode_open, - aux_sym__commonmark_double_quote_string_token1, - aux_sym__commonmark_double_quote_string_token4, - [110898] = 4, - ACTIONS(2465), 1, - sym__soft_line_ending, - ACTIONS(7158), 1, - sym__superscript_close, - STATE(886), 1, - sym__soft_line_break, - STATE(2705), 1, - aux_sym__inlines_repeat1, - [110911] = 2, - ACTIONS(6278), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(6276), 3, - sym__shortcode_open, - aux_sym__commonmark_double_quote_string_token1, - aux_sym__commonmark_double_quote_string_token4, - [110920] = 2, - ACTIONS(6282), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(6280), 3, - sym__shortcode_open, - aux_sym__commonmark_double_quote_string_token1, - aux_sym__commonmark_double_quote_string_token4, - [110929] = 3, - ACTIONS(2465), 1, + [123620] = 1, + ACTIONS(6915), 4, sym__soft_line_ending, - ACTIONS(7402), 1, + sym__key_specifier_token, + anon_sym_RBRACE, sym__whitespace, - STATE(755), 2, - sym__soft_line_break, - sym__inline_whitespace, - [110940] = 4, - ACTIONS(2465), 1, - sym__soft_line_ending, - ACTIONS(7235), 1, - aux_sym_insert_token1, - STATE(881), 1, - sym__soft_line_break, - STATE(2680), 1, - aux_sym__inlines_repeat1, - [110953] = 3, - ACTIONS(7404), 1, + [123627] = 3, + ACTIONS(7437), 1, sym__code_span_close, - STATE(2671), 1, + STATE(2877), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7434), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [110964] = 1, - ACTIONS(7406), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [110971] = 3, - ACTIONS(2465), 1, - sym__soft_line_ending, - ACTIONS(7408), 1, - sym__whitespace, - STATE(750), 2, - sym__soft_line_break, - sym__inline_whitespace, - [110982] = 4, - ACTIONS(7145), 1, - sym__emphasis_close_underscore, - ACTIONS(7147), 1, - sym__soft_line_ending, - STATE(892), 1, - sym__soft_line_break, - STATE(2668), 1, - aux_sym__inlines_repeat1, - [110995] = 2, - ACTIONS(7288), 1, + [123638] = 2, + ACTIONS(7432), 1, sym__pipe_table_delimiter, - ACTIONS(6833), 3, + ACTIONS(2613), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [111004] = 4, - ACTIONS(7145), 1, - sym__strikeout_close, - ACTIONS(7147), 1, - sym__soft_line_ending, - STATE(884), 1, - sym__soft_line_break, - STATE(2670), 1, - aux_sym__inlines_repeat1, - [111017] = 3, - ACTIONS(7413), 1, + [123647] = 2, + ACTIONS(7243), 1, + sym__pipe_table_delimiter, + ACTIONS(7388), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [123656] = 3, + ACTIONS(7439), 1, sym__code_span_close, - STATE(2671), 1, + STATE(2877), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7410), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [111028] = 4, - ACTIONS(2465), 1, + [123667] = 4, + ACTIONS(2975), 1, sym__soft_line_ending, - ACTIONS(7235), 1, - sym__single_quote_span_close, - STATE(882), 1, + ACTIONS(7169), 1, + aux_sym_insert_token1, + STATE(899), 1, sym__soft_line_break, - STATE(2674), 1, + STATE(2907), 1, aux_sym__inlines_repeat1, - [111041] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - STATE(2422), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111054] = 4, - ACTIONS(2465), 1, + [123680] = 4, + ACTIONS(6438), 1, sym__soft_line_ending, - ACTIONS(7158), 1, - sym__single_quote_span_close, - STATE(882), 1, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, sym__soft_line_break, - STATE(2709), 1, - aux_sym__inlines_repeat1, - [111067] = 3, - ACTIONS(7415), 1, + STATE(3552), 1, + sym__shortcode_sep, + [123693] = 3, + ACTIONS(7441), 1, sym__code_span_close, - STATE(2671), 1, + STATE(2877), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [111078] = 1, - ACTIONS(7417), 4, + [123704] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7406), 1, + sym__emphasis_close_underscore, + STATE(898), 1, + sym__soft_line_break, + STATE(2959), 1, + aux_sym__inlines_repeat1, + [123717] = 1, + ACTIONS(2865), 4, sym__soft_line_ending, sym__key_specifier_token, anon_sym_RBRACE, sym__whitespace, - [111085] = 4, - ACTIONS(2465), 1, - sym__soft_line_ending, - ACTIONS(7235), 1, - sym__strong_emphasis_close_underscore, - STATE(890), 1, - sym__soft_line_break, - STATE(2637), 1, - aux_sym__inlines_repeat1, - [111098] = 3, - ACTIONS(2465), 1, + [123724] = 1, + ACTIONS(7443), 4, sym__soft_line_ending, - ACTIONS(7419), 1, + sym__key_specifier_token, + anon_sym_RBRACE, sym__whitespace, - STATE(751), 2, - sym__soft_line_break, - sym__inline_whitespace, - [111109] = 4, - ACTIONS(7145), 1, - sym__subscript_close, - ACTIONS(7147), 1, + [123731] = 4, + ACTIONS(7197), 1, + sym__superscript_close, + ACTIONS(7199), 1, sym__soft_line_ending, - STATE(885), 1, + STATE(889), 1, sym__soft_line_break, - STATE(2679), 1, + STATE(2887), 1, aux_sym__inlines_repeat1, - [111122] = 4, - ACTIONS(2465), 1, + [123744] = 4, + ACTIONS(7197), 1, + sym__subscript_close, + ACTIONS(7199), 1, sym__soft_line_ending, - ACTIONS(7158), 1, - aux_sym_insert_token1, - STATE(881), 1, + STATE(891), 1, sym__soft_line_break, - STATE(2701), 1, + STATE(2888), 1, aux_sym__inlines_repeat1, - [111135] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - STATE(2434), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111148] = 3, - ACTIONS(2465), 1, - sym__soft_line_ending, - ACTIONS(7421), 1, - sym__whitespace, - STATE(752), 2, - sym__soft_line_break, - sym__inline_whitespace, - [111159] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - STATE(2448), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111172] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - STATE(2423), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111185] = 4, - ACTIONS(7145), 1, - sym__strong_emphasis_close_underscore, - ACTIONS(7147), 1, + [123757] = 4, + ACTIONS(2975), 1, sym__soft_line_ending, - STATE(890), 1, + ACTIONS(7169), 1, + sym__single_quote_span_close, + STATE(888), 1, sym__soft_line_break, - STATE(2685), 1, + STATE(2949), 1, aux_sym__inlines_repeat1, - [111198] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - STATE(2429), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111211] = 4, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(7388), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2473), 1, - sym__commonmark_key_value_specifier, - STATE(2808), 1, - sym__commonmark_specifier_start_with_kv, - [111224] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - STATE(2432), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111237] = 2, - ACTIONS(7398), 1, - sym__pipe_table_delimiter, - ACTIONS(7320), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [111246] = 3, - ACTIONS(7423), 1, - sym__code_span_close, - STATE(2671), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [111257] = 2, - ACTIONS(7127), 1, + [123770] = 2, + ACTIONS(7243), 1, sym__pipe_table_delimiter, - ACTIONS(7320), 3, + ACTIONS(6993), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [111266] = 4, - ACTIONS(2465), 1, - sym__soft_line_ending, - ACTIONS(7235), 1, - sym__subscript_close, - STATE(885), 1, - sym__soft_line_break, - STATE(2626), 1, - aux_sym__inlines_repeat1, - [111279] = 1, - ACTIONS(7425), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [111286] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, + [123779] = 2, + ACTIONS(6170), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(6168), 3, sym__shortcode_open, - STATE(2424), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111299] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, + aux_sym__commonmark_double_quote_string_token1, + aux_sym__commonmark_double_quote_string_token4, + [123788] = 2, + ACTIONS(6174), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(6172), 3, sym__shortcode_open, - STATE(2421), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111312] = 1, - ACTIONS(7427), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [111319] = 4, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(7388), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2473), 1, - sym__commonmark_key_value_specifier, - STATE(2910), 1, - sym__commonmark_specifier_start_with_kv, - [111332] = 3, - ACTIONS(7429), 1, - sym__code_span_close, - STATE(2671), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [111343] = 1, - ACTIONS(7431), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [111350] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, + aux_sym__commonmark_double_quote_string_token1, + aux_sym__commonmark_double_quote_string_token4, + [123797] = 2, + ACTIONS(6178), 1, + aux_sym__commonmark_double_quote_string_token3, + ACTIONS(6176), 3, sym__shortcode_open, - STATE(2447), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111363] = 4, - ACTIONS(7145), 1, - aux_sym_insert_token1, - ACTIONS(7147), 1, - sym__soft_line_ending, - STATE(881), 1, - sym__soft_line_break, - STATE(2701), 1, - aux_sym__inlines_repeat1, - [111376] = 4, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(7388), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2479), 1, - sym__commonmark_key_value_specifier, - STATE(3289), 1, - sym__commonmark_specifier_start_with_kv, - [111389] = 4, - ACTIONS(7145), 1, - sym__emphasis_close_star, - ACTIONS(7147), 1, - sym__soft_line_ending, - STATE(891), 1, - sym__soft_line_break, - STATE(2703), 1, - aux_sym__inlines_repeat1, - [111402] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, + aux_sym__commonmark_double_quote_string_token1, + aux_sym__commonmark_double_quote_string_token4, + [123806] = 2, + ACTIONS(6170), 1, + aux_sym__commonmark_single_quote_string_token3, + ACTIONS(6168), 3, sym__shortcode_open, - STATE(2430), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111415] = 4, - ACTIONS(7145), 1, - sym__superscript_close, - ACTIONS(7147), 1, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_single_quote_string_token4, + [123815] = 2, + ACTIONS(6174), 1, + aux_sym__commonmark_single_quote_string_token3, + ACTIONS(6172), 3, + sym__shortcode_open, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_single_quote_string_token4, + [123824] = 2, + ACTIONS(6178), 1, + aux_sym__commonmark_single_quote_string_token3, + ACTIONS(6176), 3, + sym__shortcode_open, + aux_sym__commonmark_single_quote_string_token1, + aux_sym__commonmark_single_quote_string_token4, + [123833] = 4, + ACTIONS(2975), 1, sym__soft_line_ending, - STATE(886), 1, + ACTIONS(7406), 1, + sym__single_quote_span_close, + STATE(888), 1, sym__soft_line_break, - STATE(2705), 1, + STATE(2889), 1, aux_sym__inlines_repeat1, - [111428] = 3, - ACTIONS(7433), 1, + [123846] = 2, + ACTIONS(7432), 1, + sym__pipe_table_delimiter, + ACTIONS(7445), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [123855] = 3, + ACTIONS(7447), 1, sym__code_span_close, - STATE(2671), 1, + STATE(2877), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [111439] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - STATE(2442), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111452] = 4, - ACTIONS(2465), 1, + [123866] = 3, + ACTIONS(7449), 1, + sym__code_span_close, + STATE(2877), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [123877] = 3, + ACTIONS(7451), 1, + sym__code_span_close, + STATE(2877), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [123888] = 4, + ACTIONS(2975), 1, sym__soft_line_ending, - ACTIONS(7235), 1, - sym__strikeout_close, - STATE(884), 1, + ACTIONS(7406), 1, + sym__strong_emphasis_close_star, + STATE(895), 1, sym__soft_line_break, - STATE(2720), 1, + STATE(2923), 1, aux_sym__inlines_repeat1, - [111465] = 4, - ACTIONS(7145), 1, - sym__single_quote_span_close, - ACTIONS(7147), 1, + [123901] = 1, + ACTIONS(7453), 4, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_RBRACE, + sym__whitespace, + [123908] = 3, + ACTIONS(7208), 1, sym__soft_line_ending, - STATE(882), 1, + STATE(3287), 1, sym__soft_line_break, - STATE(2709), 1, - aux_sym__inlines_repeat1, - [111478] = 2, - ACTIONS(7398), 1, - sym__pipe_table_delimiter, - ACTIONS(7435), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [111487] = 2, - ACTIONS(7439), 1, + ACTIONS(6550), 2, + sym__key_specifier_token, + sym__shortcode_close_escaped, + [123919] = 4, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(7455), 1, + aux_sym__commonmark_specifier_start_with_class_token2, + STATE(2571), 1, + sym__commonmark_key_value_specifier, + STATE(3744), 1, + sym__commonmark_specifier_start_with_kv, + [123932] = 2, + ACTIONS(7426), 1, sym__pipe_table_delimiter, - ACTIONS(7437), 3, + ACTIONS(6993), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [111496] = 4, - ACTIONS(7145), 1, - sym__strong_emphasis_close_star, - ACTIONS(7147), 1, + [123941] = 4, + ACTIONS(7197), 1, + aux_sym_insert_token1, + ACTIONS(7199), 1, sym__soft_line_ending, - STATE(888), 1, + STATE(899), 1, sym__soft_line_break, - STATE(2712), 1, + STATE(2907), 1, aux_sym__inlines_repeat1, - [111509] = 2, - ACTIONS(7288), 1, + [123954] = 2, + ACTIONS(7243), 1, sym__pipe_table_delimiter, - ACTIONS(6927), 3, + ACTIONS(6696), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [111518] = 1, - ACTIONS(6877), 4, - sym__soft_line_ending, + [123963] = 2, + ACTIONS(7457), 1, + sym_block_continuation, + ACTIONS(2419), 3, sym__key_specifier_token, - anon_sym_RBRACE, + sym__shortcode_close, sym__whitespace, - [111525] = 2, - ACTIONS(7127), 1, - sym__pipe_table_delimiter, - ACTIONS(2433), 3, + [123972] = 3, + ACTIONS(7459), 1, + sym__code_span_close, + STATE(2877), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [123983] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7406), 1, + aux_sym_insert_token1, + STATE(899), 1, + sym__soft_line_break, + STATE(2881), 1, + aux_sym__inlines_repeat1, + [123996] = 1, + ACTIONS(2861), 4, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [111534] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - STATE(2425), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111547] = 4, - ACTIONS(2465), 1, + sym__block_close, + sym__fenced_code_block_end_backtick, + sym__code_line, + [124003] = 4, + ACTIONS(7197), 1, + sym__strikeout_close, + ACTIONS(7199), 1, sym__soft_line_ending, - ACTIONS(7235), 1, - sym__strong_emphasis_close_star, - STATE(888), 1, + STATE(892), 1, sym__soft_line_break, - STATE(2622), 1, + STATE(2913), 1, aux_sym__inlines_repeat1, - [111560] = 3, - ACTIONS(7441), 1, + [124016] = 3, + ACTIONS(7461), 1, sym__code_span_close, - STATE(2671), 1, + STATE(2877), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [111571] = 2, - ACTIONS(7439), 1, + [124027] = 3, + ACTIONS(7463), 1, + sym__code_span_close, + STATE(2877), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [124038] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + ACTIONS(7467), 1, + sym__commonmark_naked_value, + ACTIONS(7469), 1, + sym_fenced_div_note_id, + STATE(3382), 1, + sym__pandoc_attr_specifier, + [124051] = 2, + ACTIONS(7185), 1, sym__pipe_table_delimiter, - ACTIONS(7340), 3, + ACTIONS(2613), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [111580] = 4, - ACTIONS(2465), 1, + [124060] = 4, + ACTIONS(6438), 1, sym__soft_line_ending, - ACTIONS(7158), 1, - sym__strikeout_close, - STATE(884), 1, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(3443), 1, + sym__shortcode_sep, + [124073] = 4, + ACTIONS(7197), 1, + sym__emphasis_close_underscore, + ACTIONS(7199), 1, + sym__soft_line_ending, + STATE(898), 1, sym__soft_line_break, - STATE(2670), 1, + STATE(2919), 1, aux_sym__inlines_repeat1, - [111593] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - STATE(2451), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111606] = 2, - ACTIONS(7398), 1, - sym__pipe_table_delimiter, - ACTIONS(2433), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [111615] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - STATE(2437), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111628] = 2, - ACTIONS(7439), 1, - sym__pipe_table_delimiter, - ACTIONS(6927), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [111637] = 4, - ACTIONS(6674), 1, - aux_sym_target_token2, - ACTIONS(6680), 1, - sym__shortcode_open, - STATE(2431), 1, - aux_sym_target_repeat1, - STATE(2560), 1, - sym_shortcode, - [111650] = 4, - ACTIONS(7368), 1, - anon_sym_LBRACE, - ACTIONS(7443), 1, - sym__commonmark_naked_value, - ACTIONS(7445), 1, - sym_fenced_div_note_id, - STATE(3108), 1, - sym__pandoc_attr_specifier, - [111663] = 4, - ACTIONS(7368), 1, - anon_sym_LBRACE, - ACTIONS(7447), 1, - sym__commonmark_naked_value, - ACTIONS(7449), 1, - sym__whitespace, - STATE(3089), 1, - sym__pandoc_attr_specifier, - [111676] = 4, - ACTIONS(7368), 1, - anon_sym_LBRACE, - ACTIONS(7451), 1, - sym__commonmark_naked_value, - ACTIONS(7453), 1, - sym_fenced_div_note_id, - STATE(3093), 1, - sym__pandoc_attr_specifier, - [111689] = 4, - ACTIONS(7368), 1, - anon_sym_LBRACE, - ACTIONS(7455), 1, - sym__commonmark_naked_value, - ACTIONS(7457), 1, - sym__whitespace, - STATE(3105), 1, - sym__pandoc_attr_specifier, - [111702] = 3, - ACTIONS(7459), 1, + [124086] = 3, + ACTIONS(7471), 1, sym__code_span_close, - STATE(2671), 1, + STATE(2877), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [111713] = 3, - ACTIONS(7461), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3215), 1, - aux_sym_shortcode_repeat1, - [111723] = 3, - ACTIONS(181), 1, - sym__line_ending, - ACTIONS(7463), 1, - sym__eof, - STATE(384), 1, - sym__newline, - [111733] = 3, - ACTIONS(181), 1, - sym__line_ending, - ACTIONS(7465), 1, - sym__eof, - STATE(398), 1, - sym__newline, - [111743] = 3, - ACTIONS(2227), 1, - aux_sym_target_token1, - ACTIONS(7467), 1, - aux_sym_pandoc_span_token1, - STATE(1146), 1, - sym_target, - [111753] = 3, - ACTIONS(2227), 1, - aux_sym_target_token1, - ACTIONS(7469), 1, - aux_sym_pandoc_span_token1, - STATE(1147), 1, - sym_target, - [111763] = 3, - ACTIONS(2175), 1, - aux_sym_target_token1, - ACTIONS(7471), 1, - aux_sym_pandoc_span_token1, - STATE(1384), 1, - sym_target, - [111773] = 3, - ACTIONS(2175), 1, - aux_sym_target_token1, + [124097] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7406), 1, + sym__superscript_close, + STATE(889), 1, + sym__soft_line_break, + STATE(2934), 1, + aux_sym__inlines_repeat1, + [124110] = 3, ACTIONS(7473), 1, - aux_sym_pandoc_span_token1, - STATE(1385), 1, - sym_target, - [111783] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6522), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [111793] = 3, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6524), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [111803] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(7475), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [111813] = 3, - ACTIONS(6382), 1, + sym__code_span_close, + STATE(2877), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [124121] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7169), 1, + sym__strong_emphasis_close_star, + STATE(895), 1, + sym__soft_line_break, + STATE(2947), 1, + aux_sym__inlines_repeat1, + [124134] = 4, + ACTIONS(7197), 1, + sym__emphasis_close_star, + ACTIONS(7199), 1, + sym__soft_line_ending, + STATE(896), 1, + sym__soft_line_break, + STATE(2924), 1, + aux_sym__inlines_repeat1, + [124147] = 1, + ACTIONS(2865), 4, sym__key_specifier_token, - ACTIONS(7477), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [111823] = 3, - ACTIONS(2042), 1, - aux_sym_target_token1, - ACTIONS(7479), 1, - aux_sym_pandoc_span_token1, - STATE(1029), 1, - sym_target, - [111833] = 3, - ACTIONS(181), 1, - sym__line_ending, - ACTIONS(7481), 1, - sym__eof, - STATE(399), 1, - sym__newline, - [111843] = 3, - ACTIONS(181), 1, - sym__line_ending, - ACTIONS(7483), 1, - sym__eof, - STATE(335), 1, - sym__newline, - [111853] = 3, - ACTIONS(2330), 1, - sym__line_ending, - ACTIONS(7485), 1, + anon_sym_RBRACE, + aux_sym__commonmark_specifier_start_with_class_token1, sym__whitespace, - ACTIONS(7487), 1, + [124154] = 2, + ACTIONS(7185), 1, sym__pipe_table_delimiter, - [111863] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6428), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [111873] = 3, - ACTIONS(2042), 1, - aux_sym_target_token1, - ACTIONS(7489), 1, - aux_sym_pandoc_span_token1, - STATE(1041), 1, - sym_target, - [111883] = 3, - ACTIONS(2042), 1, - aux_sym_target_token1, - ACTIONS(7491), 1, - aux_sym_pandoc_span_token1, - STATE(1031), 1, - sym_target, - [111893] = 3, - ACTIONS(2237), 1, - aux_sym_target_token1, - ACTIONS(7493), 1, - aux_sym_pandoc_span_token1, - STATE(1172), 1, - sym_target, - [111903] = 3, - ACTIONS(2237), 1, - aux_sym_target_token1, - ACTIONS(7495), 1, - aux_sym_pandoc_span_token1, - STATE(1174), 1, - sym_target, - [111913] = 3, - ACTIONS(181), 1, - sym__line_ending, - ACTIONS(7497), 1, - sym__eof, - STATE(338), 1, - sym__newline, - [111923] = 3, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6430), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [111933] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6528), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [111943] = 3, - ACTIONS(2237), 1, - aux_sym_target_token1, - ACTIONS(7499), 1, - aux_sym_pandoc_span_token1, - STATE(1182), 1, - sym_target, - [111953] = 3, - ACTIONS(2237), 1, - aux_sym_target_token1, - ACTIONS(7501), 1, - aux_sym_pandoc_span_token1, - STATE(1183), 1, - sym_target, - [111963] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(7503), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [111973] = 3, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(7505), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [111983] = 3, - ACTIONS(181), 1, - sym__line_ending, - ACTIONS(7507), 1, - sym__eof, - STATE(375), 1, - sym__newline, - [111993] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6480), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [112003] = 3, - ACTIONS(25), 1, - sym__line_ending, - ACTIONS(7509), 1, - sym__eof, - STATE(476), 1, - sym__newline, - [112013] = 3, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6514), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [112023] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(7511), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [112033] = 3, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(7513), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [112043] = 3, - ACTIONS(7515), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3058), 1, - aux_sym_shortcode_escaped_repeat2, - [112053] = 3, - ACTIONS(7517), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3061), 1, - aux_sym_shortcode_repeat1, - [112063] = 3, - ACTIONS(25), 1, - sym__line_ending, - ACTIONS(7519), 1, - sym__eof, - STATE(581), 1, - sym__newline, - [112073] = 3, - ACTIONS(2116), 1, - aux_sym_target_token1, - ACTIONS(7521), 1, - aux_sym_pandoc_span_token1, - STATE(1336), 1, - sym_target, - [112083] = 3, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6384), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [112093] = 3, - ACTIONS(25), 1, - sym__line_ending, - ACTIONS(7523), 1, - sym__eof, - STATE(594), 1, - sym__newline, - [112103] = 3, - ACTIONS(7525), 1, - sym__line_ending, - ACTIONS(7527), 1, - sym__eof, - STATE(3843), 1, - sym__newline, - [112113] = 2, - ACTIONS(7529), 1, - aux_sym_pandoc_span_token1, - ACTIONS(7531), 2, - sym__soft_line_ending, - aux_sym_target_token1, - [112121] = 3, - ACTIONS(2042), 1, - aux_sym_target_token1, - ACTIONS(7533), 1, - aux_sym_pandoc_span_token1, - STATE(1042), 1, - sym_target, - [112131] = 3, - ACTIONS(2185), 1, - aux_sym_target_token1, - ACTIONS(7535), 1, - aux_sym_pandoc_span_token1, - STATE(1402), 1, - sym_target, - [112141] = 3, - ACTIONS(2247), 1, - aux_sym_target_token1, - ACTIONS(7537), 1, - aux_sym_pandoc_span_token1, - STATE(953), 1, - sym_target, - [112151] = 3, - ACTIONS(2247), 1, - aux_sym_target_token1, - ACTIONS(7539), 1, - aux_sym_pandoc_span_token1, - STATE(955), 1, - sym_target, - [112161] = 3, - ACTIONS(25), 1, + ACTIONS(2501), 3, sym__line_ending, - ACTIONS(7541), 1, sym__eof, - STATE(582), 1, - sym__newline, - [112171] = 3, - ACTIONS(2247), 1, - aux_sym_target_token1, - ACTIONS(7543), 1, - aux_sym_pandoc_span_token1, - STATE(961), 1, - sym_target, - [112181] = 3, - ACTIONS(2247), 1, - aux_sym_target_token1, - ACTIONS(7545), 1, - aux_sym_pandoc_span_token1, - STATE(962), 1, - sym_target, - [112191] = 3, - ACTIONS(2185), 1, - aux_sym_target_token1, - ACTIONS(7547), 1, - aux_sym_pandoc_span_token1, - STATE(1404), 1, - sym_target, - [112201] = 3, - ACTIONS(181), 1, + sym__pipe_table_line_ending, + [124163] = 2, + ACTIONS(7185), 1, + sym__pipe_table_delimiter, + ACTIONS(2629), 3, sym__line_ending, - ACTIONS(7549), 1, sym__eof, - STATE(420), 1, - sym__newline, - [112211] = 3, - ACTIONS(2433), 1, - sym__line_ending, - ACTIONS(7487), 1, - sym__pipe_table_delimiter, - ACTIONS(7551), 1, - sym__whitespace, - [112221] = 3, - ACTIONS(2116), 1, - aux_sym_target_token1, - ACTIONS(7553), 1, - aux_sym_pandoc_span_token1, - STATE(1340), 1, - sym_target, - [112231] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6444), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [112241] = 3, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6454), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [112251] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(7555), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [112261] = 3, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(7557), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [112271] = 3, - ACTIONS(2185), 1, - aux_sym_target_token1, - ACTIONS(7559), 1, - aux_sym_pandoc_span_token1, - STATE(1411), 1, - sym_target, - [112281] = 3, - ACTIONS(2185), 1, - aux_sym_target_token1, - ACTIONS(7561), 1, - aux_sym_pandoc_span_token1, - STATE(1412), 1, - sym_target, - [112291] = 3, - ACTIONS(2155), 1, - aux_sym_target_token1, - ACTIONS(7563), 1, - aux_sym_pandoc_span_token1, - STATE(1249), 1, - sym_target, - [112301] = 2, - ACTIONS(7565), 1, - sym_block_continuation, - ACTIONS(2705), 2, - sym__key_specifier_token, - aux_sym__commonmark_specifier_start_with_class_token2, - [112309] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6450), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [112319] = 3, - ACTIONS(111), 1, + sym__pipe_table_line_ending, + [124172] = 3, + ACTIONS(7475), 1, + sym__code_span_close, + STATE(2877), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [124183] = 2, + ACTIONS(7426), 1, + sym__pipe_table_delimiter, + ACTIONS(7477), 3, sym__line_ending, - ACTIONS(7567), 1, sym__eof, - STATE(502), 1, - sym__newline, - [112329] = 3, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(6452), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [112339] = 3, - ACTIONS(6388), 1, + sym__pipe_table_line_ending, + [124192] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7406), 1, + sym__strong_emphasis_close_underscore, + STATE(897), 1, + sym__soft_line_break, + STATE(2948), 1, + aux_sym__inlines_repeat1, + [124205] = 3, + ACTIONS(7479), 1, + sym__code_span_close, + STATE(2877), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [124216] = 4, + ACTIONS(6899), 1, + anon_sym_COLON, + ACTIONS(6901), 1, + anon_sym_DASH, + STATE(2834), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3291), 1, + sym_pipe_table_delimiter_cell, + [124229] = 4, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(7569), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, + ACTIONS(7455), 1, + aux_sym__commonmark_specifier_start_with_class_token2, + STATE(2571), 1, sym__commonmark_key_value_specifier, - [112349] = 3, - ACTIONS(2257), 1, - aux_sym_target_token1, - ACTIONS(7571), 1, - aux_sym_pandoc_span_token1, - STATE(1755), 1, - sym_target, - [112359] = 3, - ACTIONS(2257), 1, - aux_sym_target_token1, - ACTIONS(7573), 1, - aux_sym_pandoc_span_token1, - STATE(1757), 1, - sym_target, - [112369] = 3, - ACTIONS(6382), 1, + STATE(3735), 1, + sym__commonmark_specifier_start_with_kv, + [124242] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7169), 1, + sym__superscript_close, + STATE(889), 1, + sym__soft_line_break, + STATE(2887), 1, + aux_sym__inlines_repeat1, + [124255] = 4, + ACTIONS(6444), 1, sym__key_specifier_token, - ACTIONS(7575), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [112379] = 3, - ACTIONS(2155), 1, - aux_sym_target_token1, - ACTIONS(7577), 1, - aux_sym_pandoc_span_token1, - STATE(1259), 1, - sym_target, - [112389] = 3, - ACTIONS(6388), 1, + ACTIONS(7455), 1, + aux_sym__commonmark_specifier_start_with_class_token2, + STATE(2576), 1, + sym__commonmark_key_value_specifier, + STATE(3110), 1, + sym__commonmark_specifier_start_with_kv, + [124268] = 2, + ACTIONS(7481), 1, + sym_block_continuation, + ACTIONS(2419), 3, sym__key_specifier_token, - ACTIONS(6500), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + sym__whitespace, + [124277] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4125), 1, + sym__shortcode_sep, + [124290] = 4, + ACTIONS(7197), 1, + sym__strong_emphasis_close_underscore, + ACTIONS(7199), 1, + sym__soft_line_ending, + STATE(897), 1, + sym__soft_line_break, + STATE(2938), 1, + aux_sym__inlines_repeat1, + [124303] = 4, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(7455), 1, + aux_sym__commonmark_specifier_start_with_class_token2, + STATE(2576), 1, sym__commonmark_key_value_specifier, - [112399] = 3, - ACTIONS(2257), 1, - aux_sym_target_token1, - ACTIONS(7579), 1, - aux_sym_pandoc_span_token1, - STATE(1767), 1, - sym_target, - [112409] = 3, - ACTIONS(2257), 1, - aux_sym_target_token1, - ACTIONS(7581), 1, - aux_sym_pandoc_span_token1, - STATE(1768), 1, - sym_target, - [112419] = 3, - ACTIONS(7057), 1, - sym__shortcode_open, - ACTIONS(7583), 1, - aux_sym__commonmark_single_quote_string_token2, - STATE(2520), 1, - sym_shortcode, - [112429] = 3, - ACTIONS(25), 1, + STATE(3030), 1, + sym__commonmark_specifier_start_with_kv, + [124316] = 3, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7483), 1, + sym__whitespace, + STATE(754), 2, + sym__soft_line_break, + sym__inline_whitespace, + [124327] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7406), 1, + sym__subscript_close, + STATE(891), 1, + sym__soft_line_break, + STATE(2958), 1, + aux_sym__inlines_repeat1, + [124340] = 3, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7485), 1, + sym__whitespace, + STATE(767), 2, + sym__soft_line_break, + sym__inline_whitespace, + [124351] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7406), 1, + sym__double_quote_span_close, + STATE(890), 1, + sym__soft_line_break, + STATE(2964), 1, + aux_sym__inlines_repeat1, + [124364] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7406), 1, + sym__emphasis_close_star, + STATE(896), 1, + sym__soft_line_break, + STATE(2950), 1, + aux_sym__inlines_repeat1, + [124377] = 1, + ACTIONS(2861), 4, + sym__pipe_table_delimiter, + anon_sym_COLON, + anon_sym_DASH, + sym__whitespace, + [124384] = 4, + ACTIONS(7197), 1, + sym__double_quote_span_close, + ACTIONS(7199), 1, + sym__soft_line_ending, + STATE(890), 1, + sym__soft_line_break, + STATE(2946), 1, + aux_sym__inlines_repeat1, + [124397] = 4, + ACTIONS(7197), 1, + sym__strong_emphasis_close_star, + ACTIONS(7199), 1, + sym__soft_line_ending, + STATE(895), 1, + sym__soft_line_break, + STATE(2947), 1, + aux_sym__inlines_repeat1, + [124410] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7169), 1, + sym__strong_emphasis_close_underscore, + STATE(897), 1, + sym__soft_line_break, + STATE(2938), 1, + aux_sym__inlines_repeat1, + [124423] = 4, + ACTIONS(7197), 1, + sym__single_quote_span_close, + ACTIONS(7199), 1, + sym__soft_line_ending, + STATE(888), 1, + sym__soft_line_break, + STATE(2949), 1, + aux_sym__inlines_repeat1, + [124436] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7169), 1, + sym__emphasis_close_star, + STATE(896), 1, + sym__soft_line_break, + STATE(2924), 1, + aux_sym__inlines_repeat1, + [124449] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7406), 1, + sym__strikeout_close, + STATE(892), 1, + sym__soft_line_break, + STATE(2966), 1, + aux_sym__inlines_repeat1, + [124462] = 3, + ACTIONS(7487), 1, + sym__code_span_close, + STATE(2877), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [124473] = 2, + ACTIONS(7432), 1, + sym__pipe_table_delimiter, + ACTIONS(7418), 3, sym__line_ending, - ACTIONS(7585), 1, sym__eof, - STATE(518), 1, - sym__newline, - [112439] = 3, - ACTIONS(6388), 1, + sym__pipe_table_line_ending, + [124482] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + ACTIONS(7489), 1, + sym__commonmark_naked_value, + ACTIONS(7491), 1, + sym__whitespace, + STATE(3280), 1, + sym__pandoc_attr_specifier, + [124495] = 1, + ACTIONS(7493), 4, + sym__soft_line_ending, sym__key_specifier_token, - ACTIONS(6498), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [112449] = 3, - ACTIONS(6382), 1, + anon_sym_RBRACE, + sym__whitespace, + [124502] = 1, + ACTIONS(7495), 4, + sym__soft_line_ending, sym__key_specifier_token, - ACTIONS(6504), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [112459] = 3, - ACTIONS(6388), 1, + anon_sym_RBRACE, + sym__whitespace, + [124509] = 3, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7497), 1, + sym__whitespace, + STATE(756), 2, + sym__soft_line_break, + sym__inline_whitespace, + [124520] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7169), 1, + sym__subscript_close, + STATE(891), 1, + sym__soft_line_break, + STATE(2888), 1, + aux_sym__inlines_repeat1, + [124533] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7169), 1, + sym__emphasis_close_underscore, + STATE(898), 1, + sym__soft_line_break, + STATE(2919), 1, + aux_sym__inlines_repeat1, + [124546] = 1, + ACTIONS(7499), 4, + sym__soft_line_ending, sym__key_specifier_token, - ACTIONS(7587), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [112469] = 3, - ACTIONS(6382), 1, + anon_sym_RBRACE, + sym__whitespace, + [124553] = 1, + ACTIONS(7501), 4, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_RBRACE, + sym__whitespace, + [124560] = 3, + ACTIONS(7352), 1, + sym__soft_line_ending, + STATE(3267), 1, + sym__soft_line_break, + ACTIONS(6550), 2, sym__key_specifier_token, - ACTIONS(7589), 1, sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [112479] = 1, - ACTIONS(7591), 3, + [124571] = 3, + ACTIONS(7503), 1, + sym__code_span_close, + STATE(2877), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [124582] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7169), 1, + sym__double_quote_span_close, + STATE(890), 1, + sym__soft_line_break, + STATE(2946), 1, + aux_sym__inlines_repeat1, + [124595] = 1, + ACTIONS(7505), 4, sym__soft_line_ending, + sym__key_specifier_token, anon_sym_RBRACE, sym__whitespace, - [112485] = 3, - ACTIONS(7065), 1, - sym__shortcode_open, - ACTIONS(7593), 1, - aux_sym__commonmark_double_quote_string_token2, - STATE(2521), 1, - sym_shortcode, - [112495] = 3, - ACTIONS(7525), 1, + [124602] = 4, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7169), 1, + sym__strikeout_close, + STATE(892), 1, + sym__soft_line_break, + STATE(2913), 1, + aux_sym__inlines_repeat1, + [124615] = 3, + ACTIONS(2975), 1, + sym__soft_line_ending, + ACTIONS(7507), 1, + sym__whitespace, + STATE(757), 2, + sym__soft_line_break, + sym__inline_whitespace, + [124626] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + ACTIONS(7509), 1, + sym__commonmark_naked_value, + ACTIONS(7511), 1, + sym__whitespace, + STATE(3301), 1, + sym__pandoc_attr_specifier, + [124639] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + ACTIONS(7513), 1, + sym__commonmark_naked_value, + ACTIONS(7515), 1, + sym_fenced_div_note_id, + STATE(3306), 1, + sym__pandoc_attr_specifier, + [124652] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + ACTIONS(7517), 1, + sym__commonmark_naked_value, + ACTIONS(7519), 1, + sym__whitespace, + STATE(3319), 1, + sym__pandoc_attr_specifier, + [124665] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + ACTIONS(7521), 1, + sym__commonmark_naked_value, + ACTIONS(7523), 1, + sym_fenced_div_note_id, + STATE(3324), 1, + sym__pandoc_attr_specifier, + [124678] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4071), 1, + sym__shortcode_sep, + [124691] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4072), 1, + sym__shortcode_sep, + [124704] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4085), 1, + sym__shortcode_sep, + [124717] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4086), 1, + sym__shortcode_sep, + [124730] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4096), 1, + sym__shortcode_sep, + [124743] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4097), 1, + sym__shortcode_sep, + [124756] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4098), 1, + sym__shortcode_sep, + [124769] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4099), 1, + sym__shortcode_sep, + [124782] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4100), 1, + sym__shortcode_sep, + [124795] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4101), 1, + sym__shortcode_sep, + [124808] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4102), 1, + sym__shortcode_sep, + [124821] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4103), 1, + sym__shortcode_sep, + [124834] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4104), 1, + sym__shortcode_sep, + [124847] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4105), 1, + sym__shortcode_sep, + [124860] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4106), 1, + sym__shortcode_sep, + [124873] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4107), 1, + sym__shortcode_sep, + [124886] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4108), 1, + sym__shortcode_sep, + [124899] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4109), 1, + sym__shortcode_sep, + [124912] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4110), 1, + sym__shortcode_sep, + [124925] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4111), 1, + sym__shortcode_sep, + [124938] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4112), 1, + sym__shortcode_sep, + [124951] = 2, + ACTIONS(7185), 1, + sym__pipe_table_delimiter, + ACTIONS(7418), 3, sym__line_ending, - ACTIONS(7595), 1, sym__eof, - STATE(3772), 1, - sym__newline, - [112505] = 3, - ACTIONS(6546), 1, - sym__key_specifier_token, - ACTIONS(6851), 1, - anon_sym_RBRACE, - STATE(2714), 1, - sym__commonmark_key_value_specifier, - [112515] = 3, - ACTIONS(2155), 1, - aux_sym_target_token1, - ACTIONS(7597), 1, - aux_sym_pandoc_span_token1, - STATE(1279), 1, - sym_target, - [112525] = 3, - ACTIONS(7320), 1, - sym__line_ending, - ACTIONS(7487), 1, - sym__pipe_table_delimiter, - ACTIONS(7599), 1, + sym__pipe_table_line_ending, + [124960] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, sym__whitespace, - [112535] = 3, - ACTIONS(2155), 1, - aux_sym_target_token1, - ACTIONS(7601), 1, - aux_sym_pandoc_span_token1, - STATE(1281), 1, - sym_target, - [112545] = 1, - ACTIONS(7018), 3, + STATE(3266), 1, + sym__soft_line_break, + STATE(4114), 1, + sym__shortcode_sep, + [124973] = 4, + ACTIONS(6438), 1, sym__soft_line_ending, - anon_sym_RBRACE, + ACTIONS(7424), 1, sym__whitespace, - [112551] = 3, - ACTIONS(2433), 1, - sym__line_ending, - ACTIONS(7603), 1, + STATE(3266), 1, + sym__soft_line_break, + STATE(4115), 1, + sym__shortcode_sep, + [124986] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, sym__whitespace, - ACTIONS(7605), 1, - sym__pipe_table_delimiter, - [112561] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6464), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [112571] = 3, - ACTIONS(6382), 1, + STATE(3266), 1, + sym__soft_line_break, + STATE(4116), 1, + sym__shortcode_sep, + [124999] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4117), 1, + sym__shortcode_sep, + [125012] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4118), 1, + sym__shortcode_sep, + [125025] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4119), 1, + sym__shortcode_sep, + [125038] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4120), 1, + sym__shortcode_sep, + [125051] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4121), 1, + sym__shortcode_sep, + [125064] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4122), 1, + sym__shortcode_sep, + [125077] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4123), 1, + sym__shortcode_sep, + [125090] = 4, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(7424), 1, + sym__whitespace, + STATE(3266), 1, + sym__soft_line_break, + STATE(4124), 1, + sym__shortcode_sep, + [125103] = 3, + ACTIONS(7525), 1, + sym__code_span_close, + STATE(2877), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [125114] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(6466), 1, + ACTIONS(7527), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112581] = 3, - ACTIONS(2267), 1, - aux_sym_target_token1, - ACTIONS(7607), 1, - aux_sym_pandoc_span_token1, - STATE(927), 1, - sym_target, - [112591] = 3, - ACTIONS(2267), 1, + [125124] = 3, + ACTIONS(2439), 1, aux_sym_target_token1, - ACTIONS(7609), 1, + ACTIONS(7529), 1, aux_sym_pandoc_span_token1, - STATE(929), 1, + STATE(1188), 1, sym_target, - [112601] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(7611), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [112611] = 3, - ACTIONS(25), 1, - sym__line_ending, - ACTIONS(7613), 1, - sym__eof, - STATE(537), 1, - sym__newline, - [112621] = 3, - ACTIONS(2267), 1, + [125134] = 3, + ACTIONS(2315), 1, aux_sym_target_token1, - ACTIONS(7615), 1, + ACTIONS(7531), 1, aux_sym_pandoc_span_token1, - STATE(930), 1, + STATE(935), 1, sym_target, - [112631] = 3, - ACTIONS(2267), 1, + [125144] = 3, + ACTIONS(2315), 1, aux_sym_target_token1, - ACTIONS(7617), 1, + ACTIONS(7533), 1, aux_sym_pandoc_span_token1, - STATE(914), 1, + STATE(936), 1, sym_target, - [112641] = 3, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(7619), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [112651] = 3, - ACTIONS(2201), 1, + [125154] = 3, + ACTIONS(2245), 1, aux_sym_target_token1, - ACTIONS(7621), 1, + ACTIONS(7535), 1, aux_sym_pandoc_span_token1, - STATE(1434), 1, + STATE(1448), 1, sym_target, - [112661] = 3, - ACTIONS(7525), 1, + [125164] = 3, + ACTIONS(191), 1, sym__line_ending, - ACTIONS(7623), 1, + ACTIONS(7537), 1, sym__eof, - STATE(3409), 1, + STATE(288), 1, sym__newline, - [112671] = 1, - ACTIONS(7281), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [112677] = 3, - ACTIONS(6388), 1, + [125174] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6394), 1, + ACTIONS(6348), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, sym__commonmark_key_value_specifier, - [112687] = 3, - ACTIONS(2201), 1, - aux_sym_target_token1, - ACTIONS(7625), 1, - aux_sym_pandoc_span_token1, - STATE(1436), 1, - sym_target, - [112697] = 3, - ACTIONS(6382), 1, + [125184] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(6396), 1, + ACTIONS(6350), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112707] = 3, - ACTIONS(6388), 1, + [125194] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(7627), 1, + ACTIONS(7539), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, sym__commonmark_key_value_specifier, - [112717] = 3, - ACTIONS(6382), 1, + [125204] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(7629), 1, + ACTIONS(7541), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112727] = 3, - ACTIONS(6546), 1, + [125214] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(7253), 1, - anon_sym_RBRACE, - STATE(2714), 1, + ACTIONS(6354), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [125224] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6322), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, sym__commonmark_key_value_specifier, - [112737] = 3, - ACTIONS(6382), 1, + [125234] = 3, + ACTIONS(191), 1, + sym__line_ending, + ACTIONS(7543), 1, + sym__eof, + STATE(272), 1, + sym__newline, + [125244] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(6400), 1, + ACTIONS(6358), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112747] = 3, - ACTIONS(6382), 1, + [125254] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(7631), 1, + ACTIONS(7545), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112757] = 3, - ACTIONS(6382), 1, + [125264] = 3, + ACTIONS(25), 1, + sym__line_ending, + ACTIONS(7547), 1, + sym__eof, + STATE(339), 1, + sym__newline, + [125274] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(6404), 1, + ACTIONS(6360), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112767] = 3, - ACTIONS(6382), 1, + [125284] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(7633), 1, + ACTIONS(7549), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112777] = 3, - ACTIONS(111), 1, + [125294] = 3, + ACTIONS(191), 1, sym__line_ending, - ACTIONS(7635), 1, + ACTIONS(7551), 1, sym__eof, - STATE(603), 1, + STATE(273), 1, sym__newline, - [112787] = 3, - ACTIONS(2201), 1, - aux_sym_target_token1, - ACTIONS(7637), 1, - aux_sym_pandoc_span_token1, - STATE(1443), 1, - sym_target, - [112797] = 3, - ACTIONS(6382), 1, + [125304] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(6408), 1, + ACTIONS(6364), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112807] = 3, - ACTIONS(6382), 1, + [125314] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(7639), 1, + ACTIONS(7553), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112817] = 3, - ACTIONS(2201), 1, + [125324] = 3, + ACTIONS(191), 1, + sym__line_ending, + ACTIONS(7555), 1, + sym__eof, + STATE(274), 1, + sym__newline, + [125334] = 2, + STATE(2914), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [125342] = 3, + ACTIONS(113), 1, + sym__line_ending, + ACTIONS(7557), 1, + sym__eof, + STATE(406), 1, + sym__newline, + [125352] = 1, + ACTIONS(7559), 3, + sym__soft_line_ending, + anon_sym_RBRACE, + sym__whitespace, + [125358] = 3, + ACTIONS(2245), 1, aux_sym_target_token1, - ACTIONS(7641), 1, + ACTIONS(7561), 1, aux_sym_pandoc_span_token1, - STATE(1444), 1, + STATE(1070), 1, sym_target, - [112827] = 3, - ACTIONS(6382), 1, + [125368] = 3, + ACTIONS(2245), 1, + aux_sym_target_token1, + ACTIONS(7563), 1, + aux_sym_pandoc_span_token1, + STATE(1073), 1, + sym_target, + [125378] = 3, + ACTIONS(25), 1, + sym__line_ending, + ACTIONS(7565), 1, + sym__eof, + STATE(348), 1, + sym__newline, + [125388] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6502), 1, + ACTIONS(6380), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [125398] = 3, + ACTIONS(2149), 1, + aux_sym_target_token1, + ACTIONS(7567), 1, + aux_sym_pandoc_span_token1, + STATE(1017), 1, + sym_target, + [125408] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6332), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112837] = 3, - ACTIONS(6382), 1, + [125418] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6412), 1, + ACTIONS(6370), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [125428] = 3, + ACTIONS(7005), 1, + sym__shortcode_open, + ACTIONS(7569), 1, + aux_sym__commonmark_double_quote_string_token2, + STATE(2668), 1, + sym_shortcode, + [125438] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6372), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112847] = 3, + [125448] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, ACTIONS(6382), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [125458] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7573), 1, + sym__eof, + STATE(3623), 1, + sym__newline, + [125468] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(7643), 1, + ACTIONS(7575), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [125478] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(7577), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112857] = 3, - ACTIONS(6388), 1, + [125488] = 3, + ACTIONS(7005), 1, + sym__shortcode_open, + ACTIONS(7579), 1, + aux_sym__commonmark_double_quote_string_token2, + STATE(2608), 1, + sym_shortcode, + [125498] = 3, + ACTIONS(7043), 1, + sym__shortcode_open, + ACTIONS(7581), 1, + aux_sym__commonmark_single_quote_string_token2, + STATE(2692), 1, + sym_shortcode, + [125508] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7583), 1, + sym__eof, + STATE(3675), 1, + sym__newline, + [125518] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7585), 1, + sym__eof, + STATE(3677), 1, + sym__newline, + [125528] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6472), 1, + ACTIONS(7587), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [125538] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(7589), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [125548] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7591), 1, + sym__eof, + STATE(3696), 1, + sym__newline, + [125558] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7593), 1, + sym__eof, + STATE(3697), 1, + sym__newline, + [125568] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7595), 1, + sym__eof, + STATE(3698), 1, + sym__newline, + [125578] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7597), 1, + sym__eof, + STATE(3699), 1, + sym__newline, + [125588] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7599), 1, + sym__eof, + STATE(3705), 1, + sym__newline, + [125598] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7601), 1, + sym__eof, + STATE(3706), 1, + sym__newline, + [125608] = 3, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(7181), 1, + anon_sym_RBRACE, + STATE(2876), 1, sym__commonmark_key_value_specifier, - [112867] = 2, - STATE(2675), 1, + [125618] = 2, + STATE(2883), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [112875] = 3, - ACTIONS(6382), 1, + [125626] = 3, + ACTIONS(2501), 1, + sym__line_ending, + ACTIONS(7603), 1, + sym__whitespace, + ACTIONS(7605), 1, + sym__pipe_table_delimiter, + [125636] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(6474), 1, + ACTIONS(7607), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [112885] = 3, - ACTIONS(6388), 1, + [125646] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(7645), 1, + ACTIONS(7609), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [125656] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(7611), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [125666] = 1, + ACTIONS(2865), 3, + sym__key_specifier_token, + sym__shortcode_close_escaped, + sym__whitespace, + [125672] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(7613), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, sym__commonmark_key_value_specifier, - [112895] = 3, + [125682] = 3, ACTIONS(25), 1, sym__line_ending, - ACTIONS(7647), 1, + ACTIONS(7615), 1, sym__eof, - STATE(580), 1, + STATE(336), 1, sym__newline, - [112905] = 3, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(7649), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [112915] = 3, - ACTIONS(2439), 1, + [125692] = 3, + ACTIONS(7571), 1, sym__line_ending, - ACTIONS(7605), 1, - sym__pipe_table_delimiter, - ACTIONS(7651), 1, - sym__whitespace, - [112925] = 1, - ACTIONS(7239), 3, + ACTIONS(7617), 1, + sym__eof, + STATE(3707), 1, + sym__newline, + [125702] = 3, + ACTIONS(2613), 1, sym__line_ending, + ACTIONS(7605), 1, sym__pipe_table_delimiter, + ACTIONS(7619), 1, sym__whitespace, - [112931] = 3, - ACTIONS(7525), 1, + [125712] = 3, + ACTIONS(7571), 1, sym__line_ending, - ACTIONS(7653), 1, + ACTIONS(7621), 1, sym__eof, - STATE(3359), 1, + STATE(3920), 1, sym__newline, - [112941] = 3, - ACTIONS(2145), 1, + [125722] = 3, + ACTIONS(2209), 1, aux_sym_target_token1, - ACTIONS(7655), 1, + ACTIONS(7623), 1, aux_sym_pandoc_span_token1, - STATE(1126), 1, + STATE(1268), 1, sym_target, - [112951] = 3, - ACTIONS(6388), 1, + [125732] = 3, + ACTIONS(7625), 1, + sym__line_ending, + ACTIONS(7627), 1, + sym__eof, + STATE(3952), 1, + sym__newline, + [125742] = 3, + ACTIONS(113), 1, + sym__line_ending, + ACTIONS(7629), 1, + sym__eof, + STATE(342), 1, + sym__newline, + [125752] = 3, + ACTIONS(7005), 1, + sym__shortcode_open, + ACTIONS(7631), 1, + aux_sym__commonmark_double_quote_string_token2, + STATE(2611), 1, + sym_shortcode, + [125762] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7633), 1, + sym__eof, + STATE(3960), 1, + sym__newline, + [125772] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7635), 1, + sym__eof, + STATE(3965), 1, + sym__newline, + [125782] = 2, + ACTIONS(7637), 1, + sym__whitespace, + ACTIONS(6550), 2, sym__key_specifier_token, - ACTIONS(7657), 1, sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [112961] = 3, - ACTIONS(2145), 1, - aux_sym_target_token1, - ACTIONS(7659), 1, - aux_sym_pandoc_span_token1, - STATE(1139), 1, - sym_target, - [112971] = 3, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6544), 1, - sym__language_specifier_token, - STATE(3402), 1, - sym_language_specifier, - [112981] = 3, - ACTIONS(6382), 1, - sym__key_specifier_token, - ACTIONS(7661), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [112991] = 3, - ACTIONS(7663), 1, - sym__whitespace, - STATE(2764), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3079), 1, - aux_sym_shortcode_escaped_repeat2, - [113001] = 3, - ACTIONS(7525), 1, + [125790] = 3, + ACTIONS(7571), 1, sym__line_ending, - ACTIONS(7665), 1, + ACTIONS(7639), 1, sym__eof, - STATE(3400), 1, + STATE(3598), 1, sym__newline, - [113011] = 3, - ACTIONS(7525), 1, + [125800] = 3, + ACTIONS(7571), 1, sym__line_ending, - ACTIONS(7667), 1, + ACTIONS(7641), 1, sym__eof, - STATE(3408), 1, + STATE(3980), 1, + sym__newline, + [125810] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7643), 1, + sym__eof, + STATE(3982), 1, + sym__newline, + [125820] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7645), 1, + sym__eof, + STATE(3983), 1, + sym__newline, + [125830] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7647), 1, + sym__eof, + STATE(3985), 1, + sym__newline, + [125840] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7649), 1, + sym__eof, + STATE(3990), 1, sym__newline, - [113021] = 2, - STATE(2646), 1, + [125850] = 3, + ACTIONS(7571), 1, + sym__line_ending, + ACTIONS(7651), 1, + sym__eof, + STATE(3991), 1, + sym__newline, + [125860] = 2, + STATE(2952), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [113029] = 3, - ACTIONS(7669), 1, + [125868] = 3, + ACTIONS(7653), 1, + sym__line_ending, + ACTIONS(7655), 1, + sym__eof, + STATE(3292), 1, + sym__newline, + [125878] = 3, + ACTIONS(2613), 1, + sym__line_ending, + ACTIONS(7657), 1, sym__whitespace, - STATE(2870), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3094), 1, - aux_sym_shortcode_escaped_repeat2, - [113039] = 3, - ACTIONS(7671), 1, + ACTIONS(7659), 1, + sym__pipe_table_delimiter, + [125888] = 3, + ACTIONS(2629), 1, + sym__line_ending, + ACTIONS(7605), 1, + sym__pipe_table_delimiter, + ACTIONS(7661), 1, sym__whitespace, - STATE(2871), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3095), 1, - aux_sym_shortcode_repeat1, - [113049] = 3, - ACTIONS(7525), 1, + [125898] = 3, + ACTIONS(2255), 1, + aux_sym_target_token1, + ACTIONS(7663), 1, + aux_sym_pandoc_span_token1, + STATE(1143), 1, + sym_target, + [125908] = 1, + ACTIONS(7372), 3, sym__line_ending, + sym__pipe_table_delimiter, + sym__whitespace, + [125914] = 3, + ACTIONS(2255), 1, + aux_sym_target_token1, + ACTIONS(7665), 1, + aux_sym_pandoc_span_token1, + STATE(1152), 1, + sym_target, + [125924] = 3, + ACTIONS(2433), 1, + aux_sym_target_token1, + ACTIONS(7667), 1, + aux_sym_pandoc_span_token1, + STATE(1232), 1, + sym_target, + [125934] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(7669), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [125944] = 3, + ACTIONS(2255), 1, + aux_sym_target_token1, + ACTIONS(7671), 1, + aux_sym_pandoc_span_token1, + STATE(1189), 1, + sym_target, + [125954] = 3, + ACTIONS(2255), 1, + aux_sym_target_token1, ACTIONS(7673), 1, - sym__eof, - STATE(3342), 1, - sym__newline, - [113059] = 2, - ACTIONS(7675), 1, - sym_block_continuation, - ACTIONS(2705), 2, - sym__shortcode_open, - aux_sym_target_token2, - [113067] = 3, - ACTIONS(7525), 1, + aux_sym_pandoc_span_token1, + STATE(1190), 1, + sym_target, + [125964] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6410), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [125974] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6422), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [125984] = 2, + STATE(2899), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [125992] = 3, + ACTIONS(191), 1, sym__line_ending, - ACTIONS(7677), 1, + ACTIONS(7675), 1, sym__eof, - STATE(3695), 1, + STATE(311), 1, sym__newline, - [113077] = 3, + [126002] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(7677), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [126012] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, ACTIONS(7679), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3097), 1, - aux_sym_shortcode_escaped_repeat2, - [113087] = 3, - ACTIONS(7681), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3098), 1, - aux_sym_shortcode_repeat1, - [113097] = 3, - ACTIONS(7057), 1, - sym__shortcode_open, - ACTIONS(7683), 1, - aux_sym__commonmark_single_quote_string_token2, - STATE(2531), 1, - sym_shortcode, - [113107] = 3, - ACTIONS(7065), 1, - sym__shortcode_open, - ACTIONS(7685), 1, - aux_sym__commonmark_double_quote_string_token2, - STATE(2532), 1, - sym_shortcode, - [113117] = 3, - ACTIONS(7525), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [126022] = 3, + ACTIONS(25), 1, sym__line_ending, - ACTIONS(7687), 1, + ACTIONS(7681), 1, sym__eof, - STATE(3723), 1, + STATE(340), 1, sym__newline, - [113127] = 3, - ACTIONS(7525), 1, + [126032] = 3, + ACTIONS(2209), 1, + aux_sym_target_token1, + ACTIONS(7683), 1, + aux_sym_pandoc_span_token1, + STATE(1277), 1, + sym_target, + [126042] = 3, + ACTIONS(113), 1, sym__line_ending, - ACTIONS(7689), 1, + ACTIONS(7685), 1, sym__eof, - STATE(3727), 1, + STATE(371), 1, sym__newline, - [113137] = 3, - ACTIONS(7525), 1, + [126052] = 3, + ACTIONS(113), 1, sym__line_ending, - ACTIONS(7691), 1, + ACTIONS(7687), 1, sym__eof, - STATE(3747), 1, + STATE(375), 1, sym__newline, - [113147] = 3, - ACTIONS(7525), 1, + [126062] = 3, + ACTIONS(2209), 1, + aux_sym_target_token1, + ACTIONS(7689), 1, + aux_sym_pandoc_span_token1, + STATE(1278), 1, + sym_target, + [126072] = 3, + ACTIONS(2149), 1, + aux_sym_target_token1, + ACTIONS(7691), 1, + aux_sym_pandoc_span_token1, + STATE(1019), 1, + sym_target, + [126082] = 3, + ACTIONS(7418), 1, sym__line_ending, + ACTIONS(7605), 1, + sym__pipe_table_delimiter, ACTIONS(7693), 1, - sym__eof, - STATE(3748), 1, - sym__newline, - [113157] = 3, - ACTIONS(7525), 1, + sym__whitespace, + [126092] = 3, + ACTIONS(113), 1, sym__line_ending, ACTIONS(7695), 1, sym__eof, - STATE(3749), 1, - sym__newline, - [113167] = 3, - ACTIONS(7525), 1, - sym__line_ending, - ACTIONS(7697), 1, - sym__eof, - STATE(3752), 1, + STATE(368), 1, sym__newline, - [113177] = 3, - ACTIONS(7525), 1, + [126102] = 2, + ACTIONS(7697), 1, + sym__whitespace, + ACTIONS(6550), 2, + sym__key_specifier_token, + sym__shortcode_close, + [126110] = 2, + STATE(2874), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [126118] = 3, + ACTIONS(113), 1, sym__line_ending, ACTIONS(7699), 1, sym__eof, - STATE(3753), 1, + STATE(359), 1, sym__newline, - [113187] = 3, - ACTIONS(7525), 1, + [126128] = 1, + ACTIONS(7701), 3, + sym__soft_line_ending, + anon_sym_RBRACE, + sym__whitespace, + [126134] = 3, + ACTIONS(113), 1, sym__line_ending, - ACTIONS(7701), 1, + ACTIONS(7703), 1, sym__eof, - STATE(3768), 1, + STATE(378), 1, sym__newline, - [113197] = 2, - ACTIONS(7529), 1, - sym__whitespace, - ACTIONS(7531), 2, - sym__soft_line_ending, - aux_sym_inline_note_token1, - [113205] = 2, - STATE(2718), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [113213] = 3, - ACTIONS(2207), 1, + [126144] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6420), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [126154] = 3, + ACTIONS(2265), 1, aux_sym_target_token1, - ACTIONS(7703), 1, + ACTIONS(7705), 1, aux_sym_pandoc_span_token1, - STATE(1461), 1, + STATE(1245), 1, sym_target, - [113223] = 3, - ACTIONS(7705), 1, - sym__whitespace, - STATE(2765), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3080), 1, - aux_sym_shortcode_repeat1, - [113233] = 1, - ACTIONS(7531), 3, + [126164] = 3, + ACTIONS(25), 1, sym__line_ending, - sym__soft_line_ending, + ACTIONS(7707), 1, sym__eof, - [113239] = 3, - ACTIONS(2207), 1, + STATE(338), 1, + sym__newline, + [126174] = 3, + ACTIONS(2265), 1, aux_sym_target_token1, - ACTIONS(7707), 1, + ACTIONS(7709), 1, aux_sym_pandoc_span_token1, - STATE(1463), 1, + STATE(1256), 1, sym_target, - [113249] = 3, - ACTIONS(2145), 1, + [126184] = 2, + STATE(2931), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [126192] = 3, + ACTIONS(2225), 1, aux_sym_target_token1, - ACTIONS(7709), 1, + ACTIONS(7711), 1, aux_sym_pandoc_span_token1, - STATE(1155), 1, + STATE(1324), 1, sym_target, - [113259] = 3, - ACTIONS(2207), 1, + [126202] = 3, + ACTIONS(191), 1, + sym__line_ending, + ACTIONS(7713), 1, + sym__eof, + STATE(284), 1, + sym__newline, + [126212] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6424), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [126222] = 3, + ACTIONS(2341), 1, aux_sym_target_token1, - ACTIONS(7711), 1, + ACTIONS(7715), 1, aux_sym_pandoc_span_token1, - STATE(1469), 1, + STATE(1137), 1, sym_target, - [113269] = 3, - ACTIONS(2207), 1, + [126232] = 3, + ACTIONS(2225), 1, aux_sym_target_token1, - ACTIONS(7713), 1, + ACTIONS(7717), 1, aux_sym_pandoc_span_token1, - STATE(1470), 1, + STATE(1326), 1, sym_target, - [113279] = 3, - ACTIONS(6388), 1, + [126242] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(7715), 1, + ACTIONS(7719), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, sym__commonmark_key_value_specifier, - [113289] = 3, - ACTIONS(7717), 1, - sym__whitespace, - STATE(2896), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3110), 1, - aux_sym_shortcode_escaped_repeat2, - [113299] = 3, - ACTIONS(7719), 1, - sym__whitespace, - STATE(2897), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3111), 1, - aux_sym_shortcode_repeat1, - [113309] = 3, - ACTIONS(2145), 1, + [126252] = 3, + ACTIONS(2265), 1, aux_sym_target_token1, ACTIONS(7721), 1, aux_sym_pandoc_span_token1, - STATE(1158), 1, + STATE(1334), 1, sym_target, - [113319] = 3, - ACTIONS(7525), 1, - sym__line_ending, + [126262] = 2, + STATE(2901), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [126270] = 3, + ACTIONS(2341), 1, + aux_sym_target_token1, ACTIONS(7723), 1, + aux_sym_pandoc_span_token1, + STATE(1139), 1, + sym_target, + [126280] = 3, + ACTIONS(191), 1, + sym__line_ending, + ACTIONS(7725), 1, sym__eof, - STATE(3385), 1, + STATE(314), 1, sym__newline, - [113329] = 3, - ACTIONS(7725), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3113), 1, - aux_sym_shortcode_escaped_repeat2, - [113339] = 3, + [126290] = 3, + ACTIONS(2265), 1, + aux_sym_target_token1, ACTIONS(7727), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3114), 1, - aux_sym_shortcode_repeat1, - [113349] = 3, - ACTIONS(7525), 1, + aux_sym_pandoc_span_token1, + STATE(1335), 1, + sym_target, + [126300] = 3, + ACTIONS(6438), 1, + sym__soft_line_ending, + ACTIONS(6550), 1, + sym_shortcode_name, + STATE(3446), 1, + sym__soft_line_break, + [126310] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6412), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [126320] = 3, + ACTIONS(191), 1, sym__line_ending, ACTIONS(7729), 1, sym__eof, - STATE(3493), 1, + STATE(260), 1, sym__newline, - [113359] = 3, - ACTIONS(7525), 1, + [126330] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6414), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [126340] = 2, + STATE(2920), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [126348] = 3, + ACTIONS(7571), 1, sym__line_ending, ACTIONS(7731), 1, sym__eof, - STATE(3508), 1, + STATE(4130), 1, sym__newline, - [113369] = 3, - ACTIONS(7525), 1, - sym__line_ending, + [126358] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, ACTIONS(7733), 1, - sym__eof, - STATE(3551), 1, - sym__newline, - [113379] = 3, - ACTIONS(7525), 1, - sym__line_ending, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [126368] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, ACTIONS(7735), 1, - sym__eof, - STATE(3553), 1, - sym__newline, - [113389] = 3, - ACTIONS(7525), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [126378] = 3, + ACTIONS(7571), 1, sym__line_ending, ACTIONS(7737), 1, sym__eof, - STATE(3559), 1, - sym__newline, - [113399] = 3, - ACTIONS(2175), 1, - aux_sym_target_token1, - ACTIONS(7739), 1, - aux_sym_pandoc_span_token1, - STATE(1378), 1, - sym_target, - [113409] = 3, - ACTIONS(7525), 1, - sym__line_ending, - ACTIONS(7741), 1, - sym__eof, - STATE(3687), 1, + STATE(3740), 1, sym__newline, - [113419] = 3, - ACTIONS(7525), 1, + [126388] = 3, + ACTIONS(113), 1, sym__line_ending, - ACTIONS(7743), 1, + ACTIONS(7739), 1, sym__eof, - STATE(3692), 1, + STATE(380), 1, sym__newline, - [113429] = 2, - STATE(2652), 1, + [126398] = 2, + STATE(3005), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [113437] = 3, - ACTIONS(2195), 1, + [126406] = 3, + ACTIONS(2225), 1, aux_sym_target_token1, - ACTIONS(7745), 1, + ACTIONS(7741), 1, aux_sym_pandoc_span_token1, - STATE(1262), 1, + STATE(1340), 1, sym_target, - [113447] = 3, - ACTIONS(2195), 1, - aux_sym_target_token1, + [126416] = 3, + ACTIONS(113), 1, + sym__line_ending, + ACTIONS(7743), 1, + sym__eof, + STATE(382), 1, + sym__newline, + [126426] = 2, ACTIONS(7747), 1, + sym__whitespace, + ACTIONS(7745), 2, + sym__soft_line_ending, + aux_sym_inline_note_token1, + [126434] = 3, + ACTIONS(2439), 1, + aux_sym_target_token1, + ACTIONS(7749), 1, aux_sym_pandoc_span_token1, - STATE(1350), 1, + STATE(1187), 1, sym_target, - [113457] = 3, - ACTIONS(2165), 1, + [126444] = 3, + ACTIONS(2341), 1, aux_sym_target_token1, - ACTIONS(7749), 1, + ACTIONS(7751), 1, aux_sym_pandoc_span_token1, - STATE(1341), 1, + STATE(1169), 1, sym_target, - [113467] = 1, - ACTIONS(7751), 3, - sym__soft_line_ending, - anon_sym_RBRACE, - sym__whitespace, - [113473] = 3, + [126454] = 3, + ACTIONS(25), 1, + sym__line_ending, ACTIONS(7753), 1, + sym__eof, + STATE(441), 1, + sym__newline, + [126464] = 3, + ACTIONS(113), 1, sym__line_ending, ACTIONS(7755), 1, sym__eof, - STATE(3708), 1, + STATE(388), 1, sym__newline, - [113483] = 3, - ACTIONS(7757), 1, - sym__whitespace, - STATE(2915), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3118), 1, - aux_sym_shortcode_escaped_repeat2, - [113493] = 3, - ACTIONS(7759), 1, - sym__whitespace, - STATE(2916), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3119), 1, - aux_sym_shortcode_repeat1, - [113503] = 3, - ACTIONS(2165), 1, + [126474] = 3, + ACTIONS(2225), 1, aux_sym_target_token1, - ACTIONS(7761), 1, + ACTIONS(7757), 1, aux_sym_pandoc_span_token1, - STATE(1343), 1, + STATE(1341), 1, sym_target, - [113513] = 3, - ACTIONS(7763), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3121), 1, - aux_sym_shortcode_escaped_repeat2, - [113523] = 3, - ACTIONS(7765), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3122), 1, - aux_sym_shortcode_repeat1, - [113533] = 2, - STATE(2627), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + [126484] = 1, + ACTIONS(7759), 3, + sym__code_span_close, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [113541] = 3, - ACTIONS(7767), 1, - sym__whitespace, - STATE(2921), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3124), 1, - aux_sym_shortcode_escaped_repeat2, - [113551] = 3, - ACTIONS(7769), 1, - sym__whitespace, - STATE(2922), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3125), 1, - aux_sym_shortcode_repeat1, - [113561] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6486), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [113571] = 3, - ACTIONS(7771), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3127), 1, - aux_sym_shortcode_escaped_repeat2, - [113581] = 3, - ACTIONS(7773), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3128), 1, - aux_sym_shortcode_repeat1, - [113591] = 2, - STATE(2690), 1, + [126490] = 2, + STATE(2963), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [113599] = 3, - ACTIONS(6382), 1, + [126498] = 1, + ACTIONS(2865), 3, sym__key_specifier_token, - ACTIONS(7775), 1, sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [113609] = 3, - ACTIONS(6382), 1, + sym__whitespace, + [126504] = 2, + ACTIONS(7761), 1, + sym_block_continuation, + ACTIONS(2413), 2, + sym__line_ending, + sym__eof, + [126512] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(6488), 1, + ACTIONS(7763), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [113619] = 3, - ACTIONS(7777), 1, - sym__whitespace, - STATE(2929), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3132), 1, - aux_sym_shortcode_escaped_repeat2, - [113629] = 3, - ACTIONS(7779), 1, - sym__whitespace, - STATE(2930), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3133), 1, - aux_sym_shortcode_repeat1, - [113639] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(7781), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [113649] = 3, - ACTIONS(7783), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3135), 1, - aux_sym_shortcode_escaped_repeat2, - [113659] = 3, - ACTIONS(7785), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3136), 1, - aux_sym_shortcode_repeat1, - [113669] = 2, - STATE(2636), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [113677] = 3, - ACTIONS(2195), 1, + [126522] = 3, + ACTIONS(2275), 1, aux_sym_target_token1, - ACTIONS(7787), 1, + ACTIONS(7765), 1, aux_sym_pandoc_span_token1, - STATE(1202), 1, + STATE(1379), 1, sym_target, - [113687] = 3, - ACTIONS(2195), 1, + [126532] = 3, + ACTIONS(7043), 1, + sym__shortcode_open, + ACTIONS(7767), 1, + aux_sym__commonmark_single_quote_string_token2, + STATE(2636), 1, + sym_shortcode, + [126542] = 3, + ACTIONS(2275), 1, aux_sym_target_token1, - ACTIONS(7789), 1, + ACTIONS(7769), 1, aux_sym_pandoc_span_token1, - STATE(1205), 1, + STATE(1381), 1, sym_target, - [113697] = 3, - ACTIONS(6382), 1, + [126552] = 2, + ACTIONS(7771), 1, + sym_block_continuation, + ACTIONS(2419), 2, sym__key_specifier_token, - ACTIONS(7791), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [113707] = 3, - ACTIONS(7793), 1, - sym__whitespace, - STATE(2938), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3138), 1, - aux_sym_shortcode_escaped_repeat2, - [113717] = 3, - ACTIONS(7795), 1, - sym__whitespace, - STATE(2939), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3139), 1, - aux_sym_shortcode_repeat1, - [113727] = 3, - ACTIONS(181), 1, - sym__line_ending, - ACTIONS(7797), 1, - sym__eof, - STATE(393), 1, - sym__newline, - [113737] = 3, - ACTIONS(7799), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3141), 1, - aux_sym_shortcode_escaped_repeat2, - [113747] = 3, - ACTIONS(7801), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3223), 1, - aux_sym_shortcode_repeat1, - [113757] = 2, - STATE(2665), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [113765] = 3, - ACTIONS(2165), 1, + aux_sym__commonmark_specifier_start_with_class_token2, + [126560] = 3, + ACTIONS(2433), 1, aux_sym_target_token1, - ACTIONS(7803), 1, + ACTIONS(7773), 1, aux_sym_pandoc_span_token1, - STATE(1356), 1, + STATE(1234), 1, sym_target, - [113775] = 1, - ACTIONS(3081), 3, - sym__key_specifier_token, - anon_sym_RBRACE, - aux_sym__commonmark_specifier_start_with_class_token1, - [113781] = 3, - ACTIONS(2435), 1, - sym__line_ending, - ACTIONS(7487), 1, - sym__pipe_table_delimiter, - ACTIONS(7805), 1, - sym__whitespace, - [113791] = 1, - ACTIONS(7807), 3, - sym__code_span_close, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [113797] = 3, - ACTIONS(2435), 1, - sym__line_ending, - ACTIONS(7605), 1, - sym__pipe_table_delimiter, - ACTIONS(7809), 1, - sym__whitespace, - [113807] = 3, - ACTIONS(111), 1, - sym__line_ending, - ACTIONS(7811), 1, - sym__eof, - STATE(548), 1, - sym__newline, - [113817] = 3, - ACTIONS(7813), 1, - sym__whitespace, - STATE(2950), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3147), 1, - aux_sym_shortcode_escaped_repeat2, - [113827] = 3, - ACTIONS(7815), 1, - sym__whitespace, - STATE(2951), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3149), 1, - aux_sym_shortcode_repeat1, - [113837] = 3, - ACTIONS(2165), 1, + [126570] = 3, + ACTIONS(2275), 1, aux_sym_target_token1, - ACTIONS(7817), 1, + ACTIONS(7775), 1, aux_sym_pandoc_span_token1, - STATE(1357), 1, + STATE(1389), 1, sym_target, - [113847] = 3, - ACTIONS(7819), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3151), 1, - aux_sym_shortcode_escaped_repeat2, - [113857] = 3, - ACTIONS(7821), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3152), 1, - aux_sym_shortcode_repeat1, - [113867] = 2, - STATE(2698), 1, + [126580] = 2, + STATE(2880), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [113875] = 3, - ACTIONS(25), 1, - sym__line_ending, - ACTIONS(7823), 1, - sym__eof, - STATE(487), 1, - sym__newline, - [113885] = 3, - ACTIONS(6388), 1, + [126588] = 3, + ACTIONS(2275), 1, + aux_sym_target_token1, + ACTIONS(7777), 1, + aux_sym_pandoc_span_token1, + STATE(1390), 1, + sym_target, + [126598] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6414), 1, + ACTIONS(6300), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, sym__commonmark_key_value_specifier, - [113895] = 3, - ACTIONS(181), 1, + [126608] = 3, + ACTIONS(25), 1, sym__line_ending, - ACTIONS(7825), 1, + ACTIONS(7779), 1, sym__eof, - STATE(395), 1, + STATE(372), 1, sym__newline, - [113905] = 3, - ACTIONS(6382), 1, + [126618] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6416), 1, - sym__shortcode_close, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [113915] = 3, - ACTIONS(6388), 1, + ACTIONS(6390), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [126628] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(7827), 1, + ACTIONS(6294), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, sym__commonmark_key_value_specifier, - [113925] = 3, - ACTIONS(7829), 1, - sym__whitespace, - STATE(2961), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3156), 1, - aux_sym_shortcode_escaped_repeat2, - [113935] = 3, - ACTIONS(7831), 1, - sym__whitespace, - STATE(2962), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3157), 1, - aux_sym_shortcode_repeat1, - [113945] = 3, - ACTIONS(6382), 1, + [126638] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(7833), 1, + ACTIONS(6392), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [113955] = 3, - ACTIONS(7835), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3159), 1, - aux_sym_shortcode_escaped_repeat2, - [113965] = 3, - ACTIONS(7837), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3160), 1, - aux_sym_shortcode_repeat1, - [113975] = 2, - STATE(2634), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [113983] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6434), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [113993] = 3, - ACTIONS(6382), 1, + [126648] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(6436), 1, + ACTIONS(6296), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [114003] = 3, - ACTIONS(2217), 1, - aux_sym_target_token1, - ACTIONS(7839), 1, - aux_sym_pandoc_span_token1, - STATE(1322), 1, - sym_target, - [114013] = 3, - ACTIONS(2217), 1, - aux_sym_target_token1, - ACTIONS(7841), 1, - aux_sym_pandoc_span_token1, - STATE(1053), 1, - sym_target, - [114023] = 3, - ACTIONS(6388), 1, + [126658] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6516), 1, + ACTIONS(7781), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, sym__commonmark_key_value_specifier, - [114033] = 3, - ACTIONS(7843), 1, - sym__whitespace, - STATE(2972), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3164), 1, - aux_sym_shortcode_escaped_repeat2, - [114043] = 3, - ACTIONS(7845), 1, - sym__whitespace, - STATE(2973), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3165), 1, - aux_sym_shortcode_repeat1, - [114053] = 3, - ACTIONS(111), 1, + [126668] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(7783), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [126678] = 3, + ACTIONS(2737), 1, sym__line_ending, - ACTIONS(7847), 1, - sym__eof, - STATE(510), 1, - sym__newline, - [114063] = 3, - ACTIONS(7849), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3167), 1, - aux_sym_shortcode_escaped_repeat2, - [114073] = 3, - ACTIONS(7851), 1, + ACTIONS(7659), 1, + sym__pipe_table_delimiter, + ACTIONS(7785), 1, sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3168), 1, - aux_sym_shortcode_repeat1, - [114083] = 2, - STATE(2648), 1, + [126688] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6304), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [126698] = 2, + STATE(2900), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [114091] = 3, - ACTIONS(6388), 1, + [126706] = 3, + ACTIONS(25), 1, + sym__line_ending, + ACTIONS(7787), 1, + sym__eof, + STATE(351), 1, + sym__newline, + [126716] = 3, + ACTIONS(6550), 1, sym__key_specifier_token, - ACTIONS(7853), 1, + ACTIONS(6891), 1, + sym__soft_line_ending, + STATE(4031), 1, + sym__soft_line_break, + [126726] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(7789), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, sym__commonmark_key_value_specifier, - [114101] = 3, - ACTIONS(6382), 1, + [126736] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(7855), 1, + ACTIONS(7791), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [126746] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(7793), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [126756] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(7795), 1, + sym__shortcode_close, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [114111] = 3, - ACTIONS(111), 1, + [126766] = 3, + ACTIONS(6444), 1, + sym__key_specifier_token, + ACTIONS(6893), 1, + anon_sym_RBRACE, + STATE(2876), 1, + sym__commonmark_key_value_specifier, + [126776] = 3, + ACTIONS(2433), 1, + aux_sym_target_token1, + ACTIONS(7797), 1, + aux_sym_pandoc_span_token1, + STATE(1243), 1, + sym_target, + [126786] = 3, + ACTIONS(191), 1, sym__line_ending, - ACTIONS(7857), 1, + ACTIONS(7799), 1, sym__eof, - STATE(565), 1, + STATE(266), 1, sym__newline, - [114121] = 3, - ACTIONS(2217), 1, + [126796] = 2, + STATE(2915), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [126804] = 3, + ACTIONS(2433), 1, aux_sym_target_token1, - ACTIONS(7859), 1, + ACTIONS(7801), 1, aux_sym_pandoc_span_token1, - STATE(1072), 1, + STATE(1244), 1, sym_target, - [114131] = 3, - ACTIONS(7861), 1, - sym__whitespace, - STATE(2982), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3170), 1, - aux_sym_shortcode_escaped_repeat2, - [114141] = 3, - ACTIONS(7863), 1, + [126814] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6402), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [126824] = 3, + ACTIONS(2629), 1, + sym__line_ending, + ACTIONS(7659), 1, + sym__pipe_table_delimiter, + ACTIONS(7803), 1, sym__whitespace, - STATE(2983), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3171), 1, - aux_sym_shortcode_repeat1, - [114151] = 3, - ACTIONS(2217), 1, + [126834] = 3, + ACTIONS(2149), 1, aux_sym_target_token1, - ACTIONS(7865), 1, + ACTIONS(7805), 1, aux_sym_pandoc_span_token1, - STATE(1077), 1, + STATE(1021), 1, sym_target, - [114161] = 3, - ACTIONS(7867), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3173), 1, - aux_sym_shortcode_escaped_repeat2, - [114171] = 3, - ACTIONS(7869), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3174), 1, - aux_sym_shortcode_repeat1, - [114181] = 2, - STATE(2730), 1, + [126844] = 2, + STATE(2910), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [114189] = 3, - ACTIONS(111), 1, + [126852] = 3, + ACTIONS(25), 1, sym__line_ending, - ACTIONS(7871), 1, + ACTIONS(7807), 1, sym__eof, - STATE(566), 1, + STATE(468), 1, sym__newline, - [114199] = 3, - ACTIONS(7873), 1, + [126862] = 1, + ACTIONS(7232), 3, sym__line_ending, - ACTIONS(7875), 1, sym__eof, - STATE(3102), 1, + sym__pipe_table_line_ending, + [126868] = 3, + ACTIONS(113), 1, + sym__line_ending, + ACTIONS(7809), 1, + sym__eof, + STATE(542), 1, sym__newline, - [114209] = 3, - ACTIONS(111), 1, + [126878] = 2, + STATE(2922), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7428), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [126886] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6374), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [126896] = 3, + ACTIONS(2285), 1, + aux_sym_target_token1, + ACTIONS(7811), 1, + aux_sym_pandoc_span_token1, + STATE(1411), 1, + sym_target, + [126906] = 3, + ACTIONS(2285), 1, + aux_sym_target_token1, + ACTIONS(7813), 1, + aux_sym_pandoc_span_token1, + STATE(1413), 1, + sym_target, + [126916] = 3, + ACTIONS(2501), 1, sym__line_ending, - ACTIONS(7877), 1, + ACTIONS(7659), 1, + sym__pipe_table_delimiter, + ACTIONS(7815), 1, + sym__whitespace, + [126926] = 3, + ACTIONS(25), 1, + sym__line_ending, + ACTIONS(7817), 1, sym__eof, - STATE(567), 1, + STATE(479), 1, sym__newline, - [114219] = 3, - ACTIONS(181), 1, + [126936] = 3, + ACTIONS(2285), 1, + aux_sym_target_token1, + ACTIONS(7819), 1, + aux_sym_pandoc_span_token1, + STATE(1423), 1, + sym_target, + [126946] = 3, + ACTIONS(2285), 1, + aux_sym_target_token1, + ACTIONS(7821), 1, + aux_sym_pandoc_span_token1, + STATE(1424), 1, + sym_target, + [126956] = 3, + ACTIONS(7571), 1, sym__line_ending, - ACTIONS(7879), 1, + ACTIONS(7823), 1, sym__eof, - STATE(396), 1, + STATE(3865), 1, sym__newline, - [114229] = 3, - ACTIONS(7525), 1, + [126966] = 3, + ACTIONS(113), 1, sym__line_ending, - ACTIONS(7881), 1, + ACTIONS(7825), 1, sym__eof, - STATE(3782), 1, + STATE(403), 1, sym__newline, - [114239] = 3, - ACTIONS(111), 1, + [126976] = 3, + ACTIONS(25), 1, sym__line_ending, - ACTIONS(7883), 1, + ACTIONS(7827), 1, sym__eof, - STATE(551), 1, + STATE(337), 1, sym__newline, - [114249] = 3, - ACTIONS(7885), 1, - sym__whitespace, - STATE(2994), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3177), 1, - aux_sym_shortcode_escaped_repeat2, - [114259] = 3, - ACTIONS(7887), 1, - sym__whitespace, - STATE(2995), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3178), 1, - aux_sym_shortcode_repeat1, - [114269] = 3, - ACTIONS(6388), 1, - sym__key_specifier_token, - ACTIONS(6510), 1, - sym__shortcode_close_escaped, - STATE(3735), 1, - sym__commonmark_key_value_specifier, - [114279] = 3, - ACTIONS(7889), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3180), 1, - aux_sym_shortcode_escaped_repeat2, - [114289] = 3, - ACTIONS(7891), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3181), 1, - aux_sym_shortcode_repeat1, - [114299] = 2, - STATE(2706), 1, + [126986] = 2, + STATE(2928), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, + ACTIONS(7428), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [114307] = 3, - ACTIONS(6382), 1, + [126994] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(6512), 1, + ACTIONS(6314), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [127004] = 3, + ACTIONS(2235), 1, + aux_sym_target_token1, + ACTIONS(7829), 1, + aux_sym_pandoc_span_token1, + STATE(1368), 1, + sym_target, + [127014] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6316), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [114317] = 3, - ACTIONS(6388), 1, + [127024] = 3, + ACTIONS(2149), 1, + aux_sym_target_token1, + ACTIONS(7831), 1, + aux_sym_pandoc_span_token1, + STATE(1031), 1, + sym_target, + [127034] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(7893), 1, + ACTIONS(7833), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, sym__commonmark_key_value_specifier, - [114327] = 3, - ACTIONS(6382), 1, + [127044] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(7895), 1, + ACTIONS(7835), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [114337] = 2, - ACTIONS(7897), 1, - sym_block_continuation, - ACTIONS(2699), 2, + [127054] = 1, + ACTIONS(7745), 3, sym__line_ending, + sym__soft_line_ending, sym__eof, - [114345] = 3, - ACTIONS(6382), 1, + [127060] = 3, + ACTIONS(2235), 1, + aux_sym_target_token1, + ACTIONS(7837), 1, + aux_sym_pandoc_span_token1, + STATE(1370), 1, + sym_target, + [127070] = 3, + ACTIONS(2215), 1, + aux_sym_target_token1, + ACTIONS(7839), 1, + aux_sym_pandoc_span_token1, + STATE(1296), 1, + sym_target, + [127080] = 3, + ACTIONS(6280), 1, sym__key_specifier_token, - ACTIONS(6422), 1, + ACTIONS(6404), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [114355] = 3, - ACTIONS(7899), 1, - sym__whitespace, - STATE(3005), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3184), 1, - aux_sym_shortcode_escaped_repeat2, - [114365] = 3, - ACTIONS(7901), 1, - sym__whitespace, - STATE(3006), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3046), 1, - aux_sym_shortcode_repeat1, - [114375] = 3, - ACTIONS(111), 1, + [127090] = 3, + ACTIONS(7571), 1, sym__line_ending, - ACTIONS(7903), 1, + ACTIONS(7841), 1, sym__eof, - STATE(485), 1, + STATE(3830), 1, sym__newline, - [114385] = 3, - ACTIONS(7905), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3186), 1, - aux_sym_shortcode_escaped_repeat2, - [114395] = 3, - ACTIONS(7907), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3187), 1, - aux_sym_shortcode_repeat1, - [114405] = 2, - STATE(2624), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [114413] = 3, - ACTIONS(111), 1, + [127100] = 3, + ACTIONS(7571), 1, sym__line_ending, - ACTIONS(7909), 1, + ACTIONS(7843), 1, sym__eof, - STATE(572), 1, + STATE(3857), 1, sym__newline, - [114423] = 3, - ACTIONS(6388), 1, + [127110] = 3, + ACTIONS(2215), 1, + aux_sym_target_token1, + ACTIONS(7845), 1, + aux_sym_pandoc_span_token1, + STATE(1298), 1, + sym_target, + [127120] = 3, + ACTIONS(2235), 1, + aux_sym_target_token1, + ACTIONS(7847), 1, + aux_sym_pandoc_span_token1, + STATE(1428), 1, + sym_target, + [127130] = 3, + ACTIONS(2235), 1, + aux_sym_target_token1, + ACTIONS(7849), 1, + aux_sym_pandoc_span_token1, + STATE(1437), 1, + sym_target, + [127140] = 3, + ACTIONS(2295), 1, + aux_sym_target_token1, + ACTIONS(7851), 1, + aux_sym_pandoc_span_token1, + STATE(1049), 1, + sym_target, + [127150] = 3, + ACTIONS(2295), 1, + aux_sym_target_token1, + ACTIONS(7853), 1, + aux_sym_pandoc_span_token1, + STATE(1051), 1, + sym_target, + [127160] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(7911), 1, + ACTIONS(6318), 1, sym__shortcode_close_escaped, - STATE(3735), 1, + STATE(3261), 1, sym__commonmark_key_value_specifier, - [114433] = 3, - ACTIONS(6382), 1, + [127170] = 3, + ACTIONS(2295), 1, + aux_sym_target_token1, + ACTIONS(7855), 1, + aux_sym_pandoc_span_token1, + STATE(942), 1, + sym_target, + [127180] = 3, + ACTIONS(2295), 1, + aux_sym_target_token1, + ACTIONS(7857), 1, + aux_sym_pandoc_span_token1, + STATE(943), 1, + sym_target, + [127190] = 3, + ACTIONS(6284), 1, sym__key_specifier_token, - ACTIONS(7913), 1, + ACTIONS(6328), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [127200] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6330), 1, sym__shortcode_close, - STATE(3913), 1, + STATE(3279), 1, sym__shortcode_key_value_specifier, - [114443] = 3, - ACTIONS(7525), 1, + [127210] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(7859), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [127220] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(7861), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [127230] = 3, + ACTIONS(7571), 1, sym__line_ending, - ACTIONS(7915), 1, + ACTIONS(7863), 1, sym__eof, - STATE(3463), 1, + STATE(3986), 1, sym__newline, - [114453] = 3, - ACTIONS(7917), 1, - sym__whitespace, - STATE(3015), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3192), 1, - aux_sym_shortcode_escaped_repeat2, - [114463] = 3, - ACTIONS(7919), 1, - sym__whitespace, - STATE(3016), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3193), 1, - aux_sym_shortcode_repeat1, - [114473] = 3, + [127240] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6320), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [127250] = 3, ACTIONS(25), 1, sym__line_ending, - ACTIONS(7921), 1, - sym__eof, - STATE(472), 1, - sym__newline, - [114483] = 3, - ACTIONS(7923), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3195), 1, - aux_sym_shortcode_escaped_repeat2, - [114493] = 3, - ACTIONS(7925), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3196), 1, - aux_sym_shortcode_repeat1, - [114503] = 2, - STATE(2635), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [114511] = 3, - ACTIONS(111), 1, - sym__line_ending, - ACTIONS(7927), 1, + ACTIONS(7865), 1, sym__eof, - STATE(573), 1, + STATE(418), 1, sym__newline, - [114521] = 3, - ACTIONS(7929), 1, - sym__whitespace, - STATE(3022), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3198), 1, - aux_sym_shortcode_escaped_repeat2, - [114531] = 3, - ACTIONS(7931), 1, - sym__whitespace, - STATE(3023), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3199), 1, - aux_sym_shortcode_repeat1, - [114541] = 3, - ACTIONS(181), 1, + [127260] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(7867), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [127270] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(7869), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [127280] = 3, + ACTIONS(2439), 1, + aux_sym_target_token1, + ACTIONS(7871), 1, + aux_sym_pandoc_span_token1, + STATE(1125), 1, + sym_target, + [127290] = 3, + ACTIONS(191), 1, sym__line_ending, - ACTIONS(7933), 1, + ACTIONS(7873), 1, sym__eof, - STATE(397), 1, + STATE(269), 1, sym__newline, - [114551] = 3, - ACTIONS(7935), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3201), 1, - aux_sym_shortcode_escaped_repeat2, - [114561] = 3, - ACTIONS(7937), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3202), 1, - aux_sym_shortcode_repeat1, - [114571] = 2, - STATE(2645), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7362), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [114579] = 3, - ACTIONS(25), 1, + [127300] = 3, + ACTIONS(2439), 1, + aux_sym_target_token1, + ACTIONS(7875), 1, + aux_sym_pandoc_span_token1, + STATE(1145), 1, + sym_target, + [127310] = 3, + ACTIONS(7571), 1, sym__line_ending, - ACTIONS(7939), 1, + ACTIONS(7877), 1, sym__eof, - STATE(553), 1, + STATE(3992), 1, sym__newline, - [114589] = 3, - ACTIONS(2116), 1, + [127320] = 3, + ACTIONS(2305), 1, aux_sym_target_token1, - ACTIONS(7941), 1, + ACTIONS(7879), 1, aux_sym_pandoc_span_token1, - STATE(1315), 1, + STATE(2005), 1, sym_target, - [114599] = 3, - ACTIONS(2116), 1, + [127330] = 3, + ACTIONS(2305), 1, aux_sym_target_token1, - ACTIONS(7943), 1, + ACTIONS(7881), 1, aux_sym_pandoc_span_token1, - STATE(1317), 1, + STATE(2007), 1, sym_target, - [114609] = 3, - ACTIONS(25), 1, - sym__line_ending, - ACTIONS(7945), 1, - sym__eof, - STATE(465), 1, - sym__newline, - [114619] = 3, - ACTIONS(7947), 1, - sym__whitespace, - STATE(3032), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3207), 1, - aux_sym_shortcode_escaped_repeat2, - [114629] = 3, - ACTIONS(7949), 1, - sym__whitespace, - STATE(3033), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3208), 1, - aux_sym_shortcode_repeat1, - [114639] = 3, - ACTIONS(2175), 1, + [127340] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(7883), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [127350] = 3, + ACTIONS(2215), 1, aux_sym_target_token1, - ACTIONS(7951), 1, + ACTIONS(7885), 1, aux_sym_pandoc_span_token1, - STATE(1376), 1, + STATE(1305), 1, sym_target, - [114649] = 3, - ACTIONS(7953), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3210), 1, - aux_sym_shortcode_escaped_repeat2, - [114659] = 3, - ACTIONS(7955), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3211), 1, - aux_sym_shortcode_repeat1, - [114669] = 3, - ACTIONS(7957), 1, - sym__whitespace, - STATE(2731), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3214), 1, - aux_sym_shortcode_repeat1, - [114679] = 3, - ACTIONS(2330), 1, - sym__line_ending, - ACTIONS(7605), 1, - sym__pipe_table_delimiter, - ACTIONS(7959), 1, - sym__whitespace, - [114689] = 3, - ACTIONS(7961), 1, - sym__whitespace, - STATE(3037), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3216), 1, - aux_sym_shortcode_repeat1, - [114699] = 3, - ACTIONS(7963), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3217), 1, - aux_sym_shortcode_repeat1, - [114709] = 3, - ACTIONS(7965), 1, - sym__whitespace, - STATE(3039), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3218), 1, - aux_sym_shortcode_repeat1, - [114719] = 3, - ACTIONS(7967), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3219), 1, - aux_sym_shortcode_repeat1, - [114729] = 3, - ACTIONS(7969), 1, - sym__whitespace, - STATE(3041), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3220), 1, - aux_sym_shortcode_repeat1, - [114739] = 3, - ACTIONS(7971), 1, - sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3221), 1, - aux_sym_shortcode_repeat1, - [114749] = 3, - ACTIONS(2227), 1, + [127360] = 3, + ACTIONS(2305), 1, aux_sym_target_token1, - ACTIONS(7973), 1, + ACTIONS(7887), 1, aux_sym_pandoc_span_token1, - STATE(1133), 1, + STATE(2013), 1, sym_target, - [114759] = 3, - ACTIONS(7975), 1, - sym__line_ending, - ACTIONS(7977), 1, - sym__eof, - STATE(3701), 1, - sym__newline, - [114769] = 3, - ACTIONS(2227), 1, + [127370] = 3, + ACTIONS(2305), 1, aux_sym_target_token1, - ACTIONS(7979), 1, + ACTIONS(7889), 1, aux_sym_pandoc_span_token1, - STATE(1135), 1, + STATE(2014), 1, sym_target, - [114779] = 3, - ACTIONS(7525), 1, + [127380] = 3, + ACTIONS(7891), 1, sym__line_ending, - ACTIONS(7981), 1, + ACTIONS(7893), 1, sym__eof, - STATE(3666), 1, + STATE(3915), 1, + sym__newline, + [127390] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(6338), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [127400] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6340), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [127410] = 3, + ACTIONS(6284), 1, + sym__key_specifier_token, + ACTIONS(7895), 1, + sym__shortcode_close_escaped, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [127420] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(7897), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [127430] = 3, + ACTIONS(191), 1, + sym__line_ending, + ACTIONS(7899), 1, + sym__eof, + STATE(270), 1, + sym__newline, + [127440] = 3, + ACTIONS(6280), 1, + sym__key_specifier_token, + ACTIONS(6384), 1, + sym__shortcode_close, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [127450] = 3, + ACTIONS(191), 1, + sym__line_ending, + ACTIONS(7901), 1, + sym__eof, + STATE(271), 1, sym__newline, - [114789] = 2, - ACTIONS(7983), 1, + [127460] = 3, + ACTIONS(2215), 1, + aux_sym_target_token1, + ACTIONS(7903), 1, + aux_sym_pandoc_span_token1, + STATE(1306), 1, + sym_target, + [127470] = 3, + ACTIONS(6428), 1, + anon_sym_LBRACE, + ACTIONS(6442), 1, + sym__language_specifier_token, + STATE(3640), 1, + sym_language_specifier, + [127480] = 2, + ACTIONS(7747), 1, + aux_sym_pandoc_span_token1, + ACTIONS(7745), 2, + sym__soft_line_ending, + aux_sym_target_token1, + [127488] = 1, + ACTIONS(7129), 3, + sym__soft_line_ending, + anon_sym_RBRACE, sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [114796] = 2, - ACTIONS(6933), 1, + [127494] = 3, + ACTIONS(2315), 1, + aux_sym_target_token1, + ACTIONS(7905), 1, + aux_sym_pandoc_span_token1, + STATE(919), 1, + sym_target, + [127504] = 3, + ACTIONS(2315), 1, + aux_sym_target_token1, + ACTIONS(7907), 1, + aux_sym_pandoc_span_token1, + STATE(929), 1, + sym_target, + [127514] = 3, + ACTIONS(2209), 1, + aux_sym_target_token1, + ACTIONS(7909), 1, + aux_sym_pandoc_span_token1, + STATE(1266), 1, + sym_target, + [127524] = 3, + ACTIONS(2245), 1, + aux_sym_target_token1, + ACTIONS(7911), 1, + aux_sym_pandoc_span_token1, + STATE(1444), 1, + sym_target, + [127534] = 3, + ACTIONS(2341), 1, + aux_sym_target_token1, + ACTIONS(7913), 1, + aux_sym_pandoc_span_token1, + STATE(1168), 1, + sym_target, + [127544] = 2, + ACTIONS(6943), 1, sym__block_close, - ACTIONS(6935), 1, + ACTIONS(6945), 1, sym__fenced_code_block_end_backtick, - [114803] = 2, - ACTIONS(2699), 1, - sym__blank_line_start, - ACTIONS(7985), 1, - sym_block_continuation, - [114810] = 2, - ACTIONS(7605), 1, - sym__pipe_table_delimiter, - ACTIONS(7987), 1, + [127551] = 1, + ACTIONS(7915), 2, + sym__soft_line_ending, sym__whitespace, - [114817] = 1, - ACTIONS(7292), 2, + [127556] = 1, + ACTIONS(7372), 2, sym__pipe_table_delimiter, sym__whitespace, - [114822] = 2, - ACTIONS(7487), 1, - sym__pipe_table_delimiter, - ACTIONS(7989), 1, + [127561] = 1, + ACTIONS(7917), 2, + sym__soft_line_ending, sym__whitespace, - [114829] = 1, - ACTIONS(7531), 2, + [127566] = 1, + ACTIONS(7919), 2, sym__soft_line_ending, - aux_sym_insert_token1, - [114834] = 2, - ACTIONS(7991), 1, - sym__blank_line_start, - STATE(3831), 1, - sym__blank_line, - [114841] = 1, - ACTIONS(7531), 2, + sym__whitespace, + [127571] = 1, + ACTIONS(7921), 2, sym__soft_line_ending, - sym__emphasis_close_star, - [114846] = 1, - ACTIONS(3081), 2, - sym__shortcode_open, - aux_sym_target_token2, - [114851] = 1, - ACTIONS(7531), 2, + sym__whitespace, + [127576] = 1, + ACTIONS(6168), 2, sym__soft_line_ending, - sym__superscript_close, - [114856] = 2, - ACTIONS(7993), 1, sym__whitespace, - STATE(3057), 1, - aux_sym_shortcode_escaped_repeat1, - [114863] = 2, - ACTIONS(7996), 1, + [127581] = 1, + ACTIONS(6172), 2, + sym__soft_line_ending, + sym__whitespace, + [127586] = 1, + ACTIONS(6176), 2, + sym__soft_line_ending, + sym__whitespace, + [127591] = 2, + ACTIONS(6550), 1, + sym_shortcode_name, + ACTIONS(7923), 1, + sym__whitespace, + [127598] = 1, + ACTIONS(6660), 2, + sym__key_specifier_token, + sym__shortcode_close, + [127603] = 1, + ACTIONS(7925), 2, + sym__soft_line_ending, sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [114870] = 2, - ACTIONS(7998), 1, + [127608] = 1, + ACTIONS(7745), 2, + sym__soft_line_ending, + sym__superscript_close, + [127613] = 1, + ACTIONS(7495), 2, + sym__soft_line_ending, sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [114877] = 2, - ACTIONS(6921), 1, + [127618] = 2, + ACTIONS(7418), 1, sym__line_ending, - STATE(2490), 1, - sym__newline, - [114884] = 2, - ACTIONS(8001), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [114891] = 1, - ACTIONS(7531), 2, + ACTIONS(7927), 1, + sym__pipe_table_delimiter, + [127625] = 2, + ACTIONS(7418), 1, + sym__line_ending, + ACTIONS(7605), 1, + sym__pipe_table_delimiter, + [127632] = 1, + ACTIONS(7745), 2, sym__soft_line_ending, sym__strikeout_close, - [114896] = 2, - ACTIONS(6959), 1, - sym__block_close, - ACTIONS(6961), 1, - sym__fenced_code_block_end_backtick, - [114903] = 2, - ACTIONS(8003), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [114910] = 2, - ACTIONS(7123), 1, + [127637] = 1, + ACTIONS(7159), 2, sym__pipe_table_delimiter, - ACTIONS(8006), 1, sym__whitespace, - [114917] = 1, - ACTIONS(8008), 2, - sym__line_ending, - sym__eof, - [114922] = 2, - ACTIONS(6364), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(3640), 1, - sym__commonmark_double_quote_string, - [114929] = 2, - ACTIONS(6921), 1, - sym__line_ending, - STATE(2497), 1, - sym__newline, - [114936] = 2, - ACTIONS(6546), 1, - sym__key_specifier_token, - STATE(2714), 1, - sym__commonmark_key_value_specifier, - [114943] = 2, - ACTIONS(2699), 1, + [127642] = 1, + ACTIONS(7745), 2, + sym__soft_line_ending, + aux_sym_insert_token1, + [127647] = 1, + ACTIONS(7929), 2, + sym__soft_line_ending, + sym__whitespace, + [127652] = 2, + ACTIONS(7931), 1, sym__block_close, - ACTIONS(8010), 1, + ACTIONS(7933), 1, sym_block_continuation, - [114950] = 1, - ACTIONS(3081), 2, + [127659] = 1, + ACTIONS(2865), 2, sym__key_specifier_token, aux_sym__commonmark_specifier_start_with_class_token2, - [114955] = 1, - ACTIONS(7239), 2, - sym__pipe_table_delimiter, + [127664] = 1, + ACTIONS(7935), 2, + sym__soft_line_ending, sym__whitespace, - [114960] = 2, - ACTIONS(7320), 1, + [127669] = 2, + ACTIONS(191), 1, sym__line_ending, - ACTIONS(8012), 1, - sym__pipe_table_delimiter, - [114967] = 2, - ACTIONS(6923), 1, - sym__block_close, - ACTIONS(6925), 1, - sym__fenced_code_block_end_backtick, - [114974] = 2, - ACTIONS(7320), 1, + STATE(40), 1, + sym__newline, + [127676] = 2, + ACTIONS(7937), 1, sym__line_ending, - ACTIONS(7487), 1, + STATE(2581), 1, + sym__newline, + [127683] = 2, + ACTIONS(2501), 1, + sym__line_ending, + ACTIONS(7605), 1, sym__pipe_table_delimiter, - [114981] = 1, - ACTIONS(7322), 2, + [127690] = 2, + ACTIONS(7185), 1, sym__pipe_table_delimiter, + ACTIONS(7939), 1, sym__whitespace, - [114986] = 2, - ACTIONS(8014), 1, + [127697] = 2, + ACTIONS(6983), 1, sym__block_close, - ACTIONS(8016), 1, + ACTIONS(6985), 1, sym__fenced_code_block_end_backtick, - [114993] = 2, - ACTIONS(2330), 1, + [127704] = 1, + ACTIONS(7505), 2, + sym__soft_line_ending, + sym__whitespace, + [127709] = 2, + ACTIONS(2629), 1, sym__line_ending, - ACTIONS(7487), 1, + ACTIONS(7927), 1, sym__pipe_table_delimiter, - [115000] = 2, - ACTIONS(8018), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115007] = 2, - ACTIONS(8020), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115014] = 1, - ACTIONS(7531), 2, + [127716] = 1, + ACTIONS(6660), 2, + sym__key_specifier_token, + sym__shortcode_close_escaped, + [127721] = 2, + ACTIONS(7941), 1, + anon_sym_DASH, + STATE(2575), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [127728] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3628), 1, + sym__commonmark_double_quote_string, + [127735] = 1, + ACTIONS(7745), 2, sym__soft_line_ending, - sym__double_quote_span_close, - [115019] = 2, - ACTIONS(181), 1, + sym__strong_emphasis_close_star, + [127740] = 2, + ACTIONS(7243), 1, + sym__pipe_table_delimiter, + ACTIONS(7945), 1, + sym__whitespace, + [127747] = 1, + ACTIONS(2757), 2, sym__line_ending, - STATE(57), 1, - sym__newline, - [115026] = 2, - ACTIONS(6364), 1, + sym__eof, + [127752] = 2, + ACTIONS(7947), 1, + sym__block_close, + ACTIONS(7949), 1, + sym__fenced_code_block_end_backtick, + [127759] = 2, + ACTIONS(2413), 1, + sym__blank_line_start, + ACTIONS(7951), 1, + sym_block_continuation, + [127766] = 2, + ACTIONS(2419), 1, + aux_sym_inline_note_token1, + ACTIONS(7953), 1, + sym_block_continuation, + [127773] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3258), 1, + STATE(3937), 1, sym__commonmark_double_quote_string, - [115033] = 2, - ACTIONS(181), 1, - sym__line_ending, - STATE(58), 1, - sym__newline, - [115040] = 1, - ACTIONS(7531), 2, - sym__soft_line_ending, - sym__emphasis_close_underscore, - [115045] = 2, - ACTIONS(7127), 1, + [127780] = 1, + ACTIONS(7175), 2, sym__pipe_table_delimiter, - ACTIONS(8022), 1, sym__whitespace, - [115052] = 2, - ACTIONS(6921), 1, + [127785] = 2, + ACTIONS(6941), 1, sym__line_ending, - STATE(2499), 1, + STATE(2599), 1, sym__newline, - [115059] = 2, - ACTIONS(8024), 1, + [127792] = 2, + ACTIONS(7955), 1, + sym__block_close, + ACTIONS(7957), 1, + sym__fenced_code_block_end_backtick, + [127799] = 2, + ACTIONS(7937), 1, sym__line_ending, - STATE(2468), 1, + STATE(2577), 1, sym__newline, - [115066] = 2, - ACTIONS(181), 1, + [127806] = 2, + ACTIONS(191), 1, sym__line_ending, - STATE(42), 1, + STATE(48), 1, sym__newline, - [115073] = 1, - ACTIONS(7531), 2, + [127813] = 1, + ACTIONS(7493), 2, sym__soft_line_ending, - sym__strong_emphasis_close_star, - [115078] = 2, - ACTIONS(6921), 1, + sym__whitespace, + [127818] = 2, + ACTIONS(2413), 1, + sym__block_close, + ACTIONS(7959), 1, + sym_block_continuation, + [127825] = 2, + ACTIONS(6941), 1, sym__line_ending, - STATE(2496), 1, + STATE(2584), 1, sym__newline, - [115085] = 2, - ACTIONS(181), 1, + [127832] = 2, + ACTIONS(191), 1, sym__line_ending, - STATE(44), 1, + STATE(50), 1, sym__newline, - [115092] = 2, - ACTIONS(181), 1, + [127839] = 2, + ACTIONS(191), 1, sym__line_ending, - STATE(45), 1, + STATE(51), 1, sym__newline, - [115099] = 2, - ACTIONS(8026), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115106] = 2, - ACTIONS(8028), 1, + [127846] = 1, + ACTIONS(7499), 2, + sym__soft_line_ending, sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115113] = 2, - ACTIONS(6364), 1, + [127851] = 1, + ACTIONS(7745), 2, + sym__soft_line_ending, + sym__emphasis_close_underscore, + [127856] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3719), 1, + STATE(3650), 1, sym__commonmark_double_quote_string, - [115120] = 2, - ACTIONS(8030), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115127] = 2, - ACTIONS(8032), 1, + [127863] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3652), 1, + sym__commonmark_double_quote_string, + [127870] = 2, + ACTIONS(6965), 1, + sym__block_close, + ACTIONS(6967), 1, + sym__fenced_code_block_end_backtick, + [127877] = 1, + ACTIONS(7501), 2, + sym__soft_line_ending, sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115134] = 2, - ACTIONS(6364), 1, + [127882] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3744), 1, + STATE(3689), 1, sym__commonmark_double_quote_string, - [115141] = 1, - ACTIONS(7531), 2, + [127889] = 1, + ACTIONS(7745), 2, sym__soft_line_ending, - sym__subscript_close, - [115146] = 2, - ACTIONS(6929), 1, + sym__emphasis_close_star, + [127894] = 2, + ACTIONS(6969), 1, sym__block_close, - ACTIONS(6931), 1, + ACTIONS(6971), 1, sym__fenced_code_block_end_backtick, - [115153] = 1, - ACTIONS(3435), 2, - sym__line_ending, - sym__eof, - [115158] = 2, - ACTIONS(6921), 1, + [127901] = 2, + ACTIONS(7151), 1, + sym__pipe_table_delimiter, + ACTIONS(7961), 1, + sym__whitespace, + [127908] = 2, + ACTIONS(6941), 1, sym__line_ending, - STATE(2485), 1, + STATE(2586), 1, sym__newline, - [115165] = 2, - ACTIONS(8024), 1, + [127915] = 2, + ACTIONS(7937), 1, sym__line_ending, - STATE(2476), 1, + STATE(2574), 1, sym__newline, - [115172] = 2, - ACTIONS(181), 1, + [127922] = 2, + ACTIONS(191), 1, sym__line_ending, - STATE(49), 1, + STATE(55), 1, sym__newline, - [115179] = 2, - ACTIONS(6921), 1, + [127929] = 1, + ACTIONS(2861), 2, + sym__line_ending, + sym__eof, + [127934] = 2, + ACTIONS(2613), 1, sym__line_ending, - STATE(2491), 1, + ACTIONS(7605), 1, + sym__pipe_table_delimiter, + [127941] = 2, + ACTIONS(6941), 1, + sym__line_ending, + STATE(2587), 1, sym__newline, - [115186] = 2, - ACTIONS(181), 1, + [127948] = 2, + ACTIONS(191), 1, sym__line_ending, - STATE(51), 1, + STATE(57), 1, sym__newline, - [115193] = 2, - ACTIONS(181), 1, + [127955] = 2, + ACTIONS(191), 1, sym__line_ending, - STATE(52), 1, + STATE(58), 1, sym__newline, - [115200] = 1, - ACTIONS(7531), 2, - sym__soft_line_ending, - sym__strong_emphasis_close_underscore, - [115205] = 2, - ACTIONS(8034), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115212] = 2, - ACTIONS(8036), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115219] = 2, - ACTIONS(6364), 1, + [127962] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3467), 1, + STATE(3956), 1, sym__commonmark_double_quote_string, - [115226] = 2, - ACTIONS(8038), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115233] = 2, - ACTIONS(8040), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115240] = 2, - ACTIONS(6364), 1, + [127969] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3538), 1, + STATE(3957), 1, sym__commonmark_double_quote_string, - [115247] = 2, - ACTIONS(6388), 1, + [127976] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3970), 1, + sym__commonmark_double_quote_string, + [127983] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(4135), 1, + sym__commonmark_double_quote_string, + [127990] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3908), 1, + sym__commonmark_double_quote_string, + [127997] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3947), 1, + sym__commonmark_double_quote_string, + [128004] = 2, + ACTIONS(6444), 1, sym__key_specifier_token, - STATE(3735), 1, + STATE(2876), 1, sym__commonmark_key_value_specifier, - [115254] = 1, - ACTIONS(7531), 2, + [128011] = 2, + ACTIONS(2629), 1, + sym__line_ending, + ACTIONS(7605), 1, + sym__pipe_table_delimiter, + [128018] = 1, + ACTIONS(7963), 2, sym__soft_line_ending, - sym__single_quote_span_close, - [115259] = 2, - ACTIONS(8042), 1, sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115266] = 2, - ACTIONS(8044), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115273] = 2, - ACTIONS(6364), 1, + [128023] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3428), 1, + STATE(3415), 1, sym__commonmark_double_quote_string, - [115280] = 2, - ACTIONS(8046), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115287] = 2, - ACTIONS(8048), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115294] = 2, - ACTIONS(6364), 1, + [128030] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3434), 1, + sym__commonmark_double_quote_string, + [128037] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, STATE(3447), 1, sym__commonmark_double_quote_string, - [115301] = 2, - ACTIONS(8050), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115308] = 2, - ACTIONS(8052), 1, + [128044] = 1, + ACTIONS(7453), 2, + sym__soft_line_ending, sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115315] = 2, - ACTIONS(6364), 1, + [128049] = 1, + ACTIONS(7745), 2, + sym__soft_line_ending, + sym__subscript_close, + [128054] = 2, + ACTIONS(6284), 1, + sym__key_specifier_token, + STATE(3261), 1, + sym__commonmark_key_value_specifier, + [128061] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3863), 1, + STATE(3969), 1, sym__commonmark_double_quote_string, - [115322] = 2, - ACTIONS(8054), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115329] = 2, - ACTIONS(8056), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115336] = 2, - ACTIONS(6364), 1, + [128068] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3878), 1, + STATE(3971), 1, sym__commonmark_double_quote_string, - [115343] = 2, - ACTIONS(6967), 1, - sym__block_close, - ACTIONS(6969), 1, - sym__fenced_code_block_end_backtick, - [115350] = 2, - ACTIONS(6382), 1, - sym__key_specifier_token, - STATE(3913), 1, - sym__shortcode_key_value_specifier, - [115357] = 2, - ACTIONS(8058), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115364] = 2, - ACTIONS(8060), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115371] = 2, - ACTIONS(6364), 1, + [128075] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3890), 1, + STATE(3993), 1, sym__commonmark_double_quote_string, - [115378] = 2, - ACTIONS(8062), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115385] = 2, - ACTIONS(8064), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115392] = 2, - ACTIONS(6364), 1, + [128082] = 2, + ACTIONS(2613), 1, + sym__line_ending, + ACTIONS(7927), 1, + sym__pipe_table_delimiter, + [128089] = 1, + ACTIONS(7745), 2, + sym__soft_line_ending, + sym__single_quote_span_close, + [128094] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3895), 1, + STATE(3968), 1, sym__commonmark_double_quote_string, - [115399] = 2, - ACTIONS(8066), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115406] = 2, - ACTIONS(8068), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115413] = 2, - ACTIONS(6364), 1, + [128101] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3398), 1, + STATE(3972), 1, sym__commonmark_double_quote_string, - [115420] = 2, - ACTIONS(8070), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115427] = 2, - ACTIONS(7288), 1, - sym__pipe_table_delimiter, - ACTIONS(8072), 1, - sym__whitespace, - [115434] = 2, - ACTIONS(6364), 1, + [128108] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3401), 1, + STATE(3997), 1, sym__commonmark_double_quote_string, - [115441] = 2, - ACTIONS(6955), 1, - sym__block_close, - ACTIONS(6957), 1, - sym__fenced_code_block_end_backtick, - [115448] = 2, - ACTIONS(8074), 1, + [128115] = 2, + ACTIONS(7965), 1, anon_sym_DASH, - STATE(2460), 1, + STATE(2758), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - [115455] = 2, - ACTIONS(8076), 1, - sym__block_close, - ACTIONS(8078), 1, - sym_block_continuation, - [115462] = 2, - ACTIONS(8080), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115469] = 2, - ACTIONS(8024), 1, - sym__line_ending, - STATE(2477), 1, - sym__newline, - [115476] = 2, - ACTIONS(8082), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115483] = 2, - ACTIONS(6364), 1, + [128122] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3510), 1, + STATE(3605), 1, sym__commonmark_double_quote_string, - [115490] = 2, - ACTIONS(8084), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115497] = 2, - ACTIONS(8086), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115504] = 2, - ACTIONS(6364), 1, + [128129] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3606), 1, + sym__commonmark_double_quote_string, + [128136] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3527), 1, + STATE(3615), 1, sym__commonmark_double_quote_string, - [115511] = 2, - ACTIONS(8088), 1, + [128143] = 2, + ACTIONS(6947), 1, sym__block_close, - ACTIONS(8090), 1, + ACTIONS(6949), 1, sym__fenced_code_block_end_backtick, - [115518] = 2, - ACTIONS(2433), 1, - sym__line_ending, - ACTIONS(7487), 1, + [128150] = 2, + ACTIONS(7204), 1, sym__pipe_table_delimiter, - [115525] = 2, - ACTIONS(8092), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115532] = 2, - ACTIONS(8094), 1, + ACTIONS(7967), 1, sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115539] = 2, - ACTIONS(6364), 1, + [128157] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3690), 1, + STATE(3752), 1, sym__commonmark_double_quote_string, - [115546] = 2, - ACTIONS(8096), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115553] = 2, - ACTIONS(8098), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115560] = 2, - ACTIONS(6364), 1, + [128164] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3696), 1, + STATE(3755), 1, sym__commonmark_double_quote_string, - [115567] = 2, - ACTIONS(181), 1, - sym__line_ending, - STATE(55), 1, - sym__newline, - [115574] = 1, - ACTIONS(7427), 2, - anon_sym_RPAREN, - sym__whitespace, - [115579] = 2, - ACTIONS(8100), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115586] = 2, - ACTIONS(8102), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115593] = 2, - ACTIONS(6364), 1, + [128171] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3858), 1, + STATE(3760), 1, sym__commonmark_double_quote_string, - [115600] = 2, - ACTIONS(8104), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115607] = 2, - ACTIONS(8106), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115614] = 2, - ACTIONS(6364), 1, + [128178] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3861), 1, + STATE(3944), 1, sym__commonmark_double_quote_string, - [115621] = 2, - ACTIONS(8108), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115628] = 2, - ACTIONS(8110), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115635] = 2, - ACTIONS(6364), 1, + [128185] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3448), 1, + STATE(3945), 1, sym__commonmark_double_quote_string, - [115642] = 2, - ACTIONS(8112), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115649] = 2, - ACTIONS(8114), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115656] = 2, - ACTIONS(6364), 1, + [128192] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3460), 1, + STATE(3950), 1, sym__commonmark_double_quote_string, - [115663] = 2, - ACTIONS(7435), 1, - sym__line_ending, - ACTIONS(8012), 1, - sym__pipe_table_delimiter, - [115670] = 2, - ACTIONS(8116), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115677] = 2, - ACTIONS(8118), 1, + [128199] = 2, + ACTIONS(6951), 1, + sym__block_close, + ACTIONS(6953), 1, + sym__fenced_code_block_end_backtick, + [128206] = 1, + ACTIONS(7443), 2, + sym__soft_line_ending, sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115684] = 2, - ACTIONS(6364), 1, + [128211] = 2, + ACTIONS(2413), 1, + sym__close_block, + ACTIONS(7969), 1, + sym_block_continuation, + [128218] = 2, + ACTIONS(6280), 1, + sym__key_specifier_token, + STATE(3279), 1, + sym__shortcode_key_value_specifier, + [128225] = 2, + ACTIONS(7971), 1, + sym__block_close, + ACTIONS(7973), 1, + sym__fenced_code_block_end_backtick, + [128232] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3684), 1, + STATE(4138), 1, sym__commonmark_double_quote_string, - [115691] = 2, - ACTIONS(8120), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115698] = 2, - ACTIONS(8122), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115705] = 2, - ACTIONS(6364), 1, + [128239] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3694), 1, + STATE(4139), 1, sym__commonmark_double_quote_string, - [115712] = 1, - ACTIONS(7386), 2, - anon_sym_RPAREN, - sym__whitespace, - [115717] = 2, - ACTIONS(8124), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115724] = 2, - ACTIONS(6364), 1, + [128246] = 2, + ACTIONS(191), 1, + sym__line_ending, + STATE(42), 1, + sym__newline, + [128253] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3902), 1, + STATE(4142), 1, sym__commonmark_double_quote_string, - [115731] = 2, - ACTIONS(8126), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115738] = 2, - ACTIONS(8128), 1, + [128260] = 1, + ACTIONS(7975), 2, + sym__soft_line_ending, sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115745] = 2, - ACTIONS(6364), 1, + [128265] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3909), 1, + STATE(3616), 1, sym__commonmark_double_quote_string, - [115752] = 2, - ACTIONS(8130), 1, - sym__block_close, - ACTIONS(8132), 1, - sym__fenced_code_block_end_backtick, - [115759] = 1, - ACTIONS(3073), 2, + [128272] = 2, + ACTIONS(6941), 1, sym__line_ending, - sym__eof, - [115764] = 2, - ACTIONS(2699), 1, - sym__close_block, - ACTIONS(8134), 1, - sym_block_continuation, - [115771] = 2, - ACTIONS(8136), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115778] = 2, - ACTIONS(8138), 1, + STATE(2592), 1, + sym__newline, + [128279] = 2, + ACTIONS(7659), 1, + sym__pipe_table_delimiter, + ACTIONS(7977), 1, sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115785] = 2, - ACTIONS(6364), 1, + [128286] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3282), 1, + STATE(3643), 1, sym__commonmark_double_quote_string, - [115792] = 2, - ACTIONS(8140), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115799] = 2, - ACTIONS(8142), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115806] = 2, - ACTIONS(6364), 1, + [128293] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3285), 1, + STATE(3644), 1, sym__commonmark_double_quote_string, - [115813] = 2, - ACTIONS(8144), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115820] = 2, - ACTIONS(8146), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115827] = 2, - ACTIONS(6364), 1, + [128300] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3346), 1, + STATE(3655), 1, sym__commonmark_double_quote_string, - [115834] = 2, - ACTIONS(8148), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115841] = 2, - ACTIONS(8150), 1, + [128307] = 2, + ACTIONS(6550), 1, + sym__key_specifier_token, + ACTIONS(7979), 1, sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115848] = 2, - ACTIONS(6364), 1, + [128314] = 1, + ACTIONS(7981), 2, + sym__line_ending, + sym__eof, + [128319] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3349), 1, + STATE(3951), 1, sym__commonmark_double_quote_string, - [115855] = 2, - ACTIONS(2435), 1, - sym__line_ending, - ACTIONS(8012), 1, - sym__pipe_table_delimiter, - [115862] = 2, - ACTIONS(2435), 1, + [128326] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3959), 1, + sym__commonmark_double_quote_string, + [128333] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3973), 1, + sym__commonmark_double_quote_string, + [128340] = 2, + ACTIONS(6941), 1, sym__line_ending, - ACTIONS(7487), 1, - sym__pipe_table_delimiter, - [115869] = 2, - ACTIONS(2433), 1, + STATE(2595), 1, + sym__newline, + [128347] = 2, + ACTIONS(191), 1, sym__line_ending, - ACTIONS(8012), 1, - sym__pipe_table_delimiter, - [115876] = 2, - ACTIONS(8152), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115883] = 2, - ACTIONS(8154), 1, + STATE(43), 1, + sym__newline, + [128354] = 1, + ACTIONS(7983), 2, + sym__soft_line_ending, sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115890] = 2, - ACTIONS(6364), 1, + [128359] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3410), 1, + STATE(3444), 1, sym__commonmark_double_quote_string, - [115897] = 2, - ACTIONS(8156), 1, - sym__whitespace, - STATE(3059), 1, - aux_sym_shortcode_escaped_repeat2, - [115904] = 2, - ACTIONS(8158), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115911] = 2, - ACTIONS(6364), 1, + [128366] = 2, + ACTIONS(7943), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3413), 1, + STATE(3445), 1, sym__commonmark_double_quote_string, - [115918] = 2, - ACTIONS(8160), 1, - anon_sym_DASH, - STATE(2545), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - [115925] = 2, - ACTIONS(8162), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115932] = 2, - ACTIONS(8164), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115939] = 2, - ACTIONS(8166), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115946] = 2, - ACTIONS(8168), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115953] = 2, - ACTIONS(8170), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115960] = 2, - ACTIONS(8172), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115967] = 2, - ACTIONS(8174), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115974] = 2, - ACTIONS(8176), 1, - sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115981] = 2, - ACTIONS(7170), 1, + [128373] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3448), 1, + sym__commonmark_double_quote_string, + [128380] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3512), 1, + sym__commonmark_double_quote_string, + [128387] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3513), 1, + sym__commonmark_double_quote_string, + [128394] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3516), 1, + sym__commonmark_double_quote_string, + [128401] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3580), 1, + sym__commonmark_double_quote_string, + [128408] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3581), 1, + sym__commonmark_double_quote_string, + [128415] = 2, + ACTIONS(7943), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3584), 1, + sym__commonmark_double_quote_string, + [128422] = 1, + ACTIONS(7745), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_underscore, + [128427] = 2, + ACTIONS(7985), 1, + sym__blank_line_start, + STATE(3966), 1, + sym__blank_line, + [128434] = 1, + ACTIONS(7745), 2, + sym__soft_line_ending, + sym__double_quote_span_close, + [128439] = 2, + ACTIONS(7445), 1, + sym__line_ending, + ACTIONS(7927), 1, sym__pipe_table_delimiter, - ACTIONS(8178), 1, - sym__whitespace, - [115988] = 2, - ACTIONS(8180), 1, + [128446] = 2, + ACTIONS(7605), 1, + sym__pipe_table_delimiter, + ACTIONS(7987), 1, sym__whitespace, - STATE(3064), 1, - aux_sym_shortcode_repeat1, - [115995] = 1, - ACTIONS(8182), 1, - anon_sym_RBRACE, - [115999] = 1, - ACTIONS(8184), 1, - sym__double_quote_span_close, - [116003] = 1, - ACTIONS(8186), 1, + [128453] = 1, + ACTIONS(7989), 1, anon_sym_DOLLAR, - [116007] = 1, - ACTIONS(8188), 1, - anon_sym_DOLLAR_DOLLAR, - [116011] = 1, - ACTIONS(8190), 1, - aux_sym_citation_token2, - [116015] = 1, - ACTIONS(8192), 1, - aux_sym_citation_token2, - [116019] = 1, - ACTIONS(8194), 1, - aux_sym_citation_token2, - [116023] = 1, - ACTIONS(8196), 1, - aux_sym_citation_token2, - [116027] = 1, - ACTIONS(8198), 1, - sym__block_close, - [116031] = 1, - ACTIONS(8200), 1, - anon_sym_RBRACE, - [116035] = 1, - ACTIONS(8202), 1, - sym__whitespace, - [116039] = 1, - ACTIONS(8204), 1, - aux_sym_insert_token1, - [116043] = 1, - ACTIONS(8206), 1, - anon_sym_RBRACE, - [116047] = 1, - ACTIONS(8208), 1, - aux_sym_insert_token1, - [116051] = 1, - ACTIONS(8210), 1, - anon_sym_RBRACE, - [116055] = 1, - ACTIONS(8212), 1, - aux_sym_insert_token1, - [116059] = 1, - ACTIONS(8214), 1, + [128457] = 1, + ACTIONS(7991), 1, + aux_sym_commonmark_specifier_token1, + [128461] = 1, + ACTIONS(7993), 1, aux_sym_insert_token1, - [116063] = 1, - ACTIONS(8216), 1, + [128465] = 1, + ACTIONS(7995), 1, aux_sym_insert_token1, - [116067] = 1, - ACTIONS(8218), 1, - anon_sym_RBRACE, - [116071] = 1, - ACTIONS(8220), 1, + [128469] = 1, + ACTIONS(7997), 1, sym__single_quote_span_close, - [116075] = 1, - ACTIONS(8222), 1, + [128473] = 1, + ACTIONS(7999), 1, sym__double_quote_span_close, - [116079] = 1, - ACTIONS(8224), 1, + [128477] = 1, + ACTIONS(8001), 1, anon_sym_RBRACE, - [116083] = 1, - ACTIONS(8226), 1, + [128481] = 1, + ACTIONS(8003), 1, anon_sym_RBRACE, - [116087] = 1, - ACTIONS(8228), 1, + [128485] = 1, + ACTIONS(8005), 1, sym__strikeout_close, - [116091] = 1, - ACTIONS(8230), 1, + [128489] = 1, + ACTIONS(8007), 1, sym__subscript_close, - [116095] = 1, - ACTIONS(8232), 1, + [128493] = 1, + ACTIONS(8009), 1, sym__superscript_close, - [116099] = 1, - ACTIONS(8234), 1, - anon_sym_DOLLAR, - [116103] = 1, - ACTIONS(8236), 1, + [128497] = 1, + ACTIONS(8011), 1, + sym__double_quote_span_close, + [128501] = 1, + ACTIONS(8013), 1, sym__strong_emphasis_close_star, - [116107] = 1, - ACTIONS(8236), 1, + [128505] = 1, + ACTIONS(8013), 1, sym__strong_emphasis_close_underscore, - [116111] = 1, - ACTIONS(8238), 1, + [128509] = 1, + ACTIONS(8015), 1, sym__emphasis_close_star, - [116115] = 1, - ACTIONS(8238), 1, + [128513] = 1, + ACTIONS(8015), 1, sym__emphasis_close_underscore, - [116119] = 1, - ACTIONS(8240), 1, - aux_sym_insert_token1, - [116123] = 1, - ACTIONS(8242), 1, - anon_sym_RBRACE, - [116127] = 1, - ACTIONS(8244), 1, - sym__whitespace, - [116131] = 1, - ACTIONS(8246), 1, + [128517] = 1, + ACTIONS(8017), 1, + sym__strikeout_close, + [128521] = 1, + ACTIONS(8019), 1, anon_sym_RPAREN, - [116135] = 1, - ACTIONS(8248), 1, + [128525] = 1, + ACTIONS(8021), 1, + aux_sym_insert_token1, + [128529] = 1, + ACTIONS(8023), 1, + aux_sym_insert_token1, + [128533] = 1, + ACTIONS(8025), 1, + sym__subscript_close, + [128537] = 1, + ACTIONS(8027), 1, anon_sym_DOLLAR, - [116139] = 1, - ACTIONS(8250), 1, + [128541] = 1, + ACTIONS(8029), 1, anon_sym_DOLLAR_DOLLAR, - [116143] = 1, - ACTIONS(8252), 1, + [128545] = 1, + ACTIONS(8031), 1, anon_sym_RBRACE, - [116147] = 1, - ACTIONS(8254), 1, + [128549] = 1, + ACTIONS(8033), 1, anon_sym_RBRACE, - [116151] = 1, - ACTIONS(8256), 1, + [128553] = 1, + ACTIONS(8035), 1, anon_sym_RBRACE, - [116155] = 1, - ACTIONS(8258), 1, + [128557] = 1, + ACTIONS(8037), 1, anon_sym_RBRACE, - [116159] = 1, - ACTIONS(8260), 1, + [128561] = 1, + ACTIONS(8039), 1, aux_sym_insert_token1, - [116163] = 1, - ACTIONS(8262), 1, + [128565] = 1, + ACTIONS(8041), 1, aux_sym_insert_token1, - [116167] = 1, - ACTIONS(8264), 1, + [128569] = 1, + ACTIONS(8043), 1, aux_sym_insert_token1, - [116171] = 1, - ACTIONS(8266), 1, + [128573] = 1, + ACTIONS(8045), 1, aux_sym_insert_token1, - [116175] = 1, - ACTIONS(7223), 1, + [128577] = 1, + ACTIONS(7332), 1, aux_sym_inline_note_token1, - [116179] = 1, - ACTIONS(8268), 1, - aux_sym_insert_token1, - [116183] = 1, - ACTIONS(8270), 1, - sym__block_close, - [116187] = 1, - ACTIONS(8272), 1, - anon_sym_DOLLAR_DOLLAR, - [116191] = 1, - ACTIONS(8274), 1, - aux_sym_insert_token1, - [116195] = 1, - ACTIONS(8276), 1, - anon_sym_RBRACE, - [116199] = 1, - ACTIONS(8278), 1, + [128581] = 1, + ACTIONS(8047), 1, + aux_sym_citation_token2, + [128585] = 1, + ACTIONS(8049), 1, aux_sym_insert_token1, - [116203] = 1, - ACTIONS(8280), 1, - aux_sym_inline_note_token1, - [116207] = 1, - ACTIONS(8282), 1, + [128589] = 1, + ACTIONS(8051), 1, aux_sym_insert_token1, - [116211] = 1, - ACTIONS(8284), 1, + [128593] = 1, + ACTIONS(8053), 1, + aux_sym_citation_token2, + [128597] = 1, + ACTIONS(8055), 1, + anon_sym_RPAREN, + [128601] = 1, + ACTIONS(8057), 1, sym__single_quote_span_close, - [116215] = 1, - ACTIONS(8286), 1, + [128605] = 1, + ACTIONS(8059), 1, sym__double_quote_span_close, - [116219] = 1, - ACTIONS(8288), 1, - sym__block_close, - [116223] = 1, - ACTIONS(8290), 1, - anon_sym_RBRACE, - [116227] = 1, - ACTIONS(8292), 1, + [128609] = 1, + ACTIONS(8061), 1, + aux_sym_inline_note_token1, + [128613] = 1, + ACTIONS(8063), 1, anon_sym_RPAREN, - [116231] = 1, - ACTIONS(8294), 1, + [128617] = 1, + ACTIONS(8065), 1, anon_sym_RBRACE, - [116235] = 1, - ACTIONS(8296), 1, + [128621] = 1, + ACTIONS(8067), 1, + anon_sym_RBRACE, + [128625] = 1, + ACTIONS(8069), 1, + anon_sym_DOLLAR, + [128629] = 1, + ACTIONS(8071), 1, sym__strikeout_close, - [116239] = 1, - ACTIONS(8298), 1, + [128633] = 1, + ACTIONS(8073), 1, + sym_shortcode_name, + [128637] = 1, + ACTIONS(8075), 1, anon_sym_RPAREN, - [116243] = 1, - ACTIONS(7231), 1, - anon_sym_RBRACE, - [116247] = 1, - ACTIONS(8300), 1, + [128641] = 1, + ACTIONS(8077), 1, + anon_sym_RPAREN, + [128645] = 1, + ACTIONS(6660), 1, + sym_shortcode_name, + [128649] = 1, + ACTIONS(8079), 1, + anon_sym_RPAREN, + [128653] = 1, + ACTIONS(8081), 1, + anon_sym_RPAREN, + [128657] = 1, + ACTIONS(8083), 1, + aux_sym_insert_token1, + [128661] = 1, + ACTIONS(8085), 1, sym__subscript_close, - [116251] = 1, - ACTIONS(8302), 1, + [128665] = 1, + ACTIONS(8087), 1, sym__superscript_close, - [116255] = 1, - ACTIONS(7751), 1, - anon_sym_RBRACE, - [116259] = 1, - ACTIONS(7388), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - [116263] = 1, - ACTIONS(8304), 1, - aux_sym_insert_token1, - [116267] = 1, - ACTIONS(8306), 1, + [128669] = 1, + ACTIONS(7432), 1, + sym__pipe_table_delimiter, + [128673] = 1, + ACTIONS(8089), 1, + sym__strong_emphasis_close_star, + [128677] = 1, + ACTIONS(8089), 1, + sym__strong_emphasis_close_underscore, + [128681] = 1, + ACTIONS(8091), 1, aux_sym_citation_token2, - [116271] = 1, - ACTIONS(8308), 1, + [128685] = 1, + ACTIONS(8093), 1, aux_sym_citation_token2, - [116275] = 1, - ACTIONS(8310), 1, - anon_sym_RBRACE, - [116279] = 1, - ACTIONS(8312), 1, - anon_sym_EQ, - [116283] = 1, - ACTIONS(8314), 1, + [128689] = 1, + ACTIONS(8095), 1, + sym__emphasis_close_star, + [128693] = 1, + ACTIONS(8095), 1, + sym__emphasis_close_underscore, + [128697] = 1, + ACTIONS(8097), 1, aux_sym_insert_token1, - [116287] = 1, - ACTIONS(8316), 1, - sym__strong_emphasis_close_star, - [116291] = 1, - ACTIONS(8316), 1, - sym__strong_emphasis_close_underscore, - [116295] = 1, - ACTIONS(8318), 1, + [128701] = 1, + ACTIONS(8099), 1, + anon_sym_DOLLAR, + [128705] = 1, + ACTIONS(8101), 1, aux_sym_insert_token1, - [116299] = 1, - ACTIONS(8320), 1, - sym__block_close, - [116303] = 1, - ACTIONS(8322), 1, + [128709] = 1, + ACTIONS(8103), 1, aux_sym_insert_token1, - [116307] = 1, - ACTIONS(8324), 1, - sym__emphasis_close_star, - [116311] = 1, - ACTIONS(8326), 1, + [128713] = 1, + ACTIONS(8105), 1, + anon_sym_DOLLAR_DOLLAR, + [128717] = 1, + ACTIONS(8107), 1, aux_sym_insert_token1, - [116315] = 1, - ACTIONS(8324), 1, - sym__emphasis_close_underscore, - [116319] = 1, - ACTIONS(8328), 1, + [128721] = 1, + ACTIONS(8109), 1, aux_sym_insert_token1, - [116323] = 1, - ACTIONS(3073), 1, - sym__block_close, - [116327] = 1, - ACTIONS(8330), 1, + [128725] = 1, + ACTIONS(8111), 1, + aux_sym_insert_token1, + [128729] = 1, + ACTIONS(8113), 1, + anon_sym_RBRACE, + [128733] = 1, + ACTIONS(8115), 1, + aux_sym_insert_token1, + [128737] = 1, + ACTIONS(7443), 1, + anon_sym_RPAREN, + [128741] = 1, + ACTIONS(8117), 1, sym__single_quote_span_close, - [116331] = 1, - ACTIONS(8332), 1, + [128745] = 1, + ACTIONS(8119), 1, sym__double_quote_span_close, - [116335] = 1, - ACTIONS(8334), 1, + [128749] = 1, + ACTIONS(8121), 1, anon_sym_RBRACE, - [116339] = 1, - ACTIONS(8336), 1, + [128753] = 1, + ACTIONS(8123), 1, anon_sym_RBRACE, - [116343] = 1, - ACTIONS(8338), 1, + [128757] = 1, + ACTIONS(8125), 1, sym__strikeout_close, - [116347] = 1, - ACTIONS(8340), 1, + [128761] = 1, + ACTIONS(8127), 1, sym__subscript_close, - [116351] = 1, - ACTIONS(8342), 1, + [128765] = 1, + ACTIONS(8129), 1, sym__superscript_close, - [116355] = 1, - ACTIONS(8344), 1, - anon_sym_RBRACE, - [116359] = 1, - ACTIONS(8346), 1, + [128769] = 1, + ACTIONS(8131), 1, + sym__single_quote_span_close, + [128773] = 1, + ACTIONS(8133), 1, sym__strong_emphasis_close_star, - [116363] = 1, - ACTIONS(8346), 1, + [128777] = 1, + ACTIONS(8133), 1, sym__strong_emphasis_close_underscore, - [116367] = 1, - ACTIONS(8348), 1, + [128781] = 1, + ACTIONS(8135), 1, sym__emphasis_close_star, - [116371] = 1, - ACTIONS(8348), 1, + [128785] = 1, + ACTIONS(8135), 1, sym__emphasis_close_underscore, - [116375] = 1, - ACTIONS(8350), 1, + [128789] = 1, + ACTIONS(8137), 1, + anon_sym_DOLLAR, + [128793] = 1, + ACTIONS(8139), 1, + sym__double_quote_span_close, + [128797] = 1, + ACTIONS(8141), 1, + anon_sym_DOLLAR_DOLLAR, + [128801] = 1, + ACTIONS(8143), 1, anon_sym_RBRACE, - [116379] = 1, - ACTIONS(8352), 1, - aux_sym_insert_token1, - [116383] = 1, - ACTIONS(8354), 1, - aux_sym_insert_token1, - [116387] = 1, - ACTIONS(8356), 1, - aux_sym_insert_token1, - [116391] = 1, - ACTIONS(8358), 1, + [128805] = 1, + ACTIONS(8145), 1, + anon_sym_RBRACE, + [128809] = 1, + ACTIONS(8147), 1, anon_sym_DOLLAR, - [116395] = 1, - ACTIONS(8360), 1, + [128813] = 1, + ACTIONS(8149), 1, anon_sym_DOLLAR_DOLLAR, - [116399] = 1, - ACTIONS(8362), 1, + [128817] = 1, + ACTIONS(8151), 1, anon_sym_RBRACE, - [116403] = 1, - ACTIONS(8364), 1, + [128821] = 1, + ACTIONS(8153), 1, anon_sym_RBRACE, - [116407] = 1, - ACTIONS(8366), 1, + [128825] = 1, + ACTIONS(8155), 1, anon_sym_RBRACE, - [116411] = 1, - ACTIONS(8368), 1, + [128829] = 1, + ACTIONS(8157), 1, anon_sym_RBRACE, - [116415] = 1, - ACTIONS(8370), 1, + [128833] = 1, + ACTIONS(8159), 1, aux_sym_insert_token1, - [116419] = 1, - ACTIONS(8372), 1, + [128837] = 1, + ACTIONS(8161), 1, aux_sym_insert_token1, - [116423] = 1, - ACTIONS(8374), 1, + [128841] = 1, + ACTIONS(8163), 1, aux_sym_insert_token1, - [116427] = 1, - ACTIONS(8376), 1, + [128845] = 1, + ACTIONS(8165), 1, aux_sym_insert_token1, - [116431] = 1, - ACTIONS(7245), 1, + [128849] = 1, + ACTIONS(7346), 1, aux_sym_inline_note_token1, - [116435] = 1, - ACTIONS(8378), 1, - anon_sym_DOLLAR, - [116439] = 1, - ACTIONS(8380), 1, - anon_sym_DOLLAR_DOLLAR, - [116443] = 1, - ACTIONS(8382), 1, - anon_sym_RBRACE, - [116447] = 1, - ACTIONS(8384), 1, + [128853] = 1, + ACTIONS(8167), 1, anon_sym_RBRACE, - [116451] = 1, - ACTIONS(8386), 1, + [128857] = 1, + ACTIONS(8169), 1, anon_sym_RBRACE, - [116455] = 1, - ACTIONS(8388), 1, - anon_sym_RBRACE, - [116459] = 1, - ACTIONS(8390), 1, + [128861] = 1, + ACTIONS(8171), 1, + sym__strikeout_close, + [128865] = 1, + ACTIONS(8173), 1, + sym__subscript_close, + [128869] = 1, + ACTIONS(8175), 1, + sym__superscript_close, + [128873] = 1, + ACTIONS(8177), 1, + anon_sym_DOLLAR_DOLLAR, + [128877] = 1, + ACTIONS(8179), 1, + sym__block_close, + [128881] = 1, + ACTIONS(8181), 1, aux_sym_inline_note_token1, - [116463] = 1, - ACTIONS(8392), 1, + [128885] = 1, + ACTIONS(8183), 1, + anon_sym_RPAREN, + [128889] = 1, + ACTIONS(8185), 1, sym__block_close, - [116467] = 1, - ACTIONS(8394), 1, + [128893] = 1, + ACTIONS(8187), 1, sym__block_close, - [116471] = 1, - ACTIONS(8396), 1, - aux_sym_insert_token1, - [116475] = 1, - ACTIONS(7417), 1, - sym__whitespace, - [116479] = 1, - ACTIONS(8398), 1, - aux_sym_insert_token1, - [116483] = 1, - ACTIONS(8400), 1, + [128897] = 1, + ACTIONS(8189), 1, + sym__strong_emphasis_close_star, + [128901] = 1, + ACTIONS(8191), 1, + sym__block_close, + [128905] = 1, + ACTIONS(8189), 1, + sym__strong_emphasis_close_underscore, + [128909] = 1, + ACTIONS(8193), 1, anon_sym_RPAREN, - [116487] = 1, - ACTIONS(8402), 1, - aux_sym_insert_token1, - [116491] = 1, - ACTIONS(8404), 1, - aux_sym_insert_token1, - [116495] = 1, - ACTIONS(8406), 1, + [128913] = 1, + ACTIONS(8195), 1, anon_sym_RPAREN, - [116499] = 1, - ACTIONS(7277), 1, - aux_sym_inline_note_token1, - [116503] = 1, - ACTIONS(8408), 1, - aux_sym_insert_token1, - [116507] = 1, - ACTIONS(7154), 1, - aux_sym_inline_note_token1, - [116511] = 1, - ACTIONS(8410), 1, - aux_sym_insert_token1, - [116515] = 1, - ACTIONS(8412), 1, - sym__close_block, - [116519] = 1, - ACTIONS(7227), 1, - aux_sym_inline_note_token1, - [116523] = 1, - ACTIONS(8414), 1, + [128917] = 1, + ACTIONS(8197), 1, + sym__emphasis_close_star, + [128921] = 1, + ACTIONS(8197), 1, + sym__emphasis_close_underscore, + [128925] = 1, + ACTIONS(8199), 1, + anon_sym_RPAREN, + [128929] = 1, + ACTIONS(8201), 1, + sym__block_close, + [128933] = 1, + ACTIONS(8203), 1, + sym__block_close, + [128937] = 1, + ACTIONS(8205), 1, + anon_sym_RBRACE, + [128941] = 1, + ACTIONS(8207), 1, + anon_sym_RBRACE, + [128945] = 1, + ACTIONS(8209), 1, + anon_sym_RBRACE, + [128949] = 1, + ACTIONS(8211), 1, + anon_sym_EQ, + [128953] = 1, + ACTIONS(8213), 1, + aux_sym_citation_token2, + [128957] = 1, + ACTIONS(8215), 1, + aux_sym_citation_token2, + [128961] = 1, + ACTIONS(8217), 1, + anon_sym_RBRACE, + [128965] = 1, + ACTIONS(8219), 1, aux_sym_citation_token2, - [116527] = 1, - ACTIONS(8416), 1, + [128969] = 1, + ACTIONS(8221), 1, aux_sym_citation_token2, - [116531] = 1, - ACTIONS(8418), 1, + [128973] = 1, + ACTIONS(8223), 1, aux_sym_insert_token1, - [116535] = 1, - ACTIONS(8420), 1, - sym__block_close, - [116539] = 1, - ACTIONS(8422), 1, + [128977] = 1, + ACTIONS(8225), 1, + anon_sym_RBRACE, + [128981] = 1, + ACTIONS(8227), 1, aux_sym_insert_token1, - [116543] = 1, - ACTIONS(8424), 1, + [128985] = 1, + ACTIONS(8229), 1, aux_sym_insert_token1, - [116547] = 1, - ACTIONS(6264), 1, - sym__line_ending, - [116551] = 1, - ACTIONS(8426), 1, + [128989] = 1, + ACTIONS(8231), 1, aux_sym_insert_token1, - [116555] = 1, - ACTIONS(8428), 1, - aux_sym_inline_note_token1, - [116559] = 1, - ACTIONS(8430), 1, + [128993] = 1, + ACTIONS(8233), 1, aux_sym_insert_token1, - [116563] = 1, - ACTIONS(8432), 1, + [128997] = 1, + ACTIONS(8235), 1, aux_sym_insert_token1, - [116567] = 1, - ACTIONS(8434), 1, + [129001] = 1, + ACTIONS(8237), 1, aux_sym_insert_token1, - [116571] = 1, - ACTIONS(8436), 1, - aux_sym_citation_token1, - [116575] = 1, - ACTIONS(8438), 1, + [129005] = 1, + ACTIONS(8239), 1, aux_sym_insert_token1, - [116579] = 1, - ACTIONS(8440), 1, + [129009] = 1, + ACTIONS(7358), 1, aux_sym_inline_note_token1, - [116583] = 1, - ACTIONS(8442), 1, + [129013] = 1, + ACTIONS(8241), 1, sym__single_quote_span_close, - [116587] = 1, - ACTIONS(8444), 1, + [129017] = 1, + ACTIONS(8243), 1, sym__double_quote_span_close, - [116591] = 1, - ACTIONS(8446), 1, + [129021] = 1, + ACTIONS(8245), 1, anon_sym_RBRACE, - [116595] = 1, - ACTIONS(8448), 1, + [129025] = 1, + ACTIONS(8247), 1, anon_sym_RBRACE, - [116599] = 1, - ACTIONS(8450), 1, + [129029] = 1, + ACTIONS(8249), 1, sym__strikeout_close, - [116603] = 1, - ACTIONS(8452), 1, + [129033] = 1, + ACTIONS(8251), 1, sym__subscript_close, - [116607] = 1, - ACTIONS(8454), 1, + [129037] = 1, + ACTIONS(8253), 1, sym__superscript_close, - [116611] = 1, - ACTIONS(8456), 1, - sym__block_close, - [116615] = 1, - ACTIONS(8458), 1, + [129041] = 1, + ACTIONS(8255), 1, + anon_sym_DOLLAR, + [129045] = 1, + ACTIONS(8257), 1, sym__strong_emphasis_close_star, - [116619] = 1, - ACTIONS(8458), 1, + [129049] = 1, + ACTIONS(8257), 1, sym__strong_emphasis_close_underscore, - [116623] = 1, - ACTIONS(8460), 1, + [129053] = 1, + ACTIONS(8259), 1, sym__emphasis_close_star, - [116627] = 1, - ACTIONS(8460), 1, + [129057] = 1, + ACTIONS(8259), 1, sym__emphasis_close_underscore, - [116631] = 1, - ACTIONS(8462), 1, + [129061] = 1, + ACTIONS(8261), 1, + anon_sym_DOLLAR_DOLLAR, + [129065] = 1, + ACTIONS(8263), 1, anon_sym_RBRACE, - [116635] = 1, - ACTIONS(7439), 1, - sym__pipe_table_delimiter, - [116639] = 1, - ACTIONS(8014), 1, - sym__block_close, - [116643] = 1, - ACTIONS(8464), 1, - sym__block_close, - [116647] = 1, - ACTIONS(8466), 1, + [129069] = 1, + ACTIONS(8265), 1, + sym_shortcode_name, + [129073] = 1, + ACTIONS(8267), 1, + anon_sym_RBRACE, + [129077] = 1, + ACTIONS(8269), 1, + anon_sym_RBRACE, + [129081] = 1, + ACTIONS(8271), 1, anon_sym_DOLLAR, - [116651] = 1, - ACTIONS(8468), 1, + [129085] = 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_DOLLAR, - [116655] = 1, - ACTIONS(8470), 1, + [129089] = 1, + ACTIONS(8275), 1, anon_sym_RBRACE, - [116659] = 1, - ACTIONS(8472), 1, + [129093] = 1, + ACTIONS(8277), 1, anon_sym_RBRACE, - [116663] = 1, - ACTIONS(8474), 1, + [129097] = 1, + ACTIONS(8279), 1, anon_sym_RBRACE, - [116667] = 1, - ACTIONS(8476), 1, + [129101] = 1, + ACTIONS(8281), 1, anon_sym_RBRACE, - [116671] = 1, - ACTIONS(8478), 1, + [129105] = 1, + ACTIONS(8283), 1, aux_sym_insert_token1, - [116675] = 1, - ACTIONS(8480), 1, + [129109] = 1, + ACTIONS(8285), 1, aux_sym_insert_token1, - [116679] = 1, - ACTIONS(8482), 1, + [129113] = 1, + ACTIONS(8287), 1, aux_sym_insert_token1, - [116683] = 1, - ACTIONS(8484), 1, + [129117] = 1, + ACTIONS(8289), 1, aux_sym_insert_token1, - [116687] = 1, - ACTIONS(7269), 1, - aux_sym_inline_note_token1, - [116691] = 1, - ACTIONS(8486), 1, - anon_sym_RPAREN, - [116695] = 1, - ACTIONS(8488), 1, + [129121] = 1, + ACTIONS(7362), 1, aux_sym_inline_note_token1, - [116699] = 1, - ACTIONS(8490), 1, - sym__block_close, - [116703] = 1, - ACTIONS(8492), 1, - anon_sym_RPAREN, - [116707] = 1, - ACTIONS(8494), 1, + [129125] = 1, + ACTIONS(8291), 1, anon_sym_RBRACE, - [116711] = 1, - ACTIONS(8496), 1, + [129129] = 1, + ACTIONS(8293), 1, + aux_sym_insert_token1, + [129133] = 1, + ACTIONS(8295), 1, + aux_sym_insert_token1, + [129137] = 1, + ACTIONS(8297), 1, aux_sym_insert_token1, - [116715] = 1, - ACTIONS(8498), 1, + [129141] = 1, + ACTIONS(8299), 1, + aux_sym_insert_token1, + [129145] = 1, + ACTIONS(8301), 1, + aux_sym_insert_token1, + [129149] = 1, + ACTIONS(7237), 1, aux_sym_inline_note_token1, - [116719] = 1, - ACTIONS(8500), 1, - sym__block_close, - [116723] = 1, - ACTIONS(8502), 1, + [129153] = 1, + ACTIONS(8303), 1, aux_sym_inline_note_token1, - [116727] = 1, - ACTIONS(8504), 1, - anon_sym_DOLLAR, - [116731] = 1, - ACTIONS(8506), 1, + [129157] = 1, + ACTIONS(8305), 1, + anon_sym_RPAREN, + [129161] = 1, + ACTIONS(7185), 1, + sym__pipe_table_delimiter, + [129165] = 1, + ACTIONS(8307), 1, sym__block_close, - [116735] = 1, - ACTIONS(8508), 1, + [129169] = 1, + ACTIONS(8309), 1, + aux_sym_citation_token2, + [129173] = 1, + ACTIONS(8311), 1, sym__block_close, - [116739] = 1, - ACTIONS(8510), 1, - anon_sym_RPAREN, - [116743] = 1, - ACTIONS(8512), 1, - anon_sym_DOLLAR_DOLLAR, - [116747] = 1, - ACTIONS(8514), 1, + [129177] = 1, + ACTIONS(8313), 1, aux_sym_citation_token2, - [116751] = 1, - ACTIONS(8516), 1, + [129181] = 1, + ACTIONS(8315), 1, anon_sym_RPAREN, - [116755] = 1, - ACTIONS(8518), 1, - sym__whitespace, - [116759] = 1, - ACTIONS(7288), 1, - sym__pipe_table_delimiter, - [116763] = 1, - ACTIONS(8520), 1, + [129185] = 1, + ACTIONS(8317), 1, + anon_sym_RPAREN, + [129189] = 1, + ACTIONS(8319), 1, + aux_sym_insert_token1, + [129193] = 1, + ACTIONS(8321), 1, anon_sym_RBRACE, - [116767] = 1, - ACTIONS(8522), 1, + [129197] = 1, + ACTIONS(8323), 1, + anon_sym_RPAREN, + [129201] = 1, + ACTIONS(8325), 1, + sym__block_close, + [129205] = 1, + ACTIONS(8327), 1, + sym__block_close, + [129209] = 1, + ACTIONS(8329), 1, anon_sym_RBRACE, - [116771] = 1, - ACTIONS(8524), 1, + [129213] = 1, + ACTIONS(8331), 1, anon_sym_RBRACE, - [116775] = 1, - ACTIONS(8526), 1, + [129217] = 1, + ACTIONS(8333), 1, anon_sym_RBRACE, - [116779] = 1, - ACTIONS(8528), 1, - aux_sym_citation_token2, - [116783] = 1, - ACTIONS(6272), 1, - sym__whitespace, - [116787] = 1, - ACTIONS(8530), 1, + [129221] = 1, + ACTIONS(8335), 1, + anon_sym_RBRACE, + [129225] = 1, + ACTIONS(8337), 1, + sym__block_close, + [129229] = 1, + ACTIONS(8339), 1, + sym__block_close, + [129233] = 1, + ACTIONS(6184), 1, + sym__line_ending, + [129237] = 1, + ACTIONS(7927), 1, + sym__pipe_table_delimiter, + [129241] = 1, + ACTIONS(8341), 1, + aux_sym_insert_token1, + [129245] = 1, + ACTIONS(8343), 1, aux_sym_inline_note_token1, - [116791] = 1, - ACTIONS(8532), 1, + [129249] = 1, + ACTIONS(8345), 1, + anon_sym_RPAREN, + [129253] = 1, + ACTIONS(8347), 1, + sym__block_close, + [129257] = 1, + ACTIONS(8349), 1, aux_sym_insert_token1, - [116795] = 1, - ACTIONS(6276), 1, - sym__whitespace, - [116799] = 1, - ACTIONS(6280), 1, - sym__whitespace, - [116803] = 1, - ACTIONS(8534), 1, + [129261] = 1, + ACTIONS(8351), 1, + sym__close_block, + [129265] = 1, + ACTIONS(8353), 1, anon_sym_RBRACE, - [116807] = 1, - ACTIONS(8536), 1, + [129269] = 1, + ACTIONS(8355), 1, + anon_sym_RBRACE, + [129273] = 1, + ACTIONS(8357), 1, + aux_sym_insert_token1, + [129277] = 1, + ACTIONS(7286), 1, + aux_sym_inline_note_token1, + [129281] = 1, + ACTIONS(8359), 1, + anon_sym_RPAREN, + [129285] = 1, + ACTIONS(8361), 1, + anon_sym_RPAREN, + [129289] = 1, + ACTIONS(8363), 1, aux_sym_insert_token1, - [116811] = 1, - ACTIONS(8538), 1, + [129293] = 1, + ACTIONS(8365), 1, + sym__whitespace, + [129297] = 1, + ACTIONS(8367), 1, + aux_sym_inline_note_token1, + [129301] = 1, + ACTIONS(8369), 1, + aux_sym_citation_token1, + [129305] = 1, + ACTIONS(8371), 1, + aux_sym_citation_token1, + [129309] = 1, + ACTIONS(8373), 1, + sym__superscript_close, + [129313] = 1, + ACTIONS(8375), 1, + aux_sym_inline_note_token1, + [129317] = 1, + ACTIONS(8377), 1, anon_sym_RPAREN, - [116815] = 1, - ACTIONS(8540), 1, + [129321] = 1, + ACTIONS(8379), 1, + anon_sym_RPAREN, + [129325] = 1, + ACTIONS(8381), 1, + anon_sym_RPAREN, + [129329] = 1, + ACTIONS(8383), 1, + aux_sym_insert_token1, + [129333] = 1, + ACTIONS(8385), 1, + anon_sym_RBRACE, + [129337] = 1, + ACTIONS(8387), 1, aux_sym_insert_token1, - [116819] = 1, - ACTIONS(7172), 1, + [129341] = 1, + ACTIONS(8389), 1, + aux_sym_insert_token1, + [129345] = 1, + ACTIONS(8391), 1, + aux_sym_pandoc_math_token1, + [129349] = 1, + ACTIONS(8393), 1, + aux_sym_pandoc_display_math_token1, + [129353] = 1, + ACTIONS(7947), 1, + sym__block_close, + [129357] = 1, + ACTIONS(8395), 1, + sym__strong_emphasis_close_star, + [129361] = 1, + ACTIONS(8395), 1, + sym__strong_emphasis_close_underscore, + [129365] = 1, + ACTIONS(8397), 1, + sym__emphasis_close_star, + [129369] = 1, + ACTIONS(8399), 1, + anon_sym_RBRACE, + [129373] = 1, + ACTIONS(8401), 1, + anon_sym_RPAREN, + [129377] = 1, + ACTIONS(8403), 1, + aux_sym_inline_note_token1, + [129381] = 1, + ACTIONS(8405), 1, + anon_sym_RPAREN, + [129385] = 1, + ACTIONS(8407), 1, + sym__single_quote_span_close, + [129389] = 1, + ACTIONS(8409), 1, + sym__double_quote_span_close, + [129393] = 1, + ACTIONS(2861), 1, + sym__blank_line_start, + [129397] = 1, + ACTIONS(8411), 1, + sym__close_block, + [129401] = 1, + ACTIONS(8397), 1, + sym__emphasis_close_underscore, + [129405] = 1, + ACTIONS(2865), 1, aux_sym_inline_note_token1, - [116823] = 1, - ACTIONS(8542), 1, + [129409] = 1, + ACTIONS(8413), 1, + sym__block_close, + [129413] = 1, + ACTIONS(6160), 1, + sym__line_ending, + [129417] = 1, + ACTIONS(8415), 1, + anon_sym_RBRACE, + [129421] = 1, + ACTIONS(8417), 1, + anon_sym_RBRACE, + [129425] = 1, + ACTIONS(8419), 1, + anon_sym_RBRACE, + [129429] = 1, + ACTIONS(8421), 1, + anon_sym_RBRACE, + [129433] = 1, + ACTIONS(8423), 1, + anon_sym_RPAREN, + [129437] = 1, + ACTIONS(8425), 1, + anon_sym_RPAREN, + [129441] = 1, + ACTIONS(8427), 1, + aux_sym_citation_token2, + [129445] = 1, + ACTIONS(8429), 1, + aux_sym_citation_token2, + [129449] = 1, + ACTIONS(8431), 1, + anon_sym_EQ, + [129453] = 1, + ACTIONS(8433), 1, aux_sym_insert_token1, - [116827] = 1, - ACTIONS(8544), 1, + [129457] = 1, + ACTIONS(8435), 1, anon_sym_RBRACE, - [116831] = 1, - ACTIONS(8546), 1, + [129461] = 1, + ACTIONS(8437), 1, + anon_sym_RPAREN, + [129465] = 1, + ACTIONS(8439), 1, + aux_sym_insert_token1, + [129469] = 1, + ACTIONS(8441), 1, + anon_sym_RPAREN, + [129473] = 1, + ACTIONS(8443), 1, aux_sym_insert_token1, - [116835] = 1, - ACTIONS(8548), 1, + [129477] = 1, + ACTIONS(7243), 1, + sym__pipe_table_delimiter, + [129481] = 1, + ACTIONS(8445), 1, + anon_sym_RPAREN, + [129485] = 1, + ACTIONS(8447), 1, aux_sym_insert_token1, - [116839] = 1, - ACTIONS(8550), 1, + [129489] = 1, + ACTIONS(8449), 1, aux_sym_insert_token1, - [116843] = 1, - ACTIONS(8552), 1, + [129493] = 1, + ACTIONS(8451), 1, + sym__strikeout_close, + [129497] = 1, + ACTIONS(8453), 1, aux_sym_insert_token1, - [116847] = 1, - ACTIONS(8554), 1, + [129501] = 1, + ACTIONS(8455), 1, sym__whitespace, - [116851] = 1, - ACTIONS(8556), 1, + [129505] = 1, + ACTIONS(8457), 1, + aux_sym_insert_token1, + [129509] = 1, + ACTIONS(8459), 1, + anon_sym_DOLLAR, + [129513] = 1, + ACTIONS(8461), 1, + anon_sym_DOLLAR_DOLLAR, + [129517] = 1, + ACTIONS(8463), 1, + aux_sym_insert_token1, + [129521] = 1, + ACTIONS(8465), 1, sym__single_quote_span_close, - [116855] = 1, - ACTIONS(8558), 1, - aux_sym_citation_token1, - [116859] = 1, - ACTIONS(8560), 1, - aux_sym_citation_token1, - [116863] = 1, - ACTIONS(8562), 1, + [129525] = 1, + ACTIONS(8467), 1, + sym__single_quote_span_close, + [129529] = 1, + ACTIONS(8469), 1, sym__double_quote_span_close, - [116867] = 1, - ACTIONS(8564), 1, + [129533] = 1, + ACTIONS(8471), 1, anon_sym_RBRACE, - [116871] = 1, - ACTIONS(8566), 1, + [129537] = 1, + ACTIONS(8473), 1, anon_sym_RBRACE, - [116875] = 1, - ACTIONS(8568), 1, + [129541] = 1, + ACTIONS(8475), 1, + sym__whitespace, + [129545] = 1, + ACTIONS(8477), 1, sym__strikeout_close, - [116879] = 1, - ACTIONS(8570), 1, + [129549] = 1, + ACTIONS(8479), 1, + aux_sym_citation_token1, + [129553] = 1, + ACTIONS(8481), 1, + aux_sym_citation_token1, + [129557] = 1, + ACTIONS(8483), 1, sym__subscript_close, - [116883] = 1, - ACTIONS(8572), 1, + [129561] = 1, + ACTIONS(8485), 1, + sym__block_close, + [129565] = 1, + ACTIONS(8487), 1, sym__superscript_close, - [116887] = 1, - ACTIONS(8574), 1, - anon_sym_RPAREN, - [116891] = 1, - ACTIONS(8576), 1, - anon_sym_RPAREN, - [116895] = 1, - ACTIONS(8578), 1, + [129569] = 1, + ACTIONS(8489), 1, + sym__block_close, + [129573] = 1, + ACTIONS(8491), 1, + sym__double_quote_span_close, + [129577] = 1, + ACTIONS(6164), 1, + sym__line_ending, + [129581] = 1, + ACTIONS(8493), 1, + aux_sym_insert_token1, + [129585] = 1, + ACTIONS(8495), 1, sym__strong_emphasis_close_star, - [116899] = 1, - ACTIONS(8580), 1, + [129589] = 1, + ACTIONS(8495), 1, + sym__strong_emphasis_close_underscore, + [129593] = 1, + ACTIONS(8497), 1, aux_sym_pandoc_math_token1, - [116903] = 1, - ACTIONS(8582), 1, + [129597] = 1, + ACTIONS(8499), 1, aux_sym_pandoc_display_math_token1, - [116907] = 1, - ACTIONS(8578), 1, - sym__strong_emphasis_close_underscore, - [116911] = 1, - ACTIONS(8584), 1, + [129601] = 1, + ACTIONS(8501), 1, sym__emphasis_close_star, - [116915] = 1, - ACTIONS(8586), 1, - aux_sym_insert_token1, - [116919] = 1, - ACTIONS(7127), 1, - sym__pipe_table_delimiter, - [116923] = 1, - ACTIONS(8588), 1, + [129605] = 1, + ACTIONS(8503), 1, + sym__close_block, + [129609] = 1, + ACTIONS(8505), 1, + aux_sym_citation_token2, + [129613] = 1, + ACTIONS(8507), 1, + anon_sym_RBRACE, + [129617] = 1, + ACTIONS(8509), 1, + anon_sym_RPAREN, + [129621] = 1, + ACTIONS(8511), 1, + anon_sym_RBRACE, + [129625] = 1, + ACTIONS(8513), 1, + anon_sym_RBRACE, + [129629] = 1, + ACTIONS(8501), 1, + sym__emphasis_close_underscore, + [129633] = 1, + ACTIONS(8515), 1, aux_sym_citation_token2, - [116927] = 1, - ACTIONS(8590), 1, + [129637] = 1, + ACTIONS(8517), 1, aux_sym_citation_token2, - [116931] = 1, - ACTIONS(8592), 1, + [129641] = 1, + ACTIONS(8519), 1, + anon_sym_RBRACE, + [129645] = 1, + ACTIONS(8521), 1, + sym__block_close, + [129649] = 1, + ACTIONS(8523), 1, + sym__block_close, + [129653] = 1, + ACTIONS(8525), 1, + sym__block_close, + [129657] = 1, + ACTIONS(8527), 1, + sym__block_close, + [129661] = 1, + ACTIONS(8529), 1, + anon_sym_RBRACE, + [129665] = 1, + ACTIONS(8531), 1, + sym__subscript_close, + [129669] = 1, + ACTIONS(8533), 1, aux_sym_insert_token1, - [116935] = 1, - ACTIONS(8584), 1, - sym__emphasis_close_underscore, - [116939] = 1, - ACTIONS(8594), 1, - anon_sym_RPAREN, - [116943] = 1, - ACTIONS(8596), 1, - sym__single_quote_span_close, - [116947] = 1, - ACTIONS(8012), 1, - sym__pipe_table_delimiter, - [116951] = 1, - ACTIONS(8598), 1, + [129673] = 1, + ACTIONS(8535), 1, + aux_sym_insert_token1, + [129677] = 1, + ACTIONS(8537), 1, + aux_sym_insert_token1, + [129681] = 1, + ACTIONS(8539), 1, sym__block_close, - [116955] = 1, - ACTIONS(6268), 1, + [129685] = 1, + ACTIONS(8541), 1, + sym__block_close, + [129689] = 1, + ACTIONS(7955), 1, + sym__block_close, + [129693] = 1, + ACTIONS(6148), 1, sym__line_ending, - [116959] = 1, - ACTIONS(8600), 1, - aux_sym_insert_token1, - [116963] = 1, - ACTIONS(8602), 1, - sym__double_quote_span_close, - [116967] = 1, - ACTIONS(8604), 1, - anon_sym_RPAREN, - [116971] = 1, - ACTIONS(8606), 1, - sym__single_quote_span_close, - [116975] = 1, - ACTIONS(8608), 1, - sym__close_block, - [116979] = 1, - ACTIONS(8610), 1, - anon_sym_DOLLAR, - [116983] = 1, - ACTIONS(8612), 1, - sym__close_block, - [116987] = 1, - ACTIONS(8614), 1, + [129697] = 1, + ACTIONS(8543), 1, anon_sym_RBRACE, - [116991] = 1, - ACTIONS(8616), 1, + [129701] = 1, + ACTIONS(8545), 1, sym__strikeout_close, - [116995] = 1, - ACTIONS(8618), 1, - anon_sym_RBRACE, - [116999] = 1, - ACTIONS(8620), 1, + [129705] = 1, + ACTIONS(8547), 1, + anon_sym_DOLLAR, + [129709] = 1, + ACTIONS(8549), 1, anon_sym_DOLLAR_DOLLAR, - [117003] = 1, - ACTIONS(8622), 1, + [129713] = 1, + ACTIONS(8551), 1, + aux_sym_insert_token1, + [129717] = 1, + ACTIONS(8553), 1, + aux_sym_insert_token1, + [129721] = 1, + ACTIONS(8555), 1, anon_sym_RBRACE, - [117007] = 1, - ACTIONS(8624), 1, + [129725] = 1, + ACTIONS(8557), 1, anon_sym_RBRACE, - [117011] = 1, - ACTIONS(8626), 1, - anon_sym_EQ, - [117015] = 1, - ACTIONS(8628), 1, + [129729] = 1, + ACTIONS(8559), 1, anon_sym_RBRACE, - [117019] = 1, - ACTIONS(8630), 1, + [129733] = 1, + ACTIONS(8561), 1, anon_sym_RBRACE, - [117023] = 1, - ACTIONS(8632), 1, + [129737] = 1, + ACTIONS(8563), 1, aux_sym_insert_token1, - [117027] = 1, - ACTIONS(8634), 1, - sym__strikeout_close, - [117031] = 1, - ACTIONS(8636), 1, + [129741] = 1, + ACTIONS(8565), 1, aux_sym_insert_token1, - [117035] = 1, - ACTIONS(8638), 1, - sym__subscript_close, - [117039] = 1, - ACTIONS(7487), 1, - sym__pipe_table_delimiter, - [117043] = 1, - ACTIONS(8640), 1, + [129745] = 1, + ACTIONS(8567), 1, aux_sym_insert_token1, - [117047] = 1, - ACTIONS(8642), 1, + [129749] = 1, + ACTIONS(8569), 1, aux_sym_insert_token1, - [117051] = 1, - ACTIONS(7328), 1, + [129753] = 1, + ACTIONS(8571), 1, + aux_sym_insert_token1, + [129757] = 1, + ACTIONS(7249), 1, aux_sym_inline_note_token1, - [117055] = 1, - ACTIONS(8644), 1, - sym__whitespace, - [117059] = 1, - ACTIONS(8646), 1, - aux_sym_citation_token2, - [117063] = 1, - ACTIONS(8648), 1, - aux_sym_citation_token2, - [117067] = 1, - ACTIONS(8650), 1, + [129761] = 1, + ACTIONS(8573), 1, sym__subscript_close, - [117071] = 1, - ACTIONS(8652), 1, - sym__block_close, - [117075] = 1, - ACTIONS(8654), 1, + [129765] = 1, + ACTIONS(8575), 1, sym__superscript_close, - [117079] = 1, - ACTIONS(7193), 1, + [129769] = 1, + ACTIONS(8577), 1, + aux_sym_citation_token1, + [129773] = 1, + ACTIONS(8579), 1, + aux_sym_citation_token1, + [129777] = 1, + ACTIONS(8581), 1, aux_sym_inline_note_token1, - [117083] = 1, - ACTIONS(8656), 1, + [129781] = 1, + ACTIONS(8583), 1, + sym__block_close, + [129785] = 1, + ACTIONS(8585), 1, + sym__strong_emphasis_close_star, + [129789] = 1, + ACTIONS(8585), 1, + sym__strong_emphasis_close_underscore, + [129793] = 1, + ACTIONS(7390), 1, + anon_sym_RBRACE, + [129797] = 1, + ACTIONS(8587), 1, anon_sym_RBRACE, - [117087] = 1, - ACTIONS(8658), 1, + [129801] = 1, + ACTIONS(7559), 1, anon_sym_RBRACE, - [117091] = 1, - ACTIONS(8660), 1, + [129805] = 1, + ACTIONS(8589), 1, + sym__close_block, + [129809] = 1, + ACTIONS(8591), 1, aux_sym_inline_note_token1, - [117095] = 1, - ACTIONS(8662), 1, + [129813] = 1, + ACTIONS(8593), 1, + aux_sym_pandoc_math_token1, + [129817] = 1, + ACTIONS(8595), 1, + aux_sym_pandoc_display_math_token1, + [129821] = 1, + ACTIONS(8597), 1, + sym__block_close, + [129825] = 1, + ACTIONS(8599), 1, + anon_sym_RPAREN, + [129829] = 1, + ACTIONS(8601), 1, aux_sym_citation_token2, - [117099] = 1, - ACTIONS(8664), 1, - sym__whitespace, - [117103] = 1, - ACTIONS(8666), 1, - sym__superscript_close, - [117107] = 1, - ACTIONS(8668), 1, - aux_sym_citation_token1, - [117111] = 1, - ACTIONS(8670), 1, - aux_sym_citation_token1, - [117115] = 1, - ACTIONS(8672), 1, + [129833] = 1, + ACTIONS(8603), 1, aux_sym_citation_token2, - [117119] = 1, - ACTIONS(8674), 1, + [129837] = 1, + ACTIONS(7701), 1, + anon_sym_RBRACE, + [129841] = 1, + ACTIONS(8605), 1, + sym__emphasis_close_star, + [129845] = 1, + ACTIONS(8605), 1, + sym__emphasis_close_underscore, + [129849] = 1, + ACTIONS(7216), 1, + aux_sym_inline_note_token1, + [129853] = 1, + ACTIONS(8607), 1, aux_sym_insert_token1, - [117123] = 1, - ACTIONS(8676), 1, - sym__close_block, - [117127] = 1, - ACTIONS(8678), 1, + [129857] = 1, + ACTIONS(8609), 1, aux_sym_insert_token1, - [117131] = 1, - ACTIONS(8680), 1, + [129861] = 1, + ACTIONS(8611), 1, + sym__double_quote_span_close, + [129865] = 1, + ACTIONS(8613), 1, sym__block_close, - [117135] = 1, - ACTIONS(8682), 1, - aux_sym_insert_token1, - [117139] = 1, - ACTIONS(8684), 1, + [129869] = 1, + ACTIONS(8615), 1, + anon_sym_RPAREN, + [129873] = 1, + ACTIONS(8617), 1, + aux_sym_citation_token1, + [129877] = 1, + ACTIONS(8619), 1, + aux_sym_citation_token1, + [129881] = 1, + ACTIONS(8621), 1, anon_sym_RPAREN, - [117143] = 1, - ACTIONS(8686), 1, + [129885] = 1, + ACTIONS(7455), 1, + aux_sym__commonmark_specifier_start_with_class_token2, + [129889] = 1, + ACTIONS(8623), 1, aux_sym_insert_token1, - [117147] = 1, - ACTIONS(8688), 1, - sym__close_block, - [117151] = 1, - ACTIONS(8690), 1, + [129893] = 1, + ACTIONS(8625), 1, + aux_sym_insert_token1, + [129897] = 1, + ACTIONS(8627), 1, + sym__block_close, + [129901] = 1, + ACTIONS(8629), 1, + anon_sym_RPAREN, + [129905] = 1, + ACTIONS(8631), 1, + sym__block_close, + [129909] = 1, + ACTIONS(8633), 1, + anon_sym_RBRACE, + [129913] = 1, + ACTIONS(8635), 1, aux_sym_pandoc_math_token1, - [117155] = 1, - ACTIONS(8692), 1, + [129917] = 1, + ACTIONS(8637), 1, aux_sym_pandoc_display_math_token1, - [117159] = 1, - ACTIONS(8694), 1, + [129921] = 1, + ACTIONS(8639), 1, + sym__emphasis_close_underscore, + [129925] = 1, + ACTIONS(8641), 1, + aux_sym_insert_token1, + [129929] = 1, + ACTIONS(8643), 1, + anon_sym_DOLLAR_DOLLAR, + [129933] = 1, + ACTIONS(8645), 1, aux_sym_insert_token1, - [117163] = 1, - ACTIONS(8696), 1, + [129937] = 1, + ACTIONS(8647), 1, + anon_sym_RBRACE, + [129941] = 1, + ACTIONS(8649), 1, + anon_sym_RBRACE, + [129945] = 1, + ACTIONS(8651), 1, sym__single_quote_span_close, - [117167] = 1, - ACTIONS(8698), 1, + [129949] = 1, + ACTIONS(8653), 1, sym__double_quote_span_close, - [117171] = 1, - ACTIONS(8700), 1, + [129953] = 1, + ACTIONS(8655), 1, anon_sym_RBRACE, - [117175] = 1, - ACTIONS(8702), 1, - anon_sym_RBRACE, - [117179] = 1, - ACTIONS(8704), 1, - sym__strikeout_close, - [117183] = 1, - ACTIONS(8706), 1, + [129957] = 1, + ACTIONS(6152), 1, + sym__line_ending, + [129961] = 1, + ACTIONS(6156), 1, + sym__line_ending, + [129965] = 1, + ACTIONS(8657), 1, anon_sym_RBRACE, - [117187] = 1, - ACTIONS(8708), 1, - sym__block_close, - [117191] = 1, - ACTIONS(8710), 1, + [129969] = 1, + ACTIONS(8659), 1, + aux_sym_citation_token2, + [129973] = 1, + ACTIONS(8661), 1, + aux_sym_citation_token1, + [129977] = 1, + ACTIONS(8663), 1, + aux_sym_citation_token1, + [129981] = 1, + ACTIONS(8665), 1, aux_sym_insert_token1, - [117195] = 1, - ACTIONS(8712), 1, - sym__close_block, - [117199] = 1, - ACTIONS(8714), 1, - sym__subscript_close, - [117203] = 1, - ACTIONS(8716), 1, - sym__superscript_close, - [117207] = 1, - ACTIONS(8718), 1, - anon_sym_RPAREN, - [117211] = 1, - ACTIONS(8720), 1, - sym__strong_emphasis_close_star, - [117215] = 1, - ACTIONS(8720), 1, - sym__strong_emphasis_close_underscore, - [117219] = 1, - ACTIONS(8722), 1, - sym__emphasis_close_star, - [117223] = 1, - ACTIONS(8722), 1, - sym__emphasis_close_underscore, - [117227] = 1, - ACTIONS(8724), 1, + [129985] = 1, + ACTIONS(8667), 1, sym__block_close, - [117231] = 1, - ACTIONS(8726), 1, - aux_sym_insert_token1, - [117235] = 1, - ACTIONS(8728), 1, - sym__strong_emphasis_close_star, - [117239] = 1, - ACTIONS(8730), 1, - aux_sym_insert_token1, - [117243] = 1, - ACTIONS(8728), 1, - sym__strong_emphasis_close_underscore, - [117247] = 1, - ACTIONS(8732), 1, - aux_sym_insert_token1, - [117251] = 1, - ACTIONS(8734), 1, - anon_sym_RPAREN, - [117255] = 1, - ACTIONS(8736), 1, - aux_sym_insert_token1, - [117259] = 1, - ACTIONS(8738), 1, + [129989] = 1, + ACTIONS(8669), 1, + aux_sym_citation_token2, + [129993] = 1, + ACTIONS(8671), 1, + sym__strikeout_close, + [129997] = 1, + ACTIONS(8673), 1, aux_sym_insert_token1, - [117263] = 1, - ACTIONS(8740), 1, + [130001] = 1, + ACTIONS(8675), 1, + ts_builtin_sym_end, + [130005] = 1, + ACTIONS(8677), 1, aux_sym_insert_token1, - [117267] = 1, - ACTIONS(6256), 1, - sym__line_ending, - [117271] = 1, - ACTIONS(8742), 1, - sym__emphasis_close_star, - [117275] = 1, - ACTIONS(8744), 1, + [130009] = 1, + ACTIONS(8679), 1, + sym__subscript_close, + [130013] = 1, + ACTIONS(8681), 1, + aux_sym_pandoc_math_token1, + [130017] = 1, + ACTIONS(8683), 1, + aux_sym_pandoc_display_math_token1, + [130021] = 1, + ACTIONS(8685), 1, + anon_sym_RBRACE, + [130025] = 1, + ACTIONS(8687), 1, + sym__superscript_close, + [130029] = 1, + ACTIONS(8689), 1, sym__single_quote_span_close, - [117279] = 1, - ACTIONS(6260), 1, - sym__line_ending, - [117283] = 1, - ACTIONS(8746), 1, - aux_sym_citation_token2, - [117287] = 1, - ACTIONS(8748), 1, + [130033] = 1, + ACTIONS(8691), 1, sym__double_quote_span_close, - [117291] = 1, - ACTIONS(8750), 1, - anon_sym_RBRACE, - [117295] = 1, - ACTIONS(8752), 1, + [130037] = 1, + ACTIONS(7605), 1, + sym__pipe_table_delimiter, + [130041] = 1, + ACTIONS(8693), 1, anon_sym_RBRACE, - [117299] = 1, - ACTIONS(8754), 1, - aux_sym_citation_token2, - [117303] = 1, - ACTIONS(8756), 1, - sym__block_close, - [117307] = 1, - ACTIONS(8758), 1, + [130045] = 1, + ACTIONS(8695), 1, + anon_sym_EQ, + [130049] = 1, + ACTIONS(8697), 1, aux_sym_insert_token1, - [117311] = 1, - ACTIONS(8760), 1, - sym__block_close, - [117315] = 1, - ACTIONS(7591), 1, + [130053] = 1, + ACTIONS(8699), 1, + sym__strong_emphasis_close_star, + [130057] = 1, + ACTIONS(8701), 1, anon_sym_RBRACE, - [117319] = 1, - ACTIONS(8762), 1, + [130061] = 1, + ACTIONS(8703), 1, aux_sym_insert_token1, - [117323] = 1, - ACTIONS(8764), 1, + [130065] = 1, + ACTIONS(8699), 1, + sym__strong_emphasis_close_underscore, + [130069] = 1, + ACTIONS(8705), 1, aux_sym_insert_token1, - [117327] = 1, - ACTIONS(8766), 1, + [130073] = 1, + ACTIONS(8707), 1, aux_sym_citation_token1, - [117331] = 1, - ACTIONS(8768), 1, + [130077] = 1, + ACTIONS(8709), 1, aux_sym_citation_token1, - [117335] = 1, - ACTIONS(8770), 1, - sym__block_close, - [117339] = 1, - ACTIONS(8772), 1, - sym__strikeout_close, - [117343] = 1, - ACTIONS(8774), 1, - aux_sym_insert_token1, - [117347] = 1, - ACTIONS(7378), 1, - sym__whitespace, - [117351] = 1, - ACTIONS(8776), 1, - anon_sym_DOLLAR, - [117355] = 1, - ACTIONS(8778), 1, - anon_sym_DOLLAR_DOLLAR, - [117359] = 1, - ACTIONS(8780), 1, + [130081] = 1, + ACTIONS(8711), 1, anon_sym_RBRACE, - [117363] = 1, - ACTIONS(8782), 1, - anon_sym_RBRACE, - [117367] = 1, - ACTIONS(8784), 1, + [130085] = 1, + ACTIONS(8713), 1, + sym__strikeout_close, + [130089] = 1, + ACTIONS(8715), 1, sym__subscript_close, - [117371] = 1, - ACTIONS(8786), 1, + [130093] = 1, + ACTIONS(8717), 1, + sym__superscript_close, + [130097] = 1, + ACTIONS(8719), 1, + aux_sym_insert_token1, + [130101] = 1, + ACTIONS(8721), 1, + sym__strong_emphasis_close_star, + [130105] = 1, + ACTIONS(8721), 1, + sym__strong_emphasis_close_underscore, + [130109] = 1, + ACTIONS(8723), 1, + sym__emphasis_close_star, + [130113] = 1, + ACTIONS(8725), 1, aux_sym_pandoc_math_token1, - [117375] = 1, - ACTIONS(8788), 1, + [130117] = 1, + ACTIONS(8727), 1, aux_sym_pandoc_display_math_token1, - [117379] = 1, - ACTIONS(8790), 1, + [130121] = 1, + ACTIONS(8729), 1, + sym__emphasis_close_star, + [130125] = 1, + ACTIONS(8729), 1, + sym__emphasis_close_underscore, + [130129] = 1, + ACTIONS(8731), 1, + anon_sym_DOLLAR, + [130133] = 1, + ACTIONS(8733), 1, aux_sym_insert_token1, - [117383] = 1, - ACTIONS(8792), 1, - sym__single_quote_span_close, - [117387] = 1, - ACTIONS(8794), 1, + [130137] = 1, + ACTIONS(8735), 1, aux_sym_insert_token1, - [117391] = 1, - ACTIONS(8796), 1, - sym__double_quote_span_close, - [117395] = 1, - ACTIONS(8798), 1, + [130141] = 1, + ACTIONS(8723), 1, + sym__emphasis_close_underscore, + [130145] = 1, + ACTIONS(8737), 1, + aux_sym_insert_token1, + [130149] = 1, + ACTIONS(8739), 1, + sym__superscript_close, + [130153] = 1, + ACTIONS(8741), 1, + aux_sym_insert_token1, + [130157] = 1, + ACTIONS(8743), 1, + aux_sym_insert_token1, + [130161] = 1, + ACTIONS(8745), 1, sym__single_quote_span_close, - [117399] = 1, - ACTIONS(8800), 1, + [130165] = 1, + ACTIONS(8747), 1, + aux_sym_insert_token1, + [130169] = 1, + ACTIONS(8749), 1, sym__double_quote_span_close, - [117403] = 1, - ACTIONS(8802), 1, - sym__superscript_close, - [117407] = 1, - ACTIONS(8804), 1, - anon_sym_RBRACE, - [117411] = 1, - ACTIONS(8742), 1, - sym__emphasis_close_underscore, - [117415] = 1, - ACTIONS(8806), 1, - sym__strong_emphasis_close_star, - [117419] = 1, - ACTIONS(8806), 1, - sym__strong_emphasis_close_underscore, - [117423] = 1, - ACTIONS(8808), 1, - sym__emphasis_close_star, - [117427] = 1, - ACTIONS(8808), 1, - sym__emphasis_close_underscore, - [117431] = 1, - ACTIONS(8810), 1, - anon_sym_RBRACE, - [117435] = 1, - ACTIONS(8812), 1, + [130173] = 1, + ACTIONS(8751), 1, aux_sym_citation_token1, - [117439] = 1, - ACTIONS(8814), 1, + [130177] = 1, + ACTIONS(8753), 1, aux_sym_citation_token1, - [117443] = 1, - ACTIONS(8816), 1, - sym__block_close, - [117447] = 1, - ACTIONS(8818), 1, - sym__block_close, - [117451] = 1, - ACTIONS(8820), 1, + [130181] = 1, + ACTIONS(8755), 1, sym__block_close, - [117455] = 1, - ACTIONS(8822), 1, - sym__block_close, - [117459] = 1, - ACTIONS(8824), 1, - sym__block_close, - [117463] = 1, - ACTIONS(8826), 1, - sym__block_close, - [117467] = 1, - ACTIONS(8828), 1, - sym__double_quote_span_close, - [117471] = 1, - ACTIONS(8830), 1, + [130185] = 1, + ACTIONS(8757), 1, anon_sym_RBRACE, - [117475] = 1, - ACTIONS(8832), 1, + [130189] = 1, + ACTIONS(8759), 1, + anon_sym_RBRACE, + [130193] = 1, + ACTIONS(8761), 1, + anon_sym_DOLLAR, + [130197] = 1, + ACTIONS(7177), 1, + aux_sym_inline_note_token1, + [130201] = 1, + ACTIONS(8763), 1, + anon_sym_DOLLAR_DOLLAR, + [130205] = 1, + ACTIONS(8765), 1, + anon_sym_RBRACE, + [130209] = 1, + ACTIONS(8767), 1, + sym__strikeout_close, + [130213] = 1, + ACTIONS(8769), 1, aux_sym_pandoc_math_token1, - [117479] = 1, - ACTIONS(8834), 1, + [130217] = 1, + ACTIONS(8771), 1, aux_sym_pandoc_display_math_token1, - [117483] = 1, - ACTIONS(8836), 1, + [130221] = 1, + ACTIONS(8773), 1, anon_sym_RBRACE, - [117487] = 1, - ACTIONS(8838), 1, - anon_sym_EQ, - [117491] = 1, - ACTIONS(8840), 1, - sym__strikeout_close, - [117495] = 1, - ACTIONS(8842), 1, + [130225] = 1, + ACTIONS(8775), 1, + sym__block_close, + [130229] = 1, + ACTIONS(8777), 1, + sym__block_close, + [130233] = 1, + ACTIONS(8779), 1, + sym__block_close, + [130237] = 1, + ACTIONS(8781), 1, sym__subscript_close, - [117499] = 1, - ACTIONS(8844), 1, + [130241] = 1, + ACTIONS(8783), 1, + sym__block_close, + [130245] = 1, + ACTIONS(8785), 1, sym__superscript_close, - [117503] = 1, - ACTIONS(8846), 1, - anon_sym_RBRACE, - [117507] = 1, - ACTIONS(8848), 1, + [130249] = 1, + ACTIONS(8787), 1, + sym__block_close, + [130253] = 1, + ACTIONS(8789), 1, + anon_sym_DOLLAR, + [130257] = 1, + ACTIONS(8791), 1, aux_sym_insert_token1, - [117511] = 1, - ACTIONS(8850), 1, + [130261] = 1, + ACTIONS(8793), 1, sym__strong_emphasis_close_star, - [117515] = 1, - ACTIONS(6252), 1, - sym__line_ending, - [117519] = 1, - ACTIONS(8852), 1, - sym__whitespace, - [117523] = 1, - ACTIONS(3073), 1, - sym__blank_line_start, - [117527] = 1, - ACTIONS(8854), 1, - anon_sym_DOLLAR, - [117531] = 1, - ACTIONS(8856), 1, + [130265] = 1, + ACTIONS(8795), 1, anon_sym_DOLLAR_DOLLAR, - [117535] = 1, - ACTIONS(8850), 1, + [130269] = 1, + ACTIONS(8793), 1, sym__strong_emphasis_close_underscore, - [117539] = 1, - ACTIONS(8858), 1, + [130273] = 1, + ACTIONS(8797), 1, aux_sym_citation_token1, - [117543] = 1, - ACTIONS(8860), 1, + [130277] = 1, + ACTIONS(8799), 1, aux_sym_citation_token1, - [117547] = 1, - ACTIONS(8862), 1, + [130281] = 1, + ACTIONS(8801), 1, + sym__block_close, + [130285] = 1, + ACTIONS(8803), 1, + sym__block_close, + [130289] = 1, + ACTIONS(8805), 1, + sym__block_close, + [130293] = 1, + ACTIONS(8807), 1, anon_sym_RBRACE, - [117551] = 1, - ACTIONS(8864), 1, - sym_shortcode_name, - [117555] = 1, - ACTIONS(8866), 1, - sym__emphasis_close_star, - [117559] = 1, - ACTIONS(8868), 1, + [130297] = 1, + ACTIONS(8809), 1, + anon_sym_RBRACE, + [130301] = 1, + ACTIONS(8811), 1, aux_sym_insert_token1, - [117563] = 1, - ACTIONS(8870), 1, + [130305] = 1, + ACTIONS(8813), 1, + anon_sym_RBRACE, + [130309] = 1, + ACTIONS(8815), 1, + anon_sym_RBRACE, + [130313] = 1, + ACTIONS(8817), 1, + aux_sym_pandoc_math_token1, + [130317] = 1, + ACTIONS(8819), 1, + aux_sym_pandoc_display_math_token1, + [130321] = 1, + ACTIONS(8821), 1, + sym__block_close, + [130325] = 1, + ACTIONS(8823), 1, + sym__emphasis_close_star, + [130329] = 1, + ACTIONS(8825), 1, aux_sym_insert_token1, - [117567] = 1, - ACTIONS(8872), 1, + [130333] = 1, + ACTIONS(8827), 1, aux_sym_insert_token1, - [117571] = 1, - ACTIONS(8874), 1, + [130337] = 1, + ACTIONS(8823), 1, + sym__emphasis_close_underscore, + [130341] = 1, + ACTIONS(8829), 1, aux_sym_insert_token1, - [117575] = 1, - ACTIONS(7314), 1, + [130345] = 1, + ACTIONS(7191), 1, aux_sym_inline_note_token1, - [117579] = 1, - ACTIONS(8876), 1, - aux_sym_pandoc_math_token1, - [117583] = 1, - ACTIONS(8878), 1, - aux_sym_pandoc_display_math_token1, - [117587] = 1, - ACTIONS(8866), 1, - sym__emphasis_close_underscore, - [117591] = 1, - ACTIONS(8880), 1, - anon_sym_RBRACE, - [117595] = 1, - ACTIONS(8882), 1, - sym__block_close, - [117599] = 1, - ACTIONS(8884), 1, - sym__strikeout_close, - [117603] = 1, - ACTIONS(8886), 1, - sym__subscript_close, - [117607] = 1, - ACTIONS(8888), 1, - sym__superscript_close, - [117611] = 1, - ACTIONS(8890), 1, + [130349] = 1, + ACTIONS(8831), 1, anon_sym_RBRACE, - [117615] = 1, - ACTIONS(8892), 1, - anon_sym_DOLLAR, - [117619] = 1, - ACTIONS(8894), 1, + [130353] = 1, + ACTIONS(8833), 1, anon_sym_RBRACE, - [117623] = 1, - ACTIONS(8896), 1, - aux_sym_insert_token1, - [117627] = 1, - ACTIONS(8898), 1, + [130357] = 1, + ACTIONS(8835), 1, aux_sym_insert_token1, - [117631] = 1, - ACTIONS(8900), 1, - aux_sym_insert_token1, - [117635] = 1, - ACTIONS(8902), 1, + [130361] = 1, + ACTIONS(8837), 1, + aux_sym_pandoc_display_math_token1, + [130365] = 1, + ACTIONS(8839), 1, aux_sym_insert_token1, - [117639] = 1, - ACTIONS(8904), 1, - anon_sym_DOLLAR_DOLLAR, - [117643] = 1, - ACTIONS(8906), 1, + [130369] = 1, + ACTIONS(8841), 1, + sym__close_block, + [130373] = 1, + ACTIONS(8843), 1, aux_sym_citation_token1, - [117647] = 1, - ACTIONS(8908), 1, + [130377] = 1, + ACTIONS(8845), 1, aux_sym_citation_token1, - [117651] = 1, - ACTIONS(8910), 1, - anon_sym_RBRACE, - [117655] = 1, - ACTIONS(8912), 1, + [130381] = 1, + ACTIONS(8847), 1, + aux_sym_insert_token1, + [130385] = 1, + ACTIONS(7400), 1, + aux_sym_inline_note_token1, + [130389] = 1, + ACTIONS(8849), 1, + sym__block_close, + [130393] = 1, + ACTIONS(8851), 1, + anon_sym_DOLLAR, + [130397] = 1, + ACTIONS(8853), 1, + anon_sym_DOLLAR_DOLLAR, + [130401] = 1, + ACTIONS(8855), 1, anon_sym_RBRACE, - [117659] = 1, - ACTIONS(8914), 1, - anon_sym_RPAREN, - [117663] = 1, - ACTIONS(8916), 1, + [130405] = 1, + ACTIONS(8857), 1, anon_sym_RBRACE, - [117667] = 1, - ACTIONS(8918), 1, + [130409] = 1, + ACTIONS(8859), 1, sym__block_close, - [117671] = 1, - ACTIONS(8920), 1, + [130413] = 1, + ACTIONS(8861), 1, + aux_sym_pandoc_math_token1, + [130417] = 1, + ACTIONS(8863), 1, + aux_sym_pandoc_display_math_token1, + [130421] = 1, + ACTIONS(8865), 1, sym__block_close, - [117675] = 1, - ACTIONS(8922), 1, + [130425] = 1, + ACTIONS(8867), 1, sym__block_close, - [117679] = 1, - ACTIONS(8924), 1, + [130429] = 1, + ACTIONS(8869), 1, sym__block_close, - [117683] = 1, - ACTIONS(8926), 1, - aux_sym_pandoc_math_token1, - [117687] = 1, - ACTIONS(8928), 1, - aux_sym_pandoc_display_math_token1, - [117691] = 1, - ACTIONS(8930), 1, + [130433] = 1, + ACTIONS(8871), 1, sym__block_close, - [117695] = 1, - ACTIONS(8932), 1, + [130437] = 1, + ACTIONS(8873), 1, + anon_sym_RBRACE, + [130441] = 1, + ACTIONS(8875), 1, sym__block_close, - [117699] = 1, - ACTIONS(8934), 1, + [130445] = 1, + ACTIONS(8877), 1, anon_sym_RBRACE, - [117703] = 1, - ACTIONS(8936), 1, + [130449] = 1, + ACTIONS(8879), 1, aux_sym_insert_token1, - [117707] = 1, - ACTIONS(8938), 1, + [130453] = 1, + ACTIONS(8881), 1, aux_sym_insert_token1, - [117711] = 1, - ACTIONS(8940), 1, + [130457] = 1, + ACTIONS(8883), 1, aux_sym_insert_token1, - [117715] = 1, - ACTIONS(7189), 1, + [130461] = 1, + ACTIONS(8885), 1, + aux_sym_insert_token1, + [130465] = 1, + ACTIONS(8887), 1, + aux_sym_insert_token1, + [130469] = 1, + ACTIONS(8889), 1, + aux_sym_insert_token1, + [130473] = 1, + ACTIONS(8891), 1, + aux_sym_citation_token1, + [130477] = 1, + ACTIONS(8893), 1, + aux_sym_citation_token1, + [130481] = 1, + ACTIONS(7308), 1, aux_sym_inline_note_token1, - [117719] = 1, - ACTIONS(8942), 1, + [130485] = 1, + ACTIONS(8895), 1, aux_sym_insert_token1, - [117723] = 1, - ACTIONS(8944), 1, - anon_sym_DOLLAR, - [117727] = 1, - ACTIONS(8946), 1, - anon_sym_DOLLAR_DOLLAR, - [117731] = 1, - ACTIONS(8948), 1, - anon_sym_RBRACE, - [117735] = 1, - ACTIONS(8950), 1, + [130489] = 1, + ACTIONS(7266), 1, + aux_sym_inline_note_token1, + [130493] = 1, + ACTIONS(8897), 1, + anon_sym_RPAREN, + [130497] = 1, + ACTIONS(8899), 1, + sym__strikeout_close, + [130501] = 1, + ACTIONS(8901), 1, + aux_sym_insert_token1, + [130505] = 1, + ACTIONS(8903), 1, + anon_sym_RPAREN, + [130509] = 1, + ACTIONS(8905), 1, + aux_sym_inline_note_token1, + [130513] = 1, + ACTIONS(8907), 1, + aux_sym_pandoc_math_token1, + [130517] = 1, + ACTIONS(8909), 1, + aux_sym_pandoc_display_math_token1, + [130521] = 1, + ACTIONS(8911), 1, + sym__close_block, + [130525] = 1, + ACTIONS(8913), 1, + anon_sym_RPAREN, + [130529] = 1, + ACTIONS(8915), 1, + aux_sym_citation_token2, + [130533] = 1, + ACTIONS(8917), 1, anon_sym_RBRACE, - [117739] = 1, - ACTIONS(8952), 1, + [130537] = 1, + ACTIONS(8919), 1, + anon_sym_RPAREN, + [130541] = 1, + ACTIONS(7971), 1, sym__block_close, - [117743] = 1, - ACTIONS(7354), 1, + [130545] = 1, + ACTIONS(8921), 1, + sym__single_quote_span_close, + [130549] = 1, + ACTIONS(8923), 1, + aux_sym_inline_note_token1, + [130553] = 1, + ACTIONS(8925), 1, + aux_sym_citation_token2, + [130557] = 1, + ACTIONS(7453), 1, + anon_sym_RPAREN, + [130561] = 1, + ACTIONS(8927), 1, + anon_sym_RPAREN, + [130565] = 1, + ACTIONS(8929), 1, + aux_sym_inline_note_token1, + [130569] = 1, + ACTIONS(8931), 1, aux_sym_inline_note_token1, - [117747] = 1, - ACTIONS(8954), 1, + [130573] = 1, + ACTIONS(8933), 1, aux_sym_citation_token1, - [117751] = 1, - ACTIONS(8956), 1, + [130577] = 1, + ACTIONS(8935), 1, aux_sym_citation_token1, - [117755] = 1, - ACTIONS(8958), 1, - sym__single_quote_span_close, - [117759] = 1, - ACTIONS(8960), 1, - sym__superscript_close, - [117763] = 1, - ACTIONS(8962), 1, - sym__block_close, - [117767] = 1, - ACTIONS(8964), 1, + [130581] = 1, + ACTIONS(8937), 1, + anon_sym_RPAREN, + [130585] = 1, + ACTIONS(8939), 1, + aux_sym_insert_token1, + [130589] = 1, + ACTIONS(8941), 1, + anon_sym_RPAREN, + [130593] = 1, + ACTIONS(7153), 1, aux_sym_inline_note_token1, - [117771] = 1, - ACTIONS(8966), 1, - aux_sym_commonmark_specifier_token1, - [117775] = 1, - ACTIONS(8968), 1, - sym__strong_emphasis_close_star, - [117779] = 1, - ACTIONS(8968), 1, - sym__strong_emphasis_close_underscore, - [117783] = 1, - ACTIONS(8970), 1, - sym__emphasis_close_star, - [117787] = 1, - ACTIONS(8972), 1, + [130597] = 1, + ACTIONS(2861), 1, + sym__close_block, + [130601] = 1, + ACTIONS(8943), 1, + aux_sym_citation_token2, + [130605] = 1, + ACTIONS(8945), 1, + sym__close_block, + [130609] = 1, + ACTIONS(8947), 1, + anon_sym_RPAREN, + [130613] = 1, + ACTIONS(8949), 1, aux_sym_pandoc_math_token1, - [117791] = 1, - ACTIONS(8974), 1, + [130617] = 1, + ACTIONS(8951), 1, aux_sym_pandoc_display_math_token1, - [117795] = 1, - ACTIONS(8976), 1, - aux_sym_citation_token1, - [117799] = 1, - ACTIONS(8978), 1, - aux_sym_inline_note_token1, - [117803] = 1, - ACTIONS(8980), 1, + [130621] = 1, + ACTIONS(8953), 1, + sym__strong_emphasis_close_star, + [130625] = 1, + ACTIONS(8955), 1, aux_sym_inline_note_token1, - [117807] = 1, - ACTIONS(8982), 1, - aux_sym_insert_token1, - [117811] = 1, - ACTIONS(8984), 1, - anon_sym_RBRACE, - [117815] = 1, - ACTIONS(8970), 1, - sym__emphasis_close_underscore, - [117819] = 1, - ACTIONS(8986), 1, + [130629] = 1, + ACTIONS(8957), 1, anon_sym_RBRACE, - [117823] = 1, - ACTIONS(8988), 1, - aux_sym_insert_token1, - [117827] = 1, - ACTIONS(8990), 1, - aux_sym_citation_token2, - [117831] = 1, - ACTIONS(8992), 1, - aux_sym_insert_token1, - [117835] = 1, - ACTIONS(8994), 1, + [130633] = 1, + ACTIONS(8959), 1, anon_sym_RPAREN, - [117839] = 1, - ACTIONS(8996), 1, - aux_sym_insert_token1, - [117843] = 1, - ACTIONS(8998), 1, - aux_sym_insert_token1, - [117847] = 1, - ACTIONS(9000), 1, - sym__block_close, - [117851] = 1, - ACTIONS(9002), 1, - aux_sym_citation_token1, - [117855] = 1, - ACTIONS(9004), 1, - aux_sym_citation_token1, - [117859] = 1, - ACTIONS(9006), 1, + [130637] = 1, + ACTIONS(8961), 1, anon_sym_RPAREN, - [117863] = 1, - ACTIONS(7398), 1, - sym__pipe_table_delimiter, - [117867] = 1, - ACTIONS(9008), 1, - sym__block_close, - [117871] = 1, - ACTIONS(9010), 1, - anon_sym_RBRACE, - [117875] = 1, - ACTIONS(9012), 1, + [130641] = 1, + ACTIONS(8963), 1, anon_sym_RPAREN, - [117879] = 1, - ACTIONS(8088), 1, - sym__block_close, - [117883] = 1, - ACTIONS(9014), 1, + [130645] = 1, + ACTIONS(8965), 1, + sym__double_quote_span_close, + [130649] = 1, + ACTIONS(8967), 1, anon_sym_RPAREN, - [117887] = 1, - ACTIONS(7215), 1, + [130653] = 1, + ACTIONS(8969), 1, aux_sym_inline_note_token1, - [117891] = 1, - ACTIONS(9016), 1, - aux_sym_pandoc_math_token1, - [117895] = 1, - ACTIONS(9018), 1, - aux_sym_pandoc_display_math_token1, - [117899] = 1, - ACTIONS(9020), 1, + [130657] = 1, + ACTIONS(8971), 1, anon_sym_RBRACE, - [117903] = 1, - ACTIONS(9022), 1, + [130661] = 1, + ACTIONS(8973), 1, + anon_sym_RPAREN, + [130665] = 1, + ACTIONS(8975), 1, + anon_sym_RPAREN, + [130669] = 1, + ACTIONS(8911), 1, sym__blank_line_start, - [117907] = 1, - ACTIONS(9024), 1, - anon_sym_DOLLAR, - [117911] = 1, - ACTIONS(9026), 1, - aux_sym_insert_token1, - [117915] = 1, - ACTIONS(9028), 1, - aux_sym_citation_token2, - [117919] = 1, - ACTIONS(9030), 1, - anon_sym_DOLLAR_DOLLAR, - [117923] = 1, - ACTIONS(9032), 1, - sym__whitespace, - [117927] = 1, - ACTIONS(9034), 1, - anon_sym_RBRACE, - [117931] = 1, - ACTIONS(9022), 1, - sym__close_block, - [117935] = 1, - ACTIONS(9036), 1, - sym__strong_emphasis_close_star, - [117939] = 1, - ACTIONS(9038), 1, - sym__single_quote_span_close, - [117943] = 1, - ACTIONS(9040), 1, - ts_builtin_sym_end, - [117947] = 1, - ACTIONS(9036), 1, - sym__strong_emphasis_close_underscore, - [117951] = 1, - ACTIONS(9042), 1, - aux_sym_pandoc_math_token1, - [117955] = 1, - ACTIONS(9044), 1, + [130673] = 1, + ACTIONS(8977), 1, aux_sym_citation_token1, - [117959] = 1, - ACTIONS(9046), 1, + [130677] = 1, + ACTIONS(8979), 1, aux_sym_citation_token1, - [117963] = 1, - ACTIONS(9048), 1, - sym__whitespace, - [117967] = 1, - ACTIONS(7425), 1, - sym__whitespace, - [117971] = 1, - ACTIONS(9050), 1, - aux_sym_citation_token2, - [117975] = 1, - ACTIONS(9052), 1, + [130681] = 1, + ACTIONS(8981), 1, + anon_sym_RBRACE, + [130685] = 1, + ACTIONS(8983), 1, anon_sym_RPAREN, - [117979] = 1, - ACTIONS(9054), 1, - aux_sym_citation_token2, - [117983] = 1, - ACTIONS(9056), 1, - aux_sym_insert_token1, - [117987] = 1, - ACTIONS(9058), 1, - aux_sym_citation_token2, - [117991] = 1, - ACTIONS(9060), 1, + [130689] = 1, + ACTIONS(8985), 1, + anon_sym_RPAREN, + [130693] = 1, + ACTIONS(8987), 1, + sym__block_close, + [130697] = 1, + ACTIONS(8989), 1, + anon_sym_RPAREN, + [130701] = 1, + ACTIONS(8991), 1, sym__block_close, - [117995] = 1, - ACTIONS(9062), 1, + [130705] = 1, + ACTIONS(8993), 1, + sym__strikeout_close, + [130709] = 1, + ACTIONS(8995), 1, + sym__close_block, + [130713] = 1, + ACTIONS(8997), 1, aux_sym_pandoc_math_token1, - [117999] = 1, - ACTIONS(9064), 1, + [130717] = 1, + ACTIONS(8999), 1, aux_sym_pandoc_display_math_token1, - [118003] = 1, - ACTIONS(9066), 1, - anon_sym_RBRACE, - [118007] = 1, - ACTIONS(9068), 1, + [130721] = 1, + ACTIONS(9001), 1, sym__block_close, - [118011] = 1, - ACTIONS(9070), 1, - anon_sym_RBRACE, - [118015] = 1, - ACTIONS(9072), 1, - anon_sym_RBRACE, - [118019] = 1, - ACTIONS(9074), 1, - aux_sym_insert_token1, - [118023] = 1, - ACTIONS(9076), 1, - aux_sym_insert_token1, - [118027] = 1, - ACTIONS(9078), 1, + [130725] = 1, + ACTIONS(9003), 1, + sym__close_block, + [130729] = 1, + ACTIONS(9005), 1, + sym__subscript_close, + [130733] = 1, + ACTIONS(9007), 1, + anon_sym_RPAREN, + [130737] = 1, + ACTIONS(9009), 1, + anon_sym_RPAREN, + [130741] = 1, + ACTIONS(9011), 1, + anon_sym_RPAREN, + [130745] = 1, + ACTIONS(9013), 1, + anon_sym_RPAREN, + [130749] = 1, + ACTIONS(9015), 1, + anon_sym_RPAREN, + [130753] = 1, + ACTIONS(9017), 1, + anon_sym_RPAREN, + [130757] = 1, + ACTIONS(9019), 1, aux_sym_citation_token2, - [118031] = 1, - ACTIONS(9080), 1, - aux_sym_pandoc_display_math_token1, - [118035] = 1, - ACTIONS(9082), 1, - sym__whitespace, - [118039] = 1, - ACTIONS(9084), 1, - sym__whitespace, - [118043] = 1, - ACTIONS(9086), 1, - sym__emphasis_close_star, - [118047] = 1, - ACTIONS(9088), 1, - sym__double_quote_span_close, - [118051] = 1, - ACTIONS(9090), 1, - anon_sym_RBRACE, - [118055] = 1, - ACTIONS(9092), 1, - aux_sym_insert_token1, - [118059] = 1, - ACTIONS(9094), 1, + [130761] = 1, + ACTIONS(9021), 1, + aux_sym_citation_token2, + [130765] = 1, + ACTIONS(9023), 1, + anon_sym_RPAREN, + [130769] = 1, + ACTIONS(9025), 1, + sym__superscript_close, + [130773] = 1, + ACTIONS(9027), 1, aux_sym_citation_token1, - [118063] = 1, - ACTIONS(9096), 1, + [130777] = 1, + ACTIONS(9029), 1, aux_sym_citation_token1, - [118067] = 1, - ACTIONS(9098), 1, - aux_sym_insert_token1, - [118071] = 1, - ACTIONS(9100), 1, - aux_sym_insert_token1, - [118075] = 1, - ACTIONS(9102), 1, - anon_sym_RPAREN, - [118079] = 1, - ACTIONS(9104), 1, + [130781] = 1, + ACTIONS(9031), 1, + sym__block_close, + [130785] = 1, + ACTIONS(9033), 1, anon_sym_RBRACE, - [118083] = 1, - ACTIONS(9106), 1, - aux_sym_insert_token1, - [118087] = 1, - ACTIONS(9108), 1, + [130789] = 1, + ACTIONS(9035), 1, sym__block_close, - [118091] = 1, - ACTIONS(9110), 1, + [130793] = 1, + ACTIONS(9037), 1, + sym__block_close, + [130797] = 1, + ACTIONS(9039), 1, + aux_sym_insert_token1, + [130801] = 1, + ACTIONS(9041), 1, sym__block_close, - [118095] = 1, - ACTIONS(9112), 1, + [130805] = 1, + ACTIONS(9043), 1, sym__block_close, - [118099] = 1, - ACTIONS(9114), 1, + [130809] = 1, + ACTIONS(9045), 1, + aux_sym_citation_token1, + [130813] = 1, + ACTIONS(9047), 1, aux_sym_pandoc_math_token1, - [118103] = 1, - ACTIONS(9116), 1, + [130817] = 1, + ACTIONS(9049), 1, aux_sym_pandoc_display_math_token1, - [118107] = 1, - ACTIONS(9118), 1, + [130821] = 1, + ACTIONS(9051), 1, sym__block_close, - [118111] = 1, - ACTIONS(9120), 1, + [130825] = 1, + ACTIONS(9053), 1, sym__block_close, - [118115] = 1, - ACTIONS(9122), 1, - aux_sym_insert_token1, - [118119] = 1, - ACTIONS(9124), 1, - sym__single_quote_span_close, - [118123] = 1, - ACTIONS(9126), 1, - sym__double_quote_span_close, - [118127] = 1, - ACTIONS(9128), 1, - anon_sym_RBRACE, - [118131] = 1, - ACTIONS(9130), 1, + [130829] = 1, + ACTIONS(9055), 1, + sym__block_close, + [130833] = 1, + ACTIONS(9057), 1, + anon_sym_RPAREN, + [130837] = 1, + ACTIONS(9059), 1, aux_sym_insert_token1, - [118135] = 1, - ACTIONS(9132), 1, + [130841] = 1, + ACTIONS(8953), 1, + sym__strong_emphasis_close_underscore, + [130845] = 1, + ACTIONS(9061), 1, anon_sym_RBRACE, - [118139] = 1, - ACTIONS(9134), 1, - sym__whitespace, - [118143] = 1, - ACTIONS(9136), 1, - aux_sym_insert_token1, - [118147] = 1, - ACTIONS(9138), 1, - sym__whitespace, - [118151] = 1, - ACTIONS(9140), 1, + [130849] = 1, + ACTIONS(9063), 1, + anon_sym_RPAREN, + [130853] = 1, + ACTIONS(9065), 1, + sym__emphasis_close_star, + [130857] = 1, + ACTIONS(9067), 1, aux_sym_insert_token1, - [118155] = 1, - ACTIONS(9142), 1, + [130861] = 1, + ACTIONS(9069), 1, sym__close_block, - [118159] = 1, - ACTIONS(9144), 1, - sym__strikeout_close, - [118163] = 1, - ACTIONS(9146), 1, + [130865] = 1, + ACTIONS(9071), 1, + aux_sym_citation_token2, + [130869] = 1, + ACTIONS(9073), 1, + aux_sym_insert_token1, + [130873] = 1, + ACTIONS(9075), 1, aux_sym_citation_token1, - [118167] = 1, - ACTIONS(9148), 1, + [130877] = 1, + ACTIONS(9077), 1, aux_sym_citation_token1, - [118171] = 1, - ACTIONS(9150), 1, - sym__block_close, - [118175] = 1, - ACTIONS(9152), 1, - sym__subscript_close, - [118179] = 1, - ACTIONS(7431), 1, - sym__whitespace, - [118183] = 1, - ACTIONS(9154), 1, - sym__superscript_close, - [118187] = 1, - ACTIONS(9156), 1, + [130881] = 1, + ACTIONS(9079), 1, + aux_sym_insert_token1, + [130885] = 1, + ACTIONS(9081), 1, sym__block_close, - [118191] = 1, - ACTIONS(9158), 1, + [130889] = 1, + ACTIONS(9083), 1, + anon_sym_DOLLAR_DOLLAR, + [130893] = 1, + ACTIONS(9085), 1, aux_sym_insert_token1, - [118195] = 1, - ACTIONS(9160), 1, + [130897] = 1, + ACTIONS(9087), 1, + aux_sym_citation_token1, + [130901] = 1, + ACTIONS(9089), 1, + sym__close_block, + [130905] = 1, + ACTIONS(9091), 1, sym__strong_emphasis_close_star, - [118199] = 1, - ACTIONS(9160), 1, - sym__strong_emphasis_close_underscore, - [118203] = 1, - ACTIONS(9162), 1, + [130909] = 1, + ACTIONS(9093), 1, + sym__single_quote_span_close, + [130913] = 1, + ACTIONS(9095), 1, aux_sym_pandoc_math_token1, - [118207] = 1, - ACTIONS(9164), 1, + [130917] = 1, + ACTIONS(9097), 1, aux_sym_pandoc_display_math_token1, - [118211] = 1, - ACTIONS(9166), 1, - sym__emphasis_close_star, - [118215] = 1, - ACTIONS(9168), 1, - aux_sym_insert_token1, - [118219] = 1, - ACTIONS(9166), 1, - sym__emphasis_close_underscore, - [118223] = 1, - ACTIONS(7117), 1, - aux_sym_inline_note_token1, - [118227] = 1, - ACTIONS(9170), 1, - sym__block_close, - [118231] = 1, - ACTIONS(9172), 1, - sym__strong_emphasis_close_star, - [118235] = 1, - ACTIONS(9086), 1, - sym__emphasis_close_underscore, - [118239] = 1, - ACTIONS(9174), 1, - sym__close_block, - [118243] = 1, - ACTIONS(9176), 1, - sym__single_quote_span_close, - [118247] = 1, - ACTIONS(9178), 1, - sym__double_quote_span_close, - [118251] = 1, - ACTIONS(9180), 1, - anon_sym_RBRACE, - [118255] = 1, - ACTIONS(9182), 1, + [130921] = 1, + ACTIONS(9099), 1, anon_sym_RBRACE, - [118259] = 1, - ACTIONS(9184), 1, - sym__strikeout_close, - [118263] = 1, - ACTIONS(9186), 1, - anon_sym_DOLLAR, - [118267] = 1, - ACTIONS(9188), 1, - aux_sym_citation_token1, - [118271] = 1, - ACTIONS(9190), 1, - aux_sym_citation_token1, - [118275] = 1, - ACTIONS(9192), 1, - anon_sym_DOLLAR_DOLLAR, - [118279] = 1, - ACTIONS(9194), 1, + [130925] = 1, + ACTIONS(9101), 1, aux_sym_citation_token2, - [118283] = 1, - ACTIONS(9196), 1, + [130929] = 1, + ACTIONS(9103), 1, aux_sym_citation_token2, - [118287] = 1, - ACTIONS(9198), 1, + [130933] = 1, + ACTIONS(9105), 1, + sym__double_quote_span_close, + [130937] = 1, + ACTIONS(9107), 1, anon_sym_RBRACE, - [118291] = 1, - ACTIONS(9200), 1, - sym_shortcode_name, - [118295] = 1, - ACTIONS(7406), 1, - sym__whitespace, - [118299] = 1, - ACTIONS(9202), 1, + [130941] = 1, + ACTIONS(9109), 1, anon_sym_RBRACE, - [118303] = 1, - ACTIONS(9204), 1, + [130945] = 1, + ACTIONS(9111), 1, + sym__strikeout_close, + [130949] = 1, + ACTIONS(9113), 1, + aux_sym_citation_token2, + [130953] = 1, + ACTIONS(9115), 1, anon_sym_RBRACE, - [118307] = 1, - ACTIONS(9206), 1, - aux_sym_pandoc_math_token1, - [118311] = 1, - ACTIONS(9208), 1, - aux_sym_pandoc_display_math_token1, - [118315] = 1, - ACTIONS(9210), 1, + [130957] = 1, + ACTIONS(9117), 1, sym__subscript_close, - [118319] = 1, - ACTIONS(9212), 1, - anon_sym_RBRACE, - [118323] = 1, - ACTIONS(9214), 1, - aux_sym_insert_token1, - [118327] = 1, - ACTIONS(9216), 1, - aux_sym_insert_token1, - [118331] = 1, - ACTIONS(9218), 1, - aux_sym_insert_token1, - [118335] = 1, - ACTIONS(9220), 1, - aux_sym_insert_token1, - [118339] = 1, - ACTIONS(9222), 1, + [130961] = 1, + ACTIONS(9119), 1, sym__superscript_close, - [118343] = 1, - ACTIONS(7133), 1, - aux_sym_inline_note_token1, - [118347] = 1, - ACTIONS(9224), 1, - sym__block_close, - [118351] = 1, - ACTIONS(9226), 1, - anon_sym_RBRACE, - [118355] = 1, - ACTIONS(9228), 1, - sym__strong_emphasis_close_star, - [118359] = 1, - ACTIONS(9228), 1, + [130965] = 1, + ACTIONS(9065), 1, + sym__emphasis_close_underscore, + [130969] = 1, + ACTIONS(9091), 1, sym__strong_emphasis_close_underscore, - [118363] = 1, - ACTIONS(9230), 1, - sym__emphasis_close_star, - [118367] = 1, - ACTIONS(9232), 1, - anon_sym_RBRACE, - [118371] = 1, - ACTIONS(9234), 1, + [130973] = 1, + ACTIONS(9121), 1, aux_sym_citation_token1, - [118375] = 1, - ACTIONS(9236), 1, + [130977] = 1, + ACTIONS(9123), 1, aux_sym_citation_token1, - [118379] = 1, - ACTIONS(9230), 1, - sym__emphasis_close_underscore, - [118383] = 1, - ACTIONS(9238), 1, - sym__block_close, - [118387] = 1, - ACTIONS(9240), 1, - aux_sym_insert_token1, - [118391] = 1, - ACTIONS(9242), 1, - sym__block_close, - [118395] = 1, - ACTIONS(9244), 1, + [130981] = 1, + ACTIONS(9125), 1, + sym__subscript_close, + [130985] = 1, + ACTIONS(6660), 1, + sym__key_specifier_token, + [130989] = 1, + ACTIONS(9127), 1, + sym__strong_emphasis_close_star, + [130993] = 1, + ACTIONS(9127), 1, + sym__strong_emphasis_close_underscore, + [130997] = 1, + ACTIONS(9129), 1, aux_sym_insert_token1, - [118399] = 1, - ACTIONS(9246), 1, - aux_sym_inline_note_token1, - [118403] = 1, - ACTIONS(9248), 1, + [131001] = 1, + ACTIONS(9131), 1, + sym__superscript_close, + [131005] = 1, + ACTIONS(9133), 1, aux_sym_insert_token1, - [118407] = 1, - ACTIONS(9250), 1, - aux_sym_citation_token2, - [118411] = 1, - ACTIONS(9252), 1, + [131009] = 1, + ACTIONS(9135), 1, + sym__emphasis_close_star, + [131013] = 1, + ACTIONS(9137), 1, aux_sym_pandoc_math_token1, - [118415] = 1, - ACTIONS(9254), 1, + [131017] = 1, + ACTIONS(9139), 1, aux_sym_pandoc_display_math_token1, - [118419] = 1, - ACTIONS(9256), 1, + [131021] = 1, + ACTIONS(9141), 1, aux_sym_insert_token1, - [118423] = 1, - ACTIONS(9258), 1, - sym__close_block, - [118427] = 1, - ACTIONS(9172), 1, - sym__strong_emphasis_close_underscore, - [118431] = 1, - ACTIONS(9260), 1, - aux_sym_inline_note_token1, - [118435] = 1, - ACTIONS(9262), 1, - aux_sym_inline_note_token1, - [118439] = 1, - ACTIONS(6248), 1, - sym__line_ending, - [118443] = 1, - ACTIONS(9264), 1, + [131025] = 1, + ACTIONS(9135), 1, + sym__emphasis_close_underscore, + [131029] = 1, + ACTIONS(9143), 1, + aux_sym_insert_token1, + [131033] = 1, + ACTIONS(9145), 1, anon_sym_RBRACE, - [118447] = 1, - ACTIONS(9266), 1, + [131037] = 1, + ACTIONS(9147), 1, sym__emphasis_close_star, - [118451] = 1, - ACTIONS(9266), 1, + [131041] = 1, + ACTIONS(9149), 1, + sym__single_quote_span_close, + [131045] = 1, + ACTIONS(9147), 1, sym__emphasis_close_underscore, - [118455] = 1, - ACTIONS(9268), 1, - anon_sym_DOLLAR, - [118459] = 1, - ACTIONS(9270), 1, - anon_sym_DOLLAR_DOLLAR, - [118463] = 1, - ACTIONS(9272), 1, - anon_sym_RBRACE, - [118467] = 1, - ACTIONS(9274), 1, - anon_sym_RBRACE, - [118471] = 1, - ACTIONS(8130), 1, + [131049] = 1, + ACTIONS(2861), 1, sym__block_close, - [118475] = 1, - ACTIONS(9276), 1, - aux_sym_citation_token1, - [118479] = 1, - ACTIONS(9278), 1, - aux_sym_citation_token1, - [118483] = 1, - ACTIONS(9280), 1, + [131053] = 1, + ACTIONS(9151), 1, sym__single_quote_span_close, - [118487] = 1, - ACTIONS(9282), 1, - sym__double_quote_span_close, - [118491] = 1, - ACTIONS(9284), 1, + [131057] = 1, + ACTIONS(9153), 1, anon_sym_RBRACE, - [118495] = 1, - ACTIONS(9286), 1, - anon_sym_RBRACE, - [118499] = 1, - ACTIONS(9288), 1, - sym__strikeout_close, - [118503] = 1, - ACTIONS(9290), 1, - sym__subscript_close, - [118507] = 1, - ACTIONS(9292), 1, - sym__superscript_close, - [118511] = 1, - ACTIONS(9294), 1, - sym__block_close, - [118515] = 1, - ACTIONS(9296), 1, + [131061] = 1, + ACTIONS(9155), 1, aux_sym_pandoc_math_token1, - [118519] = 1, - ACTIONS(9298), 1, - aux_sym_pandoc_display_math_token1, - [118523] = 1, - ACTIONS(9300), 1, - sym__strong_emphasis_close_star, - [118527] = 1, - ACTIONS(9300), 1, - sym__strong_emphasis_close_underscore, - [118531] = 1, - ACTIONS(9302), 1, - anon_sym_RPAREN, - [118535] = 1, - ACTIONS(9304), 1, - anon_sym_RBRACE, - [118539] = 1, - ACTIONS(9306), 1, - sym__block_close, - [118543] = 1, - ACTIONS(9308), 1, - anon_sym_RPAREN, - [118547] = 1, - ACTIONS(9310), 1, - anon_sym_RBRACE, - [118551] = 1, - ACTIONS(9312), 1, - anon_sym_RPAREN, - [118555] = 1, - ACTIONS(9314), 1, + [131065] = 1, + ACTIONS(7426), 1, + sym__pipe_table_delimiter, + [131069] = 1, + ACTIONS(9157), 1, + sym__double_quote_span_close, + [131073] = 1, + ACTIONS(9159), 1, anon_sym_RBRACE, - [118559] = 1, - ACTIONS(9316), 1, - aux_sym_insert_token1, - [118563] = 1, - ACTIONS(9318), 1, - aux_sym_insert_token1, - [118567] = 1, - ACTIONS(9320), 1, - aux_sym_insert_token1, - [118571] = 1, - ACTIONS(9322), 1, - aux_sym_insert_token1, - [118575] = 1, - ACTIONS(9324), 1, - sym__block_close, - [118579] = 1, - ACTIONS(9326), 1, - aux_sym_citation_token1, - [118583] = 1, - ACTIONS(9328), 1, - aux_sym_citation_token1, - [118587] = 1, - ACTIONS(9330), 1, - sym__emphasis_close_star, - [118591] = 1, - ACTIONS(9330), 1, - sym__emphasis_close_underscore, - [118595] = 1, - ACTIONS(7201), 1, - aux_sym_inline_note_token1, - [118599] = 1, - ACTIONS(3073), 1, - sym__close_block, - [118603] = 1, - ACTIONS(9332), 1, - sym__block_close, - [118607] = 1, - ACTIONS(9334), 1, - aux_sym_citation_token2, - [118611] = 1, - ACTIONS(9336), 1, - anon_sym_RPAREN, - [118615] = 1, - ACTIONS(9338), 1, + [131077] = 1, + ACTIONS(9161), 1, anon_sym_DOLLAR, - [118619] = 1, - ACTIONS(9340), 1, - aux_sym_pandoc_math_token1, - [118623] = 1, - ACTIONS(9342), 1, - aux_sym_pandoc_display_math_token1, - [118627] = 1, - ACTIONS(9344), 1, + [131081] = 1, + ACTIONS(9163), 1, anon_sym_DOLLAR_DOLLAR, - [118631] = 1, - ACTIONS(9346), 1, + [131085] = 1, + ACTIONS(9165), 1, anon_sym_RBRACE, - [118635] = 1, - ACTIONS(9348), 1, + [131089] = 1, + ACTIONS(9167), 1, sym__strikeout_close, - [118639] = 1, - ACTIONS(9350), 1, + [131093] = 1, + ACTIONS(9169), 1, + anon_sym_RBRACE, + [131097] = 1, + ACTIONS(9171), 1, + anon_sym_RBRACE, + [131101] = 1, + ACTIONS(9173), 1, sym__subscript_close, - [118643] = 1, - ACTIONS(9352), 1, - aux_sym_citation_token2, - [118647] = 1, - ACTIONS(9354), 1, - aux_sym_citation_token2, - [118651] = 1, - ACTIONS(9356), 1, + [131105] = 1, + ACTIONS(9175), 1, sym__superscript_close, - [118655] = 1, - ACTIONS(9358), 1, - aux_sym_citation_token2, - [118659] = 1, - ACTIONS(9360), 1, - anon_sym_RPAREN, - [118663] = 1, - ACTIONS(9362), 1, + [131109] = 1, + ACTIONS(9177), 1, + anon_sym_RBRACE, + [131113] = 1, + ACTIONS(9179), 1, + anon_sym_RBRACE, + [131117] = 1, + ACTIONS(9181), 1, aux_sym_insert_token1, - [118667] = 1, - ACTIONS(9364), 1, - sym__block_close, - [118671] = 1, - ACTIONS(9366), 1, - aux_sym_inline_note_token1, - [118675] = 1, - ACTIONS(9368), 1, + [131121] = 1, + ACTIONS(9183), 1, sym__strong_emphasis_close_star, - [118679] = 1, - ACTIONS(9370), 1, - anon_sym_RPAREN, - [118683] = 1, - ACTIONS(9372), 1, - sym__block_close, - [118687] = 1, - ACTIONS(9374), 1, - anon_sym_RBRACE, - [118691] = 1, - ACTIONS(9368), 1, - sym__strong_emphasis_close_underscore, - [118695] = 1, - ACTIONS(9376), 1, - aux_sym_citation_token2, - [118699] = 1, - ACTIONS(9378), 1, - sym__block_close, - [118703] = 1, - ACTIONS(9380), 1, - sym__emphasis_close_star, - [118707] = 1, - ACTIONS(9382), 1, - anon_sym_RPAREN, - [118711] = 1, - ACTIONS(9384), 1, + [131125] = 1, + ACTIONS(9185), 1, aux_sym_insert_token1, - [118715] = 1, - ACTIONS(9386), 1, - sym__strikeout_close, - [118719] = 1, - ACTIONS(9388), 1, - sym__whitespace, - [118723] = 1, - ACTIONS(9380), 1, - sym__emphasis_close_underscore, - [118727] = 1, - ACTIONS(9390), 1, + [131129] = 1, + ACTIONS(9187), 1, aux_sym_insert_token1, - [118731] = 1, - ACTIONS(9392), 1, - sym__subscript_close, - [118735] = 1, - ACTIONS(9394), 1, - anon_sym_RPAREN, - [118739] = 1, - ACTIONS(9396), 1, - sym__close_block, - [118743] = 1, - ACTIONS(9398), 1, - anon_sym_RBRACE, - [118747] = 1, - ACTIONS(9400), 1, + [131133] = 1, + ACTIONS(9183), 1, + sym__strong_emphasis_close_underscore, + [131137] = 1, + ACTIONS(9189), 1, aux_sym_insert_token1, - [118751] = 1, - ACTIONS(9402), 1, - sym__whitespace, - [118755] = 1, - ACTIONS(9404), 1, + [131141] = 1, + ACTIONS(7276), 1, + aux_sym_inline_note_token1, + [131145] = 1, + ACTIONS(9191), 1, sym_shortcode_name, - [118759] = 1, - ACTIONS(9406), 1, + [131149] = 1, + ACTIONS(9193), 1, sym_shortcode_name, - [118763] = 1, - ACTIONS(9408), 1, + [131153] = 1, + ACTIONS(9195), 1, sym__close_block, - [118767] = 1, - ACTIONS(9410), 1, + [131157] = 1, + ACTIONS(9197), 1, sym__close_block, - [118771] = 1, - ACTIONS(9412), 1, + [131161] = 1, + ACTIONS(9199), 1, sym__close_block, - [118775] = 1, - ACTIONS(9414), 1, + [131165] = 1, + ACTIONS(9201), 1, sym__close_block, - [118779] = 1, - ACTIONS(9416), 1, + [131169] = 1, + ACTIONS(9203), 1, sym__close_block, - [118783] = 1, - ACTIONS(9418), 1, + [131173] = 1, + ACTIONS(9205), 1, sym__close_block, - [118787] = 1, - ACTIONS(9420), 1, + [131177] = 1, + ACTIONS(9207), 1, sym__close_block, - [118791] = 1, - ACTIONS(9422), 1, + [131181] = 1, + ACTIONS(9209), 1, sym__close_block, - [118795] = 1, - ACTIONS(9424), 1, + [131185] = 1, + ACTIONS(9211), 1, sym__close_block, - [118799] = 1, - ACTIONS(9426), 1, - sym__block_close, - [118803] = 1, - ACTIONS(9428), 1, + [131189] = 1, + ACTIONS(8639), 1, + sym__emphasis_close_star, + [131193] = 1, + ACTIONS(9213), 1, aux_sym_insert_token1, - [118807] = 1, - ACTIONS(9430), 1, - sym__block_close, - [118811] = 1, - ACTIONS(9432), 1, + [131197] = 1, + ACTIONS(9215), 1, + aux_sym_insert_token1, + [131201] = 1, + ACTIONS(9217), 1, sym_shortcode_name, - [118815] = 1, - ACTIONS(9434), 1, + [131205] = 1, + ACTIONS(9219), 1, sym_shortcode_name, - [118819] = 1, - ACTIONS(9436), 1, + [131209] = 1, + ACTIONS(9221), 1, sym__close_block, - [118823] = 1, - ACTIONS(9438), 1, + [131213] = 1, + ACTIONS(9223), 1, sym__close_block, - [118827] = 1, - ACTIONS(9440), 1, + [131217] = 1, + ACTIONS(9225), 1, sym__close_block, - [118831] = 1, - ACTIONS(9442), 1, + [131221] = 1, + ACTIONS(9227), 1, sym__close_block, - [118835] = 1, - ACTIONS(9444), 1, + [131225] = 1, + ACTIONS(9229), 1, sym__close_block, - [118839] = 1, - ACTIONS(9446), 1, + [131229] = 1, + ACTIONS(9231), 1, sym__close_block, - [118843] = 1, - ACTIONS(9448), 1, + [131233] = 1, + ACTIONS(9233), 1, sym__close_block, - [118847] = 1, - ACTIONS(9450), 1, + [131237] = 1, + ACTIONS(9235), 1, sym__close_block, - [118851] = 1, - ACTIONS(9452), 1, + [131241] = 1, + ACTIONS(9237), 1, sym__close_block, - [118855] = 1, - ACTIONS(9454), 1, + [131245] = 1, + ACTIONS(9239), 1, sym_shortcode_name, - [118859] = 1, - ACTIONS(9456), 1, + [131249] = 1, + ACTIONS(9241), 1, sym_shortcode_name, - [118863] = 1, - ACTIONS(9458), 1, + [131253] = 1, + ACTIONS(9243), 1, sym_shortcode_name, - [118867] = 1, - ACTIONS(9460), 1, + [131257] = 1, + ACTIONS(9245), 1, sym_shortcode_name, - [118871] = 1, - ACTIONS(9462), 1, + [131261] = 1, + ACTIONS(9247), 1, sym_shortcode_name, - [118875] = 1, - ACTIONS(9464), 1, + [131265] = 1, + ACTIONS(9249), 1, sym_shortcode_name, - [118879] = 1, - ACTIONS(9466), 1, + [131269] = 1, + ACTIONS(9251), 1, sym_shortcode_name, - [118883] = 1, - ACTIONS(9468), 1, + [131273] = 1, + ACTIONS(9253), 1, sym_shortcode_name, - [118887] = 1, - ACTIONS(9470), 1, + [131277] = 1, + ACTIONS(9255), 1, sym_shortcode_name, - [118891] = 1, - ACTIONS(9472), 1, + [131281] = 1, + ACTIONS(9257), 1, sym_shortcode_name, - [118895] = 1, - ACTIONS(9474), 1, + [131285] = 1, + ACTIONS(9259), 1, sym_shortcode_name, - [118899] = 1, - ACTIONS(9476), 1, + [131289] = 1, + ACTIONS(9261), 1, sym_shortcode_name, - [118903] = 1, - ACTIONS(9478), 1, + [131293] = 1, + ACTIONS(9263), 1, sym_shortcode_name, - [118907] = 1, - ACTIONS(9480), 1, + [131297] = 1, + ACTIONS(9265), 1, sym_shortcode_name, - [118911] = 1, - ACTIONS(9482), 1, + [131301] = 1, + ACTIONS(9267), 1, sym_shortcode_name, - [118915] = 1, - ACTIONS(9484), 1, + [131305] = 1, + ACTIONS(9269), 1, sym_shortcode_name, - [118919] = 1, - ACTIONS(9486), 1, + [131309] = 1, + ACTIONS(9271), 1, sym_shortcode_name, - [118923] = 1, - ACTIONS(9488), 1, + [131313] = 1, + ACTIONS(9273), 1, sym_shortcode_name, - [118927] = 1, - ACTIONS(9490), 1, + [131317] = 1, + ACTIONS(9275), 1, sym_shortcode_name, - [118931] = 1, - ACTIONS(9492), 1, + [131321] = 1, + ACTIONS(9277), 1, sym_shortcode_name, - [118935] = 1, - ACTIONS(9494), 1, + [131325] = 1, + ACTIONS(9279), 1, sym_shortcode_name, - [118939] = 1, - ACTIONS(9496), 1, + [131329] = 1, + ACTIONS(9281), 1, sym_shortcode_name, - [118943] = 1, - ACTIONS(9498), 1, + [131333] = 1, + ACTIONS(9283), 1, sym_shortcode_name, - [118947] = 1, - ACTIONS(9500), 1, + [131337] = 1, + ACTIONS(9285), 1, sym_shortcode_name, - [118951] = 1, - ACTIONS(9502), 1, + [131341] = 1, + ACTIONS(9287), 1, sym_shortcode_name, - [118955] = 1, - ACTIONS(9504), 1, + [131345] = 1, + ACTIONS(9289), 1, sym_shortcode_name, - [118959] = 1, - ACTIONS(9506), 1, + [131349] = 1, + ACTIONS(9291), 1, sym_shortcode_name, - [118963] = 1, - ACTIONS(9508), 1, + [131353] = 1, + ACTIONS(9293), 1, sym_shortcode_name, - [118967] = 1, - ACTIONS(9510), 1, + [131357] = 1, + ACTIONS(9295), 1, sym_shortcode_name, - [118971] = 1, - ACTIONS(9512), 1, + [131361] = 1, + ACTIONS(9297), 1, sym_shortcode_name, - [118975] = 1, - ACTIONS(9514), 1, - sym__whitespace, - [118979] = 1, - ACTIONS(9516), 1, - sym__whitespace, - [118983] = 1, - ACTIONS(9518), 1, - sym__whitespace, - [118987] = 1, - ACTIONS(9520), 1, - sym__whitespace, - [118991] = 1, - ACTIONS(9522), 1, - sym__whitespace, - [118995] = 1, - ACTIONS(9524), 1, - sym__whitespace, - [118999] = 1, - ACTIONS(9526), 1, - sym__whitespace, - [119003] = 1, - ACTIONS(9528), 1, - sym__whitespace, - [119007] = 1, - ACTIONS(9530), 1, - sym__whitespace, - [119011] = 1, - ACTIONS(9532), 1, - sym__whitespace, - [119015] = 1, - ACTIONS(9534), 1, - sym__whitespace, - [119019] = 1, - ACTIONS(9536), 1, - sym__whitespace, - [119023] = 1, - ACTIONS(9538), 1, - sym__whitespace, - [119027] = 1, - ACTIONS(9540), 1, - sym__whitespace, - [119031] = 1, - ACTIONS(9542), 1, - sym__whitespace, - [119035] = 1, - ACTIONS(9544), 1, - sym__whitespace, - [119039] = 1, - ACTIONS(9546), 1, - sym__whitespace, - [119043] = 1, - ACTIONS(9548), 1, - sym__whitespace, - [119047] = 1, - ACTIONS(9550), 1, - sym__whitespace, - [119051] = 1, - ACTIONS(9552), 1, - sym__whitespace, - [119055] = 1, - ACTIONS(9554), 1, - sym__whitespace, - [119059] = 1, - ACTIONS(9556), 1, - sym__whitespace, - [119063] = 1, - ACTIONS(9558), 1, - sym__whitespace, - [119067] = 1, - ACTIONS(9560), 1, - sym__whitespace, - [119071] = 1, - ACTIONS(9562), 1, - sym__whitespace, - [119075] = 1, - ACTIONS(9564), 1, - sym__whitespace, - [119079] = 1, - ACTIONS(9566), 1, - sym__whitespace, - [119083] = 1, - ACTIONS(9568), 1, - sym__whitespace, - [119087] = 1, - ACTIONS(9570), 1, - sym__whitespace, - [119091] = 1, - ACTIONS(9572), 1, - sym__whitespace, - [119095] = 1, - ACTIONS(9574), 1, - sym__whitespace, - [119099] = 1, - ACTIONS(9576), 1, - sym__whitespace, - [119103] = 1, - ACTIONS(9578), 1, - sym__whitespace, - [119107] = 1, - ACTIONS(9580), 1, - sym__whitespace, - [119111] = 1, - ACTIONS(9582), 1, + [131365] = 1, + ACTIONS(9299), 1, + aux_sym_citation_token2, + [131369] = 1, + ACTIONS(9301), 1, + aux_sym_citation_token2, + [131373] = 1, + ACTIONS(9303), 1, + aux_sym_insert_token1, + [131377] = 1, + ACTIONS(9305), 1, + sym__strong_emphasis_close_star, + [131381] = 1, + ACTIONS(9307), 1, + sym__block_close, + [131385] = 1, + ACTIONS(9309), 1, + aux_sym_inline_note_token1, + [131389] = 1, + ACTIONS(9311), 1, + anon_sym_RPAREN, + [131393] = 1, + ACTIONS(9313), 1, + anon_sym_RBRACE, + [131397] = 1, + ACTIONS(9305), 1, + sym__strong_emphasis_close_underscore, + [131401] = 1, + ACTIONS(9315), 1, + anon_sym_RPAREN, + [131405] = 1, + ACTIONS(9317), 1, + aux_sym_insert_token1, + [131409] = 1, + ACTIONS(9319), 1, + anon_sym_DOLLAR, + [131413] = 1, + ACTIONS(9321), 1, + anon_sym_RPAREN, + [131417] = 1, + ACTIONS(9323), 1, + anon_sym_RPAREN, + [131421] = 1, + ACTIONS(9325), 1, + aux_sym_insert_token1, + [131425] = 1, + ACTIONS(9327), 1, + anon_sym_DOLLAR_DOLLAR, + [131429] = 1, + ACTIONS(9329), 1, + anon_sym_RPAREN, + [131433] = 1, + ACTIONS(9331), 1, + sym__block_close, + [131437] = 1, + ACTIONS(9333), 1, + aux_sym_insert_token1, + [131441] = 1, + ACTIONS(9335), 1, + anon_sym_RBRACE, + [131445] = 1, + ACTIONS(9337), 1, + aux_sym_insert_token1, + [131449] = 1, + ACTIONS(9339), 1, + sym__block_close, + [131453] = 1, + ACTIONS(9341), 1, + aux_sym_insert_token1, + [131457] = 1, + ACTIONS(9343), 1, + sym__emphasis_close_star, + [131461] = 1, + ACTIONS(9345), 1, + aux_sym_insert_token1, + [131465] = 1, + ACTIONS(9347), 1, + aux_sym_citation_token2, + [131469] = 1, + ACTIONS(9349), 1, + aux_sym_citation_token2, + [131473] = 1, + ACTIONS(9351), 1, + anon_sym_RBRACE, + [131477] = 1, + ACTIONS(9343), 1, + sym__emphasis_close_underscore, + [131481] = 1, + ACTIONS(9353), 1, + aux_sym_insert_token1, + [131485] = 1, + ACTIONS(9355), 1, + aux_sym_insert_token1, + [131489] = 1, + ACTIONS(9357), 1, + sym__single_quote_span_close, + [131493] = 1, + ACTIONS(9359), 1, + aux_sym_insert_token1, + [131497] = 1, + ACTIONS(9361), 1, sym__block_close, + [131501] = 1, + ACTIONS(7312), 1, + aux_sym_inline_note_token1, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(612)] = 0, - [SMALL_STATE(613)] = 131, - [SMALL_STATE(614)] = 262, - [SMALL_STATE(615)] = 393, - [SMALL_STATE(616)] = 524, - [SMALL_STATE(617)] = 655, - [SMALL_STATE(618)] = 786, - [SMALL_STATE(619)] = 917, - [SMALL_STATE(620)] = 1048, - [SMALL_STATE(621)] = 1179, - [SMALL_STATE(622)] = 1310, - [SMALL_STATE(623)] = 1441, - [SMALL_STATE(624)] = 1572, - [SMALL_STATE(625)] = 1703, - [SMALL_STATE(626)] = 1834, - [SMALL_STATE(627)] = 1965, - [SMALL_STATE(628)] = 2096, - [SMALL_STATE(629)] = 2227, - [SMALL_STATE(630)] = 2358, - [SMALL_STATE(631)] = 2489, - [SMALL_STATE(632)] = 2620, - [SMALL_STATE(633)] = 2751, - [SMALL_STATE(634)] = 2882, - [SMALL_STATE(635)] = 3013, - [SMALL_STATE(636)] = 3144, - [SMALL_STATE(637)] = 3275, - [SMALL_STATE(638)] = 3406, - [SMALL_STATE(639)] = 3537, - [SMALL_STATE(640)] = 3668, - [SMALL_STATE(641)] = 3799, - [SMALL_STATE(642)] = 3930, - [SMALL_STATE(643)] = 4061, - [SMALL_STATE(644)] = 4192, - [SMALL_STATE(645)] = 4323, - [SMALL_STATE(646)] = 4454, - [SMALL_STATE(647)] = 4585, - [SMALL_STATE(648)] = 4717, - [SMALL_STATE(649)] = 4849, - [SMALL_STATE(650)] = 4981, - [SMALL_STATE(651)] = 5113, - [SMALL_STATE(652)] = 5245, - [SMALL_STATE(653)] = 5377, - [SMALL_STATE(654)] = 5509, - [SMALL_STATE(655)] = 5641, - [SMALL_STATE(656)] = 5773, - [SMALL_STATE(657)] = 5905, - [SMALL_STATE(658)] = 6037, - [SMALL_STATE(659)] = 6169, - [SMALL_STATE(660)] = 6301, - [SMALL_STATE(661)] = 6433, - [SMALL_STATE(662)] = 6565, - [SMALL_STATE(663)] = 6697, - [SMALL_STATE(664)] = 6829, - [SMALL_STATE(665)] = 6961, - [SMALL_STATE(666)] = 7093, - [SMALL_STATE(667)] = 7225, - [SMALL_STATE(668)] = 7357, - [SMALL_STATE(669)] = 7489, - [SMALL_STATE(670)] = 7621, - [SMALL_STATE(671)] = 7753, - [SMALL_STATE(672)] = 7885, - [SMALL_STATE(673)] = 8017, - [SMALL_STATE(674)] = 8149, - [SMALL_STATE(675)] = 8281, - [SMALL_STATE(676)] = 8413, - [SMALL_STATE(677)] = 8545, - [SMALL_STATE(678)] = 8677, - [SMALL_STATE(679)] = 8809, - [SMALL_STATE(680)] = 8941, - [SMALL_STATE(681)] = 9073, - [SMALL_STATE(682)] = 9205, - [SMALL_STATE(683)] = 9337, - [SMALL_STATE(684)] = 9469, - [SMALL_STATE(685)] = 9601, - [SMALL_STATE(686)] = 9733, - [SMALL_STATE(687)] = 9865, - [SMALL_STATE(688)] = 9997, - [SMALL_STATE(689)] = 10129, - [SMALL_STATE(690)] = 10261, - [SMALL_STATE(691)] = 10393, - [SMALL_STATE(692)] = 10525, - [SMALL_STATE(693)] = 10655, - [SMALL_STATE(694)] = 10787, - [SMALL_STATE(695)] = 10919, - [SMALL_STATE(696)] = 11051, - [SMALL_STATE(697)] = 11183, - [SMALL_STATE(698)] = 11315, - [SMALL_STATE(699)] = 11447, - [SMALL_STATE(700)] = 11579, - [SMALL_STATE(701)] = 11711, - [SMALL_STATE(702)] = 11843, - [SMALL_STATE(703)] = 11975, - [SMALL_STATE(704)] = 12107, - [SMALL_STATE(705)] = 12239, - [SMALL_STATE(706)] = 12371, - [SMALL_STATE(707)] = 12503, - [SMALL_STATE(708)] = 12635, - [SMALL_STATE(709)] = 12767, - [SMALL_STATE(710)] = 12899, - [SMALL_STATE(711)] = 13031, - [SMALL_STATE(712)] = 13163, - [SMALL_STATE(713)] = 13295, - [SMALL_STATE(714)] = 13427, - [SMALL_STATE(715)] = 13559, - [SMALL_STATE(716)] = 13691, - [SMALL_STATE(717)] = 13823, - [SMALL_STATE(718)] = 13955, - [SMALL_STATE(719)] = 14087, - [SMALL_STATE(720)] = 14219, - [SMALL_STATE(721)] = 14351, - [SMALL_STATE(722)] = 14483, - [SMALL_STATE(723)] = 14615, - [SMALL_STATE(724)] = 14747, - [SMALL_STATE(725)] = 14879, - [SMALL_STATE(726)] = 15011, - [SMALL_STATE(727)] = 15143, - [SMALL_STATE(728)] = 15275, - [SMALL_STATE(729)] = 15407, - [SMALL_STATE(730)] = 15539, - [SMALL_STATE(731)] = 15671, - [SMALL_STATE(732)] = 15803, - [SMALL_STATE(733)] = 15935, - [SMALL_STATE(734)] = 16067, - [SMALL_STATE(735)] = 16199, - [SMALL_STATE(736)] = 16331, - [SMALL_STATE(737)] = 16463, - [SMALL_STATE(738)] = 16595, - [SMALL_STATE(739)] = 16727, - [SMALL_STATE(740)] = 16859, - [SMALL_STATE(741)] = 16991, - [SMALL_STATE(742)] = 17123, - [SMALL_STATE(743)] = 17255, - [SMALL_STATE(744)] = 17387, - [SMALL_STATE(745)] = 17519, - [SMALL_STATE(746)] = 17651, - [SMALL_STATE(747)] = 17781, - [SMALL_STATE(748)] = 17913, - [SMALL_STATE(749)] = 18042, - [SMALL_STATE(750)] = 18171, - [SMALL_STATE(751)] = 18300, - [SMALL_STATE(752)] = 18429, - [SMALL_STATE(753)] = 18558, - [SMALL_STATE(754)] = 18687, - [SMALL_STATE(755)] = 18816, - [SMALL_STATE(756)] = 18945, - [SMALL_STATE(757)] = 19074, - [SMALL_STATE(758)] = 19203, - [SMALL_STATE(759)] = 19332, - [SMALL_STATE(760)] = 19461, - [SMALL_STATE(761)] = 19590, - [SMALL_STATE(762)] = 19719, - [SMALL_STATE(763)] = 19848, - [SMALL_STATE(764)] = 19977, - [SMALL_STATE(765)] = 20106, - [SMALL_STATE(766)] = 20235, - [SMALL_STATE(767)] = 20364, - [SMALL_STATE(768)] = 20493, - [SMALL_STATE(769)] = 20622, - [SMALL_STATE(770)] = 20751, - [SMALL_STATE(771)] = 20880, - [SMALL_STATE(772)] = 21009, - [SMALL_STATE(773)] = 21138, - [SMALL_STATE(774)] = 21267, - [SMALL_STATE(775)] = 21396, - [SMALL_STATE(776)] = 21525, - [SMALL_STATE(777)] = 21654, - [SMALL_STATE(778)] = 21783, - [SMALL_STATE(779)] = 21912, - [SMALL_STATE(780)] = 22041, - [SMALL_STATE(781)] = 22170, - [SMALL_STATE(782)] = 22299, - [SMALL_STATE(783)] = 22428, - [SMALL_STATE(784)] = 22557, - [SMALL_STATE(785)] = 22686, - [SMALL_STATE(786)] = 22815, - [SMALL_STATE(787)] = 22944, - [SMALL_STATE(788)] = 23073, - [SMALL_STATE(789)] = 23202, - [SMALL_STATE(790)] = 23331, - [SMALL_STATE(791)] = 23460, - [SMALL_STATE(792)] = 23589, - [SMALL_STATE(793)] = 23718, - [SMALL_STATE(794)] = 23847, - [SMALL_STATE(795)] = 23976, - [SMALL_STATE(796)] = 24105, - [SMALL_STATE(797)] = 24234, - [SMALL_STATE(798)] = 24363, - [SMALL_STATE(799)] = 24492, - [SMALL_STATE(800)] = 24621, - [SMALL_STATE(801)] = 24750, - [SMALL_STATE(802)] = 24879, - [SMALL_STATE(803)] = 25008, - [SMALL_STATE(804)] = 25137, - [SMALL_STATE(805)] = 25266, - [SMALL_STATE(806)] = 25395, - [SMALL_STATE(807)] = 25524, - [SMALL_STATE(808)] = 25653, - [SMALL_STATE(809)] = 25782, - [SMALL_STATE(810)] = 25911, - [SMALL_STATE(811)] = 26040, - [SMALL_STATE(812)] = 26169, - [SMALL_STATE(813)] = 26298, - [SMALL_STATE(814)] = 26427, - [SMALL_STATE(815)] = 26556, - [SMALL_STATE(816)] = 26685, - [SMALL_STATE(817)] = 26814, - [SMALL_STATE(818)] = 26943, - [SMALL_STATE(819)] = 27072, - [SMALL_STATE(820)] = 27201, - [SMALL_STATE(821)] = 27330, - [SMALL_STATE(822)] = 27459, - [SMALL_STATE(823)] = 27588, - [SMALL_STATE(824)] = 27717, - [SMALL_STATE(825)] = 27846, - [SMALL_STATE(826)] = 27975, - [SMALL_STATE(827)] = 28104, - [SMALL_STATE(828)] = 28233, - [SMALL_STATE(829)] = 28362, - [SMALL_STATE(830)] = 28491, - [SMALL_STATE(831)] = 28620, - [SMALL_STATE(832)] = 28749, - [SMALL_STATE(833)] = 28878, - [SMALL_STATE(834)] = 29007, - [SMALL_STATE(835)] = 29136, - [SMALL_STATE(836)] = 29265, - [SMALL_STATE(837)] = 29394, - [SMALL_STATE(838)] = 29523, - [SMALL_STATE(839)] = 29652, - [SMALL_STATE(840)] = 29781, - [SMALL_STATE(841)] = 29910, - [SMALL_STATE(842)] = 30039, - [SMALL_STATE(843)] = 30168, - [SMALL_STATE(844)] = 30297, - [SMALL_STATE(845)] = 30426, - [SMALL_STATE(846)] = 30555, - [SMALL_STATE(847)] = 30684, - [SMALL_STATE(848)] = 30813, - [SMALL_STATE(849)] = 30942, - [SMALL_STATE(850)] = 31071, - [SMALL_STATE(851)] = 31200, - [SMALL_STATE(852)] = 31329, - [SMALL_STATE(853)] = 31458, - [SMALL_STATE(854)] = 31587, - [SMALL_STATE(855)] = 31716, - [SMALL_STATE(856)] = 31845, - [SMALL_STATE(857)] = 31974, - [SMALL_STATE(858)] = 32103, - [SMALL_STATE(859)] = 32232, - [SMALL_STATE(860)] = 32361, - [SMALL_STATE(861)] = 32490, - [SMALL_STATE(862)] = 32619, - [SMALL_STATE(863)] = 32748, - [SMALL_STATE(864)] = 32877, - [SMALL_STATE(865)] = 33006, - [SMALL_STATE(866)] = 33135, - [SMALL_STATE(867)] = 33264, - [SMALL_STATE(868)] = 33393, - [SMALL_STATE(869)] = 33522, - [SMALL_STATE(870)] = 33651, - [SMALL_STATE(871)] = 33780, - [SMALL_STATE(872)] = 33909, - [SMALL_STATE(873)] = 34038, - [SMALL_STATE(874)] = 34167, - [SMALL_STATE(875)] = 34296, - [SMALL_STATE(876)] = 34425, - [SMALL_STATE(877)] = 34554, - [SMALL_STATE(878)] = 34683, - [SMALL_STATE(879)] = 34812, - [SMALL_STATE(880)] = 34941, - [SMALL_STATE(881)] = 35070, - [SMALL_STATE(882)] = 35196, - [SMALL_STATE(883)] = 35322, - [SMALL_STATE(884)] = 35448, - [SMALL_STATE(885)] = 35574, - [SMALL_STATE(886)] = 35700, - [SMALL_STATE(887)] = 35826, - [SMALL_STATE(888)] = 35952, - [SMALL_STATE(889)] = 36078, - [SMALL_STATE(890)] = 36204, - [SMALL_STATE(891)] = 36330, - [SMALL_STATE(892)] = 36456, - [SMALL_STATE(893)] = 36582, - [SMALL_STATE(894)] = 36708, - [SMALL_STATE(895)] = 36831, - [SMALL_STATE(896)] = 36954, - [SMALL_STATE(897)] = 37077, - [SMALL_STATE(898)] = 37200, - [SMALL_STATE(899)] = 37323, - [SMALL_STATE(900)] = 37446, - [SMALL_STATE(901)] = 37569, - [SMALL_STATE(902)] = 37692, - [SMALL_STATE(903)] = 37815, - [SMALL_STATE(904)] = 37938, - [SMALL_STATE(905)] = 38061, - [SMALL_STATE(906)] = 38184, - [SMALL_STATE(907)] = 38307, - [SMALL_STATE(908)] = 38357, - [SMALL_STATE(909)] = 38408, - [SMALL_STATE(910)] = 38459, - [SMALL_STATE(911)] = 38510, - [SMALL_STATE(912)] = 38561, - [SMALL_STATE(913)] = 38612, - [SMALL_STATE(914)] = 38663, - [SMALL_STATE(915)] = 38714, - [SMALL_STATE(916)] = 38763, - [SMALL_STATE(917)] = 38814, - [SMALL_STATE(918)] = 38865, - [SMALL_STATE(919)] = 38916, - [SMALL_STATE(920)] = 38963, - [SMALL_STATE(921)] = 39014, - [SMALL_STATE(922)] = 39065, - [SMALL_STATE(923)] = 39116, - [SMALL_STATE(924)] = 39167, - [SMALL_STATE(925)] = 39218, - [SMALL_STATE(926)] = 39269, - [SMALL_STATE(927)] = 39320, - [SMALL_STATE(928)] = 39371, - [SMALL_STATE(929)] = 39422, - [SMALL_STATE(930)] = 39473, - [SMALL_STATE(931)] = 39524, - [SMALL_STATE(932)] = 39575, - [SMALL_STATE(933)] = 39626, - [SMALL_STATE(934)] = 39677, - [SMALL_STATE(935)] = 39728, - [SMALL_STATE(936)] = 39774, - [SMALL_STATE(937)] = 39824, - [SMALL_STATE(938)] = 39874, - [SMALL_STATE(939)] = 39924, - [SMALL_STATE(940)] = 39974, - [SMALL_STATE(941)] = 40024, - [SMALL_STATE(942)] = 40074, - [SMALL_STATE(943)] = 40124, - [SMALL_STATE(944)] = 40174, - [SMALL_STATE(945)] = 40224, - [SMALL_STATE(946)] = 40274, - [SMALL_STATE(947)] = 40324, - [SMALL_STATE(948)] = 40374, - [SMALL_STATE(949)] = 40424, - [SMALL_STATE(950)] = 40474, - [SMALL_STATE(951)] = 40524, - [SMALL_STATE(952)] = 40574, - [SMALL_STATE(953)] = 40624, - [SMALL_STATE(954)] = 40674, - [SMALL_STATE(955)] = 40724, - [SMALL_STATE(956)] = 40774, - [SMALL_STATE(957)] = 40824, - [SMALL_STATE(958)] = 40874, - [SMALL_STATE(959)] = 40924, - [SMALL_STATE(960)] = 40974, - [SMALL_STATE(961)] = 41024, - [SMALL_STATE(962)] = 41074, - [SMALL_STATE(963)] = 41124, - [SMALL_STATE(964)] = 41170, - [SMALL_STATE(965)] = 41216, - [SMALL_STATE(966)] = 41262, - [SMALL_STATE(967)] = 41308, - [SMALL_STATE(968)] = 41354, - [SMALL_STATE(969)] = 41400, - [SMALL_STATE(970)] = 41446, - [SMALL_STATE(971)] = 41492, - [SMALL_STATE(972)] = 41538, - [SMALL_STATE(973)] = 41584, - [SMALL_STATE(974)] = 41630, - [SMALL_STATE(975)] = 41676, - [SMALL_STATE(976)] = 41722, - [SMALL_STATE(977)] = 41768, - [SMALL_STATE(978)] = 41814, - [SMALL_STATE(979)] = 41860, - [SMALL_STATE(980)] = 41906, - [SMALL_STATE(981)] = 41952, - [SMALL_STATE(982)] = 41998, - [SMALL_STATE(983)] = 42044, - [SMALL_STATE(984)] = 42090, - [SMALL_STATE(985)] = 42136, - [SMALL_STATE(986)] = 42182, - [SMALL_STATE(987)] = 42228, - [SMALL_STATE(988)] = 42274, - [SMALL_STATE(989)] = 42320, - [SMALL_STATE(990)] = 42366, - [SMALL_STATE(991)] = 42412, - [SMALL_STATE(992)] = 42462, - [SMALL_STATE(993)] = 42508, - [SMALL_STATE(994)] = 42554, - [SMALL_STATE(995)] = 42600, - [SMALL_STATE(996)] = 42646, - [SMALL_STATE(997)] = 42692, - [SMALL_STATE(998)] = 42738, - [SMALL_STATE(999)] = 42784, - [SMALL_STATE(1000)] = 42830, - [SMALL_STATE(1001)] = 42876, - [SMALL_STATE(1002)] = 42922, - [SMALL_STATE(1003)] = 42968, - [SMALL_STATE(1004)] = 43014, - [SMALL_STATE(1005)] = 43060, - [SMALL_STATE(1006)] = 43106, - [SMALL_STATE(1007)] = 43152, - [SMALL_STATE(1008)] = 43198, - [SMALL_STATE(1009)] = 43244, - [SMALL_STATE(1010)] = 43290, - [SMALL_STATE(1011)] = 43336, - [SMALL_STATE(1012)] = 43382, - [SMALL_STATE(1013)] = 43428, - [SMALL_STATE(1014)] = 43474, - [SMALL_STATE(1015)] = 43520, - [SMALL_STATE(1016)] = 43566, - [SMALL_STATE(1017)] = 43612, - [SMALL_STATE(1018)] = 43658, - [SMALL_STATE(1019)] = 43704, - [SMALL_STATE(1020)] = 43750, - [SMALL_STATE(1021)] = 43796, - [SMALL_STATE(1022)] = 43842, - [SMALL_STATE(1023)] = 43892, - [SMALL_STATE(1024)] = 43942, - [SMALL_STATE(1025)] = 43992, - [SMALL_STATE(1026)] = 44042, - [SMALL_STATE(1027)] = 44092, - [SMALL_STATE(1028)] = 44142, - [SMALL_STATE(1029)] = 44188, - [SMALL_STATE(1030)] = 44238, - [SMALL_STATE(1031)] = 44288, - [SMALL_STATE(1032)] = 44338, - [SMALL_STATE(1033)] = 44388, - [SMALL_STATE(1034)] = 44438, - [SMALL_STATE(1035)] = 44488, - [SMALL_STATE(1036)] = 44538, - [SMALL_STATE(1037)] = 44588, - [SMALL_STATE(1038)] = 44634, - [SMALL_STATE(1039)] = 44684, - [SMALL_STATE(1040)] = 44734, - [SMALL_STATE(1041)] = 44784, - [SMALL_STATE(1042)] = 44834, - [SMALL_STATE(1043)] = 44884, - [SMALL_STATE(1044)] = 44934, - [SMALL_STATE(1045)] = 44984, - [SMALL_STATE(1046)] = 45034, - [SMALL_STATE(1047)] = 45080, - [SMALL_STATE(1048)] = 45129, - [SMALL_STATE(1049)] = 45174, - [SMALL_STATE(1050)] = 45219, - [SMALL_STATE(1051)] = 45264, - [SMALL_STATE(1052)] = 45309, - [SMALL_STATE(1053)] = 45354, - [SMALL_STATE(1054)] = 45403, - [SMALL_STATE(1055)] = 45452, - [SMALL_STATE(1056)] = 45497, - [SMALL_STATE(1057)] = 45542, - [SMALL_STATE(1058)] = 45591, - [SMALL_STATE(1059)] = 45636, - [SMALL_STATE(1060)] = 45681, - [SMALL_STATE(1061)] = 45726, - [SMALL_STATE(1062)] = 45771, - [SMALL_STATE(1063)] = 45816, - [SMALL_STATE(1064)] = 45865, - [SMALL_STATE(1065)] = 45910, - [SMALL_STATE(1066)] = 45955, - [SMALL_STATE(1067)] = 46004, - [SMALL_STATE(1068)] = 46049, - [SMALL_STATE(1069)] = 46094, - [SMALL_STATE(1070)] = 46143, - [SMALL_STATE(1071)] = 46188, - [SMALL_STATE(1072)] = 46233, - [SMALL_STATE(1073)] = 46282, - [SMALL_STATE(1074)] = 46327, - [SMALL_STATE(1075)] = 46372, - [SMALL_STATE(1076)] = 46417, - [SMALL_STATE(1077)] = 46462, - [SMALL_STATE(1078)] = 46511, - [SMALL_STATE(1079)] = 46556, - [SMALL_STATE(1080)] = 46601, - [SMALL_STATE(1081)] = 46650, - [SMALL_STATE(1082)] = 46695, - [SMALL_STATE(1083)] = 46740, - [SMALL_STATE(1084)] = 46785, - [SMALL_STATE(1085)] = 46830, - [SMALL_STATE(1086)] = 46875, - [SMALL_STATE(1087)] = 46920, - [SMALL_STATE(1088)] = 46965, - [SMALL_STATE(1089)] = 47010, - [SMALL_STATE(1090)] = 47055, - [SMALL_STATE(1091)] = 47100, - [SMALL_STATE(1092)] = 47145, - [SMALL_STATE(1093)] = 47190, - [SMALL_STATE(1094)] = 47235, - [SMALL_STATE(1095)] = 47280, - [SMALL_STATE(1096)] = 47325, - [SMALL_STATE(1097)] = 47370, - [SMALL_STATE(1098)] = 47419, - [SMALL_STATE(1099)] = 47464, - [SMALL_STATE(1100)] = 47509, - [SMALL_STATE(1101)] = 47554, - [SMALL_STATE(1102)] = 47599, - [SMALL_STATE(1103)] = 47644, - [SMALL_STATE(1104)] = 47689, - [SMALL_STATE(1105)] = 47738, - [SMALL_STATE(1106)] = 47787, - [SMALL_STATE(1107)] = 47836, - [SMALL_STATE(1108)] = 47885, - [SMALL_STATE(1109)] = 47934, - [SMALL_STATE(1110)] = 47983, - [SMALL_STATE(1111)] = 48032, - [SMALL_STATE(1112)] = 48081, - [SMALL_STATE(1113)] = 48130, - [SMALL_STATE(1114)] = 48179, - [SMALL_STATE(1115)] = 48228, - [SMALL_STATE(1116)] = 48277, - [SMALL_STATE(1117)] = 48326, - [SMALL_STATE(1118)] = 48375, - [SMALL_STATE(1119)] = 48424, - [SMALL_STATE(1120)] = 48473, - [SMALL_STATE(1121)] = 48522, - [SMALL_STATE(1122)] = 48571, - [SMALL_STATE(1123)] = 48620, - [SMALL_STATE(1124)] = 48669, - [SMALL_STATE(1125)] = 48718, - [SMALL_STATE(1126)] = 48767, - [SMALL_STATE(1127)] = 48816, - [SMALL_STATE(1128)] = 48865, - [SMALL_STATE(1129)] = 48914, - [SMALL_STATE(1130)] = 48963, - [SMALL_STATE(1131)] = 49012, - [SMALL_STATE(1132)] = 49061, - [SMALL_STATE(1133)] = 49110, - [SMALL_STATE(1134)] = 49159, - [SMALL_STATE(1135)] = 49208, - [SMALL_STATE(1136)] = 49257, - [SMALL_STATE(1137)] = 49306, - [SMALL_STATE(1138)] = 49355, - [SMALL_STATE(1139)] = 49404, - [SMALL_STATE(1140)] = 49453, - [SMALL_STATE(1141)] = 49502, - [SMALL_STATE(1142)] = 49551, - [SMALL_STATE(1143)] = 49600, - [SMALL_STATE(1144)] = 49649, - [SMALL_STATE(1145)] = 49698, - [SMALL_STATE(1146)] = 49747, - [SMALL_STATE(1147)] = 49796, - [SMALL_STATE(1148)] = 49845, - [SMALL_STATE(1149)] = 49890, - [SMALL_STATE(1150)] = 49939, - [SMALL_STATE(1151)] = 49988, - [SMALL_STATE(1152)] = 50037, - [SMALL_STATE(1153)] = 50086, - [SMALL_STATE(1154)] = 50135, - [SMALL_STATE(1155)] = 50184, - [SMALL_STATE(1156)] = 50233, - [SMALL_STATE(1157)] = 50282, - [SMALL_STATE(1158)] = 50331, - [SMALL_STATE(1159)] = 50380, - [SMALL_STATE(1160)] = 50429, - [SMALL_STATE(1161)] = 50474, - [SMALL_STATE(1162)] = 50523, - [SMALL_STATE(1163)] = 50572, - [SMALL_STATE(1164)] = 50621, - [SMALL_STATE(1165)] = 50670, - [SMALL_STATE(1166)] = 50719, - [SMALL_STATE(1167)] = 50768, - [SMALL_STATE(1168)] = 50817, - [SMALL_STATE(1169)] = 50866, - [SMALL_STATE(1170)] = 50915, - [SMALL_STATE(1171)] = 50964, - [SMALL_STATE(1172)] = 51013, - [SMALL_STATE(1173)] = 51062, - [SMALL_STATE(1174)] = 51111, - [SMALL_STATE(1175)] = 51160, - [SMALL_STATE(1176)] = 51209, - [SMALL_STATE(1177)] = 51254, - [SMALL_STATE(1178)] = 51303, - [SMALL_STATE(1179)] = 51352, - [SMALL_STATE(1180)] = 51401, - [SMALL_STATE(1181)] = 51450, - [SMALL_STATE(1182)] = 51499, - [SMALL_STATE(1183)] = 51548, - [SMALL_STATE(1184)] = 51597, - [SMALL_STATE(1185)] = 51642, - [SMALL_STATE(1186)] = 51691, - [SMALL_STATE(1187)] = 51740, - [SMALL_STATE(1188)] = 51789, - [SMALL_STATE(1189)] = 51838, - [SMALL_STATE(1190)] = 51883, - [SMALL_STATE(1191)] = 51928, - [SMALL_STATE(1192)] = 51973, - [SMALL_STATE(1193)] = 52018, - [SMALL_STATE(1194)] = 52063, - [SMALL_STATE(1195)] = 52108, - [SMALL_STATE(1196)] = 52153, - [SMALL_STATE(1197)] = 52202, - [SMALL_STATE(1198)] = 52251, - [SMALL_STATE(1199)] = 52300, - [SMALL_STATE(1200)] = 52349, - [SMALL_STATE(1201)] = 52398, - [SMALL_STATE(1202)] = 52443, - [SMALL_STATE(1203)] = 52492, - [SMALL_STATE(1204)] = 52541, - [SMALL_STATE(1205)] = 52590, - [SMALL_STATE(1206)] = 52639, - [SMALL_STATE(1207)] = 52684, - [SMALL_STATE(1208)] = 52729, - [SMALL_STATE(1209)] = 52774, - [SMALL_STATE(1210)] = 52819, - [SMALL_STATE(1211)] = 52864, - [SMALL_STATE(1212)] = 52909, - [SMALL_STATE(1213)] = 52954, - [SMALL_STATE(1214)] = 52999, - [SMALL_STATE(1215)] = 53044, - [SMALL_STATE(1216)] = 53089, - [SMALL_STATE(1217)] = 53134, - [SMALL_STATE(1218)] = 53183, - [SMALL_STATE(1219)] = 53232, - [SMALL_STATE(1220)] = 53277, - [SMALL_STATE(1221)] = 53326, - [SMALL_STATE(1222)] = 53375, - [SMALL_STATE(1223)] = 53424, - [SMALL_STATE(1224)] = 53473, - [SMALL_STATE(1225)] = 53522, - [SMALL_STATE(1226)] = 53567, - [SMALL_STATE(1227)] = 53612, - [SMALL_STATE(1228)] = 53657, - [SMALL_STATE(1229)] = 53702, - [SMALL_STATE(1230)] = 53751, - [SMALL_STATE(1231)] = 53796, - [SMALL_STATE(1232)] = 53845, - [SMALL_STATE(1233)] = 53894, - [SMALL_STATE(1234)] = 53943, - [SMALL_STATE(1235)] = 53988, - [SMALL_STATE(1236)] = 54033, - [SMALL_STATE(1237)] = 54078, - [SMALL_STATE(1238)] = 54123, - [SMALL_STATE(1239)] = 54168, - [SMALL_STATE(1240)] = 54217, - [SMALL_STATE(1241)] = 54266, - [SMALL_STATE(1242)] = 54311, - [SMALL_STATE(1243)] = 54356, - [SMALL_STATE(1244)] = 54401, - [SMALL_STATE(1245)] = 54446, - [SMALL_STATE(1246)] = 54491, - [SMALL_STATE(1247)] = 54536, - [SMALL_STATE(1248)] = 54581, - [SMALL_STATE(1249)] = 54626, - [SMALL_STATE(1250)] = 54675, - [SMALL_STATE(1251)] = 54724, - [SMALL_STATE(1252)] = 54773, - [SMALL_STATE(1253)] = 54818, - [SMALL_STATE(1254)] = 54867, - [SMALL_STATE(1255)] = 54912, - [SMALL_STATE(1256)] = 54957, - [SMALL_STATE(1257)] = 55002, - [SMALL_STATE(1258)] = 55047, - [SMALL_STATE(1259)] = 55092, - [SMALL_STATE(1260)] = 55141, - [SMALL_STATE(1261)] = 55190, - [SMALL_STATE(1262)] = 55239, - [SMALL_STATE(1263)] = 55288, - [SMALL_STATE(1264)] = 55333, - [SMALL_STATE(1265)] = 55378, - [SMALL_STATE(1266)] = 55423, - [SMALL_STATE(1267)] = 55468, - [SMALL_STATE(1268)] = 55513, - [SMALL_STATE(1269)] = 55562, - [SMALL_STATE(1270)] = 55611, - [SMALL_STATE(1271)] = 55660, - [SMALL_STATE(1272)] = 55709, - [SMALL_STATE(1273)] = 55758, - [SMALL_STATE(1274)] = 55807, - [SMALL_STATE(1275)] = 55856, - [SMALL_STATE(1276)] = 55905, - [SMALL_STATE(1277)] = 55954, - [SMALL_STATE(1278)] = 56003, - [SMALL_STATE(1279)] = 56052, - [SMALL_STATE(1280)] = 56101, - [SMALL_STATE(1281)] = 56146, - [SMALL_STATE(1282)] = 56195, - [SMALL_STATE(1283)] = 56240, - [SMALL_STATE(1284)] = 56289, - [SMALL_STATE(1285)] = 56338, - [SMALL_STATE(1286)] = 56387, - [SMALL_STATE(1287)] = 56436, - [SMALL_STATE(1288)] = 56481, - [SMALL_STATE(1289)] = 56530, - [SMALL_STATE(1290)] = 56579, - [SMALL_STATE(1291)] = 56628, - [SMALL_STATE(1292)] = 56677, - [SMALL_STATE(1293)] = 56726, - [SMALL_STATE(1294)] = 56775, - [SMALL_STATE(1295)] = 56824, - [SMALL_STATE(1296)] = 56873, - [SMALL_STATE(1297)] = 56918, - [SMALL_STATE(1298)] = 56963, - [SMALL_STATE(1299)] = 57012, - [SMALL_STATE(1300)] = 57061, - [SMALL_STATE(1301)] = 57106, - [SMALL_STATE(1302)] = 57151, - [SMALL_STATE(1303)] = 57200, - [SMALL_STATE(1304)] = 57249, - [SMALL_STATE(1305)] = 57298, - [SMALL_STATE(1306)] = 57347, - [SMALL_STATE(1307)] = 57396, - [SMALL_STATE(1308)] = 57445, - [SMALL_STATE(1309)] = 57494, - [SMALL_STATE(1310)] = 57543, - [SMALL_STATE(1311)] = 57592, - [SMALL_STATE(1312)] = 57641, - [SMALL_STATE(1313)] = 57690, - [SMALL_STATE(1314)] = 57739, - [SMALL_STATE(1315)] = 57788, - [SMALL_STATE(1316)] = 57837, - [SMALL_STATE(1317)] = 57886, - [SMALL_STATE(1318)] = 57935, - [SMALL_STATE(1319)] = 57984, - [SMALL_STATE(1320)] = 58029, - [SMALL_STATE(1321)] = 58074, - [SMALL_STATE(1322)] = 58119, - [SMALL_STATE(1323)] = 58168, - [SMALL_STATE(1324)] = 58213, - [SMALL_STATE(1325)] = 58258, - [SMALL_STATE(1326)] = 58307, - [SMALL_STATE(1327)] = 58356, - [SMALL_STATE(1328)] = 58405, - [SMALL_STATE(1329)] = 58450, - [SMALL_STATE(1330)] = 58499, - [SMALL_STATE(1331)] = 58544, - [SMALL_STATE(1332)] = 58593, - [SMALL_STATE(1333)] = 58642, - [SMALL_STATE(1334)] = 58691, - [SMALL_STATE(1335)] = 58740, - [SMALL_STATE(1336)] = 58785, - [SMALL_STATE(1337)] = 58834, - [SMALL_STATE(1338)] = 58883, - [SMALL_STATE(1339)] = 58932, - [SMALL_STATE(1340)] = 58981, - [SMALL_STATE(1341)] = 59030, - [SMALL_STATE(1342)] = 59079, - [SMALL_STATE(1343)] = 59128, - [SMALL_STATE(1344)] = 59177, - [SMALL_STATE(1345)] = 59226, - [SMALL_STATE(1346)] = 59271, - [SMALL_STATE(1347)] = 59316, - [SMALL_STATE(1348)] = 59361, - [SMALL_STATE(1349)] = 59406, - [SMALL_STATE(1350)] = 59451, - [SMALL_STATE(1351)] = 59500, - [SMALL_STATE(1352)] = 59545, - [SMALL_STATE(1353)] = 59594, - [SMALL_STATE(1354)] = 59643, - [SMALL_STATE(1355)] = 59692, - [SMALL_STATE(1356)] = 59741, - [SMALL_STATE(1357)] = 59790, - [SMALL_STATE(1358)] = 59839, - [SMALL_STATE(1359)] = 59888, - [SMALL_STATE(1360)] = 59937, - [SMALL_STATE(1361)] = 59982, - [SMALL_STATE(1362)] = 60027, - [SMALL_STATE(1363)] = 60076, - [SMALL_STATE(1364)] = 60125, - [SMALL_STATE(1365)] = 60174, - [SMALL_STATE(1366)] = 60223, - [SMALL_STATE(1367)] = 60272, - [SMALL_STATE(1368)] = 60321, - [SMALL_STATE(1369)] = 60370, - [SMALL_STATE(1370)] = 60419, - [SMALL_STATE(1371)] = 60468, - [SMALL_STATE(1372)] = 60517, - [SMALL_STATE(1373)] = 60566, - [SMALL_STATE(1374)] = 60615, - [SMALL_STATE(1375)] = 60664, - [SMALL_STATE(1376)] = 60713, - [SMALL_STATE(1377)] = 60762, - [SMALL_STATE(1378)] = 60811, - [SMALL_STATE(1379)] = 60860, - [SMALL_STATE(1380)] = 60909, - [SMALL_STATE(1381)] = 60958, - [SMALL_STATE(1382)] = 61007, - [SMALL_STATE(1383)] = 61056, - [SMALL_STATE(1384)] = 61105, - [SMALL_STATE(1385)] = 61154, - [SMALL_STATE(1386)] = 61203, - [SMALL_STATE(1387)] = 61252, - [SMALL_STATE(1388)] = 61301, - [SMALL_STATE(1389)] = 61350, - [SMALL_STATE(1390)] = 61399, - [SMALL_STATE(1391)] = 61448, - [SMALL_STATE(1392)] = 61497, - [SMALL_STATE(1393)] = 61546, - [SMALL_STATE(1394)] = 61595, - [SMALL_STATE(1395)] = 61644, - [SMALL_STATE(1396)] = 61693, - [SMALL_STATE(1397)] = 61742, - [SMALL_STATE(1398)] = 61791, - [SMALL_STATE(1399)] = 61840, - [SMALL_STATE(1400)] = 61889, - [SMALL_STATE(1401)] = 61938, - [SMALL_STATE(1402)] = 61987, - [SMALL_STATE(1403)] = 62036, - [SMALL_STATE(1404)] = 62085, - [SMALL_STATE(1405)] = 62134, - [SMALL_STATE(1406)] = 62183, - [SMALL_STATE(1407)] = 62232, - [SMALL_STATE(1408)] = 62281, - [SMALL_STATE(1409)] = 62330, - [SMALL_STATE(1410)] = 62379, - [SMALL_STATE(1411)] = 62428, - [SMALL_STATE(1412)] = 62477, - [SMALL_STATE(1413)] = 62526, - [SMALL_STATE(1414)] = 62571, - [SMALL_STATE(1415)] = 62620, - [SMALL_STATE(1416)] = 62669, - [SMALL_STATE(1417)] = 62718, - [SMALL_STATE(1418)] = 62767, - [SMALL_STATE(1419)] = 62816, - [SMALL_STATE(1420)] = 62865, - [SMALL_STATE(1421)] = 62914, - [SMALL_STATE(1422)] = 62963, - [SMALL_STATE(1423)] = 63012, - [SMALL_STATE(1424)] = 63057, - [SMALL_STATE(1425)] = 63106, - [SMALL_STATE(1426)] = 63155, - [SMALL_STATE(1427)] = 63204, - [SMALL_STATE(1428)] = 63253, - [SMALL_STATE(1429)] = 63302, - [SMALL_STATE(1430)] = 63351, - [SMALL_STATE(1431)] = 63400, - [SMALL_STATE(1432)] = 63449, - [SMALL_STATE(1433)] = 63498, - [SMALL_STATE(1434)] = 63547, - [SMALL_STATE(1435)] = 63596, - [SMALL_STATE(1436)] = 63645, - [SMALL_STATE(1437)] = 63694, - [SMALL_STATE(1438)] = 63743, - [SMALL_STATE(1439)] = 63792, - [SMALL_STATE(1440)] = 63841, - [SMALL_STATE(1441)] = 63890, - [SMALL_STATE(1442)] = 63939, - [SMALL_STATE(1443)] = 63988, - [SMALL_STATE(1444)] = 64037, - [SMALL_STATE(1445)] = 64086, - [SMALL_STATE(1446)] = 64131, - [SMALL_STATE(1447)] = 64180, - [SMALL_STATE(1448)] = 64229, - [SMALL_STATE(1449)] = 64278, - [SMALL_STATE(1450)] = 64327, - [SMALL_STATE(1451)] = 64376, - [SMALL_STATE(1452)] = 64425, - [SMALL_STATE(1453)] = 64474, - [SMALL_STATE(1454)] = 64523, - [SMALL_STATE(1455)] = 64572, - [SMALL_STATE(1456)] = 64621, - [SMALL_STATE(1457)] = 64670, - [SMALL_STATE(1458)] = 64719, - [SMALL_STATE(1459)] = 64768, - [SMALL_STATE(1460)] = 64817, - [SMALL_STATE(1461)] = 64866, - [SMALL_STATE(1462)] = 64915, - [SMALL_STATE(1463)] = 64964, - [SMALL_STATE(1464)] = 65013, - [SMALL_STATE(1465)] = 65062, - [SMALL_STATE(1466)] = 65111, - [SMALL_STATE(1467)] = 65160, - [SMALL_STATE(1468)] = 65209, - [SMALL_STATE(1469)] = 65258, - [SMALL_STATE(1470)] = 65307, - [SMALL_STATE(1471)] = 65356, - [SMALL_STATE(1472)] = 65401, - [SMALL_STATE(1473)] = 65450, - [SMALL_STATE(1474)] = 65498, - [SMALL_STATE(1475)] = 65542, - [SMALL_STATE(1476)] = 65586, - [SMALL_STATE(1477)] = 65630, - [SMALL_STATE(1478)] = 65674, - [SMALL_STATE(1479)] = 65718, - [SMALL_STATE(1480)] = 65762, - [SMALL_STATE(1481)] = 65806, - [SMALL_STATE(1482)] = 65850, - [SMALL_STATE(1483)] = 65894, - [SMALL_STATE(1484)] = 65938, - [SMALL_STATE(1485)] = 65982, - [SMALL_STATE(1486)] = 66026, - [SMALL_STATE(1487)] = 66070, - [SMALL_STATE(1488)] = 66114, - [SMALL_STATE(1489)] = 66158, - [SMALL_STATE(1490)] = 66202, - [SMALL_STATE(1491)] = 66246, - [SMALL_STATE(1492)] = 66290, - [SMALL_STATE(1493)] = 66334, - [SMALL_STATE(1494)] = 66378, - [SMALL_STATE(1495)] = 66422, - [SMALL_STATE(1496)] = 66466, - [SMALL_STATE(1497)] = 66510, - [SMALL_STATE(1498)] = 66554, - [SMALL_STATE(1499)] = 66598, - [SMALL_STATE(1500)] = 66642, - [SMALL_STATE(1501)] = 66686, - [SMALL_STATE(1502)] = 66730, - [SMALL_STATE(1503)] = 66774, - [SMALL_STATE(1504)] = 66818, - [SMALL_STATE(1505)] = 66862, - [SMALL_STATE(1506)] = 66906, - [SMALL_STATE(1507)] = 66950, - [SMALL_STATE(1508)] = 66994, - [SMALL_STATE(1509)] = 67038, - [SMALL_STATE(1510)] = 67082, - [SMALL_STATE(1511)] = 67126, - [SMALL_STATE(1512)] = 67170, - [SMALL_STATE(1513)] = 67214, - [SMALL_STATE(1514)] = 67258, - [SMALL_STATE(1515)] = 67302, - [SMALL_STATE(1516)] = 67346, - [SMALL_STATE(1517)] = 67390, - [SMALL_STATE(1518)] = 67434, - [SMALL_STATE(1519)] = 67478, - [SMALL_STATE(1520)] = 67522, - [SMALL_STATE(1521)] = 67566, - [SMALL_STATE(1522)] = 67610, - [SMALL_STATE(1523)] = 67654, - [SMALL_STATE(1524)] = 67698, - [SMALL_STATE(1525)] = 67742, - [SMALL_STATE(1526)] = 67786, - [SMALL_STATE(1527)] = 67830, - [SMALL_STATE(1528)] = 67874, - [SMALL_STATE(1529)] = 67918, - [SMALL_STATE(1530)] = 67962, - [SMALL_STATE(1531)] = 68006, - [SMALL_STATE(1532)] = 68050, - [SMALL_STATE(1533)] = 68094, - [SMALL_STATE(1534)] = 68138, - [SMALL_STATE(1535)] = 68182, - [SMALL_STATE(1536)] = 68226, - [SMALL_STATE(1537)] = 68270, - [SMALL_STATE(1538)] = 68314, - [SMALL_STATE(1539)] = 68358, - [SMALL_STATE(1540)] = 68402, - [SMALL_STATE(1541)] = 68446, - [SMALL_STATE(1542)] = 68490, - [SMALL_STATE(1543)] = 68534, - [SMALL_STATE(1544)] = 68578, - [SMALL_STATE(1545)] = 68622, - [SMALL_STATE(1546)] = 68666, - [SMALL_STATE(1547)] = 68710, - [SMALL_STATE(1548)] = 68754, - [SMALL_STATE(1549)] = 68798, - [SMALL_STATE(1550)] = 68842, - [SMALL_STATE(1551)] = 68886, - [SMALL_STATE(1552)] = 68930, - [SMALL_STATE(1553)] = 68974, - [SMALL_STATE(1554)] = 69018, - [SMALL_STATE(1555)] = 69062, - [SMALL_STATE(1556)] = 69106, - [SMALL_STATE(1557)] = 69150, - [SMALL_STATE(1558)] = 69194, - [SMALL_STATE(1559)] = 69238, - [SMALL_STATE(1560)] = 69282, - [SMALL_STATE(1561)] = 69326, - [SMALL_STATE(1562)] = 69370, - [SMALL_STATE(1563)] = 69414, - [SMALL_STATE(1564)] = 69458, - [SMALL_STATE(1565)] = 69502, - [SMALL_STATE(1566)] = 69546, - [SMALL_STATE(1567)] = 69590, - [SMALL_STATE(1568)] = 69634, - [SMALL_STATE(1569)] = 69678, - [SMALL_STATE(1570)] = 69722, - [SMALL_STATE(1571)] = 69766, - [SMALL_STATE(1572)] = 69810, - [SMALL_STATE(1573)] = 69854, - [SMALL_STATE(1574)] = 69898, - [SMALL_STATE(1575)] = 69942, - [SMALL_STATE(1576)] = 69986, - [SMALL_STATE(1577)] = 70030, - [SMALL_STATE(1578)] = 70074, - [SMALL_STATE(1579)] = 70118, - [SMALL_STATE(1580)] = 70162, - [SMALL_STATE(1581)] = 70206, - [SMALL_STATE(1582)] = 70250, - [SMALL_STATE(1583)] = 70294, - [SMALL_STATE(1584)] = 70338, - [SMALL_STATE(1585)] = 70382, - [SMALL_STATE(1586)] = 70426, - [SMALL_STATE(1587)] = 70470, - [SMALL_STATE(1588)] = 70514, - [SMALL_STATE(1589)] = 70558, - [SMALL_STATE(1590)] = 70602, - [SMALL_STATE(1591)] = 70646, - [SMALL_STATE(1592)] = 70690, - [SMALL_STATE(1593)] = 70734, - [SMALL_STATE(1594)] = 70778, - [SMALL_STATE(1595)] = 70822, - [SMALL_STATE(1596)] = 70866, - [SMALL_STATE(1597)] = 70910, - [SMALL_STATE(1598)] = 70954, - [SMALL_STATE(1599)] = 70998, - [SMALL_STATE(1600)] = 71042, - [SMALL_STATE(1601)] = 71086, - [SMALL_STATE(1602)] = 71130, - [SMALL_STATE(1603)] = 71174, - [SMALL_STATE(1604)] = 71218, - [SMALL_STATE(1605)] = 71262, - [SMALL_STATE(1606)] = 71306, - [SMALL_STATE(1607)] = 71350, - [SMALL_STATE(1608)] = 71394, - [SMALL_STATE(1609)] = 71438, - [SMALL_STATE(1610)] = 71482, - [SMALL_STATE(1611)] = 71526, - [SMALL_STATE(1612)] = 71570, - [SMALL_STATE(1613)] = 71614, - [SMALL_STATE(1614)] = 71658, - [SMALL_STATE(1615)] = 71702, - [SMALL_STATE(1616)] = 71746, - [SMALL_STATE(1617)] = 71790, - [SMALL_STATE(1618)] = 71834, - [SMALL_STATE(1619)] = 71878, - [SMALL_STATE(1620)] = 71922, - [SMALL_STATE(1621)] = 71966, - [SMALL_STATE(1622)] = 72010, - [SMALL_STATE(1623)] = 72054, - [SMALL_STATE(1624)] = 72098, - [SMALL_STATE(1625)] = 72142, - [SMALL_STATE(1626)] = 72186, - [SMALL_STATE(1627)] = 72230, - [SMALL_STATE(1628)] = 72274, - [SMALL_STATE(1629)] = 72318, - [SMALL_STATE(1630)] = 72362, - [SMALL_STATE(1631)] = 72406, - [SMALL_STATE(1632)] = 72450, - [SMALL_STATE(1633)] = 72494, - [SMALL_STATE(1634)] = 72538, - [SMALL_STATE(1635)] = 72582, - [SMALL_STATE(1636)] = 72626, - [SMALL_STATE(1637)] = 72670, - [SMALL_STATE(1638)] = 72714, - [SMALL_STATE(1639)] = 72758, - [SMALL_STATE(1640)] = 72802, - [SMALL_STATE(1641)] = 72846, - [SMALL_STATE(1642)] = 72890, - [SMALL_STATE(1643)] = 72934, - [SMALL_STATE(1644)] = 72978, - [SMALL_STATE(1645)] = 73022, - [SMALL_STATE(1646)] = 73066, - [SMALL_STATE(1647)] = 73110, - [SMALL_STATE(1648)] = 73154, - [SMALL_STATE(1649)] = 73198, - [SMALL_STATE(1650)] = 73242, - [SMALL_STATE(1651)] = 73286, - [SMALL_STATE(1652)] = 73330, - [SMALL_STATE(1653)] = 73374, - [SMALL_STATE(1654)] = 73418, - [SMALL_STATE(1655)] = 73462, - [SMALL_STATE(1656)] = 73506, - [SMALL_STATE(1657)] = 73550, - [SMALL_STATE(1658)] = 73594, - [SMALL_STATE(1659)] = 73638, - [SMALL_STATE(1660)] = 73682, - [SMALL_STATE(1661)] = 73726, - [SMALL_STATE(1662)] = 73770, - [SMALL_STATE(1663)] = 73814, - [SMALL_STATE(1664)] = 73858, - [SMALL_STATE(1665)] = 73902, - [SMALL_STATE(1666)] = 73946, - [SMALL_STATE(1667)] = 73990, - [SMALL_STATE(1668)] = 74034, - [SMALL_STATE(1669)] = 74078, - [SMALL_STATE(1670)] = 74122, - [SMALL_STATE(1671)] = 74166, - [SMALL_STATE(1672)] = 74210, - [SMALL_STATE(1673)] = 74254, - [SMALL_STATE(1674)] = 74298, - [SMALL_STATE(1675)] = 74342, - [SMALL_STATE(1676)] = 74386, - [SMALL_STATE(1677)] = 74430, - [SMALL_STATE(1678)] = 74474, - [SMALL_STATE(1679)] = 74518, - [SMALL_STATE(1680)] = 74562, - [SMALL_STATE(1681)] = 74606, - [SMALL_STATE(1682)] = 74650, - [SMALL_STATE(1683)] = 74694, - [SMALL_STATE(1684)] = 74738, - [SMALL_STATE(1685)] = 74782, - [SMALL_STATE(1686)] = 74826, - [SMALL_STATE(1687)] = 74870, - [SMALL_STATE(1688)] = 74914, - [SMALL_STATE(1689)] = 74958, - [SMALL_STATE(1690)] = 75002, - [SMALL_STATE(1691)] = 75046, - [SMALL_STATE(1692)] = 75090, - [SMALL_STATE(1693)] = 75134, - [SMALL_STATE(1694)] = 75178, - [SMALL_STATE(1695)] = 75222, - [SMALL_STATE(1696)] = 75266, - [SMALL_STATE(1697)] = 75310, - [SMALL_STATE(1698)] = 75354, - [SMALL_STATE(1699)] = 75398, - [SMALL_STATE(1700)] = 75442, - [SMALL_STATE(1701)] = 75486, - [SMALL_STATE(1702)] = 75530, - [SMALL_STATE(1703)] = 75574, - [SMALL_STATE(1704)] = 75618, - [SMALL_STATE(1705)] = 75662, - [SMALL_STATE(1706)] = 75706, - [SMALL_STATE(1707)] = 75750, - [SMALL_STATE(1708)] = 75794, - [SMALL_STATE(1709)] = 75838, - [SMALL_STATE(1710)] = 75882, - [SMALL_STATE(1711)] = 75926, - [SMALL_STATE(1712)] = 75970, - [SMALL_STATE(1713)] = 76014, - [SMALL_STATE(1714)] = 76058, - [SMALL_STATE(1715)] = 76102, - [SMALL_STATE(1716)] = 76146, - [SMALL_STATE(1717)] = 76190, - [SMALL_STATE(1718)] = 76234, - [SMALL_STATE(1719)] = 76278, - [SMALL_STATE(1720)] = 76322, - [SMALL_STATE(1721)] = 76366, - [SMALL_STATE(1722)] = 76410, - [SMALL_STATE(1723)] = 76454, - [SMALL_STATE(1724)] = 76498, - [SMALL_STATE(1725)] = 76542, - [SMALL_STATE(1726)] = 76586, - [SMALL_STATE(1727)] = 76630, - [SMALL_STATE(1728)] = 76674, - [SMALL_STATE(1729)] = 76718, - [SMALL_STATE(1730)] = 76762, - [SMALL_STATE(1731)] = 76806, - [SMALL_STATE(1732)] = 76850, - [SMALL_STATE(1733)] = 76894, - [SMALL_STATE(1734)] = 76938, - [SMALL_STATE(1735)] = 76982, - [SMALL_STATE(1736)] = 77026, - [SMALL_STATE(1737)] = 77070, - [SMALL_STATE(1738)] = 77114, - [SMALL_STATE(1739)] = 77162, - [SMALL_STATE(1740)] = 77210, - [SMALL_STATE(1741)] = 77258, - [SMALL_STATE(1742)] = 77306, - [SMALL_STATE(1743)] = 77354, - [SMALL_STATE(1744)] = 77398, - [SMALL_STATE(1745)] = 77442, - [SMALL_STATE(1746)] = 77486, - [SMALL_STATE(1747)] = 77534, - [SMALL_STATE(1748)] = 77582, - [SMALL_STATE(1749)] = 77630, - [SMALL_STATE(1750)] = 77678, - [SMALL_STATE(1751)] = 77726, - [SMALL_STATE(1752)] = 77774, - [SMALL_STATE(1753)] = 77822, - [SMALL_STATE(1754)] = 77870, - [SMALL_STATE(1755)] = 77918, - [SMALL_STATE(1756)] = 77966, - [SMALL_STATE(1757)] = 78014, - [SMALL_STATE(1758)] = 78062, - [SMALL_STATE(1759)] = 78110, - [SMALL_STATE(1760)] = 78154, - [SMALL_STATE(1761)] = 78198, - [SMALL_STATE(1762)] = 78242, - [SMALL_STATE(1763)] = 78286, - [SMALL_STATE(1764)] = 78334, - [SMALL_STATE(1765)] = 78382, - [SMALL_STATE(1766)] = 78430, - [SMALL_STATE(1767)] = 78478, - [SMALL_STATE(1768)] = 78526, - [SMALL_STATE(1769)] = 78574, - [SMALL_STATE(1770)] = 78618, - [SMALL_STATE(1771)] = 78662, - [SMALL_STATE(1772)] = 78706, - [SMALL_STATE(1773)] = 78750, - [SMALL_STATE(1774)] = 78794, - [SMALL_STATE(1775)] = 78838, - [SMALL_STATE(1776)] = 78882, - [SMALL_STATE(1777)] = 78926, - [SMALL_STATE(1778)] = 78970, - [SMALL_STATE(1779)] = 79014, - [SMALL_STATE(1780)] = 79058, - [SMALL_STATE(1781)] = 79102, - [SMALL_STATE(1782)] = 79146, - [SMALL_STATE(1783)] = 79190, - [SMALL_STATE(1784)] = 79234, - [SMALL_STATE(1785)] = 79278, - [SMALL_STATE(1786)] = 79322, - [SMALL_STATE(1787)] = 79368, - [SMALL_STATE(1788)] = 79412, - [SMALL_STATE(1789)] = 79456, - [SMALL_STATE(1790)] = 79500, - [SMALL_STATE(1791)] = 79544, - [SMALL_STATE(1792)] = 79588, - [SMALL_STATE(1793)] = 79632, - [SMALL_STATE(1794)] = 79676, - [SMALL_STATE(1795)] = 79720, - [SMALL_STATE(1796)] = 79764, - [SMALL_STATE(1797)] = 79808, - [SMALL_STATE(1798)] = 79852, - [SMALL_STATE(1799)] = 79896, - [SMALL_STATE(1800)] = 79940, - [SMALL_STATE(1801)] = 79984, - [SMALL_STATE(1802)] = 80028, - [SMALL_STATE(1803)] = 80072, - [SMALL_STATE(1804)] = 80116, - [SMALL_STATE(1805)] = 80160, - [SMALL_STATE(1806)] = 80204, - [SMALL_STATE(1807)] = 80248, - [SMALL_STATE(1808)] = 80292, - [SMALL_STATE(1809)] = 80336, - [SMALL_STATE(1810)] = 80380, - [SMALL_STATE(1811)] = 80424, - [SMALL_STATE(1812)] = 80468, - [SMALL_STATE(1813)] = 80512, - [SMALL_STATE(1814)] = 80556, - [SMALL_STATE(1815)] = 80600, - [SMALL_STATE(1816)] = 80644, - [SMALL_STATE(1817)] = 80688, - [SMALL_STATE(1818)] = 80732, - [SMALL_STATE(1819)] = 80776, - [SMALL_STATE(1820)] = 80820, - [SMALL_STATE(1821)] = 80864, - [SMALL_STATE(1822)] = 80908, - [SMALL_STATE(1823)] = 80952, - [SMALL_STATE(1824)] = 80996, - [SMALL_STATE(1825)] = 81040, - [SMALL_STATE(1826)] = 81084, - [SMALL_STATE(1827)] = 81128, - [SMALL_STATE(1828)] = 81172, - [SMALL_STATE(1829)] = 81216, - [SMALL_STATE(1830)] = 81260, - [SMALL_STATE(1831)] = 81304, - [SMALL_STATE(1832)] = 81348, - [SMALL_STATE(1833)] = 81392, - [SMALL_STATE(1834)] = 81436, - [SMALL_STATE(1835)] = 81480, - [SMALL_STATE(1836)] = 81524, - [SMALL_STATE(1837)] = 81568, - [SMALL_STATE(1838)] = 81612, - [SMALL_STATE(1839)] = 81656, - [SMALL_STATE(1840)] = 81700, - [SMALL_STATE(1841)] = 81744, - [SMALL_STATE(1842)] = 81788, - [SMALL_STATE(1843)] = 81832, - [SMALL_STATE(1844)] = 81876, - [SMALL_STATE(1845)] = 81920, - [SMALL_STATE(1846)] = 81964, - [SMALL_STATE(1847)] = 82008, - [SMALL_STATE(1848)] = 82052, - [SMALL_STATE(1849)] = 82096, - [SMALL_STATE(1850)] = 82140, - [SMALL_STATE(1851)] = 82184, - [SMALL_STATE(1852)] = 82228, - [SMALL_STATE(1853)] = 82272, - [SMALL_STATE(1854)] = 82316, - [SMALL_STATE(1855)] = 82360, - [SMALL_STATE(1856)] = 82404, - [SMALL_STATE(1857)] = 82448, - [SMALL_STATE(1858)] = 82492, - [SMALL_STATE(1859)] = 82536, - [SMALL_STATE(1860)] = 82580, - [SMALL_STATE(1861)] = 82624, - [SMALL_STATE(1862)] = 82668, - [SMALL_STATE(1863)] = 82712, - [SMALL_STATE(1864)] = 82756, - [SMALL_STATE(1865)] = 82800, - [SMALL_STATE(1866)] = 82844, - [SMALL_STATE(1867)] = 82888, - [SMALL_STATE(1868)] = 82932, - [SMALL_STATE(1869)] = 82976, - [SMALL_STATE(1870)] = 83020, - [SMALL_STATE(1871)] = 83064, - [SMALL_STATE(1872)] = 83108, - [SMALL_STATE(1873)] = 83152, - [SMALL_STATE(1874)] = 83196, - [SMALL_STATE(1875)] = 83240, - [SMALL_STATE(1876)] = 83284, - [SMALL_STATE(1877)] = 83328, - [SMALL_STATE(1878)] = 83372, - [SMALL_STATE(1879)] = 83416, - [SMALL_STATE(1880)] = 83460, - [SMALL_STATE(1881)] = 83504, - [SMALL_STATE(1882)] = 83548, - [SMALL_STATE(1883)] = 83592, - [SMALL_STATE(1884)] = 83636, - [SMALL_STATE(1885)] = 83680, - [SMALL_STATE(1886)] = 83724, - [SMALL_STATE(1887)] = 83768, - [SMALL_STATE(1888)] = 83812, - [SMALL_STATE(1889)] = 83856, - [SMALL_STATE(1890)] = 83900, - [SMALL_STATE(1891)] = 83944, - [SMALL_STATE(1892)] = 83988, - [SMALL_STATE(1893)] = 84032, - [SMALL_STATE(1894)] = 84076, - [SMALL_STATE(1895)] = 84120, - [SMALL_STATE(1896)] = 84164, - [SMALL_STATE(1897)] = 84208, - [SMALL_STATE(1898)] = 84252, - [SMALL_STATE(1899)] = 84296, - [SMALL_STATE(1900)] = 84340, - [SMALL_STATE(1901)] = 84384, - [SMALL_STATE(1902)] = 84428, - [SMALL_STATE(1903)] = 84472, - [SMALL_STATE(1904)] = 84516, - [SMALL_STATE(1905)] = 84560, - [SMALL_STATE(1906)] = 84604, - [SMALL_STATE(1907)] = 84648, - [SMALL_STATE(1908)] = 84692, - [SMALL_STATE(1909)] = 84736, - [SMALL_STATE(1910)] = 84780, - [SMALL_STATE(1911)] = 84824, - [SMALL_STATE(1912)] = 84868, - [SMALL_STATE(1913)] = 84912, - [SMALL_STATE(1914)] = 84956, - [SMALL_STATE(1915)] = 85000, - [SMALL_STATE(1916)] = 85044, - [SMALL_STATE(1917)] = 85088, - [SMALL_STATE(1918)] = 85132, - [SMALL_STATE(1919)] = 85176, - [SMALL_STATE(1920)] = 85220, - [SMALL_STATE(1921)] = 85264, - [SMALL_STATE(1922)] = 85308, - [SMALL_STATE(1923)] = 85352, - [SMALL_STATE(1924)] = 85396, - [SMALL_STATE(1925)] = 85440, - [SMALL_STATE(1926)] = 85484, - [SMALL_STATE(1927)] = 85528, - [SMALL_STATE(1928)] = 85572, - [SMALL_STATE(1929)] = 85616, - [SMALL_STATE(1930)] = 85660, - [SMALL_STATE(1931)] = 85704, - [SMALL_STATE(1932)] = 85748, - [SMALL_STATE(1933)] = 85792, - [SMALL_STATE(1934)] = 85836, - [SMALL_STATE(1935)] = 85880, - [SMALL_STATE(1936)] = 85924, - [SMALL_STATE(1937)] = 85968, - [SMALL_STATE(1938)] = 86012, - [SMALL_STATE(1939)] = 86056, - [SMALL_STATE(1940)] = 86100, - [SMALL_STATE(1941)] = 86144, - [SMALL_STATE(1942)] = 86188, - [SMALL_STATE(1943)] = 86232, - [SMALL_STATE(1944)] = 86276, - [SMALL_STATE(1945)] = 86320, - [SMALL_STATE(1946)] = 86364, - [SMALL_STATE(1947)] = 86408, - [SMALL_STATE(1948)] = 86452, - [SMALL_STATE(1949)] = 86496, - [SMALL_STATE(1950)] = 86540, - [SMALL_STATE(1951)] = 86584, - [SMALL_STATE(1952)] = 86628, - [SMALL_STATE(1953)] = 86672, - [SMALL_STATE(1954)] = 86716, - [SMALL_STATE(1955)] = 86760, - [SMALL_STATE(1956)] = 86804, - [SMALL_STATE(1957)] = 86848, - [SMALL_STATE(1958)] = 86892, - [SMALL_STATE(1959)] = 86936, - [SMALL_STATE(1960)] = 86980, - [SMALL_STATE(1961)] = 87024, - [SMALL_STATE(1962)] = 87068, - [SMALL_STATE(1963)] = 87112, - [SMALL_STATE(1964)] = 87156, - [SMALL_STATE(1965)] = 87200, - [SMALL_STATE(1966)] = 87244, - [SMALL_STATE(1967)] = 87288, - [SMALL_STATE(1968)] = 87332, - [SMALL_STATE(1969)] = 87376, - [SMALL_STATE(1970)] = 87420, - [SMALL_STATE(1971)] = 87464, - [SMALL_STATE(1972)] = 87508, - [SMALL_STATE(1973)] = 87552, - [SMALL_STATE(1974)] = 87596, - [SMALL_STATE(1975)] = 87640, - [SMALL_STATE(1976)] = 87684, - [SMALL_STATE(1977)] = 87728, - [SMALL_STATE(1978)] = 87772, - [SMALL_STATE(1979)] = 87816, - [SMALL_STATE(1980)] = 87860, - [SMALL_STATE(1981)] = 87904, - [SMALL_STATE(1982)] = 87948, - [SMALL_STATE(1983)] = 87992, - [SMALL_STATE(1984)] = 88036, - [SMALL_STATE(1985)] = 88080, - [SMALL_STATE(1986)] = 88124, - [SMALL_STATE(1987)] = 88168, - [SMALL_STATE(1988)] = 88212, - [SMALL_STATE(1989)] = 88256, - [SMALL_STATE(1990)] = 88300, - [SMALL_STATE(1991)] = 88344, - [SMALL_STATE(1992)] = 88388, - [SMALL_STATE(1993)] = 88432, - [SMALL_STATE(1994)] = 88476, - [SMALL_STATE(1995)] = 88520, - [SMALL_STATE(1996)] = 88564, - [SMALL_STATE(1997)] = 88608, - [SMALL_STATE(1998)] = 88652, - [SMALL_STATE(1999)] = 88696, - [SMALL_STATE(2000)] = 88740, - [SMALL_STATE(2001)] = 88784, - [SMALL_STATE(2002)] = 88828, - [SMALL_STATE(2003)] = 88872, - [SMALL_STATE(2004)] = 88916, - [SMALL_STATE(2005)] = 88960, - [SMALL_STATE(2006)] = 89004, - [SMALL_STATE(2007)] = 89048, - [SMALL_STATE(2008)] = 89092, - [SMALL_STATE(2009)] = 89136, - [SMALL_STATE(2010)] = 89180, - [SMALL_STATE(2011)] = 89224, - [SMALL_STATE(2012)] = 89268, - [SMALL_STATE(2013)] = 89312, - [SMALL_STATE(2014)] = 89356, - [SMALL_STATE(2015)] = 89400, - [SMALL_STATE(2016)] = 89444, - [SMALL_STATE(2017)] = 89488, - [SMALL_STATE(2018)] = 89532, - [SMALL_STATE(2019)] = 89576, - [SMALL_STATE(2020)] = 89620, - [SMALL_STATE(2021)] = 89664, - [SMALL_STATE(2022)] = 89708, - [SMALL_STATE(2023)] = 89752, - [SMALL_STATE(2024)] = 89796, - [SMALL_STATE(2025)] = 89840, - [SMALL_STATE(2026)] = 89884, - [SMALL_STATE(2027)] = 89928, - [SMALL_STATE(2028)] = 89972, - [SMALL_STATE(2029)] = 90016, - [SMALL_STATE(2030)] = 90060, - [SMALL_STATE(2031)] = 90104, - [SMALL_STATE(2032)] = 90148, - [SMALL_STATE(2033)] = 90192, - [SMALL_STATE(2034)] = 90236, - [SMALL_STATE(2035)] = 90280, - [SMALL_STATE(2036)] = 90324, - [SMALL_STATE(2037)] = 90368, - [SMALL_STATE(2038)] = 90412, - [SMALL_STATE(2039)] = 90456, - [SMALL_STATE(2040)] = 90500, - [SMALL_STATE(2041)] = 90544, - [SMALL_STATE(2042)] = 90588, - [SMALL_STATE(2043)] = 90632, - [SMALL_STATE(2044)] = 90676, - [SMALL_STATE(2045)] = 90720, - [SMALL_STATE(2046)] = 90764, - [SMALL_STATE(2047)] = 90808, - [SMALL_STATE(2048)] = 90852, - [SMALL_STATE(2049)] = 90896, - [SMALL_STATE(2050)] = 90940, - [SMALL_STATE(2051)] = 90984, - [SMALL_STATE(2052)] = 91028, - [SMALL_STATE(2053)] = 91072, - [SMALL_STATE(2054)] = 91116, - [SMALL_STATE(2055)] = 91160, - [SMALL_STATE(2056)] = 91204, - [SMALL_STATE(2057)] = 91248, - [SMALL_STATE(2058)] = 91292, - [SMALL_STATE(2059)] = 91336, - [SMALL_STATE(2060)] = 91380, - [SMALL_STATE(2061)] = 91424, - [SMALL_STATE(2062)] = 91468, - [SMALL_STATE(2063)] = 91512, - [SMALL_STATE(2064)] = 91556, - [SMALL_STATE(2065)] = 91600, - [SMALL_STATE(2066)] = 91644, - [SMALL_STATE(2067)] = 91688, - [SMALL_STATE(2068)] = 91732, - [SMALL_STATE(2069)] = 91776, - [SMALL_STATE(2070)] = 91820, - [SMALL_STATE(2071)] = 91864, - [SMALL_STATE(2072)] = 91908, - [SMALL_STATE(2073)] = 91952, - [SMALL_STATE(2074)] = 91996, - [SMALL_STATE(2075)] = 92040, - [SMALL_STATE(2076)] = 92084, - [SMALL_STATE(2077)] = 92128, - [SMALL_STATE(2078)] = 92172, - [SMALL_STATE(2079)] = 92216, - [SMALL_STATE(2080)] = 92260, - [SMALL_STATE(2081)] = 92304, - [SMALL_STATE(2082)] = 92348, - [SMALL_STATE(2083)] = 92392, - [SMALL_STATE(2084)] = 92436, - [SMALL_STATE(2085)] = 92480, - [SMALL_STATE(2086)] = 92524, - [SMALL_STATE(2087)] = 92568, - [SMALL_STATE(2088)] = 92612, - [SMALL_STATE(2089)] = 92656, - [SMALL_STATE(2090)] = 92700, - [SMALL_STATE(2091)] = 92744, - [SMALL_STATE(2092)] = 92788, - [SMALL_STATE(2093)] = 92832, - [SMALL_STATE(2094)] = 92876, - [SMALL_STATE(2095)] = 92920, - [SMALL_STATE(2096)] = 92964, - [SMALL_STATE(2097)] = 93008, - [SMALL_STATE(2098)] = 93052, - [SMALL_STATE(2099)] = 93096, - [SMALL_STATE(2100)] = 93140, - [SMALL_STATE(2101)] = 93184, - [SMALL_STATE(2102)] = 93228, - [SMALL_STATE(2103)] = 93272, - [SMALL_STATE(2104)] = 93316, - [SMALL_STATE(2105)] = 93360, - [SMALL_STATE(2106)] = 93404, - [SMALL_STATE(2107)] = 93448, - [SMALL_STATE(2108)] = 93492, - [SMALL_STATE(2109)] = 93536, - [SMALL_STATE(2110)] = 93580, - [SMALL_STATE(2111)] = 93624, - [SMALL_STATE(2112)] = 93668, - [SMALL_STATE(2113)] = 93712, - [SMALL_STATE(2114)] = 93756, - [SMALL_STATE(2115)] = 93800, - [SMALL_STATE(2116)] = 93844, - [SMALL_STATE(2117)] = 93888, - [SMALL_STATE(2118)] = 93932, - [SMALL_STATE(2119)] = 93976, - [SMALL_STATE(2120)] = 94020, - [SMALL_STATE(2121)] = 94064, - [SMALL_STATE(2122)] = 94108, - [SMALL_STATE(2123)] = 94152, - [SMALL_STATE(2124)] = 94196, - [SMALL_STATE(2125)] = 94240, - [SMALL_STATE(2126)] = 94284, - [SMALL_STATE(2127)] = 94328, - [SMALL_STATE(2128)] = 94372, - [SMALL_STATE(2129)] = 94416, - [SMALL_STATE(2130)] = 94460, - [SMALL_STATE(2131)] = 94504, - [SMALL_STATE(2132)] = 94548, - [SMALL_STATE(2133)] = 94592, - [SMALL_STATE(2134)] = 94636, - [SMALL_STATE(2135)] = 94680, - [SMALL_STATE(2136)] = 94724, - [SMALL_STATE(2137)] = 94768, - [SMALL_STATE(2138)] = 94812, - [SMALL_STATE(2139)] = 94856, - [SMALL_STATE(2140)] = 94900, - [SMALL_STATE(2141)] = 94944, - [SMALL_STATE(2142)] = 94988, - [SMALL_STATE(2143)] = 95032, - [SMALL_STATE(2144)] = 95076, - [SMALL_STATE(2145)] = 95120, - [SMALL_STATE(2146)] = 95164, - [SMALL_STATE(2147)] = 95208, - [SMALL_STATE(2148)] = 95252, - [SMALL_STATE(2149)] = 95296, - [SMALL_STATE(2150)] = 95340, - [SMALL_STATE(2151)] = 95384, - [SMALL_STATE(2152)] = 95428, - [SMALL_STATE(2153)] = 95472, - [SMALL_STATE(2154)] = 95516, - [SMALL_STATE(2155)] = 95560, - [SMALL_STATE(2156)] = 95604, - [SMALL_STATE(2157)] = 95648, - [SMALL_STATE(2158)] = 95692, - [SMALL_STATE(2159)] = 95736, - [SMALL_STATE(2160)] = 95780, - [SMALL_STATE(2161)] = 95824, - [SMALL_STATE(2162)] = 95868, - [SMALL_STATE(2163)] = 95912, - [SMALL_STATE(2164)] = 95956, - [SMALL_STATE(2165)] = 96000, - [SMALL_STATE(2166)] = 96044, - [SMALL_STATE(2167)] = 96088, - [SMALL_STATE(2168)] = 96132, - [SMALL_STATE(2169)] = 96176, - [SMALL_STATE(2170)] = 96220, - [SMALL_STATE(2171)] = 96264, - [SMALL_STATE(2172)] = 96308, - [SMALL_STATE(2173)] = 96352, - [SMALL_STATE(2174)] = 96396, - [SMALL_STATE(2175)] = 96440, - [SMALL_STATE(2176)] = 96484, - [SMALL_STATE(2177)] = 96528, - [SMALL_STATE(2178)] = 96572, - [SMALL_STATE(2179)] = 96616, - [SMALL_STATE(2180)] = 96660, - [SMALL_STATE(2181)] = 96704, - [SMALL_STATE(2182)] = 96748, - [SMALL_STATE(2183)] = 96792, - [SMALL_STATE(2184)] = 96836, - [SMALL_STATE(2185)] = 96880, - [SMALL_STATE(2186)] = 96924, - [SMALL_STATE(2187)] = 96968, - [SMALL_STATE(2188)] = 97012, - [SMALL_STATE(2189)] = 97056, - [SMALL_STATE(2190)] = 97100, - [SMALL_STATE(2191)] = 97144, - [SMALL_STATE(2192)] = 97188, - [SMALL_STATE(2193)] = 97232, - [SMALL_STATE(2194)] = 97276, - [SMALL_STATE(2195)] = 97320, - [SMALL_STATE(2196)] = 97364, - [SMALL_STATE(2197)] = 97408, - [SMALL_STATE(2198)] = 97452, - [SMALL_STATE(2199)] = 97496, - [SMALL_STATE(2200)] = 97540, - [SMALL_STATE(2201)] = 97584, - [SMALL_STATE(2202)] = 97628, - [SMALL_STATE(2203)] = 97672, - [SMALL_STATE(2204)] = 97716, - [SMALL_STATE(2205)] = 97760, - [SMALL_STATE(2206)] = 97804, - [SMALL_STATE(2207)] = 97848, - [SMALL_STATE(2208)] = 97892, - [SMALL_STATE(2209)] = 97936, - [SMALL_STATE(2210)] = 97980, - [SMALL_STATE(2211)] = 98024, - [SMALL_STATE(2212)] = 98068, - [SMALL_STATE(2213)] = 98112, - [SMALL_STATE(2214)] = 98156, - [SMALL_STATE(2215)] = 98200, - [SMALL_STATE(2216)] = 98244, - [SMALL_STATE(2217)] = 98288, - [SMALL_STATE(2218)] = 98332, - [SMALL_STATE(2219)] = 98376, - [SMALL_STATE(2220)] = 98420, - [SMALL_STATE(2221)] = 98464, - [SMALL_STATE(2222)] = 98508, - [SMALL_STATE(2223)] = 98552, - [SMALL_STATE(2224)] = 98596, - [SMALL_STATE(2225)] = 98640, - [SMALL_STATE(2226)] = 98684, - [SMALL_STATE(2227)] = 98728, - [SMALL_STATE(2228)] = 98772, - [SMALL_STATE(2229)] = 98816, - [SMALL_STATE(2230)] = 98860, - [SMALL_STATE(2231)] = 98904, - [SMALL_STATE(2232)] = 98947, - [SMALL_STATE(2233)] = 98990, - [SMALL_STATE(2234)] = 99033, - [SMALL_STATE(2235)] = 99076, - [SMALL_STATE(2236)] = 99119, - [SMALL_STATE(2237)] = 99162, - [SMALL_STATE(2238)] = 99205, - [SMALL_STATE(2239)] = 99248, - [SMALL_STATE(2240)] = 99291, - [SMALL_STATE(2241)] = 99334, - [SMALL_STATE(2242)] = 99377, - [SMALL_STATE(2243)] = 99420, - [SMALL_STATE(2244)] = 99463, - [SMALL_STATE(2245)] = 99506, - [SMALL_STATE(2246)] = 99549, - [SMALL_STATE(2247)] = 99594, - [SMALL_STATE(2248)] = 99637, - [SMALL_STATE(2249)] = 99680, - [SMALL_STATE(2250)] = 99723, - [SMALL_STATE(2251)] = 99766, - [SMALL_STATE(2252)] = 99809, - [SMALL_STATE(2253)] = 99852, - [SMALL_STATE(2254)] = 99895, - [SMALL_STATE(2255)] = 99938, - [SMALL_STATE(2256)] = 99981, - [SMALL_STATE(2257)] = 100024, - [SMALL_STATE(2258)] = 100067, - [SMALL_STATE(2259)] = 100110, - [SMALL_STATE(2260)] = 100153, - [SMALL_STATE(2261)] = 100196, - [SMALL_STATE(2262)] = 100239, - [SMALL_STATE(2263)] = 100282, - [SMALL_STATE(2264)] = 100325, - [SMALL_STATE(2265)] = 100368, - [SMALL_STATE(2266)] = 100411, - [SMALL_STATE(2267)] = 100454, - [SMALL_STATE(2268)] = 100497, - [SMALL_STATE(2269)] = 100540, - [SMALL_STATE(2270)] = 100583, - [SMALL_STATE(2271)] = 100626, - [SMALL_STATE(2272)] = 100669, - [SMALL_STATE(2273)] = 100712, - [SMALL_STATE(2274)] = 100755, - [SMALL_STATE(2275)] = 100798, - [SMALL_STATE(2276)] = 100841, - [SMALL_STATE(2277)] = 100884, - [SMALL_STATE(2278)] = 100927, - [SMALL_STATE(2279)] = 100970, - [SMALL_STATE(2280)] = 101013, - [SMALL_STATE(2281)] = 101056, - [SMALL_STATE(2282)] = 101099, - [SMALL_STATE(2283)] = 101142, - [SMALL_STATE(2284)] = 101185, - [SMALL_STATE(2285)] = 101228, - [SMALL_STATE(2286)] = 101271, - [SMALL_STATE(2287)] = 101314, - [SMALL_STATE(2288)] = 101357, - [SMALL_STATE(2289)] = 101400, - [SMALL_STATE(2290)] = 101443, - [SMALL_STATE(2291)] = 101486, - [SMALL_STATE(2292)] = 101529, - [SMALL_STATE(2293)] = 101572, - [SMALL_STATE(2294)] = 101615, - [SMALL_STATE(2295)] = 101658, - [SMALL_STATE(2296)] = 101701, - [SMALL_STATE(2297)] = 101744, - [SMALL_STATE(2298)] = 101787, - [SMALL_STATE(2299)] = 101829, - [SMALL_STATE(2300)] = 101881, - [SMALL_STATE(2301)] = 101933, - [SMALL_STATE(2302)] = 101985, - [SMALL_STATE(2303)] = 102037, - [SMALL_STATE(2304)] = 102089, - [SMALL_STATE(2305)] = 102134, - [SMALL_STATE(2306)] = 102179, - [SMALL_STATE(2307)] = 102223, - [SMALL_STATE(2308)] = 102267, - [SMALL_STATE(2309)] = 102311, - [SMALL_STATE(2310)] = 102355, - [SMALL_STATE(2311)] = 102399, - [SMALL_STATE(2312)] = 102443, - [SMALL_STATE(2313)] = 102487, - [SMALL_STATE(2314)] = 102531, - [SMALL_STATE(2315)] = 102575, - [SMALL_STATE(2316)] = 102619, - [SMALL_STATE(2317)] = 102663, - [SMALL_STATE(2318)] = 102707, - [SMALL_STATE(2319)] = 102751, - [SMALL_STATE(2320)] = 102795, - [SMALL_STATE(2321)] = 102839, - [SMALL_STATE(2322)] = 102883, - [SMALL_STATE(2323)] = 102927, - [SMALL_STATE(2324)] = 102971, - [SMALL_STATE(2325)] = 103015, - [SMALL_STATE(2326)] = 103059, - [SMALL_STATE(2327)] = 103103, - [SMALL_STATE(2328)] = 103147, - [SMALL_STATE(2329)] = 103191, - [SMALL_STATE(2330)] = 103235, - [SMALL_STATE(2331)] = 103279, - [SMALL_STATE(2332)] = 103323, - [SMALL_STATE(2333)] = 103367, - [SMALL_STATE(2334)] = 103411, - [SMALL_STATE(2335)] = 103455, - [SMALL_STATE(2336)] = 103499, - [SMALL_STATE(2337)] = 103543, - [SMALL_STATE(2338)] = 103587, - [SMALL_STATE(2339)] = 103631, - [SMALL_STATE(2340)] = 103675, - [SMALL_STATE(2341)] = 103719, - [SMALL_STATE(2342)] = 103763, - [SMALL_STATE(2343)] = 103807, - [SMALL_STATE(2344)] = 103851, - [SMALL_STATE(2345)] = 103895, - [SMALL_STATE(2346)] = 103939, - [SMALL_STATE(2347)] = 103983, - [SMALL_STATE(2348)] = 104027, - [SMALL_STATE(2349)] = 104071, - [SMALL_STATE(2350)] = 104115, - [SMALL_STATE(2351)] = 104159, - [SMALL_STATE(2352)] = 104203, - [SMALL_STATE(2353)] = 104247, - [SMALL_STATE(2354)] = 104291, - [SMALL_STATE(2355)] = 104335, - [SMALL_STATE(2356)] = 104379, - [SMALL_STATE(2357)] = 104423, - [SMALL_STATE(2358)] = 104467, - [SMALL_STATE(2359)] = 104511, - [SMALL_STATE(2360)] = 104555, - [SMALL_STATE(2361)] = 104599, - [SMALL_STATE(2362)] = 104643, - [SMALL_STATE(2363)] = 104687, - [SMALL_STATE(2364)] = 104731, - [SMALL_STATE(2365)] = 104775, - [SMALL_STATE(2366)] = 104819, - [SMALL_STATE(2367)] = 104863, - [SMALL_STATE(2368)] = 104907, - [SMALL_STATE(2369)] = 104951, - [SMALL_STATE(2370)] = 104995, - [SMALL_STATE(2371)] = 105039, - [SMALL_STATE(2372)] = 105083, - [SMALL_STATE(2373)] = 105127, - [SMALL_STATE(2374)] = 105171, - [SMALL_STATE(2375)] = 105215, - [SMALL_STATE(2376)] = 105259, - [SMALL_STATE(2377)] = 105303, - [SMALL_STATE(2378)] = 105347, - [SMALL_STATE(2379)] = 105390, - [SMALL_STATE(2380)] = 105433, - [SMALL_STATE(2381)] = 105476, - [SMALL_STATE(2382)] = 105519, - [SMALL_STATE(2383)] = 105562, - [SMALL_STATE(2384)] = 105605, - [SMALL_STATE(2385)] = 105648, - [SMALL_STATE(2386)] = 105691, - [SMALL_STATE(2387)] = 105734, - [SMALL_STATE(2388)] = 105777, - [SMALL_STATE(2389)] = 105820, - [SMALL_STATE(2390)] = 105863, - [SMALL_STATE(2391)] = 105906, - [SMALL_STATE(2392)] = 105949, - [SMALL_STATE(2393)] = 105992, - [SMALL_STATE(2394)] = 106035, - [SMALL_STATE(2395)] = 106078, - [SMALL_STATE(2396)] = 106115, - [SMALL_STATE(2397)] = 106152, - [SMALL_STATE(2398)] = 106189, - [SMALL_STATE(2399)] = 106226, - [SMALL_STATE(2400)] = 106263, - [SMALL_STATE(2401)] = 106300, - [SMALL_STATE(2402)] = 106337, - [SMALL_STATE(2403)] = 106374, - [SMALL_STATE(2404)] = 106411, - [SMALL_STATE(2405)] = 106448, - [SMALL_STATE(2406)] = 106485, - [SMALL_STATE(2407)] = 106522, - [SMALL_STATE(2408)] = 106559, - [SMALL_STATE(2409)] = 106596, - [SMALL_STATE(2410)] = 106633, - [SMALL_STATE(2411)] = 106668, - [SMALL_STATE(2412)] = 106705, - [SMALL_STATE(2413)] = 106742, - [SMALL_STATE(2414)] = 106777, - [SMALL_STATE(2415)] = 106812, - [SMALL_STATE(2416)] = 106838, - [SMALL_STATE(2417)] = 106864, - [SMALL_STATE(2418)] = 106890, - [SMALL_STATE(2419)] = 106916, - [SMALL_STATE(2420)] = 106942, - [SMALL_STATE(2421)] = 106966, - [SMALL_STATE(2422)] = 106992, - [SMALL_STATE(2423)] = 107018, - [SMALL_STATE(2424)] = 107044, - [SMALL_STATE(2425)] = 107070, - [SMALL_STATE(2426)] = 107096, - [SMALL_STATE(2427)] = 107122, - [SMALL_STATE(2428)] = 107148, - [SMALL_STATE(2429)] = 107174, - [SMALL_STATE(2430)] = 107200, - [SMALL_STATE(2431)] = 107226, - [SMALL_STATE(2432)] = 107252, - [SMALL_STATE(2433)] = 107278, - [SMALL_STATE(2434)] = 107304, - [SMALL_STATE(2435)] = 107330, - [SMALL_STATE(2436)] = 107356, - [SMALL_STATE(2437)] = 107380, - [SMALL_STATE(2438)] = 107406, - [SMALL_STATE(2439)] = 107430, - [SMALL_STATE(2440)] = 107456, - [SMALL_STATE(2441)] = 107482, - [SMALL_STATE(2442)] = 107508, - [SMALL_STATE(2443)] = 107534, - [SMALL_STATE(2444)] = 107560, - [SMALL_STATE(2445)] = 107576, - [SMALL_STATE(2446)] = 107602, - [SMALL_STATE(2447)] = 107628, - [SMALL_STATE(2448)] = 107654, - [SMALL_STATE(2449)] = 107680, - [SMALL_STATE(2450)] = 107706, - [SMALL_STATE(2451)] = 107732, - [SMALL_STATE(2452)] = 107758, - [SMALL_STATE(2453)] = 107784, - [SMALL_STATE(2454)] = 107810, - [SMALL_STATE(2455)] = 107836, - [SMALL_STATE(2456)] = 107860, - [SMALL_STATE(2457)] = 107883, - [SMALL_STATE(2458)] = 107906, - [SMALL_STATE(2459)] = 107929, - [SMALL_STATE(2460)] = 107952, - [SMALL_STATE(2461)] = 107969, - [SMALL_STATE(2462)] = 107990, - [SMALL_STATE(2463)] = 108013, - [SMALL_STATE(2464)] = 108026, - [SMALL_STATE(2465)] = 108049, - [SMALL_STATE(2466)] = 108066, - [SMALL_STATE(2467)] = 108089, - [SMALL_STATE(2468)] = 108112, - [SMALL_STATE(2469)] = 108137, - [SMALL_STATE(2470)] = 108158, - [SMALL_STATE(2471)] = 108179, - [SMALL_STATE(2472)] = 108194, - [SMALL_STATE(2473)] = 108217, - [SMALL_STATE(2474)] = 108238, - [SMALL_STATE(2475)] = 108261, - [SMALL_STATE(2476)] = 108284, - [SMALL_STATE(2477)] = 108309, - [SMALL_STATE(2478)] = 108334, - [SMALL_STATE(2479)] = 108357, - [SMALL_STATE(2480)] = 108378, - [SMALL_STATE(2481)] = 108401, - [SMALL_STATE(2482)] = 108424, - [SMALL_STATE(2483)] = 108447, - [SMALL_STATE(2484)] = 108470, - [SMALL_STATE(2485)] = 108480, - [SMALL_STATE(2486)] = 108500, - [SMALL_STATE(2487)] = 108518, - [SMALL_STATE(2488)] = 108536, - [SMALL_STATE(2489)] = 108552, - [SMALL_STATE(2490)] = 108570, - [SMALL_STATE(2491)] = 108590, - [SMALL_STATE(2492)] = 108610, - [SMALL_STATE(2493)] = 108628, - [SMALL_STATE(2494)] = 108648, - [SMALL_STATE(2495)] = 108668, - [SMALL_STATE(2496)] = 108684, - [SMALL_STATE(2497)] = 108704, - [SMALL_STATE(2498)] = 108724, - [SMALL_STATE(2499)] = 108744, - [SMALL_STATE(2500)] = 108764, - [SMALL_STATE(2501)] = 108780, - [SMALL_STATE(2502)] = 108796, - [SMALL_STATE(2503)] = 108808, - [SMALL_STATE(2504)] = 108827, - [SMALL_STATE(2505)] = 108844, - [SMALL_STATE(2506)] = 108859, - [SMALL_STATE(2507)] = 108878, - [SMALL_STATE(2508)] = 108897, - [SMALL_STATE(2509)] = 108910, - [SMALL_STATE(2510)] = 108925, - [SMALL_STATE(2511)] = 108942, - [SMALL_STATE(2512)] = 108959, - [SMALL_STATE(2513)] = 108976, - [SMALL_STATE(2514)] = 108995, - [SMALL_STATE(2515)] = 109014, - [SMALL_STATE(2516)] = 109033, - [SMALL_STATE(2517)] = 109052, - [SMALL_STATE(2518)] = 109061, - [SMALL_STATE(2519)] = 109080, - [SMALL_STATE(2520)] = 109097, - [SMALL_STATE(2521)] = 109114, - [SMALL_STATE(2522)] = 109131, - [SMALL_STATE(2523)] = 109148, - [SMALL_STATE(2524)] = 109165, - [SMALL_STATE(2525)] = 109174, - [SMALL_STATE(2526)] = 109193, - [SMALL_STATE(2527)] = 109212, - [SMALL_STATE(2528)] = 109229, - [SMALL_STATE(2529)] = 109246, - [SMALL_STATE(2530)] = 109263, - [SMALL_STATE(2531)] = 109280, - [SMALL_STATE(2532)] = 109297, - [SMALL_STATE(2533)] = 109314, - [SMALL_STATE(2534)] = 109331, - [SMALL_STATE(2535)] = 109348, - [SMALL_STATE(2536)] = 109357, - [SMALL_STATE(2537)] = 109366, - [SMALL_STATE(2538)] = 109385, - [SMALL_STATE(2539)] = 109393, - [SMALL_STATE(2540)] = 109407, - [SMALL_STATE(2541)] = 109419, - [SMALL_STATE(2542)] = 109431, - [SMALL_STATE(2543)] = 109445, - [SMALL_STATE(2544)] = 109459, - [SMALL_STATE(2545)] = 109469, - [SMALL_STATE(2546)] = 109483, - [SMALL_STATE(2547)] = 109499, - [SMALL_STATE(2548)] = 109513, - [SMALL_STATE(2549)] = 109527, - [SMALL_STATE(2550)] = 109541, - [SMALL_STATE(2551)] = 109557, - [SMALL_STATE(2552)] = 109571, - [SMALL_STATE(2553)] = 109585, - [SMALL_STATE(2554)] = 109597, - [SMALL_STATE(2555)] = 109611, - [SMALL_STATE(2556)] = 109623, - [SMALL_STATE(2557)] = 109637, - [SMALL_STATE(2558)] = 109649, - [SMALL_STATE(2559)] = 109657, - [SMALL_STATE(2560)] = 109671, - [SMALL_STATE(2561)] = 109679, - [SMALL_STATE(2562)] = 109693, - [SMALL_STATE(2563)] = 109701, - [SMALL_STATE(2564)] = 109715, - [SMALL_STATE(2565)] = 109729, - [SMALL_STATE(2566)] = 109743, - [SMALL_STATE(2567)] = 109757, - [SMALL_STATE(2568)] = 109769, - [SMALL_STATE(2569)] = 109781, - [SMALL_STATE(2570)] = 109791, - [SMALL_STATE(2571)] = 109805, - [SMALL_STATE(2572)] = 109819, - [SMALL_STATE(2573)] = 109833, - [SMALL_STATE(2574)] = 109847, - [SMALL_STATE(2575)] = 109857, - [SMALL_STATE(2576)] = 109871, - [SMALL_STATE(2577)] = 109887, - [SMALL_STATE(2578)] = 109895, - [SMALL_STATE(2579)] = 109909, - [SMALL_STATE(2580)] = 109923, - [SMALL_STATE(2581)] = 109937, - [SMALL_STATE(2582)] = 109949, - [SMALL_STATE(2583)] = 109963, - [SMALL_STATE(2584)] = 109975, - [SMALL_STATE(2585)] = 109989, - [SMALL_STATE(2586)] = 110001, - [SMALL_STATE(2587)] = 110015, - [SMALL_STATE(2588)] = 110029, - [SMALL_STATE(2589)] = 110041, - [SMALL_STATE(2590)] = 110053, - [SMALL_STATE(2591)] = 110067, - [SMALL_STATE(2592)] = 110081, - [SMALL_STATE(2593)] = 110093, - [SMALL_STATE(2594)] = 110109, - [SMALL_STATE(2595)] = 110117, - [SMALL_STATE(2596)] = 110133, - [SMALL_STATE(2597)] = 110147, - [SMALL_STATE(2598)] = 110161, - [SMALL_STATE(2599)] = 110175, - [SMALL_STATE(2600)] = 110191, - [SMALL_STATE(2601)] = 110205, - [SMALL_STATE(2602)] = 110221, - [SMALL_STATE(2603)] = 110235, - [SMALL_STATE(2604)] = 110249, - [SMALL_STATE(2605)] = 110261, - [SMALL_STATE(2606)] = 110269, - [SMALL_STATE(2607)] = 110283, - [SMALL_STATE(2608)] = 110297, - [SMALL_STATE(2609)] = 110311, - [SMALL_STATE(2610)] = 110325, - [SMALL_STATE(2611)] = 110341, - [SMALL_STATE(2612)] = 110355, - [SMALL_STATE(2613)] = 110367, - [SMALL_STATE(2614)] = 110381, - [SMALL_STATE(2615)] = 110391, - [SMALL_STATE(2616)] = 110403, - [SMALL_STATE(2617)] = 110419, - [SMALL_STATE(2618)] = 110431, - [SMALL_STATE(2619)] = 110445, - [SMALL_STATE(2620)] = 110459, - [SMALL_STATE(2621)] = 110475, - [SMALL_STATE(2622)] = 110488, - [SMALL_STATE(2623)] = 110501, - [SMALL_STATE(2624)] = 110514, - [SMALL_STATE(2625)] = 110525, - [SMALL_STATE(2626)] = 110532, - [SMALL_STATE(2627)] = 110545, - [SMALL_STATE(2628)] = 110556, - [SMALL_STATE(2629)] = 110569, - [SMALL_STATE(2630)] = 110582, - [SMALL_STATE(2631)] = 110591, - [SMALL_STATE(2632)] = 110598, - [SMALL_STATE(2633)] = 110611, - [SMALL_STATE(2634)] = 110624, - [SMALL_STATE(2635)] = 110635, - [SMALL_STATE(2636)] = 110646, - [SMALL_STATE(2637)] = 110657, - [SMALL_STATE(2638)] = 110670, - [SMALL_STATE(2639)] = 110677, - [SMALL_STATE(2640)] = 110690, - [SMALL_STATE(2641)] = 110699, - [SMALL_STATE(2642)] = 110712, - [SMALL_STATE(2643)] = 110725, - [SMALL_STATE(2644)] = 110732, - [SMALL_STATE(2645)] = 110745, - [SMALL_STATE(2646)] = 110756, - [SMALL_STATE(2647)] = 110767, - [SMALL_STATE(2648)] = 110780, - [SMALL_STATE(2649)] = 110791, - [SMALL_STATE(2650)] = 110804, - [SMALL_STATE(2651)] = 110813, - [SMALL_STATE(2652)] = 110822, - [SMALL_STATE(2653)] = 110833, - [SMALL_STATE(2654)] = 110842, - [SMALL_STATE(2655)] = 110849, - [SMALL_STATE(2656)] = 110862, - [SMALL_STATE(2657)] = 110871, - [SMALL_STATE(2658)] = 110880, - [SMALL_STATE(2659)] = 110889, - [SMALL_STATE(2660)] = 110898, - [SMALL_STATE(2661)] = 110911, - [SMALL_STATE(2662)] = 110920, - [SMALL_STATE(2663)] = 110929, - [SMALL_STATE(2664)] = 110940, - [SMALL_STATE(2665)] = 110953, - [SMALL_STATE(2666)] = 110964, - [SMALL_STATE(2667)] = 110971, - [SMALL_STATE(2668)] = 110982, - [SMALL_STATE(2669)] = 110995, - [SMALL_STATE(2670)] = 111004, - [SMALL_STATE(2671)] = 111017, - [SMALL_STATE(2672)] = 111028, - [SMALL_STATE(2673)] = 111041, - [SMALL_STATE(2674)] = 111054, - [SMALL_STATE(2675)] = 111067, - [SMALL_STATE(2676)] = 111078, - [SMALL_STATE(2677)] = 111085, - [SMALL_STATE(2678)] = 111098, - [SMALL_STATE(2679)] = 111109, - [SMALL_STATE(2680)] = 111122, - [SMALL_STATE(2681)] = 111135, - [SMALL_STATE(2682)] = 111148, - [SMALL_STATE(2683)] = 111159, - [SMALL_STATE(2684)] = 111172, - [SMALL_STATE(2685)] = 111185, - [SMALL_STATE(2686)] = 111198, - [SMALL_STATE(2687)] = 111211, - [SMALL_STATE(2688)] = 111224, - [SMALL_STATE(2689)] = 111237, - [SMALL_STATE(2690)] = 111246, - [SMALL_STATE(2691)] = 111257, - [SMALL_STATE(2692)] = 111266, - [SMALL_STATE(2693)] = 111279, - [SMALL_STATE(2694)] = 111286, - [SMALL_STATE(2695)] = 111299, - [SMALL_STATE(2696)] = 111312, - [SMALL_STATE(2697)] = 111319, - [SMALL_STATE(2698)] = 111332, - [SMALL_STATE(2699)] = 111343, - [SMALL_STATE(2700)] = 111350, - [SMALL_STATE(2701)] = 111363, - [SMALL_STATE(2702)] = 111376, - [SMALL_STATE(2703)] = 111389, - [SMALL_STATE(2704)] = 111402, - [SMALL_STATE(2705)] = 111415, - [SMALL_STATE(2706)] = 111428, - [SMALL_STATE(2707)] = 111439, - [SMALL_STATE(2708)] = 111452, - [SMALL_STATE(2709)] = 111465, - [SMALL_STATE(2710)] = 111478, - [SMALL_STATE(2711)] = 111487, - [SMALL_STATE(2712)] = 111496, - [SMALL_STATE(2713)] = 111509, - [SMALL_STATE(2714)] = 111518, - [SMALL_STATE(2715)] = 111525, - [SMALL_STATE(2716)] = 111534, - [SMALL_STATE(2717)] = 111547, - [SMALL_STATE(2718)] = 111560, - [SMALL_STATE(2719)] = 111571, - [SMALL_STATE(2720)] = 111580, - [SMALL_STATE(2721)] = 111593, - [SMALL_STATE(2722)] = 111606, - [SMALL_STATE(2723)] = 111615, - [SMALL_STATE(2724)] = 111628, - [SMALL_STATE(2725)] = 111637, - [SMALL_STATE(2726)] = 111650, - [SMALL_STATE(2727)] = 111663, - [SMALL_STATE(2728)] = 111676, - [SMALL_STATE(2729)] = 111689, - [SMALL_STATE(2730)] = 111702, - [SMALL_STATE(2731)] = 111713, - [SMALL_STATE(2732)] = 111723, - [SMALL_STATE(2733)] = 111733, - [SMALL_STATE(2734)] = 111743, - [SMALL_STATE(2735)] = 111753, - [SMALL_STATE(2736)] = 111763, - [SMALL_STATE(2737)] = 111773, - [SMALL_STATE(2738)] = 111783, - [SMALL_STATE(2739)] = 111793, - [SMALL_STATE(2740)] = 111803, - [SMALL_STATE(2741)] = 111813, - [SMALL_STATE(2742)] = 111823, - [SMALL_STATE(2743)] = 111833, - [SMALL_STATE(2744)] = 111843, - [SMALL_STATE(2745)] = 111853, - [SMALL_STATE(2746)] = 111863, - [SMALL_STATE(2747)] = 111873, - [SMALL_STATE(2748)] = 111883, - [SMALL_STATE(2749)] = 111893, - [SMALL_STATE(2750)] = 111903, - [SMALL_STATE(2751)] = 111913, - [SMALL_STATE(2752)] = 111923, - [SMALL_STATE(2753)] = 111933, - [SMALL_STATE(2754)] = 111943, - [SMALL_STATE(2755)] = 111953, - [SMALL_STATE(2756)] = 111963, - [SMALL_STATE(2757)] = 111973, - [SMALL_STATE(2758)] = 111983, - [SMALL_STATE(2759)] = 111993, - [SMALL_STATE(2760)] = 112003, - [SMALL_STATE(2761)] = 112013, - [SMALL_STATE(2762)] = 112023, - [SMALL_STATE(2763)] = 112033, - [SMALL_STATE(2764)] = 112043, - [SMALL_STATE(2765)] = 112053, - [SMALL_STATE(2766)] = 112063, - [SMALL_STATE(2767)] = 112073, - [SMALL_STATE(2768)] = 112083, - [SMALL_STATE(2769)] = 112093, - [SMALL_STATE(2770)] = 112103, - [SMALL_STATE(2771)] = 112113, - [SMALL_STATE(2772)] = 112121, - [SMALL_STATE(2773)] = 112131, - [SMALL_STATE(2774)] = 112141, - [SMALL_STATE(2775)] = 112151, - [SMALL_STATE(2776)] = 112161, - [SMALL_STATE(2777)] = 112171, - [SMALL_STATE(2778)] = 112181, - [SMALL_STATE(2779)] = 112191, - [SMALL_STATE(2780)] = 112201, - [SMALL_STATE(2781)] = 112211, - [SMALL_STATE(2782)] = 112221, - [SMALL_STATE(2783)] = 112231, - [SMALL_STATE(2784)] = 112241, - [SMALL_STATE(2785)] = 112251, - [SMALL_STATE(2786)] = 112261, - [SMALL_STATE(2787)] = 112271, - [SMALL_STATE(2788)] = 112281, - [SMALL_STATE(2789)] = 112291, - [SMALL_STATE(2790)] = 112301, - [SMALL_STATE(2791)] = 112309, - [SMALL_STATE(2792)] = 112319, - [SMALL_STATE(2793)] = 112329, - [SMALL_STATE(2794)] = 112339, - [SMALL_STATE(2795)] = 112349, - [SMALL_STATE(2796)] = 112359, - [SMALL_STATE(2797)] = 112369, - [SMALL_STATE(2798)] = 112379, - [SMALL_STATE(2799)] = 112389, - [SMALL_STATE(2800)] = 112399, - [SMALL_STATE(2801)] = 112409, - [SMALL_STATE(2802)] = 112419, - [SMALL_STATE(2803)] = 112429, - [SMALL_STATE(2804)] = 112439, - [SMALL_STATE(2805)] = 112449, - [SMALL_STATE(2806)] = 112459, - [SMALL_STATE(2807)] = 112469, - [SMALL_STATE(2808)] = 112479, - [SMALL_STATE(2809)] = 112485, - [SMALL_STATE(2810)] = 112495, - [SMALL_STATE(2811)] = 112505, - [SMALL_STATE(2812)] = 112515, - [SMALL_STATE(2813)] = 112525, - [SMALL_STATE(2814)] = 112535, - [SMALL_STATE(2815)] = 112545, - [SMALL_STATE(2816)] = 112551, - [SMALL_STATE(2817)] = 112561, - [SMALL_STATE(2818)] = 112571, - [SMALL_STATE(2819)] = 112581, - [SMALL_STATE(2820)] = 112591, - [SMALL_STATE(2821)] = 112601, - [SMALL_STATE(2822)] = 112611, - [SMALL_STATE(2823)] = 112621, - [SMALL_STATE(2824)] = 112631, - [SMALL_STATE(2825)] = 112641, - [SMALL_STATE(2826)] = 112651, - [SMALL_STATE(2827)] = 112661, - [SMALL_STATE(2828)] = 112671, - [SMALL_STATE(2829)] = 112677, - [SMALL_STATE(2830)] = 112687, - [SMALL_STATE(2831)] = 112697, - [SMALL_STATE(2832)] = 112707, - [SMALL_STATE(2833)] = 112717, - [SMALL_STATE(2834)] = 112727, - [SMALL_STATE(2835)] = 112737, - [SMALL_STATE(2836)] = 112747, - [SMALL_STATE(2837)] = 112757, - [SMALL_STATE(2838)] = 112767, - [SMALL_STATE(2839)] = 112777, - [SMALL_STATE(2840)] = 112787, - [SMALL_STATE(2841)] = 112797, - [SMALL_STATE(2842)] = 112807, - [SMALL_STATE(2843)] = 112817, - [SMALL_STATE(2844)] = 112827, - [SMALL_STATE(2845)] = 112837, - [SMALL_STATE(2846)] = 112847, - [SMALL_STATE(2847)] = 112857, - [SMALL_STATE(2848)] = 112867, - [SMALL_STATE(2849)] = 112875, - [SMALL_STATE(2850)] = 112885, - [SMALL_STATE(2851)] = 112895, - [SMALL_STATE(2852)] = 112905, - [SMALL_STATE(2853)] = 112915, - [SMALL_STATE(2854)] = 112925, - [SMALL_STATE(2855)] = 112931, - [SMALL_STATE(2856)] = 112941, - [SMALL_STATE(2857)] = 112951, - [SMALL_STATE(2858)] = 112961, - [SMALL_STATE(2859)] = 112971, - [SMALL_STATE(2860)] = 112981, - [SMALL_STATE(2861)] = 112991, - [SMALL_STATE(2862)] = 113001, - [SMALL_STATE(2863)] = 113011, - [SMALL_STATE(2864)] = 113021, - [SMALL_STATE(2865)] = 113029, - [SMALL_STATE(2866)] = 113039, - [SMALL_STATE(2867)] = 113049, - [SMALL_STATE(2868)] = 113059, - [SMALL_STATE(2869)] = 113067, - [SMALL_STATE(2870)] = 113077, - [SMALL_STATE(2871)] = 113087, - [SMALL_STATE(2872)] = 113097, - [SMALL_STATE(2873)] = 113107, - [SMALL_STATE(2874)] = 113117, - [SMALL_STATE(2875)] = 113127, - [SMALL_STATE(2876)] = 113137, - [SMALL_STATE(2877)] = 113147, - [SMALL_STATE(2878)] = 113157, - [SMALL_STATE(2879)] = 113167, - [SMALL_STATE(2880)] = 113177, - [SMALL_STATE(2881)] = 113187, - [SMALL_STATE(2882)] = 113197, - [SMALL_STATE(2883)] = 113205, - [SMALL_STATE(2884)] = 113213, - [SMALL_STATE(2885)] = 113223, - [SMALL_STATE(2886)] = 113233, - [SMALL_STATE(2887)] = 113239, - [SMALL_STATE(2888)] = 113249, - [SMALL_STATE(2889)] = 113259, - [SMALL_STATE(2890)] = 113269, - [SMALL_STATE(2891)] = 113279, - [SMALL_STATE(2892)] = 113289, - [SMALL_STATE(2893)] = 113299, - [SMALL_STATE(2894)] = 113309, - [SMALL_STATE(2895)] = 113319, - [SMALL_STATE(2896)] = 113329, - [SMALL_STATE(2897)] = 113339, - [SMALL_STATE(2898)] = 113349, - [SMALL_STATE(2899)] = 113359, - [SMALL_STATE(2900)] = 113369, - [SMALL_STATE(2901)] = 113379, - [SMALL_STATE(2902)] = 113389, - [SMALL_STATE(2903)] = 113399, - [SMALL_STATE(2904)] = 113409, - [SMALL_STATE(2905)] = 113419, - [SMALL_STATE(2906)] = 113429, - [SMALL_STATE(2907)] = 113437, - [SMALL_STATE(2908)] = 113447, - [SMALL_STATE(2909)] = 113457, - [SMALL_STATE(2910)] = 113467, - [SMALL_STATE(2911)] = 113473, - [SMALL_STATE(2912)] = 113483, - [SMALL_STATE(2913)] = 113493, - [SMALL_STATE(2914)] = 113503, - [SMALL_STATE(2915)] = 113513, - [SMALL_STATE(2916)] = 113523, - [SMALL_STATE(2917)] = 113533, - [SMALL_STATE(2918)] = 113541, - [SMALL_STATE(2919)] = 113551, - [SMALL_STATE(2920)] = 113561, - [SMALL_STATE(2921)] = 113571, - [SMALL_STATE(2922)] = 113581, - [SMALL_STATE(2923)] = 113591, - [SMALL_STATE(2924)] = 113599, - [SMALL_STATE(2925)] = 113609, - [SMALL_STATE(2926)] = 113619, - [SMALL_STATE(2927)] = 113629, - [SMALL_STATE(2928)] = 113639, - [SMALL_STATE(2929)] = 113649, - [SMALL_STATE(2930)] = 113659, - [SMALL_STATE(2931)] = 113669, - [SMALL_STATE(2932)] = 113677, - [SMALL_STATE(2933)] = 113687, - [SMALL_STATE(2934)] = 113697, - [SMALL_STATE(2935)] = 113707, - [SMALL_STATE(2936)] = 113717, - [SMALL_STATE(2937)] = 113727, - [SMALL_STATE(2938)] = 113737, - [SMALL_STATE(2939)] = 113747, - [SMALL_STATE(2940)] = 113757, - [SMALL_STATE(2941)] = 113765, - [SMALL_STATE(2942)] = 113775, - [SMALL_STATE(2943)] = 113781, - [SMALL_STATE(2944)] = 113791, - [SMALL_STATE(2945)] = 113797, - [SMALL_STATE(2946)] = 113807, - [SMALL_STATE(2947)] = 113817, - [SMALL_STATE(2948)] = 113827, - [SMALL_STATE(2949)] = 113837, - [SMALL_STATE(2950)] = 113847, - [SMALL_STATE(2951)] = 113857, - [SMALL_STATE(2952)] = 113867, - [SMALL_STATE(2953)] = 113875, - [SMALL_STATE(2954)] = 113885, - [SMALL_STATE(2955)] = 113895, - [SMALL_STATE(2956)] = 113905, - [SMALL_STATE(2957)] = 113915, - [SMALL_STATE(2958)] = 113925, - [SMALL_STATE(2959)] = 113935, - [SMALL_STATE(2960)] = 113945, - [SMALL_STATE(2961)] = 113955, - [SMALL_STATE(2962)] = 113965, - [SMALL_STATE(2963)] = 113975, - [SMALL_STATE(2964)] = 113983, - [SMALL_STATE(2965)] = 113993, - [SMALL_STATE(2966)] = 114003, - [SMALL_STATE(2967)] = 114013, - [SMALL_STATE(2968)] = 114023, - [SMALL_STATE(2969)] = 114033, - [SMALL_STATE(2970)] = 114043, - [SMALL_STATE(2971)] = 114053, - [SMALL_STATE(2972)] = 114063, - [SMALL_STATE(2973)] = 114073, - [SMALL_STATE(2974)] = 114083, - [SMALL_STATE(2975)] = 114091, - [SMALL_STATE(2976)] = 114101, - [SMALL_STATE(2977)] = 114111, - [SMALL_STATE(2978)] = 114121, - [SMALL_STATE(2979)] = 114131, - [SMALL_STATE(2980)] = 114141, - [SMALL_STATE(2981)] = 114151, - [SMALL_STATE(2982)] = 114161, - [SMALL_STATE(2983)] = 114171, - [SMALL_STATE(2984)] = 114181, - [SMALL_STATE(2985)] = 114189, - [SMALL_STATE(2986)] = 114199, - [SMALL_STATE(2987)] = 114209, - [SMALL_STATE(2988)] = 114219, - [SMALL_STATE(2989)] = 114229, - [SMALL_STATE(2990)] = 114239, - [SMALL_STATE(2991)] = 114249, - [SMALL_STATE(2992)] = 114259, - [SMALL_STATE(2993)] = 114269, - [SMALL_STATE(2994)] = 114279, - [SMALL_STATE(2995)] = 114289, - [SMALL_STATE(2996)] = 114299, - [SMALL_STATE(2997)] = 114307, - [SMALL_STATE(2998)] = 114317, - [SMALL_STATE(2999)] = 114327, - [SMALL_STATE(3000)] = 114337, - [SMALL_STATE(3001)] = 114345, - [SMALL_STATE(3002)] = 114355, - [SMALL_STATE(3003)] = 114365, - [SMALL_STATE(3004)] = 114375, - [SMALL_STATE(3005)] = 114385, - [SMALL_STATE(3006)] = 114395, - [SMALL_STATE(3007)] = 114405, - [SMALL_STATE(3008)] = 114413, - [SMALL_STATE(3009)] = 114423, - [SMALL_STATE(3010)] = 114433, - [SMALL_STATE(3011)] = 114443, - [SMALL_STATE(3012)] = 114453, - [SMALL_STATE(3013)] = 114463, - [SMALL_STATE(3014)] = 114473, - [SMALL_STATE(3015)] = 114483, - [SMALL_STATE(3016)] = 114493, - [SMALL_STATE(3017)] = 114503, - [SMALL_STATE(3018)] = 114511, - [SMALL_STATE(3019)] = 114521, - [SMALL_STATE(3020)] = 114531, - [SMALL_STATE(3021)] = 114541, - [SMALL_STATE(3022)] = 114551, - [SMALL_STATE(3023)] = 114561, - [SMALL_STATE(3024)] = 114571, - [SMALL_STATE(3025)] = 114579, - [SMALL_STATE(3026)] = 114589, - [SMALL_STATE(3027)] = 114599, - [SMALL_STATE(3028)] = 114609, - [SMALL_STATE(3029)] = 114619, - [SMALL_STATE(3030)] = 114629, - [SMALL_STATE(3031)] = 114639, - [SMALL_STATE(3032)] = 114649, - [SMALL_STATE(3033)] = 114659, - [SMALL_STATE(3034)] = 114669, - [SMALL_STATE(3035)] = 114679, - [SMALL_STATE(3036)] = 114689, - [SMALL_STATE(3037)] = 114699, - [SMALL_STATE(3038)] = 114709, - [SMALL_STATE(3039)] = 114719, - [SMALL_STATE(3040)] = 114729, - [SMALL_STATE(3041)] = 114739, - [SMALL_STATE(3042)] = 114749, - [SMALL_STATE(3043)] = 114759, - [SMALL_STATE(3044)] = 114769, - [SMALL_STATE(3045)] = 114779, - [SMALL_STATE(3046)] = 114789, - [SMALL_STATE(3047)] = 114796, - [SMALL_STATE(3048)] = 114803, - [SMALL_STATE(3049)] = 114810, - [SMALL_STATE(3050)] = 114817, - [SMALL_STATE(3051)] = 114822, - [SMALL_STATE(3052)] = 114829, - [SMALL_STATE(3053)] = 114834, - [SMALL_STATE(3054)] = 114841, - [SMALL_STATE(3055)] = 114846, - [SMALL_STATE(3056)] = 114851, - [SMALL_STATE(3057)] = 114856, - [SMALL_STATE(3058)] = 114863, - [SMALL_STATE(3059)] = 114870, - [SMALL_STATE(3060)] = 114877, - [SMALL_STATE(3061)] = 114884, - [SMALL_STATE(3062)] = 114891, - [SMALL_STATE(3063)] = 114896, - [SMALL_STATE(3064)] = 114903, - [SMALL_STATE(3065)] = 114910, - [SMALL_STATE(3066)] = 114917, - [SMALL_STATE(3067)] = 114922, - [SMALL_STATE(3068)] = 114929, - [SMALL_STATE(3069)] = 114936, - [SMALL_STATE(3070)] = 114943, - [SMALL_STATE(3071)] = 114950, - [SMALL_STATE(3072)] = 114955, - [SMALL_STATE(3073)] = 114960, - [SMALL_STATE(3074)] = 114967, - [SMALL_STATE(3075)] = 114974, - [SMALL_STATE(3076)] = 114981, - [SMALL_STATE(3077)] = 114986, - [SMALL_STATE(3078)] = 114993, - [SMALL_STATE(3079)] = 115000, - [SMALL_STATE(3080)] = 115007, - [SMALL_STATE(3081)] = 115014, - [SMALL_STATE(3082)] = 115019, - [SMALL_STATE(3083)] = 115026, - [SMALL_STATE(3084)] = 115033, - [SMALL_STATE(3085)] = 115040, - [SMALL_STATE(3086)] = 115045, - [SMALL_STATE(3087)] = 115052, - [SMALL_STATE(3088)] = 115059, - [SMALL_STATE(3089)] = 115066, - [SMALL_STATE(3090)] = 115073, - [SMALL_STATE(3091)] = 115078, - [SMALL_STATE(3092)] = 115085, - [SMALL_STATE(3093)] = 115092, - [SMALL_STATE(3094)] = 115099, - [SMALL_STATE(3095)] = 115106, - [SMALL_STATE(3096)] = 115113, - [SMALL_STATE(3097)] = 115120, - [SMALL_STATE(3098)] = 115127, - [SMALL_STATE(3099)] = 115134, - [SMALL_STATE(3100)] = 115141, - [SMALL_STATE(3101)] = 115146, - [SMALL_STATE(3102)] = 115153, - [SMALL_STATE(3103)] = 115158, - [SMALL_STATE(3104)] = 115165, - [SMALL_STATE(3105)] = 115172, - [SMALL_STATE(3106)] = 115179, - [SMALL_STATE(3107)] = 115186, - [SMALL_STATE(3108)] = 115193, - [SMALL_STATE(3109)] = 115200, - [SMALL_STATE(3110)] = 115205, - [SMALL_STATE(3111)] = 115212, - [SMALL_STATE(3112)] = 115219, - [SMALL_STATE(3113)] = 115226, - [SMALL_STATE(3114)] = 115233, - [SMALL_STATE(3115)] = 115240, - [SMALL_STATE(3116)] = 115247, - [SMALL_STATE(3117)] = 115254, - [SMALL_STATE(3118)] = 115259, - [SMALL_STATE(3119)] = 115266, - [SMALL_STATE(3120)] = 115273, - [SMALL_STATE(3121)] = 115280, - [SMALL_STATE(3122)] = 115287, - [SMALL_STATE(3123)] = 115294, - [SMALL_STATE(3124)] = 115301, - [SMALL_STATE(3125)] = 115308, - [SMALL_STATE(3126)] = 115315, - [SMALL_STATE(3127)] = 115322, - [SMALL_STATE(3128)] = 115329, - [SMALL_STATE(3129)] = 115336, - [SMALL_STATE(3130)] = 115343, - [SMALL_STATE(3131)] = 115350, - [SMALL_STATE(3132)] = 115357, - [SMALL_STATE(3133)] = 115364, - [SMALL_STATE(3134)] = 115371, - [SMALL_STATE(3135)] = 115378, - [SMALL_STATE(3136)] = 115385, - [SMALL_STATE(3137)] = 115392, - [SMALL_STATE(3138)] = 115399, - [SMALL_STATE(3139)] = 115406, - [SMALL_STATE(3140)] = 115413, - [SMALL_STATE(3141)] = 115420, - [SMALL_STATE(3142)] = 115427, - [SMALL_STATE(3143)] = 115434, - [SMALL_STATE(3144)] = 115441, - [SMALL_STATE(3145)] = 115448, - [SMALL_STATE(3146)] = 115455, - [SMALL_STATE(3147)] = 115462, - [SMALL_STATE(3148)] = 115469, - [SMALL_STATE(3149)] = 115476, - [SMALL_STATE(3150)] = 115483, - [SMALL_STATE(3151)] = 115490, - [SMALL_STATE(3152)] = 115497, - [SMALL_STATE(3153)] = 115504, - [SMALL_STATE(3154)] = 115511, - [SMALL_STATE(3155)] = 115518, - [SMALL_STATE(3156)] = 115525, - [SMALL_STATE(3157)] = 115532, - [SMALL_STATE(3158)] = 115539, - [SMALL_STATE(3159)] = 115546, - [SMALL_STATE(3160)] = 115553, - [SMALL_STATE(3161)] = 115560, - [SMALL_STATE(3162)] = 115567, - [SMALL_STATE(3163)] = 115574, - [SMALL_STATE(3164)] = 115579, - [SMALL_STATE(3165)] = 115586, - [SMALL_STATE(3166)] = 115593, - [SMALL_STATE(3167)] = 115600, - [SMALL_STATE(3168)] = 115607, - [SMALL_STATE(3169)] = 115614, - [SMALL_STATE(3170)] = 115621, - [SMALL_STATE(3171)] = 115628, - [SMALL_STATE(3172)] = 115635, - [SMALL_STATE(3173)] = 115642, - [SMALL_STATE(3174)] = 115649, - [SMALL_STATE(3175)] = 115656, - [SMALL_STATE(3176)] = 115663, - [SMALL_STATE(3177)] = 115670, - [SMALL_STATE(3178)] = 115677, - [SMALL_STATE(3179)] = 115684, - [SMALL_STATE(3180)] = 115691, - [SMALL_STATE(3181)] = 115698, - [SMALL_STATE(3182)] = 115705, - [SMALL_STATE(3183)] = 115712, - [SMALL_STATE(3184)] = 115717, - [SMALL_STATE(3185)] = 115724, - [SMALL_STATE(3186)] = 115731, - [SMALL_STATE(3187)] = 115738, - [SMALL_STATE(3188)] = 115745, - [SMALL_STATE(3189)] = 115752, - [SMALL_STATE(3190)] = 115759, - [SMALL_STATE(3191)] = 115764, - [SMALL_STATE(3192)] = 115771, - [SMALL_STATE(3193)] = 115778, - [SMALL_STATE(3194)] = 115785, - [SMALL_STATE(3195)] = 115792, - [SMALL_STATE(3196)] = 115799, - [SMALL_STATE(3197)] = 115806, - [SMALL_STATE(3198)] = 115813, - [SMALL_STATE(3199)] = 115820, - [SMALL_STATE(3200)] = 115827, - [SMALL_STATE(3201)] = 115834, - [SMALL_STATE(3202)] = 115841, - [SMALL_STATE(3203)] = 115848, - [SMALL_STATE(3204)] = 115855, - [SMALL_STATE(3205)] = 115862, - [SMALL_STATE(3206)] = 115869, - [SMALL_STATE(3207)] = 115876, - [SMALL_STATE(3208)] = 115883, - [SMALL_STATE(3209)] = 115890, - [SMALL_STATE(3210)] = 115897, - [SMALL_STATE(3211)] = 115904, - [SMALL_STATE(3212)] = 115911, - [SMALL_STATE(3213)] = 115918, - [SMALL_STATE(3214)] = 115925, - [SMALL_STATE(3215)] = 115932, - [SMALL_STATE(3216)] = 115939, - [SMALL_STATE(3217)] = 115946, - [SMALL_STATE(3218)] = 115953, - [SMALL_STATE(3219)] = 115960, - [SMALL_STATE(3220)] = 115967, - [SMALL_STATE(3221)] = 115974, - [SMALL_STATE(3222)] = 115981, - [SMALL_STATE(3223)] = 115988, - [SMALL_STATE(3224)] = 115995, - [SMALL_STATE(3225)] = 115999, - [SMALL_STATE(3226)] = 116003, - [SMALL_STATE(3227)] = 116007, - [SMALL_STATE(3228)] = 116011, - [SMALL_STATE(3229)] = 116015, - [SMALL_STATE(3230)] = 116019, - [SMALL_STATE(3231)] = 116023, - [SMALL_STATE(3232)] = 116027, - [SMALL_STATE(3233)] = 116031, - [SMALL_STATE(3234)] = 116035, - [SMALL_STATE(3235)] = 116039, - [SMALL_STATE(3236)] = 116043, - [SMALL_STATE(3237)] = 116047, - [SMALL_STATE(3238)] = 116051, - [SMALL_STATE(3239)] = 116055, - [SMALL_STATE(3240)] = 116059, - [SMALL_STATE(3241)] = 116063, - [SMALL_STATE(3242)] = 116067, - [SMALL_STATE(3243)] = 116071, - [SMALL_STATE(3244)] = 116075, - [SMALL_STATE(3245)] = 116079, - [SMALL_STATE(3246)] = 116083, - [SMALL_STATE(3247)] = 116087, - [SMALL_STATE(3248)] = 116091, - [SMALL_STATE(3249)] = 116095, - [SMALL_STATE(3250)] = 116099, - [SMALL_STATE(3251)] = 116103, - [SMALL_STATE(3252)] = 116107, - [SMALL_STATE(3253)] = 116111, - [SMALL_STATE(3254)] = 116115, - [SMALL_STATE(3255)] = 116119, - [SMALL_STATE(3256)] = 116123, - [SMALL_STATE(3257)] = 116127, - [SMALL_STATE(3258)] = 116131, - [SMALL_STATE(3259)] = 116135, - [SMALL_STATE(3260)] = 116139, - [SMALL_STATE(3261)] = 116143, - [SMALL_STATE(3262)] = 116147, - [SMALL_STATE(3263)] = 116151, - [SMALL_STATE(3264)] = 116155, - [SMALL_STATE(3265)] = 116159, - [SMALL_STATE(3266)] = 116163, - [SMALL_STATE(3267)] = 116167, - [SMALL_STATE(3268)] = 116171, - [SMALL_STATE(3269)] = 116175, - [SMALL_STATE(3270)] = 116179, - [SMALL_STATE(3271)] = 116183, - [SMALL_STATE(3272)] = 116187, - [SMALL_STATE(3273)] = 116191, - [SMALL_STATE(3274)] = 116195, - [SMALL_STATE(3275)] = 116199, - [SMALL_STATE(3276)] = 116203, - [SMALL_STATE(3277)] = 116207, - [SMALL_STATE(3278)] = 116211, - [SMALL_STATE(3279)] = 116215, - [SMALL_STATE(3280)] = 116219, - [SMALL_STATE(3281)] = 116223, - [SMALL_STATE(3282)] = 116227, - [SMALL_STATE(3283)] = 116231, - [SMALL_STATE(3284)] = 116235, - [SMALL_STATE(3285)] = 116239, - [SMALL_STATE(3286)] = 116243, - [SMALL_STATE(3287)] = 116247, - [SMALL_STATE(3288)] = 116251, - [SMALL_STATE(3289)] = 116255, - [SMALL_STATE(3290)] = 116259, - [SMALL_STATE(3291)] = 116263, - [SMALL_STATE(3292)] = 116267, - [SMALL_STATE(3293)] = 116271, - [SMALL_STATE(3294)] = 116275, - [SMALL_STATE(3295)] = 116279, - [SMALL_STATE(3296)] = 116283, - [SMALL_STATE(3297)] = 116287, - [SMALL_STATE(3298)] = 116291, - [SMALL_STATE(3299)] = 116295, - [SMALL_STATE(3300)] = 116299, - [SMALL_STATE(3301)] = 116303, - [SMALL_STATE(3302)] = 116307, - [SMALL_STATE(3303)] = 116311, - [SMALL_STATE(3304)] = 116315, - [SMALL_STATE(3305)] = 116319, - [SMALL_STATE(3306)] = 116323, - [SMALL_STATE(3307)] = 116327, - [SMALL_STATE(3308)] = 116331, - [SMALL_STATE(3309)] = 116335, - [SMALL_STATE(3310)] = 116339, - [SMALL_STATE(3311)] = 116343, - [SMALL_STATE(3312)] = 116347, - [SMALL_STATE(3313)] = 116351, - [SMALL_STATE(3314)] = 116355, - [SMALL_STATE(3315)] = 116359, - [SMALL_STATE(3316)] = 116363, - [SMALL_STATE(3317)] = 116367, - [SMALL_STATE(3318)] = 116371, - [SMALL_STATE(3319)] = 116375, - [SMALL_STATE(3320)] = 116379, - [SMALL_STATE(3321)] = 116383, - [SMALL_STATE(3322)] = 116387, - [SMALL_STATE(3323)] = 116391, - [SMALL_STATE(3324)] = 116395, - [SMALL_STATE(3325)] = 116399, - [SMALL_STATE(3326)] = 116403, - [SMALL_STATE(3327)] = 116407, - [SMALL_STATE(3328)] = 116411, - [SMALL_STATE(3329)] = 116415, - [SMALL_STATE(3330)] = 116419, - [SMALL_STATE(3331)] = 116423, - [SMALL_STATE(3332)] = 116427, - [SMALL_STATE(3333)] = 116431, - [SMALL_STATE(3334)] = 116435, - [SMALL_STATE(3335)] = 116439, - [SMALL_STATE(3336)] = 116443, - [SMALL_STATE(3337)] = 116447, - [SMALL_STATE(3338)] = 116451, - [SMALL_STATE(3339)] = 116455, - [SMALL_STATE(3340)] = 116459, - [SMALL_STATE(3341)] = 116463, - [SMALL_STATE(3342)] = 116467, - [SMALL_STATE(3343)] = 116471, - [SMALL_STATE(3344)] = 116475, - [SMALL_STATE(3345)] = 116479, - [SMALL_STATE(3346)] = 116483, - [SMALL_STATE(3347)] = 116487, - [SMALL_STATE(3348)] = 116491, - [SMALL_STATE(3349)] = 116495, - [SMALL_STATE(3350)] = 116499, - [SMALL_STATE(3351)] = 116503, - [SMALL_STATE(3352)] = 116507, - [SMALL_STATE(3353)] = 116511, - [SMALL_STATE(3354)] = 116515, - [SMALL_STATE(3355)] = 116519, - [SMALL_STATE(3356)] = 116523, - [SMALL_STATE(3357)] = 116527, - [SMALL_STATE(3358)] = 116531, - [SMALL_STATE(3359)] = 116535, - [SMALL_STATE(3360)] = 116539, - [SMALL_STATE(3361)] = 116543, - [SMALL_STATE(3362)] = 116547, - [SMALL_STATE(3363)] = 116551, - [SMALL_STATE(3364)] = 116555, - [SMALL_STATE(3365)] = 116559, - [SMALL_STATE(3366)] = 116563, - [SMALL_STATE(3367)] = 116567, - [SMALL_STATE(3368)] = 116571, - [SMALL_STATE(3369)] = 116575, - [SMALL_STATE(3370)] = 116579, - [SMALL_STATE(3371)] = 116583, - [SMALL_STATE(3372)] = 116587, - [SMALL_STATE(3373)] = 116591, - [SMALL_STATE(3374)] = 116595, - [SMALL_STATE(3375)] = 116599, - [SMALL_STATE(3376)] = 116603, - [SMALL_STATE(3377)] = 116607, - [SMALL_STATE(3378)] = 116611, - [SMALL_STATE(3379)] = 116615, - [SMALL_STATE(3380)] = 116619, - [SMALL_STATE(3381)] = 116623, - [SMALL_STATE(3382)] = 116627, - [SMALL_STATE(3383)] = 116631, - [SMALL_STATE(3384)] = 116635, - [SMALL_STATE(3385)] = 116639, - [SMALL_STATE(3386)] = 116643, - [SMALL_STATE(3387)] = 116647, - [SMALL_STATE(3388)] = 116651, - [SMALL_STATE(3389)] = 116655, - [SMALL_STATE(3390)] = 116659, - [SMALL_STATE(3391)] = 116663, - [SMALL_STATE(3392)] = 116667, - [SMALL_STATE(3393)] = 116671, - [SMALL_STATE(3394)] = 116675, - [SMALL_STATE(3395)] = 116679, - [SMALL_STATE(3396)] = 116683, - [SMALL_STATE(3397)] = 116687, - [SMALL_STATE(3398)] = 116691, - [SMALL_STATE(3399)] = 116695, - [SMALL_STATE(3400)] = 116699, - [SMALL_STATE(3401)] = 116703, - [SMALL_STATE(3402)] = 116707, - [SMALL_STATE(3403)] = 116711, - [SMALL_STATE(3404)] = 116715, - [SMALL_STATE(3405)] = 116719, - [SMALL_STATE(3406)] = 116723, - [SMALL_STATE(3407)] = 116727, - [SMALL_STATE(3408)] = 116731, - [SMALL_STATE(3409)] = 116735, - [SMALL_STATE(3410)] = 116739, - [SMALL_STATE(3411)] = 116743, - [SMALL_STATE(3412)] = 116747, - [SMALL_STATE(3413)] = 116751, - [SMALL_STATE(3414)] = 116755, - [SMALL_STATE(3415)] = 116759, - [SMALL_STATE(3416)] = 116763, - [SMALL_STATE(3417)] = 116767, - [SMALL_STATE(3418)] = 116771, - [SMALL_STATE(3419)] = 116775, - [SMALL_STATE(3420)] = 116779, - [SMALL_STATE(3421)] = 116783, - [SMALL_STATE(3422)] = 116787, - [SMALL_STATE(3423)] = 116791, - [SMALL_STATE(3424)] = 116795, - [SMALL_STATE(3425)] = 116799, - [SMALL_STATE(3426)] = 116803, - [SMALL_STATE(3427)] = 116807, - [SMALL_STATE(3428)] = 116811, - [SMALL_STATE(3429)] = 116815, - [SMALL_STATE(3430)] = 116819, - [SMALL_STATE(3431)] = 116823, - [SMALL_STATE(3432)] = 116827, - [SMALL_STATE(3433)] = 116831, - [SMALL_STATE(3434)] = 116835, - [SMALL_STATE(3435)] = 116839, - [SMALL_STATE(3436)] = 116843, - [SMALL_STATE(3437)] = 116847, - [SMALL_STATE(3438)] = 116851, - [SMALL_STATE(3439)] = 116855, - [SMALL_STATE(3440)] = 116859, - [SMALL_STATE(3441)] = 116863, - [SMALL_STATE(3442)] = 116867, - [SMALL_STATE(3443)] = 116871, - [SMALL_STATE(3444)] = 116875, - [SMALL_STATE(3445)] = 116879, - [SMALL_STATE(3446)] = 116883, - [SMALL_STATE(3447)] = 116887, - [SMALL_STATE(3448)] = 116891, - [SMALL_STATE(3449)] = 116895, - [SMALL_STATE(3450)] = 116899, - [SMALL_STATE(3451)] = 116903, - [SMALL_STATE(3452)] = 116907, - [SMALL_STATE(3453)] = 116911, - [SMALL_STATE(3454)] = 116915, - [SMALL_STATE(3455)] = 116919, - [SMALL_STATE(3456)] = 116923, - [SMALL_STATE(3457)] = 116927, - [SMALL_STATE(3458)] = 116931, - [SMALL_STATE(3459)] = 116935, - [SMALL_STATE(3460)] = 116939, - [SMALL_STATE(3461)] = 116943, - [SMALL_STATE(3462)] = 116947, - [SMALL_STATE(3463)] = 116951, - [SMALL_STATE(3464)] = 116955, - [SMALL_STATE(3465)] = 116959, - [SMALL_STATE(3466)] = 116963, - [SMALL_STATE(3467)] = 116967, - [SMALL_STATE(3468)] = 116971, - [SMALL_STATE(3469)] = 116975, - [SMALL_STATE(3470)] = 116979, - [SMALL_STATE(3471)] = 116983, - [SMALL_STATE(3472)] = 116987, - [SMALL_STATE(3473)] = 116991, - [SMALL_STATE(3474)] = 116995, - [SMALL_STATE(3475)] = 116999, - [SMALL_STATE(3476)] = 117003, - [SMALL_STATE(3477)] = 117007, - [SMALL_STATE(3478)] = 117011, - [SMALL_STATE(3479)] = 117015, - [SMALL_STATE(3480)] = 117019, - [SMALL_STATE(3481)] = 117023, - [SMALL_STATE(3482)] = 117027, - [SMALL_STATE(3483)] = 117031, - [SMALL_STATE(3484)] = 117035, - [SMALL_STATE(3485)] = 117039, - [SMALL_STATE(3486)] = 117043, - [SMALL_STATE(3487)] = 117047, - [SMALL_STATE(3488)] = 117051, - [SMALL_STATE(3489)] = 117055, - [SMALL_STATE(3490)] = 117059, - [SMALL_STATE(3491)] = 117063, - [SMALL_STATE(3492)] = 117067, - [SMALL_STATE(3493)] = 117071, - [SMALL_STATE(3494)] = 117075, - [SMALL_STATE(3495)] = 117079, - [SMALL_STATE(3496)] = 117083, - [SMALL_STATE(3497)] = 117087, - [SMALL_STATE(3498)] = 117091, - [SMALL_STATE(3499)] = 117095, - [SMALL_STATE(3500)] = 117099, - [SMALL_STATE(3501)] = 117103, - [SMALL_STATE(3502)] = 117107, - [SMALL_STATE(3503)] = 117111, - [SMALL_STATE(3504)] = 117115, - [SMALL_STATE(3505)] = 117119, - [SMALL_STATE(3506)] = 117123, - [SMALL_STATE(3507)] = 117127, - [SMALL_STATE(3508)] = 117131, - [SMALL_STATE(3509)] = 117135, - [SMALL_STATE(3510)] = 117139, - [SMALL_STATE(3511)] = 117143, - [SMALL_STATE(3512)] = 117147, - [SMALL_STATE(3513)] = 117151, - [SMALL_STATE(3514)] = 117155, - [SMALL_STATE(3515)] = 117159, - [SMALL_STATE(3516)] = 117163, - [SMALL_STATE(3517)] = 117167, - [SMALL_STATE(3518)] = 117171, - [SMALL_STATE(3519)] = 117175, - [SMALL_STATE(3520)] = 117179, - [SMALL_STATE(3521)] = 117183, - [SMALL_STATE(3522)] = 117187, - [SMALL_STATE(3523)] = 117191, - [SMALL_STATE(3524)] = 117195, - [SMALL_STATE(3525)] = 117199, - [SMALL_STATE(3526)] = 117203, - [SMALL_STATE(3527)] = 117207, - [SMALL_STATE(3528)] = 117211, - [SMALL_STATE(3529)] = 117215, - [SMALL_STATE(3530)] = 117219, - [SMALL_STATE(3531)] = 117223, - [SMALL_STATE(3532)] = 117227, - [SMALL_STATE(3533)] = 117231, - [SMALL_STATE(3534)] = 117235, - [SMALL_STATE(3535)] = 117239, - [SMALL_STATE(3536)] = 117243, - [SMALL_STATE(3537)] = 117247, - [SMALL_STATE(3538)] = 117251, - [SMALL_STATE(3539)] = 117255, - [SMALL_STATE(3540)] = 117259, - [SMALL_STATE(3541)] = 117263, - [SMALL_STATE(3542)] = 117267, - [SMALL_STATE(3543)] = 117271, - [SMALL_STATE(3544)] = 117275, - [SMALL_STATE(3545)] = 117279, - [SMALL_STATE(3546)] = 117283, - [SMALL_STATE(3547)] = 117287, - [SMALL_STATE(3548)] = 117291, - [SMALL_STATE(3549)] = 117295, - [SMALL_STATE(3550)] = 117299, - [SMALL_STATE(3551)] = 117303, - [SMALL_STATE(3552)] = 117307, - [SMALL_STATE(3553)] = 117311, - [SMALL_STATE(3554)] = 117315, - [SMALL_STATE(3555)] = 117319, - [SMALL_STATE(3556)] = 117323, - [SMALL_STATE(3557)] = 117327, - [SMALL_STATE(3558)] = 117331, - [SMALL_STATE(3559)] = 117335, - [SMALL_STATE(3560)] = 117339, - [SMALL_STATE(3561)] = 117343, - [SMALL_STATE(3562)] = 117347, - [SMALL_STATE(3563)] = 117351, - [SMALL_STATE(3564)] = 117355, - [SMALL_STATE(3565)] = 117359, - [SMALL_STATE(3566)] = 117363, - [SMALL_STATE(3567)] = 117367, - [SMALL_STATE(3568)] = 117371, - [SMALL_STATE(3569)] = 117375, - [SMALL_STATE(3570)] = 117379, - [SMALL_STATE(3571)] = 117383, - [SMALL_STATE(3572)] = 117387, - [SMALL_STATE(3573)] = 117391, - [SMALL_STATE(3574)] = 117395, - [SMALL_STATE(3575)] = 117399, - [SMALL_STATE(3576)] = 117403, - [SMALL_STATE(3577)] = 117407, - [SMALL_STATE(3578)] = 117411, - [SMALL_STATE(3579)] = 117415, - [SMALL_STATE(3580)] = 117419, - [SMALL_STATE(3581)] = 117423, - [SMALL_STATE(3582)] = 117427, - [SMALL_STATE(3583)] = 117431, - [SMALL_STATE(3584)] = 117435, - [SMALL_STATE(3585)] = 117439, - [SMALL_STATE(3586)] = 117443, - [SMALL_STATE(3587)] = 117447, - [SMALL_STATE(3588)] = 117451, - [SMALL_STATE(3589)] = 117455, - [SMALL_STATE(3590)] = 117459, - [SMALL_STATE(3591)] = 117463, - [SMALL_STATE(3592)] = 117467, - [SMALL_STATE(3593)] = 117471, - [SMALL_STATE(3594)] = 117475, - [SMALL_STATE(3595)] = 117479, - [SMALL_STATE(3596)] = 117483, - [SMALL_STATE(3597)] = 117487, - [SMALL_STATE(3598)] = 117491, - [SMALL_STATE(3599)] = 117495, - [SMALL_STATE(3600)] = 117499, - [SMALL_STATE(3601)] = 117503, - [SMALL_STATE(3602)] = 117507, - [SMALL_STATE(3603)] = 117511, - [SMALL_STATE(3604)] = 117515, - [SMALL_STATE(3605)] = 117519, - [SMALL_STATE(3606)] = 117523, - [SMALL_STATE(3607)] = 117527, - [SMALL_STATE(3608)] = 117531, - [SMALL_STATE(3609)] = 117535, - [SMALL_STATE(3610)] = 117539, - [SMALL_STATE(3611)] = 117543, - [SMALL_STATE(3612)] = 117547, - [SMALL_STATE(3613)] = 117551, - [SMALL_STATE(3614)] = 117555, - [SMALL_STATE(3615)] = 117559, - [SMALL_STATE(3616)] = 117563, - [SMALL_STATE(3617)] = 117567, - [SMALL_STATE(3618)] = 117571, - [SMALL_STATE(3619)] = 117575, - [SMALL_STATE(3620)] = 117579, - [SMALL_STATE(3621)] = 117583, - [SMALL_STATE(3622)] = 117587, - [SMALL_STATE(3623)] = 117591, - [SMALL_STATE(3624)] = 117595, - [SMALL_STATE(3625)] = 117599, - [SMALL_STATE(3626)] = 117603, - [SMALL_STATE(3627)] = 117607, - [SMALL_STATE(3628)] = 117611, - [SMALL_STATE(3629)] = 117615, - [SMALL_STATE(3630)] = 117619, - [SMALL_STATE(3631)] = 117623, - [SMALL_STATE(3632)] = 117627, - [SMALL_STATE(3633)] = 117631, - [SMALL_STATE(3634)] = 117635, - [SMALL_STATE(3635)] = 117639, - [SMALL_STATE(3636)] = 117643, - [SMALL_STATE(3637)] = 117647, - [SMALL_STATE(3638)] = 117651, - [SMALL_STATE(3639)] = 117655, - [SMALL_STATE(3640)] = 117659, - [SMALL_STATE(3641)] = 117663, - [SMALL_STATE(3642)] = 117667, - [SMALL_STATE(3643)] = 117671, - [SMALL_STATE(3644)] = 117675, - [SMALL_STATE(3645)] = 117679, - [SMALL_STATE(3646)] = 117683, - [SMALL_STATE(3647)] = 117687, - [SMALL_STATE(3648)] = 117691, - [SMALL_STATE(3649)] = 117695, - [SMALL_STATE(3650)] = 117699, - [SMALL_STATE(3651)] = 117703, - [SMALL_STATE(3652)] = 117707, - [SMALL_STATE(3653)] = 117711, - [SMALL_STATE(3654)] = 117715, - [SMALL_STATE(3655)] = 117719, - [SMALL_STATE(3656)] = 117723, - [SMALL_STATE(3657)] = 117727, - [SMALL_STATE(3658)] = 117731, - [SMALL_STATE(3659)] = 117735, - [SMALL_STATE(3660)] = 117739, - [SMALL_STATE(3661)] = 117743, - [SMALL_STATE(3662)] = 117747, - [SMALL_STATE(3663)] = 117751, - [SMALL_STATE(3664)] = 117755, - [SMALL_STATE(3665)] = 117759, - [SMALL_STATE(3666)] = 117763, - [SMALL_STATE(3667)] = 117767, - [SMALL_STATE(3668)] = 117771, - [SMALL_STATE(3669)] = 117775, - [SMALL_STATE(3670)] = 117779, - [SMALL_STATE(3671)] = 117783, - [SMALL_STATE(3672)] = 117787, - [SMALL_STATE(3673)] = 117791, - [SMALL_STATE(3674)] = 117795, - [SMALL_STATE(3675)] = 117799, - [SMALL_STATE(3676)] = 117803, - [SMALL_STATE(3677)] = 117807, - [SMALL_STATE(3678)] = 117811, - [SMALL_STATE(3679)] = 117815, - [SMALL_STATE(3680)] = 117819, - [SMALL_STATE(3681)] = 117823, - [SMALL_STATE(3682)] = 117827, - [SMALL_STATE(3683)] = 117831, - [SMALL_STATE(3684)] = 117835, - [SMALL_STATE(3685)] = 117839, - [SMALL_STATE(3686)] = 117843, - [SMALL_STATE(3687)] = 117847, - [SMALL_STATE(3688)] = 117851, - [SMALL_STATE(3689)] = 117855, - [SMALL_STATE(3690)] = 117859, - [SMALL_STATE(3691)] = 117863, - [SMALL_STATE(3692)] = 117867, - [SMALL_STATE(3693)] = 117871, - [SMALL_STATE(3694)] = 117875, - [SMALL_STATE(3695)] = 117879, - [SMALL_STATE(3696)] = 117883, - [SMALL_STATE(3697)] = 117887, - [SMALL_STATE(3698)] = 117891, - [SMALL_STATE(3699)] = 117895, - [SMALL_STATE(3700)] = 117899, - [SMALL_STATE(3701)] = 117903, - [SMALL_STATE(3702)] = 117907, - [SMALL_STATE(3703)] = 117911, - [SMALL_STATE(3704)] = 117915, - [SMALL_STATE(3705)] = 117919, - [SMALL_STATE(3706)] = 117923, - [SMALL_STATE(3707)] = 117927, - [SMALL_STATE(3708)] = 117931, - [SMALL_STATE(3709)] = 117935, - [SMALL_STATE(3710)] = 117939, - [SMALL_STATE(3711)] = 117943, - [SMALL_STATE(3712)] = 117947, - [SMALL_STATE(3713)] = 117951, - [SMALL_STATE(3714)] = 117955, - [SMALL_STATE(3715)] = 117959, - [SMALL_STATE(3716)] = 117963, - [SMALL_STATE(3717)] = 117967, - [SMALL_STATE(3718)] = 117971, - [SMALL_STATE(3719)] = 117975, - [SMALL_STATE(3720)] = 117979, - [SMALL_STATE(3721)] = 117983, - [SMALL_STATE(3722)] = 117987, - [SMALL_STATE(3723)] = 117991, - [SMALL_STATE(3724)] = 117995, - [SMALL_STATE(3725)] = 117999, - [SMALL_STATE(3726)] = 118003, - [SMALL_STATE(3727)] = 118007, - [SMALL_STATE(3728)] = 118011, - [SMALL_STATE(3729)] = 118015, - [SMALL_STATE(3730)] = 118019, - [SMALL_STATE(3731)] = 118023, - [SMALL_STATE(3732)] = 118027, - [SMALL_STATE(3733)] = 118031, - [SMALL_STATE(3734)] = 118035, - [SMALL_STATE(3735)] = 118039, - [SMALL_STATE(3736)] = 118043, - [SMALL_STATE(3737)] = 118047, - [SMALL_STATE(3738)] = 118051, - [SMALL_STATE(3739)] = 118055, - [SMALL_STATE(3740)] = 118059, - [SMALL_STATE(3741)] = 118063, - [SMALL_STATE(3742)] = 118067, - [SMALL_STATE(3743)] = 118071, - [SMALL_STATE(3744)] = 118075, - [SMALL_STATE(3745)] = 118079, - [SMALL_STATE(3746)] = 118083, - [SMALL_STATE(3747)] = 118087, - [SMALL_STATE(3748)] = 118091, - [SMALL_STATE(3749)] = 118095, - [SMALL_STATE(3750)] = 118099, - [SMALL_STATE(3751)] = 118103, - [SMALL_STATE(3752)] = 118107, - [SMALL_STATE(3753)] = 118111, - [SMALL_STATE(3754)] = 118115, - [SMALL_STATE(3755)] = 118119, - [SMALL_STATE(3756)] = 118123, - [SMALL_STATE(3757)] = 118127, - [SMALL_STATE(3758)] = 118131, - [SMALL_STATE(3759)] = 118135, - [SMALL_STATE(3760)] = 118139, - [SMALL_STATE(3761)] = 118143, - [SMALL_STATE(3762)] = 118147, - [SMALL_STATE(3763)] = 118151, - [SMALL_STATE(3764)] = 118155, - [SMALL_STATE(3765)] = 118159, - [SMALL_STATE(3766)] = 118163, - [SMALL_STATE(3767)] = 118167, - [SMALL_STATE(3768)] = 118171, - [SMALL_STATE(3769)] = 118175, - [SMALL_STATE(3770)] = 118179, - [SMALL_STATE(3771)] = 118183, - [SMALL_STATE(3772)] = 118187, - [SMALL_STATE(3773)] = 118191, - [SMALL_STATE(3774)] = 118195, - [SMALL_STATE(3775)] = 118199, - [SMALL_STATE(3776)] = 118203, - [SMALL_STATE(3777)] = 118207, - [SMALL_STATE(3778)] = 118211, - [SMALL_STATE(3779)] = 118215, - [SMALL_STATE(3780)] = 118219, - [SMALL_STATE(3781)] = 118223, - [SMALL_STATE(3782)] = 118227, - [SMALL_STATE(3783)] = 118231, - [SMALL_STATE(3784)] = 118235, - [SMALL_STATE(3785)] = 118239, - [SMALL_STATE(3786)] = 118243, - [SMALL_STATE(3787)] = 118247, - [SMALL_STATE(3788)] = 118251, - [SMALL_STATE(3789)] = 118255, - [SMALL_STATE(3790)] = 118259, - [SMALL_STATE(3791)] = 118263, - [SMALL_STATE(3792)] = 118267, - [SMALL_STATE(3793)] = 118271, - [SMALL_STATE(3794)] = 118275, - [SMALL_STATE(3795)] = 118279, - [SMALL_STATE(3796)] = 118283, - [SMALL_STATE(3797)] = 118287, - [SMALL_STATE(3798)] = 118291, - [SMALL_STATE(3799)] = 118295, - [SMALL_STATE(3800)] = 118299, - [SMALL_STATE(3801)] = 118303, - [SMALL_STATE(3802)] = 118307, - [SMALL_STATE(3803)] = 118311, - [SMALL_STATE(3804)] = 118315, - [SMALL_STATE(3805)] = 118319, - [SMALL_STATE(3806)] = 118323, - [SMALL_STATE(3807)] = 118327, - [SMALL_STATE(3808)] = 118331, - [SMALL_STATE(3809)] = 118335, - [SMALL_STATE(3810)] = 118339, - [SMALL_STATE(3811)] = 118343, - [SMALL_STATE(3812)] = 118347, - [SMALL_STATE(3813)] = 118351, - [SMALL_STATE(3814)] = 118355, - [SMALL_STATE(3815)] = 118359, - [SMALL_STATE(3816)] = 118363, - [SMALL_STATE(3817)] = 118367, - [SMALL_STATE(3818)] = 118371, - [SMALL_STATE(3819)] = 118375, - [SMALL_STATE(3820)] = 118379, - [SMALL_STATE(3821)] = 118383, - [SMALL_STATE(3822)] = 118387, - [SMALL_STATE(3823)] = 118391, - [SMALL_STATE(3824)] = 118395, - [SMALL_STATE(3825)] = 118399, - [SMALL_STATE(3826)] = 118403, - [SMALL_STATE(3827)] = 118407, - [SMALL_STATE(3828)] = 118411, - [SMALL_STATE(3829)] = 118415, - [SMALL_STATE(3830)] = 118419, - [SMALL_STATE(3831)] = 118423, - [SMALL_STATE(3832)] = 118427, - [SMALL_STATE(3833)] = 118431, - [SMALL_STATE(3834)] = 118435, - [SMALL_STATE(3835)] = 118439, - [SMALL_STATE(3836)] = 118443, - [SMALL_STATE(3837)] = 118447, - [SMALL_STATE(3838)] = 118451, - [SMALL_STATE(3839)] = 118455, - [SMALL_STATE(3840)] = 118459, - [SMALL_STATE(3841)] = 118463, - [SMALL_STATE(3842)] = 118467, - [SMALL_STATE(3843)] = 118471, - [SMALL_STATE(3844)] = 118475, - [SMALL_STATE(3845)] = 118479, - [SMALL_STATE(3846)] = 118483, - [SMALL_STATE(3847)] = 118487, - [SMALL_STATE(3848)] = 118491, - [SMALL_STATE(3849)] = 118495, - [SMALL_STATE(3850)] = 118499, - [SMALL_STATE(3851)] = 118503, - [SMALL_STATE(3852)] = 118507, - [SMALL_STATE(3853)] = 118511, - [SMALL_STATE(3854)] = 118515, - [SMALL_STATE(3855)] = 118519, - [SMALL_STATE(3856)] = 118523, - [SMALL_STATE(3857)] = 118527, - [SMALL_STATE(3858)] = 118531, - [SMALL_STATE(3859)] = 118535, - [SMALL_STATE(3860)] = 118539, - [SMALL_STATE(3861)] = 118543, - [SMALL_STATE(3862)] = 118547, - [SMALL_STATE(3863)] = 118551, - [SMALL_STATE(3864)] = 118555, - [SMALL_STATE(3865)] = 118559, - [SMALL_STATE(3866)] = 118563, - [SMALL_STATE(3867)] = 118567, - [SMALL_STATE(3868)] = 118571, - [SMALL_STATE(3869)] = 118575, - [SMALL_STATE(3870)] = 118579, - [SMALL_STATE(3871)] = 118583, - [SMALL_STATE(3872)] = 118587, - [SMALL_STATE(3873)] = 118591, - [SMALL_STATE(3874)] = 118595, - [SMALL_STATE(3875)] = 118599, - [SMALL_STATE(3876)] = 118603, - [SMALL_STATE(3877)] = 118607, - [SMALL_STATE(3878)] = 118611, - [SMALL_STATE(3879)] = 118615, - [SMALL_STATE(3880)] = 118619, - [SMALL_STATE(3881)] = 118623, - [SMALL_STATE(3882)] = 118627, - [SMALL_STATE(3883)] = 118631, - [SMALL_STATE(3884)] = 118635, - [SMALL_STATE(3885)] = 118639, - [SMALL_STATE(3886)] = 118643, - [SMALL_STATE(3887)] = 118647, - [SMALL_STATE(3888)] = 118651, - [SMALL_STATE(3889)] = 118655, - [SMALL_STATE(3890)] = 118659, - [SMALL_STATE(3891)] = 118663, - [SMALL_STATE(3892)] = 118667, - [SMALL_STATE(3893)] = 118671, - [SMALL_STATE(3894)] = 118675, - [SMALL_STATE(3895)] = 118679, - [SMALL_STATE(3896)] = 118683, - [SMALL_STATE(3897)] = 118687, - [SMALL_STATE(3898)] = 118691, - [SMALL_STATE(3899)] = 118695, - [SMALL_STATE(3900)] = 118699, - [SMALL_STATE(3901)] = 118703, - [SMALL_STATE(3902)] = 118707, - [SMALL_STATE(3903)] = 118711, - [SMALL_STATE(3904)] = 118715, - [SMALL_STATE(3905)] = 118719, - [SMALL_STATE(3906)] = 118723, - [SMALL_STATE(3907)] = 118727, - [SMALL_STATE(3908)] = 118731, - [SMALL_STATE(3909)] = 118735, - [SMALL_STATE(3910)] = 118739, - [SMALL_STATE(3911)] = 118743, - [SMALL_STATE(3912)] = 118747, - [SMALL_STATE(3913)] = 118751, - [SMALL_STATE(3914)] = 118755, - [SMALL_STATE(3915)] = 118759, - [SMALL_STATE(3916)] = 118763, - [SMALL_STATE(3917)] = 118767, - [SMALL_STATE(3918)] = 118771, - [SMALL_STATE(3919)] = 118775, - [SMALL_STATE(3920)] = 118779, - [SMALL_STATE(3921)] = 118783, - [SMALL_STATE(3922)] = 118787, - [SMALL_STATE(3923)] = 118791, - [SMALL_STATE(3924)] = 118795, - [SMALL_STATE(3925)] = 118799, - [SMALL_STATE(3926)] = 118803, - [SMALL_STATE(3927)] = 118807, - [SMALL_STATE(3928)] = 118811, - [SMALL_STATE(3929)] = 118815, - [SMALL_STATE(3930)] = 118819, - [SMALL_STATE(3931)] = 118823, - [SMALL_STATE(3932)] = 118827, - [SMALL_STATE(3933)] = 118831, - [SMALL_STATE(3934)] = 118835, - [SMALL_STATE(3935)] = 118839, - [SMALL_STATE(3936)] = 118843, - [SMALL_STATE(3937)] = 118847, - [SMALL_STATE(3938)] = 118851, - [SMALL_STATE(3939)] = 118855, - [SMALL_STATE(3940)] = 118859, - [SMALL_STATE(3941)] = 118863, - [SMALL_STATE(3942)] = 118867, - [SMALL_STATE(3943)] = 118871, - [SMALL_STATE(3944)] = 118875, - [SMALL_STATE(3945)] = 118879, - [SMALL_STATE(3946)] = 118883, - [SMALL_STATE(3947)] = 118887, - [SMALL_STATE(3948)] = 118891, - [SMALL_STATE(3949)] = 118895, - [SMALL_STATE(3950)] = 118899, - [SMALL_STATE(3951)] = 118903, - [SMALL_STATE(3952)] = 118907, - [SMALL_STATE(3953)] = 118911, - [SMALL_STATE(3954)] = 118915, - [SMALL_STATE(3955)] = 118919, - [SMALL_STATE(3956)] = 118923, - [SMALL_STATE(3957)] = 118927, - [SMALL_STATE(3958)] = 118931, - [SMALL_STATE(3959)] = 118935, - [SMALL_STATE(3960)] = 118939, - [SMALL_STATE(3961)] = 118943, - [SMALL_STATE(3962)] = 118947, - [SMALL_STATE(3963)] = 118951, - [SMALL_STATE(3964)] = 118955, - [SMALL_STATE(3965)] = 118959, - [SMALL_STATE(3966)] = 118963, - [SMALL_STATE(3967)] = 118967, - [SMALL_STATE(3968)] = 118971, - [SMALL_STATE(3969)] = 118975, - [SMALL_STATE(3970)] = 118979, - [SMALL_STATE(3971)] = 118983, - [SMALL_STATE(3972)] = 118987, - [SMALL_STATE(3973)] = 118991, - [SMALL_STATE(3974)] = 118995, - [SMALL_STATE(3975)] = 118999, - [SMALL_STATE(3976)] = 119003, - [SMALL_STATE(3977)] = 119007, - [SMALL_STATE(3978)] = 119011, - [SMALL_STATE(3979)] = 119015, - [SMALL_STATE(3980)] = 119019, - [SMALL_STATE(3981)] = 119023, - [SMALL_STATE(3982)] = 119027, - [SMALL_STATE(3983)] = 119031, - [SMALL_STATE(3984)] = 119035, - [SMALL_STATE(3985)] = 119039, - [SMALL_STATE(3986)] = 119043, - [SMALL_STATE(3987)] = 119047, - [SMALL_STATE(3988)] = 119051, - [SMALL_STATE(3989)] = 119055, - [SMALL_STATE(3990)] = 119059, - [SMALL_STATE(3991)] = 119063, - [SMALL_STATE(3992)] = 119067, - [SMALL_STATE(3993)] = 119071, - [SMALL_STATE(3994)] = 119075, - [SMALL_STATE(3995)] = 119079, - [SMALL_STATE(3996)] = 119083, - [SMALL_STATE(3997)] = 119087, - [SMALL_STATE(3998)] = 119091, - [SMALL_STATE(3999)] = 119095, - [SMALL_STATE(4000)] = 119099, - [SMALL_STATE(4001)] = 119103, - [SMALL_STATE(4002)] = 119107, - [SMALL_STATE(4003)] = 119111, + [SMALL_STATE(547)] = 0, + [SMALL_STATE(548)] = 135, + [SMALL_STATE(549)] = 270, + [SMALL_STATE(550)] = 405, + [SMALL_STATE(551)] = 540, + [SMALL_STATE(552)] = 675, + [SMALL_STATE(553)] = 810, + [SMALL_STATE(554)] = 945, + [SMALL_STATE(555)] = 1080, + [SMALL_STATE(556)] = 1215, + [SMALL_STATE(557)] = 1350, + [SMALL_STATE(558)] = 1485, + [SMALL_STATE(559)] = 1620, + [SMALL_STATE(560)] = 1755, + [SMALL_STATE(561)] = 1890, + [SMALL_STATE(562)] = 2025, + [SMALL_STATE(563)] = 2154, + [SMALL_STATE(564)] = 2289, + [SMALL_STATE(565)] = 2424, + [SMALL_STATE(566)] = 2553, + [SMALL_STATE(567)] = 2688, + [SMALL_STATE(568)] = 2823, + [SMALL_STATE(569)] = 2958, + [SMALL_STATE(570)] = 3093, + [SMALL_STATE(571)] = 3228, + [SMALL_STATE(572)] = 3363, + [SMALL_STATE(573)] = 3498, + [SMALL_STATE(574)] = 3633, + [SMALL_STATE(575)] = 3768, + [SMALL_STATE(576)] = 3903, + [SMALL_STATE(577)] = 4037, + [SMALL_STATE(578)] = 4171, + [SMALL_STATE(579)] = 4301, + [SMALL_STATE(580)] = 4435, + [SMALL_STATE(581)] = 4569, + [SMALL_STATE(582)] = 4699, + [SMALL_STATE(583)] = 4833, + [SMALL_STATE(584)] = 4965, + [SMALL_STATE(585)] = 5093, + [SMALL_STATE(586)] = 5227, + [SMALL_STATE(587)] = 5361, + [SMALL_STATE(588)] = 5495, + [SMALL_STATE(589)] = 5629, + [SMALL_STATE(590)] = 5763, + [SMALL_STATE(591)] = 5897, + [SMALL_STATE(592)] = 6029, + [SMALL_STATE(593)] = 6163, + [SMALL_STATE(594)] = 6297, + [SMALL_STATE(595)] = 6431, + [SMALL_STATE(596)] = 6565, + [SMALL_STATE(597)] = 6699, + [SMALL_STATE(598)] = 6833, + [SMALL_STATE(599)] = 6963, + [SMALL_STATE(600)] = 7097, + [SMALL_STATE(601)] = 7231, + [SMALL_STATE(602)] = 7365, + [SMALL_STATE(603)] = 7497, + [SMALL_STATE(604)] = 7631, + [SMALL_STATE(605)] = 7765, + [SMALL_STATE(606)] = 7899, + [SMALL_STATE(607)] = 8033, + [SMALL_STATE(608)] = 8165, + [SMALL_STATE(609)] = 8299, + [SMALL_STATE(610)] = 8433, + [SMALL_STATE(611)] = 8567, + [SMALL_STATE(612)] = 8701, + [SMALL_STATE(613)] = 8835, + [SMALL_STATE(614)] = 8963, + [SMALL_STATE(615)] = 9097, + [SMALL_STATE(616)] = 9225, + [SMALL_STATE(617)] = 9359, + [SMALL_STATE(618)] = 9493, + [SMALL_STATE(619)] = 9620, + [SMALL_STATE(620)] = 9747, + [SMALL_STATE(621)] = 9874, + [SMALL_STATE(622)] = 10001, + [SMALL_STATE(623)] = 10128, + [SMALL_STATE(624)] = 10255, + [SMALL_STATE(625)] = 10382, + [SMALL_STATE(626)] = 10509, + [SMALL_STATE(627)] = 10636, + [SMALL_STATE(628)] = 10763, + [SMALL_STATE(629)] = 10890, + [SMALL_STATE(630)] = 11017, + [SMALL_STATE(631)] = 11144, + [SMALL_STATE(632)] = 11271, + [SMALL_STATE(633)] = 11398, + [SMALL_STATE(634)] = 11525, + [SMALL_STATE(635)] = 11652, + [SMALL_STATE(636)] = 11779, + [SMALL_STATE(637)] = 11906, + [SMALL_STATE(638)] = 12033, + [SMALL_STATE(639)] = 12160, + [SMALL_STATE(640)] = 12287, + [SMALL_STATE(641)] = 12414, + [SMALL_STATE(642)] = 12541, + [SMALL_STATE(643)] = 12668, + [SMALL_STATE(644)] = 12795, + [SMALL_STATE(645)] = 12922, + [SMALL_STATE(646)] = 13049, + [SMALL_STATE(647)] = 13176, + [SMALL_STATE(648)] = 13303, + [SMALL_STATE(649)] = 13430, + [SMALL_STATE(650)] = 13557, + [SMALL_STATE(651)] = 13684, + [SMALL_STATE(652)] = 13811, + [SMALL_STATE(653)] = 13938, + [SMALL_STATE(654)] = 14066, + [SMALL_STATE(655)] = 14194, + [SMALL_STATE(656)] = 14322, + [SMALL_STATE(657)] = 14450, + [SMALL_STATE(658)] = 14578, + [SMALL_STATE(659)] = 14706, + [SMALL_STATE(660)] = 14834, + [SMALL_STATE(661)] = 14962, + [SMALL_STATE(662)] = 15090, + [SMALL_STATE(663)] = 15218, + [SMALL_STATE(664)] = 15346, + [SMALL_STATE(665)] = 15474, + [SMALL_STATE(666)] = 15602, + [SMALL_STATE(667)] = 15730, + [SMALL_STATE(668)] = 15858, + [SMALL_STATE(669)] = 15986, + [SMALL_STATE(670)] = 16114, + [SMALL_STATE(671)] = 16242, + [SMALL_STATE(672)] = 16370, + [SMALL_STATE(673)] = 16498, + [SMALL_STATE(674)] = 16626, + [SMALL_STATE(675)] = 16754, + [SMALL_STATE(676)] = 16882, + [SMALL_STATE(677)] = 17010, + [SMALL_STATE(678)] = 17138, + [SMALL_STATE(679)] = 17266, + [SMALL_STATE(680)] = 17394, + [SMALL_STATE(681)] = 17522, + [SMALL_STATE(682)] = 17650, + [SMALL_STATE(683)] = 17778, + [SMALL_STATE(684)] = 17906, + [SMALL_STATE(685)] = 18034, + [SMALL_STATE(686)] = 18162, + [SMALL_STATE(687)] = 18290, + [SMALL_STATE(688)] = 18418, + [SMALL_STATE(689)] = 18546, + [SMALL_STATE(690)] = 18674, + [SMALL_STATE(691)] = 18802, + [SMALL_STATE(692)] = 18930, + [SMALL_STATE(693)] = 19058, + [SMALL_STATE(694)] = 19186, + [SMALL_STATE(695)] = 19314, + [SMALL_STATE(696)] = 19442, + [SMALL_STATE(697)] = 19570, + [SMALL_STATE(698)] = 19698, + [SMALL_STATE(699)] = 19826, + [SMALL_STATE(700)] = 19954, + [SMALL_STATE(701)] = 20082, + [SMALL_STATE(702)] = 20210, + [SMALL_STATE(703)] = 20338, + [SMALL_STATE(704)] = 20466, + [SMALL_STATE(705)] = 20594, + [SMALL_STATE(706)] = 20722, + [SMALL_STATE(707)] = 20850, + [SMALL_STATE(708)] = 20976, + [SMALL_STATE(709)] = 21104, + [SMALL_STATE(710)] = 21232, + [SMALL_STATE(711)] = 21360, + [SMALL_STATE(712)] = 21488, + [SMALL_STATE(713)] = 21616, + [SMALL_STATE(714)] = 21744, + [SMALL_STATE(715)] = 21872, + [SMALL_STATE(716)] = 22000, + [SMALL_STATE(717)] = 22128, + [SMALL_STATE(718)] = 22256, + [SMALL_STATE(719)] = 22384, + [SMALL_STATE(720)] = 22512, + [SMALL_STATE(721)] = 22640, + [SMALL_STATE(722)] = 22768, + [SMALL_STATE(723)] = 22896, + [SMALL_STATE(724)] = 23024, + [SMALL_STATE(725)] = 23152, + [SMALL_STATE(726)] = 23280, + [SMALL_STATE(727)] = 23408, + [SMALL_STATE(728)] = 23536, + [SMALL_STATE(729)] = 23664, + [SMALL_STATE(730)] = 23792, + [SMALL_STATE(731)] = 23920, + [SMALL_STATE(732)] = 24048, + [SMALL_STATE(733)] = 24176, + [SMALL_STATE(734)] = 24304, + [SMALL_STATE(735)] = 24432, + [SMALL_STATE(736)] = 24560, + [SMALL_STATE(737)] = 24688, + [SMALL_STATE(738)] = 24816, + [SMALL_STATE(739)] = 24944, + [SMALL_STATE(740)] = 25072, + [SMALL_STATE(741)] = 25198, + [SMALL_STATE(742)] = 25326, + [SMALL_STATE(743)] = 25454, + [SMALL_STATE(744)] = 25582, + [SMALL_STATE(745)] = 25710, + [SMALL_STATE(746)] = 25838, + [SMALL_STATE(747)] = 25966, + [SMALL_STATE(748)] = 26094, + [SMALL_STATE(749)] = 26222, + [SMALL_STATE(750)] = 26350, + [SMALL_STATE(751)] = 26478, + [SMALL_STATE(752)] = 26603, + [SMALL_STATE(753)] = 26728, + [SMALL_STATE(754)] = 26853, + [SMALL_STATE(755)] = 26978, + [SMALL_STATE(756)] = 27103, + [SMALL_STATE(757)] = 27228, + [SMALL_STATE(758)] = 27353, + [SMALL_STATE(759)] = 27478, + [SMALL_STATE(760)] = 27603, + [SMALL_STATE(761)] = 27728, + [SMALL_STATE(762)] = 27853, + [SMALL_STATE(763)] = 27978, + [SMALL_STATE(764)] = 28103, + [SMALL_STATE(765)] = 28228, + [SMALL_STATE(766)] = 28353, + [SMALL_STATE(767)] = 28478, + [SMALL_STATE(768)] = 28603, + [SMALL_STATE(769)] = 28728, + [SMALL_STATE(770)] = 28853, + [SMALL_STATE(771)] = 28978, + [SMALL_STATE(772)] = 29103, + [SMALL_STATE(773)] = 29228, + [SMALL_STATE(774)] = 29353, + [SMALL_STATE(775)] = 29478, + [SMALL_STATE(776)] = 29603, + [SMALL_STATE(777)] = 29728, + [SMALL_STATE(778)] = 29853, + [SMALL_STATE(779)] = 29978, + [SMALL_STATE(780)] = 30103, + [SMALL_STATE(781)] = 30228, + [SMALL_STATE(782)] = 30353, + [SMALL_STATE(783)] = 30478, + [SMALL_STATE(784)] = 30603, + [SMALL_STATE(785)] = 30728, + [SMALL_STATE(786)] = 30853, + [SMALL_STATE(787)] = 30978, + [SMALL_STATE(788)] = 31103, + [SMALL_STATE(789)] = 31228, + [SMALL_STATE(790)] = 31353, + [SMALL_STATE(791)] = 31478, + [SMALL_STATE(792)] = 31603, + [SMALL_STATE(793)] = 31728, + [SMALL_STATE(794)] = 31853, + [SMALL_STATE(795)] = 31978, + [SMALL_STATE(796)] = 32103, + [SMALL_STATE(797)] = 32228, + [SMALL_STATE(798)] = 32353, + [SMALL_STATE(799)] = 32478, + [SMALL_STATE(800)] = 32603, + [SMALL_STATE(801)] = 32728, + [SMALL_STATE(802)] = 32853, + [SMALL_STATE(803)] = 32978, + [SMALL_STATE(804)] = 33103, + [SMALL_STATE(805)] = 33228, + [SMALL_STATE(806)] = 33353, + [SMALL_STATE(807)] = 33478, + [SMALL_STATE(808)] = 33603, + [SMALL_STATE(809)] = 33728, + [SMALL_STATE(810)] = 33853, + [SMALL_STATE(811)] = 33978, + [SMALL_STATE(812)] = 34103, + [SMALL_STATE(813)] = 34228, + [SMALL_STATE(814)] = 34353, + [SMALL_STATE(815)] = 34478, + [SMALL_STATE(816)] = 34603, + [SMALL_STATE(817)] = 34728, + [SMALL_STATE(818)] = 34853, + [SMALL_STATE(819)] = 34978, + [SMALL_STATE(820)] = 35103, + [SMALL_STATE(821)] = 35228, + [SMALL_STATE(822)] = 35353, + [SMALL_STATE(823)] = 35478, + [SMALL_STATE(824)] = 35603, + [SMALL_STATE(825)] = 35728, + [SMALL_STATE(826)] = 35853, + [SMALL_STATE(827)] = 35978, + [SMALL_STATE(828)] = 36103, + [SMALL_STATE(829)] = 36228, + [SMALL_STATE(830)] = 36353, + [SMALL_STATE(831)] = 36478, + [SMALL_STATE(832)] = 36603, + [SMALL_STATE(833)] = 36728, + [SMALL_STATE(834)] = 36853, + [SMALL_STATE(835)] = 36978, + [SMALL_STATE(836)] = 37103, + [SMALL_STATE(837)] = 37228, + [SMALL_STATE(838)] = 37353, + [SMALL_STATE(839)] = 37478, + [SMALL_STATE(840)] = 37603, + [SMALL_STATE(841)] = 37728, + [SMALL_STATE(842)] = 37853, + [SMALL_STATE(843)] = 37978, + [SMALL_STATE(844)] = 38103, + [SMALL_STATE(845)] = 38228, + [SMALL_STATE(846)] = 38353, + [SMALL_STATE(847)] = 38478, + [SMALL_STATE(848)] = 38603, + [SMALL_STATE(849)] = 38728, + [SMALL_STATE(850)] = 38853, + [SMALL_STATE(851)] = 38978, + [SMALL_STATE(852)] = 39103, + [SMALL_STATE(853)] = 39228, + [SMALL_STATE(854)] = 39353, + [SMALL_STATE(855)] = 39478, + [SMALL_STATE(856)] = 39603, + [SMALL_STATE(857)] = 39728, + [SMALL_STATE(858)] = 39853, + [SMALL_STATE(859)] = 39978, + [SMALL_STATE(860)] = 40103, + [SMALL_STATE(861)] = 40228, + [SMALL_STATE(862)] = 40353, + [SMALL_STATE(863)] = 40478, + [SMALL_STATE(864)] = 40603, + [SMALL_STATE(865)] = 40728, + [SMALL_STATE(866)] = 40853, + [SMALL_STATE(867)] = 40978, + [SMALL_STATE(868)] = 41103, + [SMALL_STATE(869)] = 41228, + [SMALL_STATE(870)] = 41353, + [SMALL_STATE(871)] = 41478, + [SMALL_STATE(872)] = 41603, + [SMALL_STATE(873)] = 41728, + [SMALL_STATE(874)] = 41853, + [SMALL_STATE(875)] = 41978, + [SMALL_STATE(876)] = 42103, + [SMALL_STATE(877)] = 42228, + [SMALL_STATE(878)] = 42353, + [SMALL_STATE(879)] = 42478, + [SMALL_STATE(880)] = 42603, + [SMALL_STATE(881)] = 42728, + [SMALL_STATE(882)] = 42853, + [SMALL_STATE(883)] = 42978, + [SMALL_STATE(884)] = 43103, + [SMALL_STATE(885)] = 43228, + [SMALL_STATE(886)] = 43353, + [SMALL_STATE(887)] = 43478, + [SMALL_STATE(888)] = 43600, + [SMALL_STATE(889)] = 43722, + [SMALL_STATE(890)] = 43844, + [SMALL_STATE(891)] = 43966, + [SMALL_STATE(892)] = 44088, + [SMALL_STATE(893)] = 44210, + [SMALL_STATE(894)] = 44332, + [SMALL_STATE(895)] = 44454, + [SMALL_STATE(896)] = 44576, + [SMALL_STATE(897)] = 44698, + [SMALL_STATE(898)] = 44820, + [SMALL_STATE(899)] = 44942, + [SMALL_STATE(900)] = 45064, + [SMALL_STATE(901)] = 45183, + [SMALL_STATE(902)] = 45302, + [SMALL_STATE(903)] = 45421, + [SMALL_STATE(904)] = 45540, + [SMALL_STATE(905)] = 45659, + [SMALL_STATE(906)] = 45778, + [SMALL_STATE(907)] = 45897, + [SMALL_STATE(908)] = 46016, + [SMALL_STATE(909)] = 46135, + [SMALL_STATE(910)] = 46254, + [SMALL_STATE(911)] = 46373, + [SMALL_STATE(912)] = 46492, + [SMALL_STATE(913)] = 46611, + [SMALL_STATE(914)] = 46660, + [SMALL_STATE(915)] = 46710, + [SMALL_STATE(916)] = 46756, + [SMALL_STATE(917)] = 46806, + [SMALL_STATE(918)] = 46854, + [SMALL_STATE(919)] = 46904, + [SMALL_STATE(920)] = 46954, + [SMALL_STATE(921)] = 47004, + [SMALL_STATE(922)] = 47054, + [SMALL_STATE(923)] = 47104, + [SMALL_STATE(924)] = 47154, + [SMALL_STATE(925)] = 47204, + [SMALL_STATE(926)] = 47254, + [SMALL_STATE(927)] = 47304, + [SMALL_STATE(928)] = 47354, + [SMALL_STATE(929)] = 47404, + [SMALL_STATE(930)] = 47454, + [SMALL_STATE(931)] = 47504, + [SMALL_STATE(932)] = 47554, + [SMALL_STATE(933)] = 47604, + [SMALL_STATE(934)] = 47654, + [SMALL_STATE(935)] = 47704, + [SMALL_STATE(936)] = 47754, + [SMALL_STATE(937)] = 47804, + [SMALL_STATE(938)] = 47854, + [SMALL_STATE(939)] = 47904, + [SMALL_STATE(940)] = 47954, + [SMALL_STATE(941)] = 48004, + [SMALL_STATE(942)] = 48049, + [SMALL_STATE(943)] = 48098, + [SMALL_STATE(944)] = 48147, + [SMALL_STATE(945)] = 48192, + [SMALL_STATE(946)] = 48237, + [SMALL_STATE(947)] = 48282, + [SMALL_STATE(948)] = 48327, + [SMALL_STATE(949)] = 48372, + [SMALL_STATE(950)] = 48417, + [SMALL_STATE(951)] = 48462, + [SMALL_STATE(952)] = 48507, + [SMALL_STATE(953)] = 48556, + [SMALL_STATE(954)] = 48601, + [SMALL_STATE(955)] = 48646, + [SMALL_STATE(956)] = 48691, + [SMALL_STATE(957)] = 48736, + [SMALL_STATE(958)] = 48781, + [SMALL_STATE(959)] = 48826, + [SMALL_STATE(960)] = 48871, + [SMALL_STATE(961)] = 48916, + [SMALL_STATE(962)] = 48961, + [SMALL_STATE(963)] = 49006, + [SMALL_STATE(964)] = 49051, + [SMALL_STATE(965)] = 49096, + [SMALL_STATE(966)] = 49141, + [SMALL_STATE(967)] = 49186, + [SMALL_STATE(968)] = 49231, + [SMALL_STATE(969)] = 49276, + [SMALL_STATE(970)] = 49321, + [SMALL_STATE(971)] = 49366, + [SMALL_STATE(972)] = 49411, + [SMALL_STATE(973)] = 49456, + [SMALL_STATE(974)] = 49501, + [SMALL_STATE(975)] = 49546, + [SMALL_STATE(976)] = 49591, + [SMALL_STATE(977)] = 49636, + [SMALL_STATE(978)] = 49681, + [SMALL_STATE(979)] = 49726, + [SMALL_STATE(980)] = 49771, + [SMALL_STATE(981)] = 49816, + [SMALL_STATE(982)] = 49861, + [SMALL_STATE(983)] = 49906, + [SMALL_STATE(984)] = 49951, + [SMALL_STATE(985)] = 49996, + [SMALL_STATE(986)] = 50041, + [SMALL_STATE(987)] = 50086, + [SMALL_STATE(988)] = 50131, + [SMALL_STATE(989)] = 50176, + [SMALL_STATE(990)] = 50221, + [SMALL_STATE(991)] = 50266, + [SMALL_STATE(992)] = 50311, + [SMALL_STATE(993)] = 50356, + [SMALL_STATE(994)] = 50401, + [SMALL_STATE(995)] = 50446, + [SMALL_STATE(996)] = 50491, + [SMALL_STATE(997)] = 50536, + [SMALL_STATE(998)] = 50581, + [SMALL_STATE(999)] = 50626, + [SMALL_STATE(1000)] = 50671, + [SMALL_STATE(1001)] = 50716, + [SMALL_STATE(1002)] = 50765, + [SMALL_STATE(1003)] = 50810, + [SMALL_STATE(1004)] = 50855, + [SMALL_STATE(1005)] = 50900, + [SMALL_STATE(1006)] = 50945, + [SMALL_STATE(1007)] = 50990, + [SMALL_STATE(1008)] = 51035, + [SMALL_STATE(1009)] = 51080, + [SMALL_STATE(1010)] = 51129, + [SMALL_STATE(1011)] = 51178, + [SMALL_STATE(1012)] = 51227, + [SMALL_STATE(1013)] = 51276, + [SMALL_STATE(1014)] = 51325, + [SMALL_STATE(1015)] = 51374, + [SMALL_STATE(1016)] = 51423, + [SMALL_STATE(1017)] = 51472, + [SMALL_STATE(1018)] = 51521, + [SMALL_STATE(1019)] = 51570, + [SMALL_STATE(1020)] = 51619, + [SMALL_STATE(1021)] = 51668, + [SMALL_STATE(1022)] = 51717, + [SMALL_STATE(1023)] = 51766, + [SMALL_STATE(1024)] = 51815, + [SMALL_STATE(1025)] = 51864, + [SMALL_STATE(1026)] = 51913, + [SMALL_STATE(1027)] = 51962, + [SMALL_STATE(1028)] = 52007, + [SMALL_STATE(1029)] = 52056, + [SMALL_STATE(1030)] = 52105, + [SMALL_STATE(1031)] = 52154, + [SMALL_STATE(1032)] = 52203, + [SMALL_STATE(1033)] = 52252, + [SMALL_STATE(1034)] = 52301, + [SMALL_STATE(1035)] = 52350, + [SMALL_STATE(1036)] = 52399, + [SMALL_STATE(1037)] = 52448, + [SMALL_STATE(1038)] = 52497, + [SMALL_STATE(1039)] = 52546, + [SMALL_STATE(1040)] = 52595, + [SMALL_STATE(1041)] = 52644, + [SMALL_STATE(1042)] = 52693, + [SMALL_STATE(1043)] = 52742, + [SMALL_STATE(1044)] = 52791, + [SMALL_STATE(1045)] = 52840, + [SMALL_STATE(1046)] = 52889, + [SMALL_STATE(1047)] = 52938, + [SMALL_STATE(1048)] = 52987, + [SMALL_STATE(1049)] = 53036, + [SMALL_STATE(1050)] = 53085, + [SMALL_STATE(1051)] = 53134, + [SMALL_STATE(1052)] = 53183, + [SMALL_STATE(1053)] = 53232, + [SMALL_STATE(1054)] = 53281, + [SMALL_STATE(1055)] = 53330, + [SMALL_STATE(1056)] = 53379, + [SMALL_STATE(1057)] = 53424, + [SMALL_STATE(1058)] = 53472, + [SMALL_STATE(1059)] = 53516, + [SMALL_STATE(1060)] = 53560, + [SMALL_STATE(1061)] = 53604, + [SMALL_STATE(1062)] = 53648, + [SMALL_STATE(1063)] = 53692, + [SMALL_STATE(1064)] = 53736, + [SMALL_STATE(1065)] = 53780, + [SMALL_STATE(1066)] = 53824, + [SMALL_STATE(1067)] = 53868, + [SMALL_STATE(1068)] = 53912, + [SMALL_STATE(1069)] = 53956, + [SMALL_STATE(1070)] = 54004, + [SMALL_STATE(1071)] = 54052, + [SMALL_STATE(1072)] = 54096, + [SMALL_STATE(1073)] = 54140, + [SMALL_STATE(1074)] = 54188, + [SMALL_STATE(1075)] = 54236, + [SMALL_STATE(1076)] = 54284, + [SMALL_STATE(1077)] = 54328, + [SMALL_STATE(1078)] = 54372, + [SMALL_STATE(1079)] = 54416, + [SMALL_STATE(1080)] = 54460, + [SMALL_STATE(1081)] = 54504, + [SMALL_STATE(1082)] = 54548, + [SMALL_STATE(1083)] = 54592, + [SMALL_STATE(1084)] = 54640, + [SMALL_STATE(1085)] = 54688, + [SMALL_STATE(1086)] = 54736, + [SMALL_STATE(1087)] = 54784, + [SMALL_STATE(1088)] = 54832, + [SMALL_STATE(1089)] = 54880, + [SMALL_STATE(1090)] = 54928, + [SMALL_STATE(1091)] = 54976, + [SMALL_STATE(1092)] = 55020, + [SMALL_STATE(1093)] = 55064, + [SMALL_STATE(1094)] = 55108, + [SMALL_STATE(1095)] = 55152, + [SMALL_STATE(1096)] = 55200, + [SMALL_STATE(1097)] = 55248, + [SMALL_STATE(1098)] = 55292, + [SMALL_STATE(1099)] = 55336, + [SMALL_STATE(1100)] = 55380, + [SMALL_STATE(1101)] = 55424, + [SMALL_STATE(1102)] = 55468, + [SMALL_STATE(1103)] = 55512, + [SMALL_STATE(1104)] = 55556, + [SMALL_STATE(1105)] = 55600, + [SMALL_STATE(1106)] = 55644, + [SMALL_STATE(1107)] = 55692, + [SMALL_STATE(1108)] = 55736, + [SMALL_STATE(1109)] = 55780, + [SMALL_STATE(1110)] = 55824, + [SMALL_STATE(1111)] = 55868, + [SMALL_STATE(1112)] = 55912, + [SMALL_STATE(1113)] = 55956, + [SMALL_STATE(1114)] = 56000, + [SMALL_STATE(1115)] = 56048, + [SMALL_STATE(1116)] = 56096, + [SMALL_STATE(1117)] = 56144, + [SMALL_STATE(1118)] = 56192, + [SMALL_STATE(1119)] = 56240, + [SMALL_STATE(1120)] = 56288, + [SMALL_STATE(1121)] = 56336, + [SMALL_STATE(1122)] = 56384, + [SMALL_STATE(1123)] = 56432, + [SMALL_STATE(1124)] = 56480, + [SMALL_STATE(1125)] = 56528, + [SMALL_STATE(1126)] = 56576, + [SMALL_STATE(1127)] = 56624, + [SMALL_STATE(1128)] = 56672, + [SMALL_STATE(1129)] = 56720, + [SMALL_STATE(1130)] = 56768, + [SMALL_STATE(1131)] = 56816, + [SMALL_STATE(1132)] = 56864, + [SMALL_STATE(1133)] = 56912, + [SMALL_STATE(1134)] = 56960, + [SMALL_STATE(1135)] = 57008, + [SMALL_STATE(1136)] = 57056, + [SMALL_STATE(1137)] = 57104, + [SMALL_STATE(1138)] = 57152, + [SMALL_STATE(1139)] = 57200, + [SMALL_STATE(1140)] = 57248, + [SMALL_STATE(1141)] = 57296, + [SMALL_STATE(1142)] = 57344, + [SMALL_STATE(1143)] = 57392, + [SMALL_STATE(1144)] = 57440, + [SMALL_STATE(1145)] = 57488, + [SMALL_STATE(1146)] = 57536, + [SMALL_STATE(1147)] = 57584, + [SMALL_STATE(1148)] = 57628, + [SMALL_STATE(1149)] = 57672, + [SMALL_STATE(1150)] = 57716, + [SMALL_STATE(1151)] = 57760, + [SMALL_STATE(1152)] = 57804, + [SMALL_STATE(1153)] = 57852, + [SMALL_STATE(1154)] = 57896, + [SMALL_STATE(1155)] = 57940, + [SMALL_STATE(1156)] = 57984, + [SMALL_STATE(1157)] = 58028, + [SMALL_STATE(1158)] = 58072, + [SMALL_STATE(1159)] = 58116, + [SMALL_STATE(1160)] = 58164, + [SMALL_STATE(1161)] = 58208, + [SMALL_STATE(1162)] = 58252, + [SMALL_STATE(1163)] = 58296, + [SMALL_STATE(1164)] = 58344, + [SMALL_STATE(1165)] = 58392, + [SMALL_STATE(1166)] = 58440, + [SMALL_STATE(1167)] = 58488, + [SMALL_STATE(1168)] = 58532, + [SMALL_STATE(1169)] = 58580, + [SMALL_STATE(1170)] = 58628, + [SMALL_STATE(1171)] = 58672, + [SMALL_STATE(1172)] = 58716, + [SMALL_STATE(1173)] = 58760, + [SMALL_STATE(1174)] = 58804, + [SMALL_STATE(1175)] = 58852, + [SMALL_STATE(1176)] = 58900, + [SMALL_STATE(1177)] = 58948, + [SMALL_STATE(1178)] = 58992, + [SMALL_STATE(1179)] = 59036, + [SMALL_STATE(1180)] = 59080, + [SMALL_STATE(1181)] = 59124, + [SMALL_STATE(1182)] = 59168, + [SMALL_STATE(1183)] = 59216, + [SMALL_STATE(1184)] = 59264, + [SMALL_STATE(1185)] = 59312, + [SMALL_STATE(1186)] = 59360, + [SMALL_STATE(1187)] = 59408, + [SMALL_STATE(1188)] = 59456, + [SMALL_STATE(1189)] = 59504, + [SMALL_STATE(1190)] = 59552, + [SMALL_STATE(1191)] = 59600, + [SMALL_STATE(1192)] = 59644, + [SMALL_STATE(1193)] = 59692, + [SMALL_STATE(1194)] = 59736, + [SMALL_STATE(1195)] = 59784, + [SMALL_STATE(1196)] = 59828, + [SMALL_STATE(1197)] = 59876, + [SMALL_STATE(1198)] = 59920, + [SMALL_STATE(1199)] = 59968, + [SMALL_STATE(1200)] = 60012, + [SMALL_STATE(1201)] = 60060, + [SMALL_STATE(1202)] = 60104, + [SMALL_STATE(1203)] = 60148, + [SMALL_STATE(1204)] = 60196, + [SMALL_STATE(1205)] = 60244, + [SMALL_STATE(1206)] = 60288, + [SMALL_STATE(1207)] = 60332, + [SMALL_STATE(1208)] = 60380, + [SMALL_STATE(1209)] = 60428, + [SMALL_STATE(1210)] = 60472, + [SMALL_STATE(1211)] = 60520, + [SMALL_STATE(1212)] = 60564, + [SMALL_STATE(1213)] = 60608, + [SMALL_STATE(1214)] = 60656, + [SMALL_STATE(1215)] = 60704, + [SMALL_STATE(1216)] = 60752, + [SMALL_STATE(1217)] = 60800, + [SMALL_STATE(1218)] = 60848, + [SMALL_STATE(1219)] = 60896, + [SMALL_STATE(1220)] = 60944, + [SMALL_STATE(1221)] = 60992, + [SMALL_STATE(1222)] = 61040, + [SMALL_STATE(1223)] = 61088, + [SMALL_STATE(1224)] = 61136, + [SMALL_STATE(1225)] = 61184, + [SMALL_STATE(1226)] = 61232, + [SMALL_STATE(1227)] = 61280, + [SMALL_STATE(1228)] = 61328, + [SMALL_STATE(1229)] = 61376, + [SMALL_STATE(1230)] = 61424, + [SMALL_STATE(1231)] = 61472, + [SMALL_STATE(1232)] = 61520, + [SMALL_STATE(1233)] = 61568, + [SMALL_STATE(1234)] = 61616, + [SMALL_STATE(1235)] = 61664, + [SMALL_STATE(1236)] = 61712, + [SMALL_STATE(1237)] = 61756, + [SMALL_STATE(1238)] = 61804, + [SMALL_STATE(1239)] = 61852, + [SMALL_STATE(1240)] = 61900, + [SMALL_STATE(1241)] = 61948, + [SMALL_STATE(1242)] = 61996, + [SMALL_STATE(1243)] = 62044, + [SMALL_STATE(1244)] = 62092, + [SMALL_STATE(1245)] = 62140, + [SMALL_STATE(1246)] = 62188, + [SMALL_STATE(1247)] = 62232, + [SMALL_STATE(1248)] = 62276, + [SMALL_STATE(1249)] = 62324, + [SMALL_STATE(1250)] = 62372, + [SMALL_STATE(1251)] = 62420, + [SMALL_STATE(1252)] = 62468, + [SMALL_STATE(1253)] = 62516, + [SMALL_STATE(1254)] = 62564, + [SMALL_STATE(1255)] = 62608, + [SMALL_STATE(1256)] = 62656, + [SMALL_STATE(1257)] = 62704, + [SMALL_STATE(1258)] = 62752, + [SMALL_STATE(1259)] = 62800, + [SMALL_STATE(1260)] = 62848, + [SMALL_STATE(1261)] = 62896, + [SMALL_STATE(1262)] = 62944, + [SMALL_STATE(1263)] = 62992, + [SMALL_STATE(1264)] = 63040, + [SMALL_STATE(1265)] = 63088, + [SMALL_STATE(1266)] = 63136, + [SMALL_STATE(1267)] = 63184, + [SMALL_STATE(1268)] = 63232, + [SMALL_STATE(1269)] = 63280, + [SMALL_STATE(1270)] = 63328, + [SMALL_STATE(1271)] = 63376, + [SMALL_STATE(1272)] = 63424, + [SMALL_STATE(1273)] = 63472, + [SMALL_STATE(1274)] = 63520, + [SMALL_STATE(1275)] = 63568, + [SMALL_STATE(1276)] = 63616, + [SMALL_STATE(1277)] = 63664, + [SMALL_STATE(1278)] = 63712, + [SMALL_STATE(1279)] = 63760, + [SMALL_STATE(1280)] = 63808, + [SMALL_STATE(1281)] = 63856, + [SMALL_STATE(1282)] = 63904, + [SMALL_STATE(1283)] = 63952, + [SMALL_STATE(1284)] = 64000, + [SMALL_STATE(1285)] = 64048, + [SMALL_STATE(1286)] = 64096, + [SMALL_STATE(1287)] = 64140, + [SMALL_STATE(1288)] = 64188, + [SMALL_STATE(1289)] = 64236, + [SMALL_STATE(1290)] = 64284, + [SMALL_STATE(1291)] = 64332, + [SMALL_STATE(1292)] = 64380, + [SMALL_STATE(1293)] = 64428, + [SMALL_STATE(1294)] = 64476, + [SMALL_STATE(1295)] = 64524, + [SMALL_STATE(1296)] = 64572, + [SMALL_STATE(1297)] = 64620, + [SMALL_STATE(1298)] = 64664, + [SMALL_STATE(1299)] = 64712, + [SMALL_STATE(1300)] = 64760, + [SMALL_STATE(1301)] = 64804, + [SMALL_STATE(1302)] = 64852, + [SMALL_STATE(1303)] = 64900, + [SMALL_STATE(1304)] = 64948, + [SMALL_STATE(1305)] = 64996, + [SMALL_STATE(1306)] = 65044, + [SMALL_STATE(1307)] = 65092, + [SMALL_STATE(1308)] = 65140, + [SMALL_STATE(1309)] = 65188, + [SMALL_STATE(1310)] = 65236, + [SMALL_STATE(1311)] = 65284, + [SMALL_STATE(1312)] = 65332, + [SMALL_STATE(1313)] = 65380, + [SMALL_STATE(1314)] = 65428, + [SMALL_STATE(1315)] = 65472, + [SMALL_STATE(1316)] = 65520, + [SMALL_STATE(1317)] = 65568, + [SMALL_STATE(1318)] = 65616, + [SMALL_STATE(1319)] = 65664, + [SMALL_STATE(1320)] = 65712, + [SMALL_STATE(1321)] = 65760, + [SMALL_STATE(1322)] = 65808, + [SMALL_STATE(1323)] = 65856, + [SMALL_STATE(1324)] = 65904, + [SMALL_STATE(1325)] = 65952, + [SMALL_STATE(1326)] = 66000, + [SMALL_STATE(1327)] = 66048, + [SMALL_STATE(1328)] = 66096, + [SMALL_STATE(1329)] = 66140, + [SMALL_STATE(1330)] = 66188, + [SMALL_STATE(1331)] = 66236, + [SMALL_STATE(1332)] = 66284, + [SMALL_STATE(1333)] = 66332, + [SMALL_STATE(1334)] = 66380, + [SMALL_STATE(1335)] = 66428, + [SMALL_STATE(1336)] = 66476, + [SMALL_STATE(1337)] = 66524, + [SMALL_STATE(1338)] = 66572, + [SMALL_STATE(1339)] = 66620, + [SMALL_STATE(1340)] = 66668, + [SMALL_STATE(1341)] = 66716, + [SMALL_STATE(1342)] = 66764, + [SMALL_STATE(1343)] = 66812, + [SMALL_STATE(1344)] = 66860, + [SMALL_STATE(1345)] = 66908, + [SMALL_STATE(1346)] = 66956, + [SMALL_STATE(1347)] = 67004, + [SMALL_STATE(1348)] = 67052, + [SMALL_STATE(1349)] = 67100, + [SMALL_STATE(1350)] = 67148, + [SMALL_STATE(1351)] = 67196, + [SMALL_STATE(1352)] = 67244, + [SMALL_STATE(1353)] = 67292, + [SMALL_STATE(1354)] = 67336, + [SMALL_STATE(1355)] = 67384, + [SMALL_STATE(1356)] = 67432, + [SMALL_STATE(1357)] = 67480, + [SMALL_STATE(1358)] = 67528, + [SMALL_STATE(1359)] = 67576, + [SMALL_STATE(1360)] = 67624, + [SMALL_STATE(1361)] = 67672, + [SMALL_STATE(1362)] = 67720, + [SMALL_STATE(1363)] = 67768, + [SMALL_STATE(1364)] = 67816, + [SMALL_STATE(1365)] = 67864, + [SMALL_STATE(1366)] = 67912, + [SMALL_STATE(1367)] = 67960, + [SMALL_STATE(1368)] = 68008, + [SMALL_STATE(1369)] = 68056, + [SMALL_STATE(1370)] = 68104, + [SMALL_STATE(1371)] = 68152, + [SMALL_STATE(1372)] = 68200, + [SMALL_STATE(1373)] = 68248, + [SMALL_STATE(1374)] = 68296, + [SMALL_STATE(1375)] = 68344, + [SMALL_STATE(1376)] = 68392, + [SMALL_STATE(1377)] = 68440, + [SMALL_STATE(1378)] = 68488, + [SMALL_STATE(1379)] = 68536, + [SMALL_STATE(1380)] = 68584, + [SMALL_STATE(1381)] = 68632, + [SMALL_STATE(1382)] = 68680, + [SMALL_STATE(1383)] = 68728, + [SMALL_STATE(1384)] = 68772, + [SMALL_STATE(1385)] = 68820, + [SMALL_STATE(1386)] = 68868, + [SMALL_STATE(1387)] = 68916, + [SMALL_STATE(1388)] = 68964, + [SMALL_STATE(1389)] = 69012, + [SMALL_STATE(1390)] = 69060, + [SMALL_STATE(1391)] = 69108, + [SMALL_STATE(1392)] = 69156, + [SMALL_STATE(1393)] = 69204, + [SMALL_STATE(1394)] = 69252, + [SMALL_STATE(1395)] = 69300, + [SMALL_STATE(1396)] = 69348, + [SMALL_STATE(1397)] = 69396, + [SMALL_STATE(1398)] = 69444, + [SMALL_STATE(1399)] = 69492, + [SMALL_STATE(1400)] = 69536, + [SMALL_STATE(1401)] = 69584, + [SMALL_STATE(1402)] = 69632, + [SMALL_STATE(1403)] = 69680, + [SMALL_STATE(1404)] = 69728, + [SMALL_STATE(1405)] = 69776, + [SMALL_STATE(1406)] = 69824, + [SMALL_STATE(1407)] = 69872, + [SMALL_STATE(1408)] = 69920, + [SMALL_STATE(1409)] = 69968, + [SMALL_STATE(1410)] = 70016, + [SMALL_STATE(1411)] = 70064, + [SMALL_STATE(1412)] = 70112, + [SMALL_STATE(1413)] = 70160, + [SMALL_STATE(1414)] = 70208, + [SMALL_STATE(1415)] = 70256, + [SMALL_STATE(1416)] = 70300, + [SMALL_STATE(1417)] = 70348, + [SMALL_STATE(1418)] = 70396, + [SMALL_STATE(1419)] = 70444, + [SMALL_STATE(1420)] = 70492, + [SMALL_STATE(1421)] = 70540, + [SMALL_STATE(1422)] = 70588, + [SMALL_STATE(1423)] = 70636, + [SMALL_STATE(1424)] = 70684, + [SMALL_STATE(1425)] = 70732, + [SMALL_STATE(1426)] = 70776, + [SMALL_STATE(1427)] = 70820, + [SMALL_STATE(1428)] = 70864, + [SMALL_STATE(1429)] = 70912, + [SMALL_STATE(1430)] = 70956, + [SMALL_STATE(1431)] = 71004, + [SMALL_STATE(1432)] = 71048, + [SMALL_STATE(1433)] = 71092, + [SMALL_STATE(1434)] = 71136, + [SMALL_STATE(1435)] = 71180, + [SMALL_STATE(1436)] = 71224, + [SMALL_STATE(1437)] = 71272, + [SMALL_STATE(1438)] = 71320, + [SMALL_STATE(1439)] = 71368, + [SMALL_STATE(1440)] = 71412, + [SMALL_STATE(1441)] = 71460, + [SMALL_STATE(1442)] = 71508, + [SMALL_STATE(1443)] = 71552, + [SMALL_STATE(1444)] = 71596, + [SMALL_STATE(1445)] = 71644, + [SMALL_STATE(1446)] = 71688, + [SMALL_STATE(1447)] = 71736, + [SMALL_STATE(1448)] = 71780, + [SMALL_STATE(1449)] = 71828, + [SMALL_STATE(1450)] = 71872, + [SMALL_STATE(1451)] = 71920, + [SMALL_STATE(1452)] = 71964, + [SMALL_STATE(1453)] = 72008, + [SMALL_STATE(1454)] = 72052, + [SMALL_STATE(1455)] = 72096, + [SMALL_STATE(1456)] = 72144, + [SMALL_STATE(1457)] = 72188, + [SMALL_STATE(1458)] = 72232, + [SMALL_STATE(1459)] = 72276, + [SMALL_STATE(1460)] = 72320, + [SMALL_STATE(1461)] = 72364, + [SMALL_STATE(1462)] = 72408, + [SMALL_STATE(1463)] = 72452, + [SMALL_STATE(1464)] = 72496, + [SMALL_STATE(1465)] = 72544, + [SMALL_STATE(1466)] = 72588, + [SMALL_STATE(1467)] = 72632, + [SMALL_STATE(1468)] = 72680, + [SMALL_STATE(1469)] = 72724, + [SMALL_STATE(1470)] = 72768, + [SMALL_STATE(1471)] = 72816, + [SMALL_STATE(1472)] = 72864, + [SMALL_STATE(1473)] = 72908, + [SMALL_STATE(1474)] = 72956, + [SMALL_STATE(1475)] = 73000, + [SMALL_STATE(1476)] = 73044, + [SMALL_STATE(1477)] = 73088, + [SMALL_STATE(1478)] = 73132, + [SMALL_STATE(1479)] = 73180, + [SMALL_STATE(1480)] = 73224, + [SMALL_STATE(1481)] = 73268, + [SMALL_STATE(1482)] = 73312, + [SMALL_STATE(1483)] = 73360, + [SMALL_STATE(1484)] = 73404, + [SMALL_STATE(1485)] = 73448, + [SMALL_STATE(1486)] = 73492, + [SMALL_STATE(1487)] = 73536, + [SMALL_STATE(1488)] = 73580, + [SMALL_STATE(1489)] = 73628, + [SMALL_STATE(1490)] = 73672, + [SMALL_STATE(1491)] = 73720, + [SMALL_STATE(1492)] = 73763, + [SMALL_STATE(1493)] = 73806, + [SMALL_STATE(1494)] = 73849, + [SMALL_STATE(1495)] = 73892, + [SMALL_STATE(1496)] = 73935, + [SMALL_STATE(1497)] = 73978, + [SMALL_STATE(1498)] = 74021, + [SMALL_STATE(1499)] = 74064, + [SMALL_STATE(1500)] = 74107, + [SMALL_STATE(1501)] = 74150, + [SMALL_STATE(1502)] = 74193, + [SMALL_STATE(1503)] = 74236, + [SMALL_STATE(1504)] = 74279, + [SMALL_STATE(1505)] = 74322, + [SMALL_STATE(1506)] = 74365, + [SMALL_STATE(1507)] = 74408, + [SMALL_STATE(1508)] = 74451, + [SMALL_STATE(1509)] = 74494, + [SMALL_STATE(1510)] = 74537, + [SMALL_STATE(1511)] = 74580, + [SMALL_STATE(1512)] = 74623, + [SMALL_STATE(1513)] = 74666, + [SMALL_STATE(1514)] = 74709, + [SMALL_STATE(1515)] = 74752, + [SMALL_STATE(1516)] = 74795, + [SMALL_STATE(1517)] = 74838, + [SMALL_STATE(1518)] = 74881, + [SMALL_STATE(1519)] = 74924, + [SMALL_STATE(1520)] = 74967, + [SMALL_STATE(1521)] = 75010, + [SMALL_STATE(1522)] = 75053, + [SMALL_STATE(1523)] = 75096, + [SMALL_STATE(1524)] = 75139, + [SMALL_STATE(1525)] = 75182, + [SMALL_STATE(1526)] = 75225, + [SMALL_STATE(1527)] = 75268, + [SMALL_STATE(1528)] = 75311, + [SMALL_STATE(1529)] = 75354, + [SMALL_STATE(1530)] = 75397, + [SMALL_STATE(1531)] = 75440, + [SMALL_STATE(1532)] = 75483, + [SMALL_STATE(1533)] = 75526, + [SMALL_STATE(1534)] = 75569, + [SMALL_STATE(1535)] = 75612, + [SMALL_STATE(1536)] = 75655, + [SMALL_STATE(1537)] = 75698, + [SMALL_STATE(1538)] = 75741, + [SMALL_STATE(1539)] = 75784, + [SMALL_STATE(1540)] = 75827, + [SMALL_STATE(1541)] = 75870, + [SMALL_STATE(1542)] = 75913, + [SMALL_STATE(1543)] = 75956, + [SMALL_STATE(1544)] = 75999, + [SMALL_STATE(1545)] = 76042, + [SMALL_STATE(1546)] = 76085, + [SMALL_STATE(1547)] = 76128, + [SMALL_STATE(1548)] = 76171, + [SMALL_STATE(1549)] = 76214, + [SMALL_STATE(1550)] = 76257, + [SMALL_STATE(1551)] = 76300, + [SMALL_STATE(1552)] = 76343, + [SMALL_STATE(1553)] = 76386, + [SMALL_STATE(1554)] = 76429, + [SMALL_STATE(1555)] = 76472, + [SMALL_STATE(1556)] = 76515, + [SMALL_STATE(1557)] = 76558, + [SMALL_STATE(1558)] = 76601, + [SMALL_STATE(1559)] = 76644, + [SMALL_STATE(1560)] = 76687, + [SMALL_STATE(1561)] = 76730, + [SMALL_STATE(1562)] = 76773, + [SMALL_STATE(1563)] = 76816, + [SMALL_STATE(1564)] = 76859, + [SMALL_STATE(1565)] = 76902, + [SMALL_STATE(1566)] = 76945, + [SMALL_STATE(1567)] = 76988, + [SMALL_STATE(1568)] = 77031, + [SMALL_STATE(1569)] = 77074, + [SMALL_STATE(1570)] = 77117, + [SMALL_STATE(1571)] = 77160, + [SMALL_STATE(1572)] = 77203, + [SMALL_STATE(1573)] = 77246, + [SMALL_STATE(1574)] = 77289, + [SMALL_STATE(1575)] = 77332, + [SMALL_STATE(1576)] = 77375, + [SMALL_STATE(1577)] = 77418, + [SMALL_STATE(1578)] = 77461, + [SMALL_STATE(1579)] = 77504, + [SMALL_STATE(1580)] = 77547, + [SMALL_STATE(1581)] = 77590, + [SMALL_STATE(1582)] = 77633, + [SMALL_STATE(1583)] = 77676, + [SMALL_STATE(1584)] = 77719, + [SMALL_STATE(1585)] = 77762, + [SMALL_STATE(1586)] = 77805, + [SMALL_STATE(1587)] = 77848, + [SMALL_STATE(1588)] = 77891, + [SMALL_STATE(1589)] = 77934, + [SMALL_STATE(1590)] = 77977, + [SMALL_STATE(1591)] = 78020, + [SMALL_STATE(1592)] = 78063, + [SMALL_STATE(1593)] = 78106, + [SMALL_STATE(1594)] = 78149, + [SMALL_STATE(1595)] = 78192, + [SMALL_STATE(1596)] = 78235, + [SMALL_STATE(1597)] = 78278, + [SMALL_STATE(1598)] = 78321, + [SMALL_STATE(1599)] = 78364, + [SMALL_STATE(1600)] = 78407, + [SMALL_STATE(1601)] = 78450, + [SMALL_STATE(1602)] = 78493, + [SMALL_STATE(1603)] = 78536, + [SMALL_STATE(1604)] = 78579, + [SMALL_STATE(1605)] = 78622, + [SMALL_STATE(1606)] = 78665, + [SMALL_STATE(1607)] = 78708, + [SMALL_STATE(1608)] = 78751, + [SMALL_STATE(1609)] = 78794, + [SMALL_STATE(1610)] = 78837, + [SMALL_STATE(1611)] = 78880, + [SMALL_STATE(1612)] = 78923, + [SMALL_STATE(1613)] = 78966, + [SMALL_STATE(1614)] = 79009, + [SMALL_STATE(1615)] = 79052, + [SMALL_STATE(1616)] = 79095, + [SMALL_STATE(1617)] = 79138, + [SMALL_STATE(1618)] = 79181, + [SMALL_STATE(1619)] = 79224, + [SMALL_STATE(1620)] = 79267, + [SMALL_STATE(1621)] = 79310, + [SMALL_STATE(1622)] = 79353, + [SMALL_STATE(1623)] = 79396, + [SMALL_STATE(1624)] = 79439, + [SMALL_STATE(1625)] = 79482, + [SMALL_STATE(1626)] = 79525, + [SMALL_STATE(1627)] = 79568, + [SMALL_STATE(1628)] = 79611, + [SMALL_STATE(1629)] = 79654, + [SMALL_STATE(1630)] = 79697, + [SMALL_STATE(1631)] = 79740, + [SMALL_STATE(1632)] = 79783, + [SMALL_STATE(1633)] = 79826, + [SMALL_STATE(1634)] = 79869, + [SMALL_STATE(1635)] = 79912, + [SMALL_STATE(1636)] = 79955, + [SMALL_STATE(1637)] = 79998, + [SMALL_STATE(1638)] = 80041, + [SMALL_STATE(1639)] = 80084, + [SMALL_STATE(1640)] = 80127, + [SMALL_STATE(1641)] = 80170, + [SMALL_STATE(1642)] = 80213, + [SMALL_STATE(1643)] = 80256, + [SMALL_STATE(1644)] = 80299, + [SMALL_STATE(1645)] = 80342, + [SMALL_STATE(1646)] = 80385, + [SMALL_STATE(1647)] = 80428, + [SMALL_STATE(1648)] = 80471, + [SMALL_STATE(1649)] = 80514, + [SMALL_STATE(1650)] = 80557, + [SMALL_STATE(1651)] = 80600, + [SMALL_STATE(1652)] = 80643, + [SMALL_STATE(1653)] = 80686, + [SMALL_STATE(1654)] = 80729, + [SMALL_STATE(1655)] = 80772, + [SMALL_STATE(1656)] = 80815, + [SMALL_STATE(1657)] = 80858, + [SMALL_STATE(1658)] = 80901, + [SMALL_STATE(1659)] = 80944, + [SMALL_STATE(1660)] = 80987, + [SMALL_STATE(1661)] = 81030, + [SMALL_STATE(1662)] = 81073, + [SMALL_STATE(1663)] = 81116, + [SMALL_STATE(1664)] = 81159, + [SMALL_STATE(1665)] = 81202, + [SMALL_STATE(1666)] = 81245, + [SMALL_STATE(1667)] = 81288, + [SMALL_STATE(1668)] = 81331, + [SMALL_STATE(1669)] = 81374, + [SMALL_STATE(1670)] = 81417, + [SMALL_STATE(1671)] = 81460, + [SMALL_STATE(1672)] = 81503, + [SMALL_STATE(1673)] = 81546, + [SMALL_STATE(1674)] = 81589, + [SMALL_STATE(1675)] = 81632, + [SMALL_STATE(1676)] = 81675, + [SMALL_STATE(1677)] = 81718, + [SMALL_STATE(1678)] = 81761, + [SMALL_STATE(1679)] = 81804, + [SMALL_STATE(1680)] = 81847, + [SMALL_STATE(1681)] = 81890, + [SMALL_STATE(1682)] = 81933, + [SMALL_STATE(1683)] = 81976, + [SMALL_STATE(1684)] = 82019, + [SMALL_STATE(1685)] = 82062, + [SMALL_STATE(1686)] = 82105, + [SMALL_STATE(1687)] = 82148, + [SMALL_STATE(1688)] = 82191, + [SMALL_STATE(1689)] = 82234, + [SMALL_STATE(1690)] = 82277, + [SMALL_STATE(1691)] = 82320, + [SMALL_STATE(1692)] = 82363, + [SMALL_STATE(1693)] = 82406, + [SMALL_STATE(1694)] = 82449, + [SMALL_STATE(1695)] = 82492, + [SMALL_STATE(1696)] = 82535, + [SMALL_STATE(1697)] = 82578, + [SMALL_STATE(1698)] = 82621, + [SMALL_STATE(1699)] = 82664, + [SMALL_STATE(1700)] = 82707, + [SMALL_STATE(1701)] = 82750, + [SMALL_STATE(1702)] = 82793, + [SMALL_STATE(1703)] = 82836, + [SMALL_STATE(1704)] = 82879, + [SMALL_STATE(1705)] = 82922, + [SMALL_STATE(1706)] = 82965, + [SMALL_STATE(1707)] = 83008, + [SMALL_STATE(1708)] = 83051, + [SMALL_STATE(1709)] = 83094, + [SMALL_STATE(1710)] = 83137, + [SMALL_STATE(1711)] = 83180, + [SMALL_STATE(1712)] = 83223, + [SMALL_STATE(1713)] = 83266, + [SMALL_STATE(1714)] = 83309, + [SMALL_STATE(1715)] = 83352, + [SMALL_STATE(1716)] = 83395, + [SMALL_STATE(1717)] = 83438, + [SMALL_STATE(1718)] = 83481, + [SMALL_STATE(1719)] = 83524, + [SMALL_STATE(1720)] = 83567, + [SMALL_STATE(1721)] = 83610, + [SMALL_STATE(1722)] = 83653, + [SMALL_STATE(1723)] = 83696, + [SMALL_STATE(1724)] = 83739, + [SMALL_STATE(1725)] = 83782, + [SMALL_STATE(1726)] = 83825, + [SMALL_STATE(1727)] = 83868, + [SMALL_STATE(1728)] = 83911, + [SMALL_STATE(1729)] = 83954, + [SMALL_STATE(1730)] = 83997, + [SMALL_STATE(1731)] = 84040, + [SMALL_STATE(1732)] = 84083, + [SMALL_STATE(1733)] = 84126, + [SMALL_STATE(1734)] = 84169, + [SMALL_STATE(1735)] = 84212, + [SMALL_STATE(1736)] = 84255, + [SMALL_STATE(1737)] = 84298, + [SMALL_STATE(1738)] = 84341, + [SMALL_STATE(1739)] = 84384, + [SMALL_STATE(1740)] = 84427, + [SMALL_STATE(1741)] = 84470, + [SMALL_STATE(1742)] = 84513, + [SMALL_STATE(1743)] = 84556, + [SMALL_STATE(1744)] = 84599, + [SMALL_STATE(1745)] = 84642, + [SMALL_STATE(1746)] = 84685, + [SMALL_STATE(1747)] = 84728, + [SMALL_STATE(1748)] = 84771, + [SMALL_STATE(1749)] = 84814, + [SMALL_STATE(1750)] = 84857, + [SMALL_STATE(1751)] = 84900, + [SMALL_STATE(1752)] = 84943, + [SMALL_STATE(1753)] = 84986, + [SMALL_STATE(1754)] = 85029, + [SMALL_STATE(1755)] = 85072, + [SMALL_STATE(1756)] = 85115, + [SMALL_STATE(1757)] = 85158, + [SMALL_STATE(1758)] = 85201, + [SMALL_STATE(1759)] = 85244, + [SMALL_STATE(1760)] = 85287, + [SMALL_STATE(1761)] = 85330, + [SMALL_STATE(1762)] = 85373, + [SMALL_STATE(1763)] = 85416, + [SMALL_STATE(1764)] = 85459, + [SMALL_STATE(1765)] = 85502, + [SMALL_STATE(1766)] = 85545, + [SMALL_STATE(1767)] = 85588, + [SMALL_STATE(1768)] = 85631, + [SMALL_STATE(1769)] = 85674, + [SMALL_STATE(1770)] = 85717, + [SMALL_STATE(1771)] = 85760, + [SMALL_STATE(1772)] = 85803, + [SMALL_STATE(1773)] = 85846, + [SMALL_STATE(1774)] = 85889, + [SMALL_STATE(1775)] = 85932, + [SMALL_STATE(1776)] = 85975, + [SMALL_STATE(1777)] = 86018, + [SMALL_STATE(1778)] = 86061, + [SMALL_STATE(1779)] = 86104, + [SMALL_STATE(1780)] = 86147, + [SMALL_STATE(1781)] = 86190, + [SMALL_STATE(1782)] = 86233, + [SMALL_STATE(1783)] = 86276, + [SMALL_STATE(1784)] = 86319, + [SMALL_STATE(1785)] = 86362, + [SMALL_STATE(1786)] = 86405, + [SMALL_STATE(1787)] = 86448, + [SMALL_STATE(1788)] = 86491, + [SMALL_STATE(1789)] = 86534, + [SMALL_STATE(1790)] = 86577, + [SMALL_STATE(1791)] = 86620, + [SMALL_STATE(1792)] = 86663, + [SMALL_STATE(1793)] = 86706, + [SMALL_STATE(1794)] = 86749, + [SMALL_STATE(1795)] = 86792, + [SMALL_STATE(1796)] = 86835, + [SMALL_STATE(1797)] = 86878, + [SMALL_STATE(1798)] = 86921, + [SMALL_STATE(1799)] = 86964, + [SMALL_STATE(1800)] = 87007, + [SMALL_STATE(1801)] = 87050, + [SMALL_STATE(1802)] = 87093, + [SMALL_STATE(1803)] = 87136, + [SMALL_STATE(1804)] = 87179, + [SMALL_STATE(1805)] = 87222, + [SMALL_STATE(1806)] = 87265, + [SMALL_STATE(1807)] = 87308, + [SMALL_STATE(1808)] = 87351, + [SMALL_STATE(1809)] = 87394, + [SMALL_STATE(1810)] = 87437, + [SMALL_STATE(1811)] = 87480, + [SMALL_STATE(1812)] = 87523, + [SMALL_STATE(1813)] = 87566, + [SMALL_STATE(1814)] = 87609, + [SMALL_STATE(1815)] = 87652, + [SMALL_STATE(1816)] = 87695, + [SMALL_STATE(1817)] = 87738, + [SMALL_STATE(1818)] = 87781, + [SMALL_STATE(1819)] = 87824, + [SMALL_STATE(1820)] = 87867, + [SMALL_STATE(1821)] = 87910, + [SMALL_STATE(1822)] = 87953, + [SMALL_STATE(1823)] = 87996, + [SMALL_STATE(1824)] = 88039, + [SMALL_STATE(1825)] = 88082, + [SMALL_STATE(1826)] = 88125, + [SMALL_STATE(1827)] = 88168, + [SMALL_STATE(1828)] = 88211, + [SMALL_STATE(1829)] = 88254, + [SMALL_STATE(1830)] = 88297, + [SMALL_STATE(1831)] = 88340, + [SMALL_STATE(1832)] = 88383, + [SMALL_STATE(1833)] = 88426, + [SMALL_STATE(1834)] = 88469, + [SMALL_STATE(1835)] = 88512, + [SMALL_STATE(1836)] = 88555, + [SMALL_STATE(1837)] = 88598, + [SMALL_STATE(1838)] = 88641, + [SMALL_STATE(1839)] = 88684, + [SMALL_STATE(1840)] = 88727, + [SMALL_STATE(1841)] = 88770, + [SMALL_STATE(1842)] = 88813, + [SMALL_STATE(1843)] = 88856, + [SMALL_STATE(1844)] = 88899, + [SMALL_STATE(1845)] = 88942, + [SMALL_STATE(1846)] = 88985, + [SMALL_STATE(1847)] = 89028, + [SMALL_STATE(1848)] = 89071, + [SMALL_STATE(1849)] = 89114, + [SMALL_STATE(1850)] = 89157, + [SMALL_STATE(1851)] = 89200, + [SMALL_STATE(1852)] = 89243, + [SMALL_STATE(1853)] = 89286, + [SMALL_STATE(1854)] = 89329, + [SMALL_STATE(1855)] = 89372, + [SMALL_STATE(1856)] = 89415, + [SMALL_STATE(1857)] = 89458, + [SMALL_STATE(1858)] = 89501, + [SMALL_STATE(1859)] = 89544, + [SMALL_STATE(1860)] = 89587, + [SMALL_STATE(1861)] = 89630, + [SMALL_STATE(1862)] = 89673, + [SMALL_STATE(1863)] = 89716, + [SMALL_STATE(1864)] = 89759, + [SMALL_STATE(1865)] = 89802, + [SMALL_STATE(1866)] = 89845, + [SMALL_STATE(1867)] = 89888, + [SMALL_STATE(1868)] = 89931, + [SMALL_STATE(1869)] = 89974, + [SMALL_STATE(1870)] = 90017, + [SMALL_STATE(1871)] = 90060, + [SMALL_STATE(1872)] = 90103, + [SMALL_STATE(1873)] = 90146, + [SMALL_STATE(1874)] = 90189, + [SMALL_STATE(1875)] = 90232, + [SMALL_STATE(1876)] = 90275, + [SMALL_STATE(1877)] = 90318, + [SMALL_STATE(1878)] = 90361, + [SMALL_STATE(1879)] = 90404, + [SMALL_STATE(1880)] = 90447, + [SMALL_STATE(1881)] = 90490, + [SMALL_STATE(1882)] = 90533, + [SMALL_STATE(1883)] = 90576, + [SMALL_STATE(1884)] = 90619, + [SMALL_STATE(1885)] = 90662, + [SMALL_STATE(1886)] = 90705, + [SMALL_STATE(1887)] = 90748, + [SMALL_STATE(1888)] = 90791, + [SMALL_STATE(1889)] = 90834, + [SMALL_STATE(1890)] = 90877, + [SMALL_STATE(1891)] = 90920, + [SMALL_STATE(1892)] = 90963, + [SMALL_STATE(1893)] = 91006, + [SMALL_STATE(1894)] = 91049, + [SMALL_STATE(1895)] = 91092, + [SMALL_STATE(1896)] = 91135, + [SMALL_STATE(1897)] = 91178, + [SMALL_STATE(1898)] = 91221, + [SMALL_STATE(1899)] = 91264, + [SMALL_STATE(1900)] = 91307, + [SMALL_STATE(1901)] = 91350, + [SMALL_STATE(1902)] = 91393, + [SMALL_STATE(1903)] = 91436, + [SMALL_STATE(1904)] = 91479, + [SMALL_STATE(1905)] = 91522, + [SMALL_STATE(1906)] = 91565, + [SMALL_STATE(1907)] = 91608, + [SMALL_STATE(1908)] = 91651, + [SMALL_STATE(1909)] = 91694, + [SMALL_STATE(1910)] = 91737, + [SMALL_STATE(1911)] = 91780, + [SMALL_STATE(1912)] = 91823, + [SMALL_STATE(1913)] = 91866, + [SMALL_STATE(1914)] = 91909, + [SMALL_STATE(1915)] = 91952, + [SMALL_STATE(1916)] = 91995, + [SMALL_STATE(1917)] = 92038, + [SMALL_STATE(1918)] = 92081, + [SMALL_STATE(1919)] = 92124, + [SMALL_STATE(1920)] = 92167, + [SMALL_STATE(1921)] = 92210, + [SMALL_STATE(1922)] = 92253, + [SMALL_STATE(1923)] = 92296, + [SMALL_STATE(1924)] = 92339, + [SMALL_STATE(1925)] = 92382, + [SMALL_STATE(1926)] = 92425, + [SMALL_STATE(1927)] = 92468, + [SMALL_STATE(1928)] = 92511, + [SMALL_STATE(1929)] = 92554, + [SMALL_STATE(1930)] = 92597, + [SMALL_STATE(1931)] = 92640, + [SMALL_STATE(1932)] = 92683, + [SMALL_STATE(1933)] = 92726, + [SMALL_STATE(1934)] = 92769, + [SMALL_STATE(1935)] = 92812, + [SMALL_STATE(1936)] = 92855, + [SMALL_STATE(1937)] = 92898, + [SMALL_STATE(1938)] = 92941, + [SMALL_STATE(1939)] = 92984, + [SMALL_STATE(1940)] = 93027, + [SMALL_STATE(1941)] = 93070, + [SMALL_STATE(1942)] = 93113, + [SMALL_STATE(1943)] = 93156, + [SMALL_STATE(1944)] = 93199, + [SMALL_STATE(1945)] = 93242, + [SMALL_STATE(1946)] = 93285, + [SMALL_STATE(1947)] = 93328, + [SMALL_STATE(1948)] = 93371, + [SMALL_STATE(1949)] = 93414, + [SMALL_STATE(1950)] = 93457, + [SMALL_STATE(1951)] = 93500, + [SMALL_STATE(1952)] = 93543, + [SMALL_STATE(1953)] = 93586, + [SMALL_STATE(1954)] = 93629, + [SMALL_STATE(1955)] = 93672, + [SMALL_STATE(1956)] = 93715, + [SMALL_STATE(1957)] = 93758, + [SMALL_STATE(1958)] = 93801, + [SMALL_STATE(1959)] = 93844, + [SMALL_STATE(1960)] = 93887, + [SMALL_STATE(1961)] = 93930, + [SMALL_STATE(1962)] = 93973, + [SMALL_STATE(1963)] = 94016, + [SMALL_STATE(1964)] = 94059, + [SMALL_STATE(1965)] = 94102, + [SMALL_STATE(1966)] = 94145, + [SMALL_STATE(1967)] = 94188, + [SMALL_STATE(1968)] = 94231, + [SMALL_STATE(1969)] = 94274, + [SMALL_STATE(1970)] = 94317, + [SMALL_STATE(1971)] = 94360, + [SMALL_STATE(1972)] = 94403, + [SMALL_STATE(1973)] = 94446, + [SMALL_STATE(1974)] = 94489, + [SMALL_STATE(1975)] = 94532, + [SMALL_STATE(1976)] = 94575, + [SMALL_STATE(1977)] = 94618, + [SMALL_STATE(1978)] = 94661, + [SMALL_STATE(1979)] = 94704, + [SMALL_STATE(1980)] = 94747, + [SMALL_STATE(1981)] = 94790, + [SMALL_STATE(1982)] = 94833, + [SMALL_STATE(1983)] = 94876, + [SMALL_STATE(1984)] = 94919, + [SMALL_STATE(1985)] = 94962, + [SMALL_STATE(1986)] = 95005, + [SMALL_STATE(1987)] = 95048, + [SMALL_STATE(1988)] = 95091, + [SMALL_STATE(1989)] = 95134, + [SMALL_STATE(1990)] = 95177, + [SMALL_STATE(1991)] = 95224, + [SMALL_STATE(1992)] = 95271, + [SMALL_STATE(1993)] = 95318, + [SMALL_STATE(1994)] = 95365, + [SMALL_STATE(1995)] = 95412, + [SMALL_STATE(1996)] = 95459, + [SMALL_STATE(1997)] = 95506, + [SMALL_STATE(1998)] = 95553, + [SMALL_STATE(1999)] = 95600, + [SMALL_STATE(2000)] = 95647, + [SMALL_STATE(2001)] = 95694, + [SMALL_STATE(2002)] = 95741, + [SMALL_STATE(2003)] = 95788, + [SMALL_STATE(2004)] = 95835, + [SMALL_STATE(2005)] = 95882, + [SMALL_STATE(2006)] = 95929, + [SMALL_STATE(2007)] = 95976, + [SMALL_STATE(2008)] = 96023, + [SMALL_STATE(2009)] = 96070, + [SMALL_STATE(2010)] = 96117, + [SMALL_STATE(2011)] = 96164, + [SMALL_STATE(2012)] = 96211, + [SMALL_STATE(2013)] = 96258, + [SMALL_STATE(2014)] = 96305, + [SMALL_STATE(2015)] = 96352, + [SMALL_STATE(2016)] = 96395, + [SMALL_STATE(2017)] = 96438, + [SMALL_STATE(2018)] = 96481, + [SMALL_STATE(2019)] = 96524, + [SMALL_STATE(2020)] = 96567, + [SMALL_STATE(2021)] = 96610, + [SMALL_STATE(2022)] = 96653, + [SMALL_STATE(2023)] = 96696, + [SMALL_STATE(2024)] = 96739, + [SMALL_STATE(2025)] = 96782, + [SMALL_STATE(2026)] = 96825, + [SMALL_STATE(2027)] = 96868, + [SMALL_STATE(2028)] = 96911, + [SMALL_STATE(2029)] = 96954, + [SMALL_STATE(2030)] = 96997, + [SMALL_STATE(2031)] = 97040, + [SMALL_STATE(2032)] = 97083, + [SMALL_STATE(2033)] = 97126, + [SMALL_STATE(2034)] = 97169, + [SMALL_STATE(2035)] = 97212, + [SMALL_STATE(2036)] = 97255, + [SMALL_STATE(2037)] = 97298, + [SMALL_STATE(2038)] = 97341, + [SMALL_STATE(2039)] = 97384, + [SMALL_STATE(2040)] = 97427, + [SMALL_STATE(2041)] = 97470, + [SMALL_STATE(2042)] = 97513, + [SMALL_STATE(2043)] = 97556, + [SMALL_STATE(2044)] = 97599, + [SMALL_STATE(2045)] = 97642, + [SMALL_STATE(2046)] = 97685, + [SMALL_STATE(2047)] = 97728, + [SMALL_STATE(2048)] = 97771, + [SMALL_STATE(2049)] = 97814, + [SMALL_STATE(2050)] = 97857, + [SMALL_STATE(2051)] = 97900, + [SMALL_STATE(2052)] = 97943, + [SMALL_STATE(2053)] = 97986, + [SMALL_STATE(2054)] = 98029, + [SMALL_STATE(2055)] = 98072, + [SMALL_STATE(2056)] = 98115, + [SMALL_STATE(2057)] = 98158, + [SMALL_STATE(2058)] = 98201, + [SMALL_STATE(2059)] = 98244, + [SMALL_STATE(2060)] = 98287, + [SMALL_STATE(2061)] = 98330, + [SMALL_STATE(2062)] = 98373, + [SMALL_STATE(2063)] = 98416, + [SMALL_STATE(2064)] = 98459, + [SMALL_STATE(2065)] = 98502, + [SMALL_STATE(2066)] = 98545, + [SMALL_STATE(2067)] = 98588, + [SMALL_STATE(2068)] = 98631, + [SMALL_STATE(2069)] = 98674, + [SMALL_STATE(2070)] = 98717, + [SMALL_STATE(2071)] = 98760, + [SMALL_STATE(2072)] = 98803, + [SMALL_STATE(2073)] = 98846, + [SMALL_STATE(2074)] = 98889, + [SMALL_STATE(2075)] = 98932, + [SMALL_STATE(2076)] = 98975, + [SMALL_STATE(2077)] = 99018, + [SMALL_STATE(2078)] = 99061, + [SMALL_STATE(2079)] = 99104, + [SMALL_STATE(2080)] = 99147, + [SMALL_STATE(2081)] = 99190, + [SMALL_STATE(2082)] = 99233, + [SMALL_STATE(2083)] = 99276, + [SMALL_STATE(2084)] = 99319, + [SMALL_STATE(2085)] = 99362, + [SMALL_STATE(2086)] = 99405, + [SMALL_STATE(2087)] = 99448, + [SMALL_STATE(2088)] = 99491, + [SMALL_STATE(2089)] = 99534, + [SMALL_STATE(2090)] = 99577, + [SMALL_STATE(2091)] = 99620, + [SMALL_STATE(2092)] = 99663, + [SMALL_STATE(2093)] = 99706, + [SMALL_STATE(2094)] = 99749, + [SMALL_STATE(2095)] = 99792, + [SMALL_STATE(2096)] = 99835, + [SMALL_STATE(2097)] = 99878, + [SMALL_STATE(2098)] = 99921, + [SMALL_STATE(2099)] = 99964, + [SMALL_STATE(2100)] = 100007, + [SMALL_STATE(2101)] = 100050, + [SMALL_STATE(2102)] = 100093, + [SMALL_STATE(2103)] = 100136, + [SMALL_STATE(2104)] = 100179, + [SMALL_STATE(2105)] = 100222, + [SMALL_STATE(2106)] = 100265, + [SMALL_STATE(2107)] = 100308, + [SMALL_STATE(2108)] = 100351, + [SMALL_STATE(2109)] = 100394, + [SMALL_STATE(2110)] = 100437, + [SMALL_STATE(2111)] = 100480, + [SMALL_STATE(2112)] = 100523, + [SMALL_STATE(2113)] = 100566, + [SMALL_STATE(2114)] = 100609, + [SMALL_STATE(2115)] = 100652, + [SMALL_STATE(2116)] = 100695, + [SMALL_STATE(2117)] = 100738, + [SMALL_STATE(2118)] = 100781, + [SMALL_STATE(2119)] = 100824, + [SMALL_STATE(2120)] = 100867, + [SMALL_STATE(2121)] = 100910, + [SMALL_STATE(2122)] = 100953, + [SMALL_STATE(2123)] = 100996, + [SMALL_STATE(2124)] = 101039, + [SMALL_STATE(2125)] = 101082, + [SMALL_STATE(2126)] = 101125, + [SMALL_STATE(2127)] = 101168, + [SMALL_STATE(2128)] = 101211, + [SMALL_STATE(2129)] = 101254, + [SMALL_STATE(2130)] = 101297, + [SMALL_STATE(2131)] = 101340, + [SMALL_STATE(2132)] = 101383, + [SMALL_STATE(2133)] = 101426, + [SMALL_STATE(2134)] = 101469, + [SMALL_STATE(2135)] = 101512, + [SMALL_STATE(2136)] = 101555, + [SMALL_STATE(2137)] = 101598, + [SMALL_STATE(2138)] = 101641, + [SMALL_STATE(2139)] = 101686, + [SMALL_STATE(2140)] = 101729, + [SMALL_STATE(2141)] = 101772, + [SMALL_STATE(2142)] = 101815, + [SMALL_STATE(2143)] = 101858, + [SMALL_STATE(2144)] = 101901, + [SMALL_STATE(2145)] = 101944, + [SMALL_STATE(2146)] = 101987, + [SMALL_STATE(2147)] = 102030, + [SMALL_STATE(2148)] = 102073, + [SMALL_STATE(2149)] = 102116, + [SMALL_STATE(2150)] = 102159, + [SMALL_STATE(2151)] = 102202, + [SMALL_STATE(2152)] = 102245, + [SMALL_STATE(2153)] = 102288, + [SMALL_STATE(2154)] = 102331, + [SMALL_STATE(2155)] = 102374, + [SMALL_STATE(2156)] = 102417, + [SMALL_STATE(2157)] = 102460, + [SMALL_STATE(2158)] = 102503, + [SMALL_STATE(2159)] = 102546, + [SMALL_STATE(2160)] = 102589, + [SMALL_STATE(2161)] = 102632, + [SMALL_STATE(2162)] = 102675, + [SMALL_STATE(2163)] = 102718, + [SMALL_STATE(2164)] = 102761, + [SMALL_STATE(2165)] = 102804, + [SMALL_STATE(2166)] = 102847, + [SMALL_STATE(2167)] = 102890, + [SMALL_STATE(2168)] = 102933, + [SMALL_STATE(2169)] = 102976, + [SMALL_STATE(2170)] = 103019, + [SMALL_STATE(2171)] = 103062, + [SMALL_STATE(2172)] = 103105, + [SMALL_STATE(2173)] = 103148, + [SMALL_STATE(2174)] = 103191, + [SMALL_STATE(2175)] = 103234, + [SMALL_STATE(2176)] = 103277, + [SMALL_STATE(2177)] = 103320, + [SMALL_STATE(2178)] = 103363, + [SMALL_STATE(2179)] = 103406, + [SMALL_STATE(2180)] = 103449, + [SMALL_STATE(2181)] = 103492, + [SMALL_STATE(2182)] = 103535, + [SMALL_STATE(2183)] = 103578, + [SMALL_STATE(2184)] = 103621, + [SMALL_STATE(2185)] = 103664, + [SMALL_STATE(2186)] = 103707, + [SMALL_STATE(2187)] = 103750, + [SMALL_STATE(2188)] = 103793, + [SMALL_STATE(2189)] = 103836, + [SMALL_STATE(2190)] = 103879, + [SMALL_STATE(2191)] = 103922, + [SMALL_STATE(2192)] = 103965, + [SMALL_STATE(2193)] = 104008, + [SMALL_STATE(2194)] = 104051, + [SMALL_STATE(2195)] = 104094, + [SMALL_STATE(2196)] = 104137, + [SMALL_STATE(2197)] = 104180, + [SMALL_STATE(2198)] = 104223, + [SMALL_STATE(2199)] = 104266, + [SMALL_STATE(2200)] = 104309, + [SMALL_STATE(2201)] = 104352, + [SMALL_STATE(2202)] = 104395, + [SMALL_STATE(2203)] = 104438, + [SMALL_STATE(2204)] = 104481, + [SMALL_STATE(2205)] = 104524, + [SMALL_STATE(2206)] = 104567, + [SMALL_STATE(2207)] = 104610, + [SMALL_STATE(2208)] = 104653, + [SMALL_STATE(2209)] = 104696, + [SMALL_STATE(2210)] = 104739, + [SMALL_STATE(2211)] = 104782, + [SMALL_STATE(2212)] = 104825, + [SMALL_STATE(2213)] = 104868, + [SMALL_STATE(2214)] = 104911, + [SMALL_STATE(2215)] = 104954, + [SMALL_STATE(2216)] = 104997, + [SMALL_STATE(2217)] = 105040, + [SMALL_STATE(2218)] = 105083, + [SMALL_STATE(2219)] = 105126, + [SMALL_STATE(2220)] = 105169, + [SMALL_STATE(2221)] = 105212, + [SMALL_STATE(2222)] = 105255, + [SMALL_STATE(2223)] = 105298, + [SMALL_STATE(2224)] = 105341, + [SMALL_STATE(2225)] = 105384, + [SMALL_STATE(2226)] = 105427, + [SMALL_STATE(2227)] = 105470, + [SMALL_STATE(2228)] = 105513, + [SMALL_STATE(2229)] = 105556, + [SMALL_STATE(2230)] = 105599, + [SMALL_STATE(2231)] = 105642, + [SMALL_STATE(2232)] = 105685, + [SMALL_STATE(2233)] = 105728, + [SMALL_STATE(2234)] = 105771, + [SMALL_STATE(2235)] = 105814, + [SMALL_STATE(2236)] = 105857, + [SMALL_STATE(2237)] = 105900, + [SMALL_STATE(2238)] = 105943, + [SMALL_STATE(2239)] = 105986, + [SMALL_STATE(2240)] = 106029, + [SMALL_STATE(2241)] = 106072, + [SMALL_STATE(2242)] = 106115, + [SMALL_STATE(2243)] = 106158, + [SMALL_STATE(2244)] = 106201, + [SMALL_STATE(2245)] = 106244, + [SMALL_STATE(2246)] = 106287, + [SMALL_STATE(2247)] = 106330, + [SMALL_STATE(2248)] = 106373, + [SMALL_STATE(2249)] = 106416, + [SMALL_STATE(2250)] = 106459, + [SMALL_STATE(2251)] = 106502, + [SMALL_STATE(2252)] = 106545, + [SMALL_STATE(2253)] = 106588, + [SMALL_STATE(2254)] = 106631, + [SMALL_STATE(2255)] = 106674, + [SMALL_STATE(2256)] = 106717, + [SMALL_STATE(2257)] = 106760, + [SMALL_STATE(2258)] = 106803, + [SMALL_STATE(2259)] = 106846, + [SMALL_STATE(2260)] = 106889, + [SMALL_STATE(2261)] = 106932, + [SMALL_STATE(2262)] = 106975, + [SMALL_STATE(2263)] = 107018, + [SMALL_STATE(2264)] = 107061, + [SMALL_STATE(2265)] = 107104, + [SMALL_STATE(2266)] = 107147, + [SMALL_STATE(2267)] = 107190, + [SMALL_STATE(2268)] = 107233, + [SMALL_STATE(2269)] = 107276, + [SMALL_STATE(2270)] = 107319, + [SMALL_STATE(2271)] = 107362, + [SMALL_STATE(2272)] = 107405, + [SMALL_STATE(2273)] = 107448, + [SMALL_STATE(2274)] = 107491, + [SMALL_STATE(2275)] = 107534, + [SMALL_STATE(2276)] = 107577, + [SMALL_STATE(2277)] = 107620, + [SMALL_STATE(2278)] = 107663, + [SMALL_STATE(2279)] = 107706, + [SMALL_STATE(2280)] = 107749, + [SMALL_STATE(2281)] = 107792, + [SMALL_STATE(2282)] = 107835, + [SMALL_STATE(2283)] = 107878, + [SMALL_STATE(2284)] = 107921, + [SMALL_STATE(2285)] = 107964, + [SMALL_STATE(2286)] = 108007, + [SMALL_STATE(2287)] = 108050, + [SMALL_STATE(2288)] = 108093, + [SMALL_STATE(2289)] = 108136, + [SMALL_STATE(2290)] = 108179, + [SMALL_STATE(2291)] = 108222, + [SMALL_STATE(2292)] = 108265, + [SMALL_STATE(2293)] = 108308, + [SMALL_STATE(2294)] = 108351, + [SMALL_STATE(2295)] = 108394, + [SMALL_STATE(2296)] = 108437, + [SMALL_STATE(2297)] = 108480, + [SMALL_STATE(2298)] = 108522, + [SMALL_STATE(2299)] = 108564, + [SMALL_STATE(2300)] = 108606, + [SMALL_STATE(2301)] = 108648, + [SMALL_STATE(2302)] = 108690, + [SMALL_STATE(2303)] = 108732, + [SMALL_STATE(2304)] = 108774, + [SMALL_STATE(2305)] = 108818, + [SMALL_STATE(2306)] = 108860, + [SMALL_STATE(2307)] = 108902, + [SMALL_STATE(2308)] = 108944, + [SMALL_STATE(2309)] = 108986, + [SMALL_STATE(2310)] = 109028, + [SMALL_STATE(2311)] = 109070, + [SMALL_STATE(2312)] = 109112, + [SMALL_STATE(2313)] = 109154, + [SMALL_STATE(2314)] = 109196, + [SMALL_STATE(2315)] = 109238, + [SMALL_STATE(2316)] = 109280, + [SMALL_STATE(2317)] = 109322, + [SMALL_STATE(2318)] = 109364, + [SMALL_STATE(2319)] = 109406, + [SMALL_STATE(2320)] = 109448, + [SMALL_STATE(2321)] = 109490, + [SMALL_STATE(2322)] = 109532, + [SMALL_STATE(2323)] = 109574, + [SMALL_STATE(2324)] = 109616, + [SMALL_STATE(2325)] = 109658, + [SMALL_STATE(2326)] = 109700, + [SMALL_STATE(2327)] = 109742, + [SMALL_STATE(2328)] = 109784, + [SMALL_STATE(2329)] = 109826, + [SMALL_STATE(2330)] = 109868, + [SMALL_STATE(2331)] = 109910, + [SMALL_STATE(2332)] = 109952, + [SMALL_STATE(2333)] = 109994, + [SMALL_STATE(2334)] = 110036, + [SMALL_STATE(2335)] = 110078, + [SMALL_STATE(2336)] = 110120, + [SMALL_STATE(2337)] = 110162, + [SMALL_STATE(2338)] = 110204, + [SMALL_STATE(2339)] = 110246, + [SMALL_STATE(2340)] = 110288, + [SMALL_STATE(2341)] = 110330, + [SMALL_STATE(2342)] = 110372, + [SMALL_STATE(2343)] = 110414, + [SMALL_STATE(2344)] = 110456, + [SMALL_STATE(2345)] = 110498, + [SMALL_STATE(2346)] = 110540, + [SMALL_STATE(2347)] = 110582, + [SMALL_STATE(2348)] = 110624, + [SMALL_STATE(2349)] = 110666, + [SMALL_STATE(2350)] = 110708, + [SMALL_STATE(2351)] = 110750, + [SMALL_STATE(2352)] = 110792, + [SMALL_STATE(2353)] = 110834, + [SMALL_STATE(2354)] = 110876, + [SMALL_STATE(2355)] = 110918, + [SMALL_STATE(2356)] = 110960, + [SMALL_STATE(2357)] = 111002, + [SMALL_STATE(2358)] = 111044, + [SMALL_STATE(2359)] = 111086, + [SMALL_STATE(2360)] = 111128, + [SMALL_STATE(2361)] = 111170, + [SMALL_STATE(2362)] = 111212, + [SMALL_STATE(2363)] = 111254, + [SMALL_STATE(2364)] = 111296, + [SMALL_STATE(2365)] = 111338, + [SMALL_STATE(2366)] = 111380, + [SMALL_STATE(2367)] = 111422, + [SMALL_STATE(2368)] = 111464, + [SMALL_STATE(2369)] = 111505, + [SMALL_STATE(2370)] = 111557, + [SMALL_STATE(2371)] = 111609, + [SMALL_STATE(2372)] = 111661, + [SMALL_STATE(2373)] = 111713, + [SMALL_STATE(2374)] = 111765, + [SMALL_STATE(2375)] = 111810, + [SMALL_STATE(2376)] = 111855, + [SMALL_STATE(2377)] = 111899, + [SMALL_STATE(2378)] = 111943, + [SMALL_STATE(2379)] = 111987, + [SMALL_STATE(2380)] = 112031, + [SMALL_STATE(2381)] = 112075, + [SMALL_STATE(2382)] = 112119, + [SMALL_STATE(2383)] = 112163, + [SMALL_STATE(2384)] = 112207, + [SMALL_STATE(2385)] = 112251, + [SMALL_STATE(2386)] = 112295, + [SMALL_STATE(2387)] = 112339, + [SMALL_STATE(2388)] = 112383, + [SMALL_STATE(2389)] = 112427, + [SMALL_STATE(2390)] = 112471, + [SMALL_STATE(2391)] = 112515, + [SMALL_STATE(2392)] = 112559, + [SMALL_STATE(2393)] = 112603, + [SMALL_STATE(2394)] = 112647, + [SMALL_STATE(2395)] = 112691, + [SMALL_STATE(2396)] = 112735, + [SMALL_STATE(2397)] = 112779, + [SMALL_STATE(2398)] = 112823, + [SMALL_STATE(2399)] = 112867, + [SMALL_STATE(2400)] = 112911, + [SMALL_STATE(2401)] = 112955, + [SMALL_STATE(2402)] = 112999, + [SMALL_STATE(2403)] = 113043, + [SMALL_STATE(2404)] = 113087, + [SMALL_STATE(2405)] = 113131, + [SMALL_STATE(2406)] = 113175, + [SMALL_STATE(2407)] = 113219, + [SMALL_STATE(2408)] = 113263, + [SMALL_STATE(2409)] = 113307, + [SMALL_STATE(2410)] = 113351, + [SMALL_STATE(2411)] = 113395, + [SMALL_STATE(2412)] = 113439, + [SMALL_STATE(2413)] = 113483, + [SMALL_STATE(2414)] = 113527, + [SMALL_STATE(2415)] = 113571, + [SMALL_STATE(2416)] = 113615, + [SMALL_STATE(2417)] = 113659, + [SMALL_STATE(2418)] = 113703, + [SMALL_STATE(2419)] = 113747, + [SMALL_STATE(2420)] = 113791, + [SMALL_STATE(2421)] = 113835, + [SMALL_STATE(2422)] = 113879, + [SMALL_STATE(2423)] = 113923, + [SMALL_STATE(2424)] = 113967, + [SMALL_STATE(2425)] = 114011, + [SMALL_STATE(2426)] = 114055, + [SMALL_STATE(2427)] = 114099, + [SMALL_STATE(2428)] = 114143, + [SMALL_STATE(2429)] = 114187, + [SMALL_STATE(2430)] = 114231, + [SMALL_STATE(2431)] = 114275, + [SMALL_STATE(2432)] = 114319, + [SMALL_STATE(2433)] = 114363, + [SMALL_STATE(2434)] = 114407, + [SMALL_STATE(2435)] = 114451, + [SMALL_STATE(2436)] = 114495, + [SMALL_STATE(2437)] = 114539, + [SMALL_STATE(2438)] = 114583, + [SMALL_STATE(2439)] = 114627, + [SMALL_STATE(2440)] = 114671, + [SMALL_STATE(2441)] = 114715, + [SMALL_STATE(2442)] = 114759, + [SMALL_STATE(2443)] = 114803, + [SMALL_STATE(2444)] = 114847, + [SMALL_STATE(2445)] = 114891, + [SMALL_STATE(2446)] = 114935, + [SMALL_STATE(2447)] = 114979, + [SMALL_STATE(2448)] = 115023, + [SMALL_STATE(2449)] = 115066, + [SMALL_STATE(2450)] = 115109, + [SMALL_STATE(2451)] = 115152, + [SMALL_STATE(2452)] = 115195, + [SMALL_STATE(2453)] = 115238, + [SMALL_STATE(2454)] = 115281, + [SMALL_STATE(2455)] = 115324, + [SMALL_STATE(2456)] = 115367, + [SMALL_STATE(2457)] = 115410, + [SMALL_STATE(2458)] = 115453, + [SMALL_STATE(2459)] = 115496, + [SMALL_STATE(2460)] = 115539, + [SMALL_STATE(2461)] = 115582, + [SMALL_STATE(2462)] = 115625, + [SMALL_STATE(2463)] = 115668, + [SMALL_STATE(2464)] = 115711, + [SMALL_STATE(2465)] = 115754, + [SMALL_STATE(2466)] = 115791, + [SMALL_STATE(2467)] = 115828, + [SMALL_STATE(2468)] = 115865, + [SMALL_STATE(2469)] = 115900, + [SMALL_STATE(2470)] = 115937, + [SMALL_STATE(2471)] = 115974, + [SMALL_STATE(2472)] = 116011, + [SMALL_STATE(2473)] = 116046, + [SMALL_STATE(2474)] = 116083, + [SMALL_STATE(2475)] = 116120, + [SMALL_STATE(2476)] = 116157, + [SMALL_STATE(2477)] = 116194, + [SMALL_STATE(2478)] = 116231, + [SMALL_STATE(2479)] = 116268, + [SMALL_STATE(2480)] = 116305, + [SMALL_STATE(2481)] = 116342, + [SMALL_STATE(2482)] = 116379, + [SMALL_STATE(2483)] = 116414, + [SMALL_STATE(2484)] = 116451, + [SMALL_STATE(2485)] = 116488, + [SMALL_STATE(2486)] = 116507, + [SMALL_STATE(2487)] = 116526, + [SMALL_STATE(2488)] = 116547, + [SMALL_STATE(2489)] = 116568, + [SMALL_STATE(2490)] = 116600, + [SMALL_STATE(2491)] = 116632, + [SMALL_STATE(2492)] = 116658, + [SMALL_STATE(2493)] = 116690, + [SMALL_STATE(2494)] = 116716, + [SMALL_STATE(2495)] = 116748, + [SMALL_STATE(2496)] = 116766, + [SMALL_STATE(2497)] = 116792, + [SMALL_STATE(2498)] = 116824, + [SMALL_STATE(2499)] = 116856, + [SMALL_STATE(2500)] = 116872, + [SMALL_STATE(2501)] = 116890, + [SMALL_STATE(2502)] = 116922, + [SMALL_STATE(2503)] = 116954, + [SMALL_STATE(2504)] = 116986, + [SMALL_STATE(2505)] = 117018, + [SMALL_STATE(2506)] = 117050, + [SMALL_STATE(2507)] = 117082, + [SMALL_STATE(2508)] = 117114, + [SMALL_STATE(2509)] = 117130, + [SMALL_STATE(2510)] = 117162, + [SMALL_STATE(2511)] = 117188, + [SMALL_STATE(2512)] = 117220, + [SMALL_STATE(2513)] = 117252, + [SMALL_STATE(2514)] = 117269, + [SMALL_STATE(2515)] = 117288, + [SMALL_STATE(2516)] = 117303, + [SMALL_STATE(2517)] = 117318, + [SMALL_STATE(2518)] = 117344, + [SMALL_STATE(2519)] = 117370, + [SMALL_STATE(2520)] = 117396, + [SMALL_STATE(2521)] = 117422, + [SMALL_STATE(2522)] = 117448, + [SMALL_STATE(2523)] = 117474, + [SMALL_STATE(2524)] = 117498, + [SMALL_STATE(2525)] = 117524, + [SMALL_STATE(2526)] = 117550, + [SMALL_STATE(2527)] = 117564, + [SMALL_STATE(2528)] = 117590, + [SMALL_STATE(2529)] = 117616, + [SMALL_STATE(2530)] = 117642, + [SMALL_STATE(2531)] = 117658, + [SMALL_STATE(2532)] = 117684, + [SMALL_STATE(2533)] = 117710, + [SMALL_STATE(2534)] = 117736, + [SMALL_STATE(2535)] = 117762, + [SMALL_STATE(2536)] = 117788, + [SMALL_STATE(2537)] = 117814, + [SMALL_STATE(2538)] = 117840, + [SMALL_STATE(2539)] = 117866, + [SMALL_STATE(2540)] = 117892, + [SMALL_STATE(2541)] = 117918, + [SMALL_STATE(2542)] = 117944, + [SMALL_STATE(2543)] = 117970, + [SMALL_STATE(2544)] = 117994, + [SMALL_STATE(2545)] = 118020, + [SMALL_STATE(2546)] = 118046, + [SMALL_STATE(2547)] = 118072, + [SMALL_STATE(2548)] = 118098, + [SMALL_STATE(2549)] = 118124, + [SMALL_STATE(2550)] = 118150, + [SMALL_STATE(2551)] = 118176, + [SMALL_STATE(2552)] = 118202, + [SMALL_STATE(2553)] = 118228, + [SMALL_STATE(2554)] = 118254, + [SMALL_STATE(2555)] = 118278, + [SMALL_STATE(2556)] = 118304, + [SMALL_STATE(2557)] = 118330, + [SMALL_STATE(2558)] = 118356, + [SMALL_STATE(2559)] = 118382, + [SMALL_STATE(2560)] = 118408, + [SMALL_STATE(2561)] = 118434, + [SMALL_STATE(2562)] = 118460, + [SMALL_STATE(2563)] = 118486, + [SMALL_STATE(2564)] = 118512, + [SMALL_STATE(2565)] = 118538, + [SMALL_STATE(2566)] = 118564, + [SMALL_STATE(2567)] = 118590, + [SMALL_STATE(2568)] = 118614, + [SMALL_STATE(2569)] = 118640, + [SMALL_STATE(2570)] = 118666, + [SMALL_STATE(2571)] = 118692, + [SMALL_STATE(2572)] = 118713, + [SMALL_STATE(2573)] = 118726, + [SMALL_STATE(2574)] = 118747, + [SMALL_STATE(2575)] = 118772, + [SMALL_STATE(2576)] = 118789, + [SMALL_STATE(2577)] = 118810, + [SMALL_STATE(2578)] = 118835, + [SMALL_STATE(2579)] = 118856, + [SMALL_STATE(2580)] = 118877, + [SMALL_STATE(2581)] = 118894, + [SMALL_STATE(2582)] = 118919, + [SMALL_STATE(2583)] = 118932, + [SMALL_STATE(2584)] = 118947, + [SMALL_STATE(2585)] = 118967, + [SMALL_STATE(2586)] = 118983, + [SMALL_STATE(2587)] = 119003, + [SMALL_STATE(2588)] = 119023, + [SMALL_STATE(2589)] = 119043, + [SMALL_STATE(2590)] = 119059, + [SMALL_STATE(2591)] = 119079, + [SMALL_STATE(2592)] = 119089, + [SMALL_STATE(2593)] = 119109, + [SMALL_STATE(2594)] = 119125, + [SMALL_STATE(2595)] = 119135, + [SMALL_STATE(2596)] = 119155, + [SMALL_STATE(2597)] = 119171, + [SMALL_STATE(2598)] = 119189, + [SMALL_STATE(2599)] = 119207, + [SMALL_STATE(2600)] = 119227, + [SMALL_STATE(2601)] = 119241, + [SMALL_STATE(2602)] = 119259, + [SMALL_STATE(2603)] = 119279, + [SMALL_STATE(2604)] = 119297, + [SMALL_STATE(2605)] = 119316, + [SMALL_STATE(2606)] = 119335, + [SMALL_STATE(2607)] = 119354, + [SMALL_STATE(2608)] = 119373, + [SMALL_STATE(2609)] = 119390, + [SMALL_STATE(2610)] = 119409, + [SMALL_STATE(2611)] = 119428, + [SMALL_STATE(2612)] = 119445, + [SMALL_STATE(2613)] = 119462, + [SMALL_STATE(2614)] = 119481, + [SMALL_STATE(2615)] = 119490, + [SMALL_STATE(2616)] = 119509, + [SMALL_STATE(2617)] = 119528, + [SMALL_STATE(2618)] = 119547, + [SMALL_STATE(2619)] = 119566, + [SMALL_STATE(2620)] = 119585, + [SMALL_STATE(2621)] = 119604, + [SMALL_STATE(2622)] = 119623, + [SMALL_STATE(2623)] = 119640, + [SMALL_STATE(2624)] = 119659, + [SMALL_STATE(2625)] = 119676, + [SMALL_STATE(2626)] = 119695, + [SMALL_STATE(2627)] = 119714, + [SMALL_STATE(2628)] = 119733, + [SMALL_STATE(2629)] = 119752, + [SMALL_STATE(2630)] = 119771, + [SMALL_STATE(2631)] = 119790, + [SMALL_STATE(2632)] = 119809, + [SMALL_STATE(2633)] = 119818, + [SMALL_STATE(2634)] = 119837, + [SMALL_STATE(2635)] = 119854, + [SMALL_STATE(2636)] = 119869, + [SMALL_STATE(2637)] = 119886, + [SMALL_STATE(2638)] = 119903, + [SMALL_STATE(2639)] = 119922, + [SMALL_STATE(2640)] = 119941, + [SMALL_STATE(2641)] = 119960, + [SMALL_STATE(2642)] = 119979, + [SMALL_STATE(2643)] = 119998, + [SMALL_STATE(2644)] = 120017, + [SMALL_STATE(2645)] = 120036, + [SMALL_STATE(2646)] = 120055, + [SMALL_STATE(2647)] = 120072, + [SMALL_STATE(2648)] = 120091, + [SMALL_STATE(2649)] = 120110, + [SMALL_STATE(2650)] = 120127, + [SMALL_STATE(2651)] = 120144, + [SMALL_STATE(2652)] = 120157, + [SMALL_STATE(2653)] = 120176, + [SMALL_STATE(2654)] = 120195, + [SMALL_STATE(2655)] = 120214, + [SMALL_STATE(2656)] = 120233, + [SMALL_STATE(2657)] = 120252, + [SMALL_STATE(2658)] = 120271, + [SMALL_STATE(2659)] = 120288, + [SMALL_STATE(2660)] = 120299, + [SMALL_STATE(2661)] = 120318, + [SMALL_STATE(2662)] = 120337, + [SMALL_STATE(2663)] = 120356, + [SMALL_STATE(2664)] = 120375, + [SMALL_STATE(2665)] = 120394, + [SMALL_STATE(2666)] = 120411, + [SMALL_STATE(2667)] = 120430, + [SMALL_STATE(2668)] = 120445, + [SMALL_STATE(2669)] = 120462, + [SMALL_STATE(2670)] = 120481, + [SMALL_STATE(2671)] = 120500, + [SMALL_STATE(2672)] = 120519, + [SMALL_STATE(2673)] = 120538, + [SMALL_STATE(2674)] = 120555, + [SMALL_STATE(2675)] = 120574, + [SMALL_STATE(2676)] = 120591, + [SMALL_STATE(2677)] = 120610, + [SMALL_STATE(2678)] = 120629, + [SMALL_STATE(2679)] = 120648, + [SMALL_STATE(2680)] = 120667, + [SMALL_STATE(2681)] = 120686, + [SMALL_STATE(2682)] = 120705, + [SMALL_STATE(2683)] = 120724, + [SMALL_STATE(2684)] = 120743, + [SMALL_STATE(2685)] = 120762, + [SMALL_STATE(2686)] = 120781, + [SMALL_STATE(2687)] = 120798, + [SMALL_STATE(2688)] = 120817, + [SMALL_STATE(2689)] = 120836, + [SMALL_STATE(2690)] = 120855, + [SMALL_STATE(2691)] = 120874, + [SMALL_STATE(2692)] = 120893, + [SMALL_STATE(2693)] = 120910, + [SMALL_STATE(2694)] = 120929, + [SMALL_STATE(2695)] = 120948, + [SMALL_STATE(2696)] = 120967, + [SMALL_STATE(2697)] = 120984, + [SMALL_STATE(2698)] = 120993, + [SMALL_STATE(2699)] = 121012, + [SMALL_STATE(2700)] = 121031, + [SMALL_STATE(2701)] = 121050, + [SMALL_STATE(2702)] = 121069, + [SMALL_STATE(2703)] = 121088, + [SMALL_STATE(2704)] = 121107, + [SMALL_STATE(2705)] = 121126, + [SMALL_STATE(2706)] = 121145, + [SMALL_STATE(2707)] = 121164, + [SMALL_STATE(2708)] = 121183, + [SMALL_STATE(2709)] = 121202, + [SMALL_STATE(2710)] = 121221, + [SMALL_STATE(2711)] = 121240, + [SMALL_STATE(2712)] = 121259, + [SMALL_STATE(2713)] = 121278, + [SMALL_STATE(2714)] = 121290, + [SMALL_STATE(2715)] = 121304, + [SMALL_STATE(2716)] = 121312, + [SMALL_STATE(2717)] = 121326, + [SMALL_STATE(2718)] = 121340, + [SMALL_STATE(2719)] = 121356, + [SMALL_STATE(2720)] = 121370, + [SMALL_STATE(2721)] = 121378, + [SMALL_STATE(2722)] = 121392, + [SMALL_STATE(2723)] = 121404, + [SMALL_STATE(2724)] = 121416, + [SMALL_STATE(2725)] = 121430, + [SMALL_STATE(2726)] = 121444, + [SMALL_STATE(2727)] = 121460, + [SMALL_STATE(2728)] = 121472, + [SMALL_STATE(2729)] = 121488, + [SMALL_STATE(2730)] = 121502, + [SMALL_STATE(2731)] = 121510, + [SMALL_STATE(2732)] = 121524, + [SMALL_STATE(2733)] = 121532, + [SMALL_STATE(2734)] = 121546, + [SMALL_STATE(2735)] = 121554, + [SMALL_STATE(2736)] = 121564, + [SMALL_STATE(2737)] = 121576, + [SMALL_STATE(2738)] = 121590, + [SMALL_STATE(2739)] = 121604, + [SMALL_STATE(2740)] = 121618, + [SMALL_STATE(2741)] = 121632, + [SMALL_STATE(2742)] = 121646, + [SMALL_STATE(2743)] = 121658, + [SMALL_STATE(2744)] = 121672, + [SMALL_STATE(2745)] = 121686, + [SMALL_STATE(2746)] = 121700, + [SMALL_STATE(2747)] = 121712, + [SMALL_STATE(2748)] = 121724, + [SMALL_STATE(2749)] = 121738, + [SMALL_STATE(2750)] = 121752, + [SMALL_STATE(2751)] = 121766, + [SMALL_STATE(2752)] = 121776, + [SMALL_STATE(2753)] = 121790, + [SMALL_STATE(2754)] = 121804, + [SMALL_STATE(2755)] = 121816, + [SMALL_STATE(2756)] = 121830, + [SMALL_STATE(2757)] = 121844, + [SMALL_STATE(2758)] = 121856, + [SMALL_STATE(2759)] = 121870, + [SMALL_STATE(2760)] = 121886, + [SMALL_STATE(2761)] = 121902, + [SMALL_STATE(2762)] = 121914, + [SMALL_STATE(2763)] = 121928, + [SMALL_STATE(2764)] = 121942, + [SMALL_STATE(2765)] = 121956, + [SMALL_STATE(2766)] = 121972, + [SMALL_STATE(2767)] = 121986, + [SMALL_STATE(2768)] = 121998, + [SMALL_STATE(2769)] = 122012, + [SMALL_STATE(2770)] = 122026, + [SMALL_STATE(2771)] = 122040, + [SMALL_STATE(2772)] = 122050, + [SMALL_STATE(2773)] = 122064, + [SMALL_STATE(2774)] = 122078, + [SMALL_STATE(2775)] = 122094, + [SMALL_STATE(2776)] = 122108, + [SMALL_STATE(2777)] = 122122, + [SMALL_STATE(2778)] = 122134, + [SMALL_STATE(2779)] = 122148, + [SMALL_STATE(2780)] = 122164, + [SMALL_STATE(2781)] = 122172, + [SMALL_STATE(2782)] = 122188, + [SMALL_STATE(2783)] = 122202, + [SMALL_STATE(2784)] = 122218, + [SMALL_STATE(2785)] = 122234, + [SMALL_STATE(2786)] = 122250, + [SMALL_STATE(2787)] = 122266, + [SMALL_STATE(2788)] = 122278, + [SMALL_STATE(2789)] = 122294, + [SMALL_STATE(2790)] = 122310, + [SMALL_STATE(2791)] = 122326, + [SMALL_STATE(2792)] = 122342, + [SMALL_STATE(2793)] = 122358, + [SMALL_STATE(2794)] = 122366, + [SMALL_STATE(2795)] = 122382, + [SMALL_STATE(2796)] = 122394, + [SMALL_STATE(2797)] = 122410, + [SMALL_STATE(2798)] = 122426, + [SMALL_STATE(2799)] = 122442, + [SMALL_STATE(2800)] = 122456, + [SMALL_STATE(2801)] = 122472, + [SMALL_STATE(2802)] = 122488, + [SMALL_STATE(2803)] = 122504, + [SMALL_STATE(2804)] = 122520, + [SMALL_STATE(2805)] = 122536, + [SMALL_STATE(2806)] = 122552, + [SMALL_STATE(2807)] = 122568, + [SMALL_STATE(2808)] = 122584, + [SMALL_STATE(2809)] = 122598, + [SMALL_STATE(2810)] = 122614, + [SMALL_STATE(2811)] = 122630, + [SMALL_STATE(2812)] = 122646, + [SMALL_STATE(2813)] = 122662, + [SMALL_STATE(2814)] = 122678, + [SMALL_STATE(2815)] = 122694, + [SMALL_STATE(2816)] = 122710, + [SMALL_STATE(2817)] = 122726, + [SMALL_STATE(2818)] = 122742, + [SMALL_STATE(2819)] = 122758, + [SMALL_STATE(2820)] = 122774, + [SMALL_STATE(2821)] = 122790, + [SMALL_STATE(2822)] = 122806, + [SMALL_STATE(2823)] = 122820, + [SMALL_STATE(2824)] = 122836, + [SMALL_STATE(2825)] = 122852, + [SMALL_STATE(2826)] = 122868, + [SMALL_STATE(2827)] = 122884, + [SMALL_STATE(2828)] = 122900, + [SMALL_STATE(2829)] = 122916, + [SMALL_STATE(2830)] = 122932, + [SMALL_STATE(2831)] = 122948, + [SMALL_STATE(2832)] = 122964, + [SMALL_STATE(2833)] = 122980, + [SMALL_STATE(2834)] = 122996, + [SMALL_STATE(2835)] = 123010, + [SMALL_STATE(2836)] = 123026, + [SMALL_STATE(2837)] = 123042, + [SMALL_STATE(2838)] = 123058, + [SMALL_STATE(2839)] = 123074, + [SMALL_STATE(2840)] = 123090, + [SMALL_STATE(2841)] = 123106, + [SMALL_STATE(2842)] = 123122, + [SMALL_STATE(2843)] = 123138, + [SMALL_STATE(2844)] = 123154, + [SMALL_STATE(2845)] = 123168, + [SMALL_STATE(2846)] = 123184, + [SMALL_STATE(2847)] = 123200, + [SMALL_STATE(2848)] = 123216, + [SMALL_STATE(2849)] = 123232, + [SMALL_STATE(2850)] = 123248, + [SMALL_STATE(2851)] = 123258, + [SMALL_STATE(2852)] = 123270, + [SMALL_STATE(2853)] = 123286, + [SMALL_STATE(2854)] = 123302, + [SMALL_STATE(2855)] = 123318, + [SMALL_STATE(2856)] = 123334, + [SMALL_STATE(2857)] = 123350, + [SMALL_STATE(2858)] = 123360, + [SMALL_STATE(2859)] = 123372, + [SMALL_STATE(2860)] = 123388, + [SMALL_STATE(2861)] = 123404, + [SMALL_STATE(2862)] = 123420, + [SMALL_STATE(2863)] = 123436, + [SMALL_STATE(2864)] = 123452, + [SMALL_STATE(2865)] = 123468, + [SMALL_STATE(2866)] = 123484, + [SMALL_STATE(2867)] = 123500, + [SMALL_STATE(2868)] = 123516, + [SMALL_STATE(2869)] = 123532, + [SMALL_STATE(2870)] = 123546, + [SMALL_STATE(2871)] = 123562, + [SMALL_STATE(2872)] = 123578, + [SMALL_STATE(2873)] = 123591, + [SMALL_STATE(2874)] = 123600, + [SMALL_STATE(2875)] = 123611, + [SMALL_STATE(2876)] = 123620, + [SMALL_STATE(2877)] = 123627, + [SMALL_STATE(2878)] = 123638, + [SMALL_STATE(2879)] = 123647, + [SMALL_STATE(2880)] = 123656, + [SMALL_STATE(2881)] = 123667, + [SMALL_STATE(2882)] = 123680, + [SMALL_STATE(2883)] = 123693, + [SMALL_STATE(2884)] = 123704, + [SMALL_STATE(2885)] = 123717, + [SMALL_STATE(2886)] = 123724, + [SMALL_STATE(2887)] = 123731, + [SMALL_STATE(2888)] = 123744, + [SMALL_STATE(2889)] = 123757, + [SMALL_STATE(2890)] = 123770, + [SMALL_STATE(2891)] = 123779, + [SMALL_STATE(2892)] = 123788, + [SMALL_STATE(2893)] = 123797, + [SMALL_STATE(2894)] = 123806, + [SMALL_STATE(2895)] = 123815, + [SMALL_STATE(2896)] = 123824, + [SMALL_STATE(2897)] = 123833, + [SMALL_STATE(2898)] = 123846, + [SMALL_STATE(2899)] = 123855, + [SMALL_STATE(2900)] = 123866, + [SMALL_STATE(2901)] = 123877, + [SMALL_STATE(2902)] = 123888, + [SMALL_STATE(2903)] = 123901, + [SMALL_STATE(2904)] = 123908, + [SMALL_STATE(2905)] = 123919, + [SMALL_STATE(2906)] = 123932, + [SMALL_STATE(2907)] = 123941, + [SMALL_STATE(2908)] = 123954, + [SMALL_STATE(2909)] = 123963, + [SMALL_STATE(2910)] = 123972, + [SMALL_STATE(2911)] = 123983, + [SMALL_STATE(2912)] = 123996, + [SMALL_STATE(2913)] = 124003, + [SMALL_STATE(2914)] = 124016, + [SMALL_STATE(2915)] = 124027, + [SMALL_STATE(2916)] = 124038, + [SMALL_STATE(2917)] = 124051, + [SMALL_STATE(2918)] = 124060, + [SMALL_STATE(2919)] = 124073, + [SMALL_STATE(2920)] = 124086, + [SMALL_STATE(2921)] = 124097, + [SMALL_STATE(2922)] = 124110, + [SMALL_STATE(2923)] = 124121, + [SMALL_STATE(2924)] = 124134, + [SMALL_STATE(2925)] = 124147, + [SMALL_STATE(2926)] = 124154, + [SMALL_STATE(2927)] = 124163, + [SMALL_STATE(2928)] = 124172, + [SMALL_STATE(2929)] = 124183, + [SMALL_STATE(2930)] = 124192, + [SMALL_STATE(2931)] = 124205, + [SMALL_STATE(2932)] = 124216, + [SMALL_STATE(2933)] = 124229, + [SMALL_STATE(2934)] = 124242, + [SMALL_STATE(2935)] = 124255, + [SMALL_STATE(2936)] = 124268, + [SMALL_STATE(2937)] = 124277, + [SMALL_STATE(2938)] = 124290, + [SMALL_STATE(2939)] = 124303, + [SMALL_STATE(2940)] = 124316, + [SMALL_STATE(2941)] = 124327, + [SMALL_STATE(2942)] = 124340, + [SMALL_STATE(2943)] = 124351, + [SMALL_STATE(2944)] = 124364, + [SMALL_STATE(2945)] = 124377, + [SMALL_STATE(2946)] = 124384, + [SMALL_STATE(2947)] = 124397, + [SMALL_STATE(2948)] = 124410, + [SMALL_STATE(2949)] = 124423, + [SMALL_STATE(2950)] = 124436, + [SMALL_STATE(2951)] = 124449, + [SMALL_STATE(2952)] = 124462, + [SMALL_STATE(2953)] = 124473, + [SMALL_STATE(2954)] = 124482, + [SMALL_STATE(2955)] = 124495, + [SMALL_STATE(2956)] = 124502, + [SMALL_STATE(2957)] = 124509, + [SMALL_STATE(2958)] = 124520, + [SMALL_STATE(2959)] = 124533, + [SMALL_STATE(2960)] = 124546, + [SMALL_STATE(2961)] = 124553, + [SMALL_STATE(2962)] = 124560, + [SMALL_STATE(2963)] = 124571, + [SMALL_STATE(2964)] = 124582, + [SMALL_STATE(2965)] = 124595, + [SMALL_STATE(2966)] = 124602, + [SMALL_STATE(2967)] = 124615, + [SMALL_STATE(2968)] = 124626, + [SMALL_STATE(2969)] = 124639, + [SMALL_STATE(2970)] = 124652, + [SMALL_STATE(2971)] = 124665, + [SMALL_STATE(2972)] = 124678, + [SMALL_STATE(2973)] = 124691, + [SMALL_STATE(2974)] = 124704, + [SMALL_STATE(2975)] = 124717, + [SMALL_STATE(2976)] = 124730, + [SMALL_STATE(2977)] = 124743, + [SMALL_STATE(2978)] = 124756, + [SMALL_STATE(2979)] = 124769, + [SMALL_STATE(2980)] = 124782, + [SMALL_STATE(2981)] = 124795, + [SMALL_STATE(2982)] = 124808, + [SMALL_STATE(2983)] = 124821, + [SMALL_STATE(2984)] = 124834, + [SMALL_STATE(2985)] = 124847, + [SMALL_STATE(2986)] = 124860, + [SMALL_STATE(2987)] = 124873, + [SMALL_STATE(2988)] = 124886, + [SMALL_STATE(2989)] = 124899, + [SMALL_STATE(2990)] = 124912, + [SMALL_STATE(2991)] = 124925, + [SMALL_STATE(2992)] = 124938, + [SMALL_STATE(2993)] = 124951, + [SMALL_STATE(2994)] = 124960, + [SMALL_STATE(2995)] = 124973, + [SMALL_STATE(2996)] = 124986, + [SMALL_STATE(2997)] = 124999, + [SMALL_STATE(2998)] = 125012, + [SMALL_STATE(2999)] = 125025, + [SMALL_STATE(3000)] = 125038, + [SMALL_STATE(3001)] = 125051, + [SMALL_STATE(3002)] = 125064, + [SMALL_STATE(3003)] = 125077, + [SMALL_STATE(3004)] = 125090, + [SMALL_STATE(3005)] = 125103, + [SMALL_STATE(3006)] = 125114, + [SMALL_STATE(3007)] = 125124, + [SMALL_STATE(3008)] = 125134, + [SMALL_STATE(3009)] = 125144, + [SMALL_STATE(3010)] = 125154, + [SMALL_STATE(3011)] = 125164, + [SMALL_STATE(3012)] = 125174, + [SMALL_STATE(3013)] = 125184, + [SMALL_STATE(3014)] = 125194, + [SMALL_STATE(3015)] = 125204, + [SMALL_STATE(3016)] = 125214, + [SMALL_STATE(3017)] = 125224, + [SMALL_STATE(3018)] = 125234, + [SMALL_STATE(3019)] = 125244, + [SMALL_STATE(3020)] = 125254, + [SMALL_STATE(3021)] = 125264, + [SMALL_STATE(3022)] = 125274, + [SMALL_STATE(3023)] = 125284, + [SMALL_STATE(3024)] = 125294, + [SMALL_STATE(3025)] = 125304, + [SMALL_STATE(3026)] = 125314, + [SMALL_STATE(3027)] = 125324, + [SMALL_STATE(3028)] = 125334, + [SMALL_STATE(3029)] = 125342, + [SMALL_STATE(3030)] = 125352, + [SMALL_STATE(3031)] = 125358, + [SMALL_STATE(3032)] = 125368, + [SMALL_STATE(3033)] = 125378, + [SMALL_STATE(3034)] = 125388, + [SMALL_STATE(3035)] = 125398, + [SMALL_STATE(3036)] = 125408, + [SMALL_STATE(3037)] = 125418, + [SMALL_STATE(3038)] = 125428, + [SMALL_STATE(3039)] = 125438, + [SMALL_STATE(3040)] = 125448, + [SMALL_STATE(3041)] = 125458, + [SMALL_STATE(3042)] = 125468, + [SMALL_STATE(3043)] = 125478, + [SMALL_STATE(3044)] = 125488, + [SMALL_STATE(3045)] = 125498, + [SMALL_STATE(3046)] = 125508, + [SMALL_STATE(3047)] = 125518, + [SMALL_STATE(3048)] = 125528, + [SMALL_STATE(3049)] = 125538, + [SMALL_STATE(3050)] = 125548, + [SMALL_STATE(3051)] = 125558, + [SMALL_STATE(3052)] = 125568, + [SMALL_STATE(3053)] = 125578, + [SMALL_STATE(3054)] = 125588, + [SMALL_STATE(3055)] = 125598, + [SMALL_STATE(3056)] = 125608, + [SMALL_STATE(3057)] = 125618, + [SMALL_STATE(3058)] = 125626, + [SMALL_STATE(3059)] = 125636, + [SMALL_STATE(3060)] = 125646, + [SMALL_STATE(3061)] = 125656, + [SMALL_STATE(3062)] = 125666, + [SMALL_STATE(3063)] = 125672, + [SMALL_STATE(3064)] = 125682, + [SMALL_STATE(3065)] = 125692, + [SMALL_STATE(3066)] = 125702, + [SMALL_STATE(3067)] = 125712, + [SMALL_STATE(3068)] = 125722, + [SMALL_STATE(3069)] = 125732, + [SMALL_STATE(3070)] = 125742, + [SMALL_STATE(3071)] = 125752, + [SMALL_STATE(3072)] = 125762, + [SMALL_STATE(3073)] = 125772, + [SMALL_STATE(3074)] = 125782, + [SMALL_STATE(3075)] = 125790, + [SMALL_STATE(3076)] = 125800, + [SMALL_STATE(3077)] = 125810, + [SMALL_STATE(3078)] = 125820, + [SMALL_STATE(3079)] = 125830, + [SMALL_STATE(3080)] = 125840, + [SMALL_STATE(3081)] = 125850, + [SMALL_STATE(3082)] = 125860, + [SMALL_STATE(3083)] = 125868, + [SMALL_STATE(3084)] = 125878, + [SMALL_STATE(3085)] = 125888, + [SMALL_STATE(3086)] = 125898, + [SMALL_STATE(3087)] = 125908, + [SMALL_STATE(3088)] = 125914, + [SMALL_STATE(3089)] = 125924, + [SMALL_STATE(3090)] = 125934, + [SMALL_STATE(3091)] = 125944, + [SMALL_STATE(3092)] = 125954, + [SMALL_STATE(3093)] = 125964, + [SMALL_STATE(3094)] = 125974, + [SMALL_STATE(3095)] = 125984, + [SMALL_STATE(3096)] = 125992, + [SMALL_STATE(3097)] = 126002, + [SMALL_STATE(3098)] = 126012, + [SMALL_STATE(3099)] = 126022, + [SMALL_STATE(3100)] = 126032, + [SMALL_STATE(3101)] = 126042, + [SMALL_STATE(3102)] = 126052, + [SMALL_STATE(3103)] = 126062, + [SMALL_STATE(3104)] = 126072, + [SMALL_STATE(3105)] = 126082, + [SMALL_STATE(3106)] = 126092, + [SMALL_STATE(3107)] = 126102, + [SMALL_STATE(3108)] = 126110, + [SMALL_STATE(3109)] = 126118, + [SMALL_STATE(3110)] = 126128, + [SMALL_STATE(3111)] = 126134, + [SMALL_STATE(3112)] = 126144, + [SMALL_STATE(3113)] = 126154, + [SMALL_STATE(3114)] = 126164, + [SMALL_STATE(3115)] = 126174, + [SMALL_STATE(3116)] = 126184, + [SMALL_STATE(3117)] = 126192, + [SMALL_STATE(3118)] = 126202, + [SMALL_STATE(3119)] = 126212, + [SMALL_STATE(3120)] = 126222, + [SMALL_STATE(3121)] = 126232, + [SMALL_STATE(3122)] = 126242, + [SMALL_STATE(3123)] = 126252, + [SMALL_STATE(3124)] = 126262, + [SMALL_STATE(3125)] = 126270, + [SMALL_STATE(3126)] = 126280, + [SMALL_STATE(3127)] = 126290, + [SMALL_STATE(3128)] = 126300, + [SMALL_STATE(3129)] = 126310, + [SMALL_STATE(3130)] = 126320, + [SMALL_STATE(3131)] = 126330, + [SMALL_STATE(3132)] = 126340, + [SMALL_STATE(3133)] = 126348, + [SMALL_STATE(3134)] = 126358, + [SMALL_STATE(3135)] = 126368, + [SMALL_STATE(3136)] = 126378, + [SMALL_STATE(3137)] = 126388, + [SMALL_STATE(3138)] = 126398, + [SMALL_STATE(3139)] = 126406, + [SMALL_STATE(3140)] = 126416, + [SMALL_STATE(3141)] = 126426, + [SMALL_STATE(3142)] = 126434, + [SMALL_STATE(3143)] = 126444, + [SMALL_STATE(3144)] = 126454, + [SMALL_STATE(3145)] = 126464, + [SMALL_STATE(3146)] = 126474, + [SMALL_STATE(3147)] = 126484, + [SMALL_STATE(3148)] = 126490, + [SMALL_STATE(3149)] = 126498, + [SMALL_STATE(3150)] = 126504, + [SMALL_STATE(3151)] = 126512, + [SMALL_STATE(3152)] = 126522, + [SMALL_STATE(3153)] = 126532, + [SMALL_STATE(3154)] = 126542, + [SMALL_STATE(3155)] = 126552, + [SMALL_STATE(3156)] = 126560, + [SMALL_STATE(3157)] = 126570, + [SMALL_STATE(3158)] = 126580, + [SMALL_STATE(3159)] = 126588, + [SMALL_STATE(3160)] = 126598, + [SMALL_STATE(3161)] = 126608, + [SMALL_STATE(3162)] = 126618, + [SMALL_STATE(3163)] = 126628, + [SMALL_STATE(3164)] = 126638, + [SMALL_STATE(3165)] = 126648, + [SMALL_STATE(3166)] = 126658, + [SMALL_STATE(3167)] = 126668, + [SMALL_STATE(3168)] = 126678, + [SMALL_STATE(3169)] = 126688, + [SMALL_STATE(3170)] = 126698, + [SMALL_STATE(3171)] = 126706, + [SMALL_STATE(3172)] = 126716, + [SMALL_STATE(3173)] = 126726, + [SMALL_STATE(3174)] = 126736, + [SMALL_STATE(3175)] = 126746, + [SMALL_STATE(3176)] = 126756, + [SMALL_STATE(3177)] = 126766, + [SMALL_STATE(3178)] = 126776, + [SMALL_STATE(3179)] = 126786, + [SMALL_STATE(3180)] = 126796, + [SMALL_STATE(3181)] = 126804, + [SMALL_STATE(3182)] = 126814, + [SMALL_STATE(3183)] = 126824, + [SMALL_STATE(3184)] = 126834, + [SMALL_STATE(3185)] = 126844, + [SMALL_STATE(3186)] = 126852, + [SMALL_STATE(3187)] = 126862, + [SMALL_STATE(3188)] = 126868, + [SMALL_STATE(3189)] = 126878, + [SMALL_STATE(3190)] = 126886, + [SMALL_STATE(3191)] = 126896, + [SMALL_STATE(3192)] = 126906, + [SMALL_STATE(3193)] = 126916, + [SMALL_STATE(3194)] = 126926, + [SMALL_STATE(3195)] = 126936, + [SMALL_STATE(3196)] = 126946, + [SMALL_STATE(3197)] = 126956, + [SMALL_STATE(3198)] = 126966, + [SMALL_STATE(3199)] = 126976, + [SMALL_STATE(3200)] = 126986, + [SMALL_STATE(3201)] = 126994, + [SMALL_STATE(3202)] = 127004, + [SMALL_STATE(3203)] = 127014, + [SMALL_STATE(3204)] = 127024, + [SMALL_STATE(3205)] = 127034, + [SMALL_STATE(3206)] = 127044, + [SMALL_STATE(3207)] = 127054, + [SMALL_STATE(3208)] = 127060, + [SMALL_STATE(3209)] = 127070, + [SMALL_STATE(3210)] = 127080, + [SMALL_STATE(3211)] = 127090, + [SMALL_STATE(3212)] = 127100, + [SMALL_STATE(3213)] = 127110, + [SMALL_STATE(3214)] = 127120, + [SMALL_STATE(3215)] = 127130, + [SMALL_STATE(3216)] = 127140, + [SMALL_STATE(3217)] = 127150, + [SMALL_STATE(3218)] = 127160, + [SMALL_STATE(3219)] = 127170, + [SMALL_STATE(3220)] = 127180, + [SMALL_STATE(3221)] = 127190, + [SMALL_STATE(3222)] = 127200, + [SMALL_STATE(3223)] = 127210, + [SMALL_STATE(3224)] = 127220, + [SMALL_STATE(3225)] = 127230, + [SMALL_STATE(3226)] = 127240, + [SMALL_STATE(3227)] = 127250, + [SMALL_STATE(3228)] = 127260, + [SMALL_STATE(3229)] = 127270, + [SMALL_STATE(3230)] = 127280, + [SMALL_STATE(3231)] = 127290, + [SMALL_STATE(3232)] = 127300, + [SMALL_STATE(3233)] = 127310, + [SMALL_STATE(3234)] = 127320, + [SMALL_STATE(3235)] = 127330, + [SMALL_STATE(3236)] = 127340, + [SMALL_STATE(3237)] = 127350, + [SMALL_STATE(3238)] = 127360, + [SMALL_STATE(3239)] = 127370, + [SMALL_STATE(3240)] = 127380, + [SMALL_STATE(3241)] = 127390, + [SMALL_STATE(3242)] = 127400, + [SMALL_STATE(3243)] = 127410, + [SMALL_STATE(3244)] = 127420, + [SMALL_STATE(3245)] = 127430, + [SMALL_STATE(3246)] = 127440, + [SMALL_STATE(3247)] = 127450, + [SMALL_STATE(3248)] = 127460, + [SMALL_STATE(3249)] = 127470, + [SMALL_STATE(3250)] = 127480, + [SMALL_STATE(3251)] = 127488, + [SMALL_STATE(3252)] = 127494, + [SMALL_STATE(3253)] = 127504, + [SMALL_STATE(3254)] = 127514, + [SMALL_STATE(3255)] = 127524, + [SMALL_STATE(3256)] = 127534, + [SMALL_STATE(3257)] = 127544, + [SMALL_STATE(3258)] = 127551, + [SMALL_STATE(3259)] = 127556, + [SMALL_STATE(3260)] = 127561, + [SMALL_STATE(3261)] = 127566, + [SMALL_STATE(3262)] = 127571, + [SMALL_STATE(3263)] = 127576, + [SMALL_STATE(3264)] = 127581, + [SMALL_STATE(3265)] = 127586, + [SMALL_STATE(3266)] = 127591, + [SMALL_STATE(3267)] = 127598, + [SMALL_STATE(3268)] = 127603, + [SMALL_STATE(3269)] = 127608, + [SMALL_STATE(3270)] = 127613, + [SMALL_STATE(3271)] = 127618, + [SMALL_STATE(3272)] = 127625, + [SMALL_STATE(3273)] = 127632, + [SMALL_STATE(3274)] = 127637, + [SMALL_STATE(3275)] = 127642, + [SMALL_STATE(3276)] = 127647, + [SMALL_STATE(3277)] = 127652, + [SMALL_STATE(3278)] = 127659, + [SMALL_STATE(3279)] = 127664, + [SMALL_STATE(3280)] = 127669, + [SMALL_STATE(3281)] = 127676, + [SMALL_STATE(3282)] = 127683, + [SMALL_STATE(3283)] = 127690, + [SMALL_STATE(3284)] = 127697, + [SMALL_STATE(3285)] = 127704, + [SMALL_STATE(3286)] = 127709, + [SMALL_STATE(3287)] = 127716, + [SMALL_STATE(3288)] = 127721, + [SMALL_STATE(3289)] = 127728, + [SMALL_STATE(3290)] = 127735, + [SMALL_STATE(3291)] = 127740, + [SMALL_STATE(3292)] = 127747, + [SMALL_STATE(3293)] = 127752, + [SMALL_STATE(3294)] = 127759, + [SMALL_STATE(3295)] = 127766, + [SMALL_STATE(3296)] = 127773, + [SMALL_STATE(3297)] = 127780, + [SMALL_STATE(3298)] = 127785, + [SMALL_STATE(3299)] = 127792, + [SMALL_STATE(3300)] = 127799, + [SMALL_STATE(3301)] = 127806, + [SMALL_STATE(3302)] = 127813, + [SMALL_STATE(3303)] = 127818, + [SMALL_STATE(3304)] = 127825, + [SMALL_STATE(3305)] = 127832, + [SMALL_STATE(3306)] = 127839, + [SMALL_STATE(3307)] = 127846, + [SMALL_STATE(3308)] = 127851, + [SMALL_STATE(3309)] = 127856, + [SMALL_STATE(3310)] = 127863, + [SMALL_STATE(3311)] = 127870, + [SMALL_STATE(3312)] = 127877, + [SMALL_STATE(3313)] = 127882, + [SMALL_STATE(3314)] = 127889, + [SMALL_STATE(3315)] = 127894, + [SMALL_STATE(3316)] = 127901, + [SMALL_STATE(3317)] = 127908, + [SMALL_STATE(3318)] = 127915, + [SMALL_STATE(3319)] = 127922, + [SMALL_STATE(3320)] = 127929, + [SMALL_STATE(3321)] = 127934, + [SMALL_STATE(3322)] = 127941, + [SMALL_STATE(3323)] = 127948, + [SMALL_STATE(3324)] = 127955, + [SMALL_STATE(3325)] = 127962, + [SMALL_STATE(3326)] = 127969, + [SMALL_STATE(3327)] = 127976, + [SMALL_STATE(3328)] = 127983, + [SMALL_STATE(3329)] = 127990, + [SMALL_STATE(3330)] = 127997, + [SMALL_STATE(3331)] = 128004, + [SMALL_STATE(3332)] = 128011, + [SMALL_STATE(3333)] = 128018, + [SMALL_STATE(3334)] = 128023, + [SMALL_STATE(3335)] = 128030, + [SMALL_STATE(3336)] = 128037, + [SMALL_STATE(3337)] = 128044, + [SMALL_STATE(3338)] = 128049, + [SMALL_STATE(3339)] = 128054, + [SMALL_STATE(3340)] = 128061, + [SMALL_STATE(3341)] = 128068, + [SMALL_STATE(3342)] = 128075, + [SMALL_STATE(3343)] = 128082, + [SMALL_STATE(3344)] = 128089, + [SMALL_STATE(3345)] = 128094, + [SMALL_STATE(3346)] = 128101, + [SMALL_STATE(3347)] = 128108, + [SMALL_STATE(3348)] = 128115, + [SMALL_STATE(3349)] = 128122, + [SMALL_STATE(3350)] = 128129, + [SMALL_STATE(3351)] = 128136, + [SMALL_STATE(3352)] = 128143, + [SMALL_STATE(3353)] = 128150, + [SMALL_STATE(3354)] = 128157, + [SMALL_STATE(3355)] = 128164, + [SMALL_STATE(3356)] = 128171, + [SMALL_STATE(3357)] = 128178, + [SMALL_STATE(3358)] = 128185, + [SMALL_STATE(3359)] = 128192, + [SMALL_STATE(3360)] = 128199, + [SMALL_STATE(3361)] = 128206, + [SMALL_STATE(3362)] = 128211, + [SMALL_STATE(3363)] = 128218, + [SMALL_STATE(3364)] = 128225, + [SMALL_STATE(3365)] = 128232, + [SMALL_STATE(3366)] = 128239, + [SMALL_STATE(3367)] = 128246, + [SMALL_STATE(3368)] = 128253, + [SMALL_STATE(3369)] = 128260, + [SMALL_STATE(3370)] = 128265, + [SMALL_STATE(3371)] = 128272, + [SMALL_STATE(3372)] = 128279, + [SMALL_STATE(3373)] = 128286, + [SMALL_STATE(3374)] = 128293, + [SMALL_STATE(3375)] = 128300, + [SMALL_STATE(3376)] = 128307, + [SMALL_STATE(3377)] = 128314, + [SMALL_STATE(3378)] = 128319, + [SMALL_STATE(3379)] = 128326, + [SMALL_STATE(3380)] = 128333, + [SMALL_STATE(3381)] = 128340, + [SMALL_STATE(3382)] = 128347, + [SMALL_STATE(3383)] = 128354, + [SMALL_STATE(3384)] = 128359, + [SMALL_STATE(3385)] = 128366, + [SMALL_STATE(3386)] = 128373, + [SMALL_STATE(3387)] = 128380, + [SMALL_STATE(3388)] = 128387, + [SMALL_STATE(3389)] = 128394, + [SMALL_STATE(3390)] = 128401, + [SMALL_STATE(3391)] = 128408, + [SMALL_STATE(3392)] = 128415, + [SMALL_STATE(3393)] = 128422, + [SMALL_STATE(3394)] = 128427, + [SMALL_STATE(3395)] = 128434, + [SMALL_STATE(3396)] = 128439, + [SMALL_STATE(3397)] = 128446, + [SMALL_STATE(3398)] = 128453, + [SMALL_STATE(3399)] = 128457, + [SMALL_STATE(3400)] = 128461, + [SMALL_STATE(3401)] = 128465, + [SMALL_STATE(3402)] = 128469, + [SMALL_STATE(3403)] = 128473, + [SMALL_STATE(3404)] = 128477, + [SMALL_STATE(3405)] = 128481, + [SMALL_STATE(3406)] = 128485, + [SMALL_STATE(3407)] = 128489, + [SMALL_STATE(3408)] = 128493, + [SMALL_STATE(3409)] = 128497, + [SMALL_STATE(3410)] = 128501, + [SMALL_STATE(3411)] = 128505, + [SMALL_STATE(3412)] = 128509, + [SMALL_STATE(3413)] = 128513, + [SMALL_STATE(3414)] = 128517, + [SMALL_STATE(3415)] = 128521, + [SMALL_STATE(3416)] = 128525, + [SMALL_STATE(3417)] = 128529, + [SMALL_STATE(3418)] = 128533, + [SMALL_STATE(3419)] = 128537, + [SMALL_STATE(3420)] = 128541, + [SMALL_STATE(3421)] = 128545, + [SMALL_STATE(3422)] = 128549, + [SMALL_STATE(3423)] = 128553, + [SMALL_STATE(3424)] = 128557, + [SMALL_STATE(3425)] = 128561, + [SMALL_STATE(3426)] = 128565, + [SMALL_STATE(3427)] = 128569, + [SMALL_STATE(3428)] = 128573, + [SMALL_STATE(3429)] = 128577, + [SMALL_STATE(3430)] = 128581, + [SMALL_STATE(3431)] = 128585, + [SMALL_STATE(3432)] = 128589, + [SMALL_STATE(3433)] = 128593, + [SMALL_STATE(3434)] = 128597, + [SMALL_STATE(3435)] = 128601, + [SMALL_STATE(3436)] = 128605, + [SMALL_STATE(3437)] = 128609, + [SMALL_STATE(3438)] = 128613, + [SMALL_STATE(3439)] = 128617, + [SMALL_STATE(3440)] = 128621, + [SMALL_STATE(3441)] = 128625, + [SMALL_STATE(3442)] = 128629, + [SMALL_STATE(3443)] = 128633, + [SMALL_STATE(3444)] = 128637, + [SMALL_STATE(3445)] = 128641, + [SMALL_STATE(3446)] = 128645, + [SMALL_STATE(3447)] = 128649, + [SMALL_STATE(3448)] = 128653, + [SMALL_STATE(3449)] = 128657, + [SMALL_STATE(3450)] = 128661, + [SMALL_STATE(3451)] = 128665, + [SMALL_STATE(3452)] = 128669, + [SMALL_STATE(3453)] = 128673, + [SMALL_STATE(3454)] = 128677, + [SMALL_STATE(3455)] = 128681, + [SMALL_STATE(3456)] = 128685, + [SMALL_STATE(3457)] = 128689, + [SMALL_STATE(3458)] = 128693, + [SMALL_STATE(3459)] = 128697, + [SMALL_STATE(3460)] = 128701, + [SMALL_STATE(3461)] = 128705, + [SMALL_STATE(3462)] = 128709, + [SMALL_STATE(3463)] = 128713, + [SMALL_STATE(3464)] = 128717, + [SMALL_STATE(3465)] = 128721, + [SMALL_STATE(3466)] = 128725, + [SMALL_STATE(3467)] = 128729, + [SMALL_STATE(3468)] = 128733, + [SMALL_STATE(3469)] = 128737, + [SMALL_STATE(3470)] = 128741, + [SMALL_STATE(3471)] = 128745, + [SMALL_STATE(3472)] = 128749, + [SMALL_STATE(3473)] = 128753, + [SMALL_STATE(3474)] = 128757, + [SMALL_STATE(3475)] = 128761, + [SMALL_STATE(3476)] = 128765, + [SMALL_STATE(3477)] = 128769, + [SMALL_STATE(3478)] = 128773, + [SMALL_STATE(3479)] = 128777, + [SMALL_STATE(3480)] = 128781, + [SMALL_STATE(3481)] = 128785, + [SMALL_STATE(3482)] = 128789, + [SMALL_STATE(3483)] = 128793, + [SMALL_STATE(3484)] = 128797, + [SMALL_STATE(3485)] = 128801, + [SMALL_STATE(3486)] = 128805, + [SMALL_STATE(3487)] = 128809, + [SMALL_STATE(3488)] = 128813, + [SMALL_STATE(3489)] = 128817, + [SMALL_STATE(3490)] = 128821, + [SMALL_STATE(3491)] = 128825, + [SMALL_STATE(3492)] = 128829, + [SMALL_STATE(3493)] = 128833, + [SMALL_STATE(3494)] = 128837, + [SMALL_STATE(3495)] = 128841, + [SMALL_STATE(3496)] = 128845, + [SMALL_STATE(3497)] = 128849, + [SMALL_STATE(3498)] = 128853, + [SMALL_STATE(3499)] = 128857, + [SMALL_STATE(3500)] = 128861, + [SMALL_STATE(3501)] = 128865, + [SMALL_STATE(3502)] = 128869, + [SMALL_STATE(3503)] = 128873, + [SMALL_STATE(3504)] = 128877, + [SMALL_STATE(3505)] = 128881, + [SMALL_STATE(3506)] = 128885, + [SMALL_STATE(3507)] = 128889, + [SMALL_STATE(3508)] = 128893, + [SMALL_STATE(3509)] = 128897, + [SMALL_STATE(3510)] = 128901, + [SMALL_STATE(3511)] = 128905, + [SMALL_STATE(3512)] = 128909, + [SMALL_STATE(3513)] = 128913, + [SMALL_STATE(3514)] = 128917, + [SMALL_STATE(3515)] = 128921, + [SMALL_STATE(3516)] = 128925, + [SMALL_STATE(3517)] = 128929, + [SMALL_STATE(3518)] = 128933, + [SMALL_STATE(3519)] = 128937, + [SMALL_STATE(3520)] = 128941, + [SMALL_STATE(3521)] = 128945, + [SMALL_STATE(3522)] = 128949, + [SMALL_STATE(3523)] = 128953, + [SMALL_STATE(3524)] = 128957, + [SMALL_STATE(3525)] = 128961, + [SMALL_STATE(3526)] = 128965, + [SMALL_STATE(3527)] = 128969, + [SMALL_STATE(3528)] = 128973, + [SMALL_STATE(3529)] = 128977, + [SMALL_STATE(3530)] = 128981, + [SMALL_STATE(3531)] = 128985, + [SMALL_STATE(3532)] = 128989, + [SMALL_STATE(3533)] = 128993, + [SMALL_STATE(3534)] = 128997, + [SMALL_STATE(3535)] = 129001, + [SMALL_STATE(3536)] = 129005, + [SMALL_STATE(3537)] = 129009, + [SMALL_STATE(3538)] = 129013, + [SMALL_STATE(3539)] = 129017, + [SMALL_STATE(3540)] = 129021, + [SMALL_STATE(3541)] = 129025, + [SMALL_STATE(3542)] = 129029, + [SMALL_STATE(3543)] = 129033, + [SMALL_STATE(3544)] = 129037, + [SMALL_STATE(3545)] = 129041, + [SMALL_STATE(3546)] = 129045, + [SMALL_STATE(3547)] = 129049, + [SMALL_STATE(3548)] = 129053, + [SMALL_STATE(3549)] = 129057, + [SMALL_STATE(3550)] = 129061, + [SMALL_STATE(3551)] = 129065, + [SMALL_STATE(3552)] = 129069, + [SMALL_STATE(3553)] = 129073, + [SMALL_STATE(3554)] = 129077, + [SMALL_STATE(3555)] = 129081, + [SMALL_STATE(3556)] = 129085, + [SMALL_STATE(3557)] = 129089, + [SMALL_STATE(3558)] = 129093, + [SMALL_STATE(3559)] = 129097, + [SMALL_STATE(3560)] = 129101, + [SMALL_STATE(3561)] = 129105, + [SMALL_STATE(3562)] = 129109, + [SMALL_STATE(3563)] = 129113, + [SMALL_STATE(3564)] = 129117, + [SMALL_STATE(3565)] = 129121, + [SMALL_STATE(3566)] = 129125, + [SMALL_STATE(3567)] = 129129, + [SMALL_STATE(3568)] = 129133, + [SMALL_STATE(3569)] = 129137, + [SMALL_STATE(3570)] = 129141, + [SMALL_STATE(3571)] = 129145, + [SMALL_STATE(3572)] = 129149, + [SMALL_STATE(3573)] = 129153, + [SMALL_STATE(3574)] = 129157, + [SMALL_STATE(3575)] = 129161, + [SMALL_STATE(3576)] = 129165, + [SMALL_STATE(3577)] = 129169, + [SMALL_STATE(3578)] = 129173, + [SMALL_STATE(3579)] = 129177, + [SMALL_STATE(3580)] = 129181, + [SMALL_STATE(3581)] = 129185, + [SMALL_STATE(3582)] = 129189, + [SMALL_STATE(3583)] = 129193, + [SMALL_STATE(3584)] = 129197, + [SMALL_STATE(3585)] = 129201, + [SMALL_STATE(3586)] = 129205, + [SMALL_STATE(3587)] = 129209, + [SMALL_STATE(3588)] = 129213, + [SMALL_STATE(3589)] = 129217, + [SMALL_STATE(3590)] = 129221, + [SMALL_STATE(3591)] = 129225, + [SMALL_STATE(3592)] = 129229, + [SMALL_STATE(3593)] = 129233, + [SMALL_STATE(3594)] = 129237, + [SMALL_STATE(3595)] = 129241, + [SMALL_STATE(3596)] = 129245, + [SMALL_STATE(3597)] = 129249, + [SMALL_STATE(3598)] = 129253, + [SMALL_STATE(3599)] = 129257, + [SMALL_STATE(3600)] = 129261, + [SMALL_STATE(3601)] = 129265, + [SMALL_STATE(3602)] = 129269, + [SMALL_STATE(3603)] = 129273, + [SMALL_STATE(3604)] = 129277, + [SMALL_STATE(3605)] = 129281, + [SMALL_STATE(3606)] = 129285, + [SMALL_STATE(3607)] = 129289, + [SMALL_STATE(3608)] = 129293, + [SMALL_STATE(3609)] = 129297, + [SMALL_STATE(3610)] = 129301, + [SMALL_STATE(3611)] = 129305, + [SMALL_STATE(3612)] = 129309, + [SMALL_STATE(3613)] = 129313, + [SMALL_STATE(3614)] = 129317, + [SMALL_STATE(3615)] = 129321, + [SMALL_STATE(3616)] = 129325, + [SMALL_STATE(3617)] = 129329, + [SMALL_STATE(3618)] = 129333, + [SMALL_STATE(3619)] = 129337, + [SMALL_STATE(3620)] = 129341, + [SMALL_STATE(3621)] = 129345, + [SMALL_STATE(3622)] = 129349, + [SMALL_STATE(3623)] = 129353, + [SMALL_STATE(3624)] = 129357, + [SMALL_STATE(3625)] = 129361, + [SMALL_STATE(3626)] = 129365, + [SMALL_STATE(3627)] = 129369, + [SMALL_STATE(3628)] = 129373, + [SMALL_STATE(3629)] = 129377, + [SMALL_STATE(3630)] = 129381, + [SMALL_STATE(3631)] = 129385, + [SMALL_STATE(3632)] = 129389, + [SMALL_STATE(3633)] = 129393, + [SMALL_STATE(3634)] = 129397, + [SMALL_STATE(3635)] = 129401, + [SMALL_STATE(3636)] = 129405, + [SMALL_STATE(3637)] = 129409, + [SMALL_STATE(3638)] = 129413, + [SMALL_STATE(3639)] = 129417, + [SMALL_STATE(3640)] = 129421, + [SMALL_STATE(3641)] = 129425, + [SMALL_STATE(3642)] = 129429, + [SMALL_STATE(3643)] = 129433, + [SMALL_STATE(3644)] = 129437, + [SMALL_STATE(3645)] = 129441, + [SMALL_STATE(3646)] = 129445, + [SMALL_STATE(3647)] = 129449, + [SMALL_STATE(3648)] = 129453, + [SMALL_STATE(3649)] = 129457, + [SMALL_STATE(3650)] = 129461, + [SMALL_STATE(3651)] = 129465, + [SMALL_STATE(3652)] = 129469, + [SMALL_STATE(3653)] = 129473, + [SMALL_STATE(3654)] = 129477, + [SMALL_STATE(3655)] = 129481, + [SMALL_STATE(3656)] = 129485, + [SMALL_STATE(3657)] = 129489, + [SMALL_STATE(3658)] = 129493, + [SMALL_STATE(3659)] = 129497, + [SMALL_STATE(3660)] = 129501, + [SMALL_STATE(3661)] = 129505, + [SMALL_STATE(3662)] = 129509, + [SMALL_STATE(3663)] = 129513, + [SMALL_STATE(3664)] = 129517, + [SMALL_STATE(3665)] = 129521, + [SMALL_STATE(3666)] = 129525, + [SMALL_STATE(3667)] = 129529, + [SMALL_STATE(3668)] = 129533, + [SMALL_STATE(3669)] = 129537, + [SMALL_STATE(3670)] = 129541, + [SMALL_STATE(3671)] = 129545, + [SMALL_STATE(3672)] = 129549, + [SMALL_STATE(3673)] = 129553, + [SMALL_STATE(3674)] = 129557, + [SMALL_STATE(3675)] = 129561, + [SMALL_STATE(3676)] = 129565, + [SMALL_STATE(3677)] = 129569, + [SMALL_STATE(3678)] = 129573, + [SMALL_STATE(3679)] = 129577, + [SMALL_STATE(3680)] = 129581, + [SMALL_STATE(3681)] = 129585, + [SMALL_STATE(3682)] = 129589, + [SMALL_STATE(3683)] = 129593, + [SMALL_STATE(3684)] = 129597, + [SMALL_STATE(3685)] = 129601, + [SMALL_STATE(3686)] = 129605, + [SMALL_STATE(3687)] = 129609, + [SMALL_STATE(3688)] = 129613, + [SMALL_STATE(3689)] = 129617, + [SMALL_STATE(3690)] = 129621, + [SMALL_STATE(3691)] = 129625, + [SMALL_STATE(3692)] = 129629, + [SMALL_STATE(3693)] = 129633, + [SMALL_STATE(3694)] = 129637, + [SMALL_STATE(3695)] = 129641, + [SMALL_STATE(3696)] = 129645, + [SMALL_STATE(3697)] = 129649, + [SMALL_STATE(3698)] = 129653, + [SMALL_STATE(3699)] = 129657, + [SMALL_STATE(3700)] = 129661, + [SMALL_STATE(3701)] = 129665, + [SMALL_STATE(3702)] = 129669, + [SMALL_STATE(3703)] = 129673, + [SMALL_STATE(3704)] = 129677, + [SMALL_STATE(3705)] = 129681, + [SMALL_STATE(3706)] = 129685, + [SMALL_STATE(3707)] = 129689, + [SMALL_STATE(3708)] = 129693, + [SMALL_STATE(3709)] = 129697, + [SMALL_STATE(3710)] = 129701, + [SMALL_STATE(3711)] = 129705, + [SMALL_STATE(3712)] = 129709, + [SMALL_STATE(3713)] = 129713, + [SMALL_STATE(3714)] = 129717, + [SMALL_STATE(3715)] = 129721, + [SMALL_STATE(3716)] = 129725, + [SMALL_STATE(3717)] = 129729, + [SMALL_STATE(3718)] = 129733, + [SMALL_STATE(3719)] = 129737, + [SMALL_STATE(3720)] = 129741, + [SMALL_STATE(3721)] = 129745, + [SMALL_STATE(3722)] = 129749, + [SMALL_STATE(3723)] = 129753, + [SMALL_STATE(3724)] = 129757, + [SMALL_STATE(3725)] = 129761, + [SMALL_STATE(3726)] = 129765, + [SMALL_STATE(3727)] = 129769, + [SMALL_STATE(3728)] = 129773, + [SMALL_STATE(3729)] = 129777, + [SMALL_STATE(3730)] = 129781, + [SMALL_STATE(3731)] = 129785, + [SMALL_STATE(3732)] = 129789, + [SMALL_STATE(3733)] = 129793, + [SMALL_STATE(3734)] = 129797, + [SMALL_STATE(3735)] = 129801, + [SMALL_STATE(3736)] = 129805, + [SMALL_STATE(3737)] = 129809, + [SMALL_STATE(3738)] = 129813, + [SMALL_STATE(3739)] = 129817, + [SMALL_STATE(3740)] = 129821, + [SMALL_STATE(3741)] = 129825, + [SMALL_STATE(3742)] = 129829, + [SMALL_STATE(3743)] = 129833, + [SMALL_STATE(3744)] = 129837, + [SMALL_STATE(3745)] = 129841, + [SMALL_STATE(3746)] = 129845, + [SMALL_STATE(3747)] = 129849, + [SMALL_STATE(3748)] = 129853, + [SMALL_STATE(3749)] = 129857, + [SMALL_STATE(3750)] = 129861, + [SMALL_STATE(3751)] = 129865, + [SMALL_STATE(3752)] = 129869, + [SMALL_STATE(3753)] = 129873, + [SMALL_STATE(3754)] = 129877, + [SMALL_STATE(3755)] = 129881, + [SMALL_STATE(3756)] = 129885, + [SMALL_STATE(3757)] = 129889, + [SMALL_STATE(3758)] = 129893, + [SMALL_STATE(3759)] = 129897, + [SMALL_STATE(3760)] = 129901, + [SMALL_STATE(3761)] = 129905, + [SMALL_STATE(3762)] = 129909, + [SMALL_STATE(3763)] = 129913, + [SMALL_STATE(3764)] = 129917, + [SMALL_STATE(3765)] = 129921, + [SMALL_STATE(3766)] = 129925, + [SMALL_STATE(3767)] = 129929, + [SMALL_STATE(3768)] = 129933, + [SMALL_STATE(3769)] = 129937, + [SMALL_STATE(3770)] = 129941, + [SMALL_STATE(3771)] = 129945, + [SMALL_STATE(3772)] = 129949, + [SMALL_STATE(3773)] = 129953, + [SMALL_STATE(3774)] = 129957, + [SMALL_STATE(3775)] = 129961, + [SMALL_STATE(3776)] = 129965, + [SMALL_STATE(3777)] = 129969, + [SMALL_STATE(3778)] = 129973, + [SMALL_STATE(3779)] = 129977, + [SMALL_STATE(3780)] = 129981, + [SMALL_STATE(3781)] = 129985, + [SMALL_STATE(3782)] = 129989, + [SMALL_STATE(3783)] = 129993, + [SMALL_STATE(3784)] = 129997, + [SMALL_STATE(3785)] = 130001, + [SMALL_STATE(3786)] = 130005, + [SMALL_STATE(3787)] = 130009, + [SMALL_STATE(3788)] = 130013, + [SMALL_STATE(3789)] = 130017, + [SMALL_STATE(3790)] = 130021, + [SMALL_STATE(3791)] = 130025, + [SMALL_STATE(3792)] = 130029, + [SMALL_STATE(3793)] = 130033, + [SMALL_STATE(3794)] = 130037, + [SMALL_STATE(3795)] = 130041, + [SMALL_STATE(3796)] = 130045, + [SMALL_STATE(3797)] = 130049, + [SMALL_STATE(3798)] = 130053, + [SMALL_STATE(3799)] = 130057, + [SMALL_STATE(3800)] = 130061, + [SMALL_STATE(3801)] = 130065, + [SMALL_STATE(3802)] = 130069, + [SMALL_STATE(3803)] = 130073, + [SMALL_STATE(3804)] = 130077, + [SMALL_STATE(3805)] = 130081, + [SMALL_STATE(3806)] = 130085, + [SMALL_STATE(3807)] = 130089, + [SMALL_STATE(3808)] = 130093, + [SMALL_STATE(3809)] = 130097, + [SMALL_STATE(3810)] = 130101, + [SMALL_STATE(3811)] = 130105, + [SMALL_STATE(3812)] = 130109, + [SMALL_STATE(3813)] = 130113, + [SMALL_STATE(3814)] = 130117, + [SMALL_STATE(3815)] = 130121, + [SMALL_STATE(3816)] = 130125, + [SMALL_STATE(3817)] = 130129, + [SMALL_STATE(3818)] = 130133, + [SMALL_STATE(3819)] = 130137, + [SMALL_STATE(3820)] = 130141, + [SMALL_STATE(3821)] = 130145, + [SMALL_STATE(3822)] = 130149, + [SMALL_STATE(3823)] = 130153, + [SMALL_STATE(3824)] = 130157, + [SMALL_STATE(3825)] = 130161, + [SMALL_STATE(3826)] = 130165, + [SMALL_STATE(3827)] = 130169, + [SMALL_STATE(3828)] = 130173, + [SMALL_STATE(3829)] = 130177, + [SMALL_STATE(3830)] = 130181, + [SMALL_STATE(3831)] = 130185, + [SMALL_STATE(3832)] = 130189, + [SMALL_STATE(3833)] = 130193, + [SMALL_STATE(3834)] = 130197, + [SMALL_STATE(3835)] = 130201, + [SMALL_STATE(3836)] = 130205, + [SMALL_STATE(3837)] = 130209, + [SMALL_STATE(3838)] = 130213, + [SMALL_STATE(3839)] = 130217, + [SMALL_STATE(3840)] = 130221, + [SMALL_STATE(3841)] = 130225, + [SMALL_STATE(3842)] = 130229, + [SMALL_STATE(3843)] = 130233, + [SMALL_STATE(3844)] = 130237, + [SMALL_STATE(3845)] = 130241, + [SMALL_STATE(3846)] = 130245, + [SMALL_STATE(3847)] = 130249, + [SMALL_STATE(3848)] = 130253, + [SMALL_STATE(3849)] = 130257, + [SMALL_STATE(3850)] = 130261, + [SMALL_STATE(3851)] = 130265, + [SMALL_STATE(3852)] = 130269, + [SMALL_STATE(3853)] = 130273, + [SMALL_STATE(3854)] = 130277, + [SMALL_STATE(3855)] = 130281, + [SMALL_STATE(3856)] = 130285, + [SMALL_STATE(3857)] = 130289, + [SMALL_STATE(3858)] = 130293, + [SMALL_STATE(3859)] = 130297, + [SMALL_STATE(3860)] = 130301, + [SMALL_STATE(3861)] = 130305, + [SMALL_STATE(3862)] = 130309, + [SMALL_STATE(3863)] = 130313, + [SMALL_STATE(3864)] = 130317, + [SMALL_STATE(3865)] = 130321, + [SMALL_STATE(3866)] = 130325, + [SMALL_STATE(3867)] = 130329, + [SMALL_STATE(3868)] = 130333, + [SMALL_STATE(3869)] = 130337, + [SMALL_STATE(3870)] = 130341, + [SMALL_STATE(3871)] = 130345, + [SMALL_STATE(3872)] = 130349, + [SMALL_STATE(3873)] = 130353, + [SMALL_STATE(3874)] = 130357, + [SMALL_STATE(3875)] = 130361, + [SMALL_STATE(3876)] = 130365, + [SMALL_STATE(3877)] = 130369, + [SMALL_STATE(3878)] = 130373, + [SMALL_STATE(3879)] = 130377, + [SMALL_STATE(3880)] = 130381, + [SMALL_STATE(3881)] = 130385, + [SMALL_STATE(3882)] = 130389, + [SMALL_STATE(3883)] = 130393, + [SMALL_STATE(3884)] = 130397, + [SMALL_STATE(3885)] = 130401, + [SMALL_STATE(3886)] = 130405, + [SMALL_STATE(3887)] = 130409, + [SMALL_STATE(3888)] = 130413, + [SMALL_STATE(3889)] = 130417, + [SMALL_STATE(3890)] = 130421, + [SMALL_STATE(3891)] = 130425, + [SMALL_STATE(3892)] = 130429, + [SMALL_STATE(3893)] = 130433, + [SMALL_STATE(3894)] = 130437, + [SMALL_STATE(3895)] = 130441, + [SMALL_STATE(3896)] = 130445, + [SMALL_STATE(3897)] = 130449, + [SMALL_STATE(3898)] = 130453, + [SMALL_STATE(3899)] = 130457, + [SMALL_STATE(3900)] = 130461, + [SMALL_STATE(3901)] = 130465, + [SMALL_STATE(3902)] = 130469, + [SMALL_STATE(3903)] = 130473, + [SMALL_STATE(3904)] = 130477, + [SMALL_STATE(3905)] = 130481, + [SMALL_STATE(3906)] = 130485, + [SMALL_STATE(3907)] = 130489, + [SMALL_STATE(3908)] = 130493, + [SMALL_STATE(3909)] = 130497, + [SMALL_STATE(3910)] = 130501, + [SMALL_STATE(3911)] = 130505, + [SMALL_STATE(3912)] = 130509, + [SMALL_STATE(3913)] = 130513, + [SMALL_STATE(3914)] = 130517, + [SMALL_STATE(3915)] = 130521, + [SMALL_STATE(3916)] = 130525, + [SMALL_STATE(3917)] = 130529, + [SMALL_STATE(3918)] = 130533, + [SMALL_STATE(3919)] = 130537, + [SMALL_STATE(3920)] = 130541, + [SMALL_STATE(3921)] = 130545, + [SMALL_STATE(3922)] = 130549, + [SMALL_STATE(3923)] = 130553, + [SMALL_STATE(3924)] = 130557, + [SMALL_STATE(3925)] = 130561, + [SMALL_STATE(3926)] = 130565, + [SMALL_STATE(3927)] = 130569, + [SMALL_STATE(3928)] = 130573, + [SMALL_STATE(3929)] = 130577, + [SMALL_STATE(3930)] = 130581, + [SMALL_STATE(3931)] = 130585, + [SMALL_STATE(3932)] = 130589, + [SMALL_STATE(3933)] = 130593, + [SMALL_STATE(3934)] = 130597, + [SMALL_STATE(3935)] = 130601, + [SMALL_STATE(3936)] = 130605, + [SMALL_STATE(3937)] = 130609, + [SMALL_STATE(3938)] = 130613, + [SMALL_STATE(3939)] = 130617, + [SMALL_STATE(3940)] = 130621, + [SMALL_STATE(3941)] = 130625, + [SMALL_STATE(3942)] = 130629, + [SMALL_STATE(3943)] = 130633, + [SMALL_STATE(3944)] = 130637, + [SMALL_STATE(3945)] = 130641, + [SMALL_STATE(3946)] = 130645, + [SMALL_STATE(3947)] = 130649, + [SMALL_STATE(3948)] = 130653, + [SMALL_STATE(3949)] = 130657, + [SMALL_STATE(3950)] = 130661, + [SMALL_STATE(3951)] = 130665, + [SMALL_STATE(3952)] = 130669, + [SMALL_STATE(3953)] = 130673, + [SMALL_STATE(3954)] = 130677, + [SMALL_STATE(3955)] = 130681, + [SMALL_STATE(3956)] = 130685, + [SMALL_STATE(3957)] = 130689, + [SMALL_STATE(3958)] = 130693, + [SMALL_STATE(3959)] = 130697, + [SMALL_STATE(3960)] = 130701, + [SMALL_STATE(3961)] = 130705, + [SMALL_STATE(3962)] = 130709, + [SMALL_STATE(3963)] = 130713, + [SMALL_STATE(3964)] = 130717, + [SMALL_STATE(3965)] = 130721, + [SMALL_STATE(3966)] = 130725, + [SMALL_STATE(3967)] = 130729, + [SMALL_STATE(3968)] = 130733, + [SMALL_STATE(3969)] = 130737, + [SMALL_STATE(3970)] = 130741, + [SMALL_STATE(3971)] = 130745, + [SMALL_STATE(3972)] = 130749, + [SMALL_STATE(3973)] = 130753, + [SMALL_STATE(3974)] = 130757, + [SMALL_STATE(3975)] = 130761, + [SMALL_STATE(3976)] = 130765, + [SMALL_STATE(3977)] = 130769, + [SMALL_STATE(3978)] = 130773, + [SMALL_STATE(3979)] = 130777, + [SMALL_STATE(3980)] = 130781, + [SMALL_STATE(3981)] = 130785, + [SMALL_STATE(3982)] = 130789, + [SMALL_STATE(3983)] = 130793, + [SMALL_STATE(3984)] = 130797, + [SMALL_STATE(3985)] = 130801, + [SMALL_STATE(3986)] = 130805, + [SMALL_STATE(3987)] = 130809, + [SMALL_STATE(3988)] = 130813, + [SMALL_STATE(3989)] = 130817, + [SMALL_STATE(3990)] = 130821, + [SMALL_STATE(3991)] = 130825, + [SMALL_STATE(3992)] = 130829, + [SMALL_STATE(3993)] = 130833, + [SMALL_STATE(3994)] = 130837, + [SMALL_STATE(3995)] = 130841, + [SMALL_STATE(3996)] = 130845, + [SMALL_STATE(3997)] = 130849, + [SMALL_STATE(3998)] = 130853, + [SMALL_STATE(3999)] = 130857, + [SMALL_STATE(4000)] = 130861, + [SMALL_STATE(4001)] = 130865, + [SMALL_STATE(4002)] = 130869, + [SMALL_STATE(4003)] = 130873, + [SMALL_STATE(4004)] = 130877, + [SMALL_STATE(4005)] = 130881, + [SMALL_STATE(4006)] = 130885, + [SMALL_STATE(4007)] = 130889, + [SMALL_STATE(4008)] = 130893, + [SMALL_STATE(4009)] = 130897, + [SMALL_STATE(4010)] = 130901, + [SMALL_STATE(4011)] = 130905, + [SMALL_STATE(4012)] = 130909, + [SMALL_STATE(4013)] = 130913, + [SMALL_STATE(4014)] = 130917, + [SMALL_STATE(4015)] = 130921, + [SMALL_STATE(4016)] = 130925, + [SMALL_STATE(4017)] = 130929, + [SMALL_STATE(4018)] = 130933, + [SMALL_STATE(4019)] = 130937, + [SMALL_STATE(4020)] = 130941, + [SMALL_STATE(4021)] = 130945, + [SMALL_STATE(4022)] = 130949, + [SMALL_STATE(4023)] = 130953, + [SMALL_STATE(4024)] = 130957, + [SMALL_STATE(4025)] = 130961, + [SMALL_STATE(4026)] = 130965, + [SMALL_STATE(4027)] = 130969, + [SMALL_STATE(4028)] = 130973, + [SMALL_STATE(4029)] = 130977, + [SMALL_STATE(4030)] = 130981, + [SMALL_STATE(4031)] = 130985, + [SMALL_STATE(4032)] = 130989, + [SMALL_STATE(4033)] = 130993, + [SMALL_STATE(4034)] = 130997, + [SMALL_STATE(4035)] = 131001, + [SMALL_STATE(4036)] = 131005, + [SMALL_STATE(4037)] = 131009, + [SMALL_STATE(4038)] = 131013, + [SMALL_STATE(4039)] = 131017, + [SMALL_STATE(4040)] = 131021, + [SMALL_STATE(4041)] = 131025, + [SMALL_STATE(4042)] = 131029, + [SMALL_STATE(4043)] = 131033, + [SMALL_STATE(4044)] = 131037, + [SMALL_STATE(4045)] = 131041, + [SMALL_STATE(4046)] = 131045, + [SMALL_STATE(4047)] = 131049, + [SMALL_STATE(4048)] = 131053, + [SMALL_STATE(4049)] = 131057, + [SMALL_STATE(4050)] = 131061, + [SMALL_STATE(4051)] = 131065, + [SMALL_STATE(4052)] = 131069, + [SMALL_STATE(4053)] = 131073, + [SMALL_STATE(4054)] = 131077, + [SMALL_STATE(4055)] = 131081, + [SMALL_STATE(4056)] = 131085, + [SMALL_STATE(4057)] = 131089, + [SMALL_STATE(4058)] = 131093, + [SMALL_STATE(4059)] = 131097, + [SMALL_STATE(4060)] = 131101, + [SMALL_STATE(4061)] = 131105, + [SMALL_STATE(4062)] = 131109, + [SMALL_STATE(4063)] = 131113, + [SMALL_STATE(4064)] = 131117, + [SMALL_STATE(4065)] = 131121, + [SMALL_STATE(4066)] = 131125, + [SMALL_STATE(4067)] = 131129, + [SMALL_STATE(4068)] = 131133, + [SMALL_STATE(4069)] = 131137, + [SMALL_STATE(4070)] = 131141, + [SMALL_STATE(4071)] = 131145, + [SMALL_STATE(4072)] = 131149, + [SMALL_STATE(4073)] = 131153, + [SMALL_STATE(4074)] = 131157, + [SMALL_STATE(4075)] = 131161, + [SMALL_STATE(4076)] = 131165, + [SMALL_STATE(4077)] = 131169, + [SMALL_STATE(4078)] = 131173, + [SMALL_STATE(4079)] = 131177, + [SMALL_STATE(4080)] = 131181, + [SMALL_STATE(4081)] = 131185, + [SMALL_STATE(4082)] = 131189, + [SMALL_STATE(4083)] = 131193, + [SMALL_STATE(4084)] = 131197, + [SMALL_STATE(4085)] = 131201, + [SMALL_STATE(4086)] = 131205, + [SMALL_STATE(4087)] = 131209, + [SMALL_STATE(4088)] = 131213, + [SMALL_STATE(4089)] = 131217, + [SMALL_STATE(4090)] = 131221, + [SMALL_STATE(4091)] = 131225, + [SMALL_STATE(4092)] = 131229, + [SMALL_STATE(4093)] = 131233, + [SMALL_STATE(4094)] = 131237, + [SMALL_STATE(4095)] = 131241, + [SMALL_STATE(4096)] = 131245, + [SMALL_STATE(4097)] = 131249, + [SMALL_STATE(4098)] = 131253, + [SMALL_STATE(4099)] = 131257, + [SMALL_STATE(4100)] = 131261, + [SMALL_STATE(4101)] = 131265, + [SMALL_STATE(4102)] = 131269, + [SMALL_STATE(4103)] = 131273, + [SMALL_STATE(4104)] = 131277, + [SMALL_STATE(4105)] = 131281, + [SMALL_STATE(4106)] = 131285, + [SMALL_STATE(4107)] = 131289, + [SMALL_STATE(4108)] = 131293, + [SMALL_STATE(4109)] = 131297, + [SMALL_STATE(4110)] = 131301, + [SMALL_STATE(4111)] = 131305, + [SMALL_STATE(4112)] = 131309, + [SMALL_STATE(4113)] = 131313, + [SMALL_STATE(4114)] = 131317, + [SMALL_STATE(4115)] = 131321, + [SMALL_STATE(4116)] = 131325, + [SMALL_STATE(4117)] = 131329, + [SMALL_STATE(4118)] = 131333, + [SMALL_STATE(4119)] = 131337, + [SMALL_STATE(4120)] = 131341, + [SMALL_STATE(4121)] = 131345, + [SMALL_STATE(4122)] = 131349, + [SMALL_STATE(4123)] = 131353, + [SMALL_STATE(4124)] = 131357, + [SMALL_STATE(4125)] = 131361, + [SMALL_STATE(4126)] = 131365, + [SMALL_STATE(4127)] = 131369, + [SMALL_STATE(4128)] = 131373, + [SMALL_STATE(4129)] = 131377, + [SMALL_STATE(4130)] = 131381, + [SMALL_STATE(4131)] = 131385, + [SMALL_STATE(4132)] = 131389, + [SMALL_STATE(4133)] = 131393, + [SMALL_STATE(4134)] = 131397, + [SMALL_STATE(4135)] = 131401, + [SMALL_STATE(4136)] = 131405, + [SMALL_STATE(4137)] = 131409, + [SMALL_STATE(4138)] = 131413, + [SMALL_STATE(4139)] = 131417, + [SMALL_STATE(4140)] = 131421, + [SMALL_STATE(4141)] = 131425, + [SMALL_STATE(4142)] = 131429, + [SMALL_STATE(4143)] = 131433, + [SMALL_STATE(4144)] = 131437, + [SMALL_STATE(4145)] = 131441, + [SMALL_STATE(4146)] = 131445, + [SMALL_STATE(4147)] = 131449, + [SMALL_STATE(4148)] = 131453, + [SMALL_STATE(4149)] = 131457, + [SMALL_STATE(4150)] = 131461, + [SMALL_STATE(4151)] = 131465, + [SMALL_STATE(4152)] = 131469, + [SMALL_STATE(4153)] = 131473, + [SMALL_STATE(4154)] = 131477, + [SMALL_STATE(4155)] = 131481, + [SMALL_STATE(4156)] = 131485, + [SMALL_STATE(4157)] = 131489, + [SMALL_STATE(4158)] = 131493, + [SMALL_STATE(4159)] = 131497, + [SMALL_STATE(4160)] = 131501, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2678), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3713), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3733), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(368), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2729), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2864), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(303), - [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(308), - [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), - [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 1), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 0), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2678), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3713), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3733), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), - [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(368), - [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2729), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2864), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), - [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), - [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 0), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(308), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(77), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2515), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2628), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, 0, 0), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, 0, 0), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2678), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3713), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3733), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(368), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2729), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2864), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), - [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(87), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), - [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), - [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2515), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2628), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 0), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 0), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2678), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3713), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3733), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(368), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2729), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2864), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), - [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2515), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2628), - [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2678), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3713), - [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3733), - [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), - [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(368), - [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), - [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2729), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2864), - [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), - [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), - [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 1, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), - [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(105), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), - [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), - [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2515), - [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2628), - [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2678), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3713), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3733), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), - [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), - [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(368), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), - [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2729), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2864), - [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), - [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2515), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [1713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2628), - [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [1734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), - [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), - [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 0), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 0), - [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2678), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3713), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3733), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(368), - [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2503), - [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(351), - [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2729), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2864), - [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), - [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), - [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), - [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), - [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2515), - [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2628), - [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(595), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1, 0, 0), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1, 0, 0), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1, 0, 0), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1, 0, 0), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_example, 1, 0, 0), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_example, 1, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), - [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(368), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), - [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 1, 0, 3), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 8), - [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3854), - [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3855), - [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2409), - [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2245), - [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2245), - [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(300), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(301), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(681), - [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3995), - [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3998), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3844), - [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3845), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3292), - [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3293), - [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(866), - [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(443), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(869), - [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(872), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3, 0, 0), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3, 0, 0), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3, 0, 0), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 3, 0, 0), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 3, 0, 0), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4, 0, 0), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4, 0, 0), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4, 0, 0), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 4, 0, 0), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 4, 0, 0), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1, 0, 0), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 27), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 5, 0, 27), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 5, 0, 0), - [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 5, 0, 0), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5, 0, 0), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5, 0, 0), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5, 0, 0), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5, 0, 0), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 5, 0, 0), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 5, 0, 0), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 27), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 6, 0, 27), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 6, 0, 0), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 6, 0, 0), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 7, 0, 27), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 7, 0, 27), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 7, 0, 0), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 7, 0, 0), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 8, 0, 27), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 8, 0, 27), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 8, 0, 0), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 8, 0, 0), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 9, 0, 0), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 9, 0, 0), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2, 0, 0), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_example, 1, 0, 0), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_example, 1, 0, 0), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1, 0, 0), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_list, 1, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_list, 1, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1, 0, 0), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 2, 0, 0), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 2, 0, 0), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 2, 0, 0), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 2, 0, 0), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 2, 0, 0), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 2, 0, 0), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_with_maybe_spaces, 1, 0, 0), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), - [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1, 0, 0), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 0), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 3, 0, 0), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 0), - [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 3, 0, 0), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 0), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 3, 0, 0), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 0), - [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 3, 0, 0), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 0), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 3, 0, 0), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 0), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 3, 0, 0), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), - [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), - [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(401), - [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(169), - [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3880), - [3316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3881), - [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2400), - [3322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(963), - [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(963), - [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(401), - [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), - [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3024), - [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(304), - [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(305), - [3345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(306), - [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(694), - [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3997), - [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4002), - [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3870), - [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3871), - [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), - [3372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3357), - [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [3378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(876), - [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [3387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [3393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(879), - [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(749), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 4, 0, 0), - [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 4, 0, 0), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 4, 0, 0), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 4, 0, 0), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 1, 0, 0), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 2, 0, 0), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(452), - [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), - [3509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), - [3514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3828), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3829), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2407), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(452), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(896), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3007), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(295), - [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(666), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3993), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3994), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3818), - [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3819), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3228), - [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3229), - [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(862), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [3672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [3675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3713), - [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3733), - [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), - [3684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(899), - [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2864), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3905), - [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3257), - [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), - [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), - [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [3741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3450), - [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3451), - [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2395), - [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1954), - [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1954), - [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2124), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2848), - [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(661), - [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(668), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3969), - [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), - [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3439), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), - [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(761), - [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(763), - [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(424), - [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(765), - [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(767), - [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(613), - [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [3933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), - [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3699), - [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2397), - [3942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1887), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1887), - [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(613), - [3951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(898), - [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2952), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(276), - [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(277), - [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(278), - [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(279), - [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(709), - [3972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(717), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), - [3978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3984), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3688), - [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), - [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), - [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3550), - [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(819), - [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(437), - [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(822), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3724), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3725), - [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), - [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), - [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), - [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(894), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2963), - [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(283), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(735), - [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(737), - [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), - [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3986), - [4140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), - [4143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3715), - [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3718), - [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3720), - [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(438), - [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(832), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [4242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(619), - [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(160), - [4251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3750), - [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3751), - [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2406), - [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2139), - [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2139), - [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(619), - [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(901), - [4272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2974), - [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [4281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(682), - [4290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(687), - [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), - [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3988), - [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), - [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3741), - [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3886), - [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3887), - [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(836), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(439), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(837), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [4401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(622), - [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [4410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), - [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), - [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2404), - [4419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), - [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), - [4425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(622), - [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2906), - [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(256), - [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(257), - [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(258), - [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(259), - [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(676), - [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [4452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), - [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3974), - [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3557), - [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), - [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3877), - [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(778), - [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(432), - [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(782), - [4488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(623), - [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(161), - [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3776), - [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3777), - [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2403), - [4512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [4518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(623), - [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(902), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2984), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [4536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(736), - [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3989), - [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3766), - [4554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3767), - [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), - [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(844), - [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(440), - [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(846), - [4581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(847), - [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(628), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [4672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), - [4675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3803), - [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2402), - [4681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), - [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), - [4687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(628), - [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2996), - [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(292), - [4699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [4708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [4711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(653), - [4714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3991), - [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3992), - [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3792), - [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3793), - [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3722), - [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(632), - [4831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(140), - [4837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), - [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2405), - [4846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1943), - [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1943), - [4852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(632), - [4855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(905), - [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(253), - [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(718), - [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3971), - [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3972), - [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3502), - [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3503), - [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3795), - [4894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3796), - [4897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(770), - [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(772), - [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(428), - [4909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(774), - [4912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [4915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [4918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(748), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [4991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(636), - [4994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [5000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3594), - [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3595), - [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2401), - [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), - [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), - [5015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(636), - [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(900), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2917), - [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(728), - [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3975), - [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [5048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3584), - [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), - [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), - [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3504), - [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(786), - [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(788), - [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(791), - [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [5150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [5156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(150), - [5159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3620), - [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3621), - [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2412), - [5168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2151), - [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2151), - [5174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(904), - [5180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2923), - [5183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(264), - [5186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(265), - [5189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(266), - [5192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(267), - [5195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(719), - [5198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [5201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3977), - [5204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3978), - [5207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3610), - [5210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3611), - [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3682), - [5216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), - [5219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(794), - [5222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [5228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [5231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [5234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [5237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [5309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(642), - [5312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [5315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [5318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3646), - [5321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3647), - [5324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2399), - [5327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1668), - [5330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1668), - [5333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(642), - [5336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(895), - [5339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2931), - [5342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [5345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(269), - [5348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(270), - [5351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [5354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(654), - [5357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [5360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3979), - [5363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3980), - [5366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), - [5369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), - [5372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), - [5375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3231), - [5378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [5381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [5384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [5387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [5390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(805), - [5393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(806), - [5396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [5468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(645), - [5471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [5477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3672), - [5480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), - [5483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), - [5486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1784), - [5489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1784), - [5492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(645), - [5495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [5498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), - [5501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [5507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [5510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [5513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(678), - [5516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(679), - [5519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3981), - [5522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), - [5525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3662), - [5528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3663), - [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3412), - [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3420), - [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [5546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(436), - [5549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [5558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(692), - [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [5669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [5672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3854), - [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3855), - [5678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2409), - [5681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2245), - [5684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2245), - [5687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(692), - [5690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), - [5693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), - [5696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [5699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(300), - [5702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(301), - [5705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [5708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(681), - [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3995), - [5717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3998), - [5720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3844), - [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3845), - [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3292), - [5729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3293), - [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(866), - [5735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [5741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(443), - [5744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(869), - [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [5753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(872), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [5944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 3, 0, 0), - [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 3, 0, 0), - [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 2, 0, 5), - [5954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 2, 0, 5), - [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_span, 3, 0, 9), - [5958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_span, 3, 0, 9), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 10), - [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 10), - [5966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 2, 0, 4), - [5968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 2, 0, 4), - [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 2, 0, 6), - [5972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 2, 0, 6), - [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 21), - [5976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 21), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 2, 0, 0), - [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 2, 0, 0), - [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 2, 0, 0), - [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 2, 0, 0), - [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 2, 0, 0), - [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 2, 0, 0), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 11), - [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 11), - [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 9), - [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 9), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 0), - [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 0), - [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 12), - [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 12), - [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 13), - [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 13), - [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 14), - [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 14), - [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 15), - [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 15), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 3, 0, 9), - [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 3, 0, 9), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 3, 0, 0), - [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 3, 0, 0), - [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 3, 0, 9), - [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 3, 0, 9), - [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 21), - [6038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 21), - [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 20), - [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 20), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 21), - [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 21), - [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 22), - [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 22), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 23), - [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 23), - [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 0), - [6058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 0), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_str, 1, 0, 0), - [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_str, 1, 0, 0), - [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_single_quote, 2, 0, 0), - [6068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_single_quote, 2, 0, 0), - [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_double_quote, 2, 0, 0), - [6072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_double_quote, 2, 0, 0), - [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 0), - [6076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 0), - [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 7), - [6080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 7), - [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 4), - [6084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 4), - [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 5), - [6088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 5), - [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 6), - [6092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 6), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_single_quote, 3, 0, 9), - [6096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_single_quote, 3, 0, 9), - [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_double_quote, 3, 0, 9), - [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_double_quote, 3, 0, 9), - [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 16), - [6104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 16), - [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 17), - [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 17), - [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_strikeout, 3, 0, 0), - [6112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_strikeout, 3, 0, 0), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_subscript, 3, 0, 0), - [6116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_subscript, 3, 0, 0), - [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_superscript, 3, 0, 0), - [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_superscript, 3, 0, 0), - [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 0), - [6124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 0), - [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_strong, 3, 0, 0), - [6128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_strong, 3, 0, 0), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_emph, 3, 0, 0), - [6132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_emph, 3, 0, 0), - [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_math, 3, 0, 0), - [6136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_math, 3, 0, 0), - [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_display_math, 3, 0, 0), - [6140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_display_math, 3, 0, 0), - [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_span, 4, 0, 9), - [6144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_span, 4, 0, 9), - [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 10), - [6148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 10), - [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 11), - [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 11), - [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 9), - [6156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 9), - [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 0), - [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 0), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 13), - [6166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 13), - [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 14), - [6170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 14), - [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 15), - [6174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 15), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 3, 0, 24), - [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 3, 0, 24), - [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 9), - [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 9), - [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 0), - [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 0), - [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 9), - [6190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 9), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 0), - [6194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 0), - [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 5, 0, 20), - [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 5, 0, 20), - [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 5, 0, 21), - [6202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 5, 0, 21), - [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 5, 0, 22), - [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 5, 0, 22), - [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 5, 0, 23), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 5, 0, 23), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), - [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), - [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 5, 0, 0), - [6218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 5, 0, 0), - [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 4, 0, 30), - [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 4, 0, 30), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 5, 0, 21), - [6226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 5, 0, 21), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 5, 0, 21), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 5, 0, 21), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), - [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 5, 0, 33), - [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 5, 0, 33), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), - [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 6, 0, 35), - [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 6, 0, 35), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 2, 0, 0), - [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 2, 0, 0), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 2, 0, 0), - [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 2, 0, 0), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 0), - [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 0), - [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 18), - [6262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 18), - [6264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 0), - [6266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 0), - [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 18), - [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 18), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 5, 0, 0), - [6274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 5, 0, 0), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 6, 0, 0), - [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 6, 0, 0), - [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 7, 0, 0), - [6282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 7, 0, 0), - [6284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 1, 0, 3), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 12), - [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 12), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 3), - [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 3), - [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 8), - [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [6304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [6310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 2), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 1), - [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), - [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(216), - [6347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(222), - [6350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(230), - [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(255), - [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(313), - [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(314), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3213), - [6753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2552), - [6756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2647), - [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [6849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 26), - [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 2, 0, 0), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), - [6879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(3069), - [6882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(2640), - [6885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [6892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), - [6894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(2471), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 1, 0, 0), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [6937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), SHIFT_REPEAT(2560), - [6940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), - [6942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), SHIFT_REPEAT(3996), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [6981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), - [6983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2504), - [6986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2504), - [6989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4001), - [6992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(2505), - [6995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), - [6998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [7010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), - [7012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 1, 0, 0), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), - [7020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), - [7023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), SHIFT_REPEAT(2502), - [7026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 3, 0, 0), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), - [7042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2519), - [7045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2519), - [7048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4000), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 2, 0, 0), - [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 2, 0, 0), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [7113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [7143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), - [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), - [7147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), SHIFT_REPEAT(2246), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [7158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inlines, 2, 0, 0), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [7176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(2555), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 1, 0, 0), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 4, 0, 0), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inlines, 1, 0, 0), - [7237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inlines, 1, 0, 0), - [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 3, 0, 0), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), - [7283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(915), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 28), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 1, 0, 0), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), - [7322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 32), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [7340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [7350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inlines, 2, 0, 0), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 4, 0, 31), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_double_quote_string, 4, 0, 0), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_single_quote_string, 4, 0, 0), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [7410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2944), - [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 2, 0, 0), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 3, 0, 25), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_single_quote_string, 3, 0, 0), - [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_double_quote_string, 3, 0, 0), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 5, 0, 34), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), - [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [7529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 19), - [7531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 19), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 3, 0, 0), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 4, 0, 0), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 1, 0, 0), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [7993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(2414), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [7998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(3116), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [8003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), SHIFT_REPEAT(3131), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 0), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 3, 0, 25), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unnumbered_specifier, 1, 0, 0), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [8644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 5, 0, 34), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [8852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 4, 0, 31), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [9020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 5, 0, 0), - [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 29), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [9040] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [9048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 0), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), - [9084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [9104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 3, 0, 0), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [9134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_string, 1, 0, 0), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [9138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [9374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 1, 0, 0), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [9402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2481), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), + [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2918), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), + [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 1), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3188), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 0), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2481), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2918), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 0), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3188), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(353), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2954), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2481), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), + [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2918), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), + [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), + [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, 0, 0), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, 0, 0), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3188), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(87), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(353), + [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2954), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 0), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2481), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2918), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 0), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(96), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2954), + [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(514), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3188), + [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(97), + [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 1, 0, 0), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2481), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2918), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), + [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), + [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), + [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), + [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2954), + [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(515), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3188), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(109), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 0), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2481), + [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), + [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2918), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), + [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, 0, 0), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2954), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3188), + [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 0), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2481), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), + [1837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2685), + [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), + [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2918), + [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 0), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3188), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(521), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3144), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2657), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2954), + [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1, 0, 0), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), + [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1, 0, 0), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1, 0, 0), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1, 0, 0), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_example, 1, 0, 0), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_example, 1, 0, 0), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1, 0, 0), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 3, 0, 0), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 3, 0, 0), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4, 0, 0), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 4, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 4, 0, 0), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3, 0, 0), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3, 0, 0), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1, 0, 0), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1, 0, 0), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1, 0, 0), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_example, 1, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_example, 1, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 1, 0, 3), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 8), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(740), + [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4013), + [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4014), + [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2475), + [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2330), + [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2330), + [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(583), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), + [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(517), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2998), + [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4003), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4004), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), + [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(751), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, 0, 0), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_list, 1, 0, 0), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_list, 1, 0, 0), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 2, 0, 0), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 2, 0, 0), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 2, 0, 0), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 2, 0, 0), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 2, 0, 0), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 2, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 0), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 3, 0, 0), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 0), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 3, 0, 0), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 0), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 3, 0, 0), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 0), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 3, 0, 0), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 0), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 3, 0, 0), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 0), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 3, 0, 0), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_ref_def, 3, 0, 0), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_paragraph, 3, 0, 0), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_paragraph, 3, 0, 0), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 4, 0, 0), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 4, 0, 0), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 4, 0, 0), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 4, 0, 0), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 27), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 5, 0, 27), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 5, 0, 0), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 5, 0, 0), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5, 0, 0), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5, 0, 0), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5, 0, 0), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5, 0, 0), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 5, 0, 0), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 5, 0, 0), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 27), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 6, 0, 27), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 6, 0, 0), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 6, 0, 0), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 7, 0, 27), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 7, 0, 27), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 7, 0, 0), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 7, 0, 0), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 8, 0, 27), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 8, 0, 27), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 8, 0, 0), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 8, 0, 0), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 9, 0, 0), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 9, 0, 0), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2, 0, 0), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [3401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4038), + [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4039), + [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2480), + [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(941), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), + [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3200), + [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(522), + [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(525), + [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [3439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2937), + [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4029), + [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), + [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), + [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(880), + [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [3478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_with_maybe_spaces, 1, 0, 0), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 1, 0, 0), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 2, 0, 0), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(598), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), + [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), + [3639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3988), + [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3989), + [3645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2476), + [3648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [3654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3180), + [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [3663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [3672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(670), + [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2996), + [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), + [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3978), + [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3979), + [3690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4001), + [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4022), + [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(575), + [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(868), + [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(869), + [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(615), + [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [3759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2481), + [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [3774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(909), + [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2918), + [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3687), + [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(761), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(618), + [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3938), + [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3939), + [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2470), + [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), + [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3158), + [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(701), + [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(706), + [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2992), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2872), + [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3928), + [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3929), + [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4151), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4152), + [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(573), + [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(622), + [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [4065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3763), + [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3764), + [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2483), + [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2139), + [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2139), + [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(905), + [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3095), + [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(459), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(745), + [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(748), + [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2978), + [4107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2979), + [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3753), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3754), + [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), + [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(794), + [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [4140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [4143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(623), + [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3621), + [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3622), + [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2467), + [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), + [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), + [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1776), + [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3028), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(421), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(422), + [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(731), + [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(732), + [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2972), + [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2973), + [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3610), + [4203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3611), + [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3917), + [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3923), + [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(770), + [4218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(772), + [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [4230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(774), + [4233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(626), + [4301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [4307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3788), + [4310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3789), + [4313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2474), + [4316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2207), + [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2207), + [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(900), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), + [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [4331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [4334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(741), + [4346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2980), + [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), + [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3778), + [4355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3779), + [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3577), + [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3579), + [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(801), + [4367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(802), + [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [4376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [4379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [4385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(807), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [4463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3813), + [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3814), + [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2469), + [4472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), + [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), + [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [4481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3116), + [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [4487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [4490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [4496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(738), + [4499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2982), + [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2983), + [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3803), + [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3804), + [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4126), + [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4127), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [4535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(815), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [4615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3838), + [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3839), + [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), + [4624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1536), + [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1536), + [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(904), + [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3124), + [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [4645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [4648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(664), + [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(665), + [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2984), + [4657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2985), + [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3828), + [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3829), + [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3430), + [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), + [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [4675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(820), + [4687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [4828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [4831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3863), + [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3864), + [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2471), + [4840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1617), + [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1617), + [4846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(901), + [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3132), + [4852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(480), + [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [4861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(483), + [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(717), + [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2986), + [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2987), + [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3853), + [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3854), + [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), + [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3646), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(826), + [4894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [4897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [4909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(642), + [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(214), + [4982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [4985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), + [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3739), + [4991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2477), + [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), + [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), + [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3082), + [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(452), + [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(454), + [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(718), + [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(719), + [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2976), + [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2977), + [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), + [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), + [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), + [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4017), + [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(786), + [5048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(787), + [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(790), + [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3683), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2473), + [5084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), + [5087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), + [5090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(912), + [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3057), + [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [5105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2974), + [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2975), + [5120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3672), + [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), + [5126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3742), + [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3743), + [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(777), + [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(778), + [5138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(779), + [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(780), + [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(781), + [5150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(783), + [5156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(644), + [5159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [5165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3963), + [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), + [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2479), + [5174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1909), + [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1909), + [5180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(908), + [5183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3170), + [5186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [5189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [5192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [5195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [5198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [5201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [5204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2994), + [5207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2995), + [5210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3953), + [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3954), + [5216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), + [5219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3694), + [5222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [5228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(859), + [5231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [5234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(860), + [5237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [5243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [5246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [5249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [5252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [5255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3888), + [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), + [5261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2484), + [5264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [5267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [5270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [5273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3138), + [5276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [5279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [5282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [5285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [5288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(742), + [5291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [5294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2988), + [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2989), + [5300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3878), + [5303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3879), + [5306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3777), + [5309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3782), + [5312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [5315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [5318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [5321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [5324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [5327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [5330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [5333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(649), + [5403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [5406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [5409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), + [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3914), + [5415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2478), + [5418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1764), + [5421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1764), + [5424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [5427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3148), + [5430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [5436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [5439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [5442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [5445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(659), + [5448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2990), + [5451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2991), + [5454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), + [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3904), + [5460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3974), + [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3975), + [5466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [5469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [5478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(707), + [5611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [5614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [5617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4013), + [5620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4014), + [5623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2475), + [5626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2330), + [5629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2330), + [5632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2363), + [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), + [5638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [5641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(517), + [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(518), + [5647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [5650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [5653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [5656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2998), + [5659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), + [5662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4003), + [5665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4004), + [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), + [5671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [5674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(751), + [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(874), + [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [5689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [5695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 13), + [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 13), + [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 10), + [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 10), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 15), + [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 15), + [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 3, 0, 9), + [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 3, 0, 9), + [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 11), + [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 11), + [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 9), + [5858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 9), + [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 2, 0, 0), + [5862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 2, 0, 0), + [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 2, 0, 6), + [5866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 2, 0, 6), + [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 3, 0, 0), + [5870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 3, 0, 0), + [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 0), + [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 0), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 12), + [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 12), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 2, 0, 4), + [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 2, 0, 4), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 14), + [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 14), + [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 3, 0, 9), + [5890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 3, 0, 9), + [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 3, 0, 0), + [5894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 3, 0, 0), + [5896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 20), + [5898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 20), + [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 21), + [5902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 21), + [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 22), + [5906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 22), + [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 23), + [5910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 23), + [5912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 21), + [5914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 21), + [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 21), + [5918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 21), + [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 2, 0, 0), + [5922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 2, 0, 0), + [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_span, 3, 0, 9), + [5926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_span, 3, 0, 9), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 2, 0, 0), + [5932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 2, 0, 0), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 2, 0, 5), + [5936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 2, 0, 5), + [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 1, 0, 3), + [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_str, 1, 0, 0), + [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_str, 1, 0, 0), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_single_quote, 2, 0, 0), + [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_single_quote, 2, 0, 0), + [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_double_quote, 2, 0, 0), + [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_double_quote, 2, 0, 0), + [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 0), + [5954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 0), + [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 7), + [5958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 7), + [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 4), + [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 4), + [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 5), + [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 5), + [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 6), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 6), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_single_quote, 3, 0, 9), + [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_single_quote, 3, 0, 9), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_double_quote, 3, 0, 9), + [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_double_quote, 3, 0, 9), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 16), + [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 16), + [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 17), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 17), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_strikeout, 3, 0, 0), + [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_strikeout, 3, 0, 0), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_subscript, 3, 0, 0), + [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_subscript, 3, 0, 0), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_superscript, 3, 0, 0), + [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_superscript, 3, 0, 0), + [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 0), + [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 0), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_strong, 3, 0, 0), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_strong, 3, 0, 0), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_emph, 3, 0, 0), + [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_emph, 3, 0, 0), + [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 2, 0, 0), + [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 2, 0, 0), + [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_math, 3, 0, 0), + [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_math, 3, 0, 0), + [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_display_math, 3, 0, 0), + [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_display_math, 3, 0, 0), + [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_span, 4, 0, 9), + [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_span, 4, 0, 9), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 10), + [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 10), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 11), + [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 11), + [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 9), + [6038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 9), + [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 0), + [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 0), + [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 12), + [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 12), + [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 13), + [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 13), + [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 14), + [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 14), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 15), + [6058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 15), + [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 0), + [6062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 0), + [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 3, 0, 0), + [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 3, 0, 0), + [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 3, 0, 24), + [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 3, 0, 24), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 9), + [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 9), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 0), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 0), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 9), + [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 9), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 0), + [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 0), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 5, 0, 20), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 5, 0, 20), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 5, 0, 21), + [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 5, 0, 21), + [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 5, 0, 22), + [6098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 5, 0, 22), + [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 5, 0, 23), + [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 5, 0, 23), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), + [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), + [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 5, 0, 0), + [6110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 5, 0, 0), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 4, 0, 30), + [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 4, 0, 30), + [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 4, 0, 31), + [6118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 4, 0, 31), + [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 5, 0, 21), + [6122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 5, 0, 21), + [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 5, 0, 21), + [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 5, 0, 21), + [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), + [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), + [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 5, 0, 34), + [6134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 5, 0, 34), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 5, 0, 35), + [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 5, 0, 35), + [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), + [6142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), + [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 6, 0, 37), + [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 6, 0, 37), + [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 2, 0, 0), + [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 2, 0, 0), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 0), + [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 0), + [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 18), + [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 18), + [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 0), + [6162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 0), + [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 18), + [6166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 18), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 5, 0, 0), + [6170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 5, 0, 0), + [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 6, 0, 0), + [6174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 6, 0, 0), + [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 7, 0, 0), + [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 7, 0, 0), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 2, 0, 0), + [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 2, 0, 0), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [6190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 8), + [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [6202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 3), + [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 3), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), + [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(369), + [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(497), + [6242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(353), + [6245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(445), + [6248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(530), + [6251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(532), + [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 2), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 1), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_sep, 1, 0, 0), + [6552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shortcode_sep, 1, 0, 0), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_sep, 2, 0, 0), + [6662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shortcode_sep, 2, 0, 0), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [6864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), + [6867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2834), + [6870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2932), + [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 1, 0, 0), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 2, 0, 0), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 26), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [6915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), + [6917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(3331), + [6920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(2771), + [6923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [6934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), + [6936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [6975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), SHIFT_REPEAT(2793), + [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), + [6980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), SHIFT_REPEAT(2999), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [6993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [7045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 1, 0, 0), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [7051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(2635), + [7054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(2751), + [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [7071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 2, 0, 0), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), + [7077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), + [7080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), + [7083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3003), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [7092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), + [7094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2658), + [7097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2658), + [7100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3004), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 2, 0, 0), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 3, 0, 0), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), + [7131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), SHIFT_REPEAT(3756), + [7134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), SHIFT_REPEAT(2582), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 33), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [7167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inlines, 2, 0, 0), + [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inlines, 2, 0, 0), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [7175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 28), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 3, 0, 0), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [7195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), + [7199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), SHIFT_REPEAT(2304), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), + [7234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [7255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(2747), + [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 1, 0, 0), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [7296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(2514), + [7299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(2513), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [7316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(3172), + [7319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(2771), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [7366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), SHIFT_REPEAT(3172), + [7369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), SHIFT_REPEAT(2771), + [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [7384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 1, 0, 0), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 4, 0, 0), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inlines, 1, 0, 0), + [7408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inlines, 1, 0, 0), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [7434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(3147), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 2, 0, 0), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_double_quote_string, 4, 0, 0), + [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_double_quote_string, 3, 0, 0), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_single_quote_string, 3, 0, 0), + [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 3, 0, 25), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 5, 0, 36), + [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 4, 0, 32), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_single_quote_string, 4, 0, 0), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 4, 0, 0), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [7701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 3, 0, 0), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 19), + [7747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 19), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 1, 0, 0), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [7905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 0), + [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), + [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), + [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_string, 1, 0, 0), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 3, 0, 25), + [7931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 29), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 4, 0, 32), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 0), + [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 5, 0, 36), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unnumbered_specifier, 1, 0, 0), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), + [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 1, 0, 0), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [8675] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [8911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [9061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 5, 0, 0), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [9313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 3, 0, 0), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), }; enum ts_external_scanner_symbol_identifiers { @@ -179515,6 +185742,7 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token_html_element = 80, ts_external_token__pipe_table_delimiter = 81, ts_external_token__pandoc_line_break = 82, + ts_external_token__triple_star_error = 83, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -179601,9 +185829,10 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_html_element] = sym_html_element, [ts_external_token__pipe_table_delimiter] = sym__pipe_table_delimiter, [ts_external_token__pandoc_line_break] = sym__pandoc_line_break, + [ts_external_token__triple_star_error] = sym__triple_star_error, }; -static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[100][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, @@ -179688,6 +185917,7 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_html_element] = true, [ts_external_token__pipe_table_delimiter] = true, [ts_external_token__pandoc_line_break] = true, + [ts_external_token__triple_star_error] = true, }, [2] = { [ts_external_token__line_ending] = true, @@ -179861,6 +186091,7 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, [ts_external_token__block_quote_start] = true, [ts_external_token_atx_h1_marker] = true, [ts_external_token_atx_h2_marker] = true, @@ -179885,7 +186116,6 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_minus_metadata] = true, [ts_external_token__pipe_table_start] = true, [ts_external_token__fenced_div_start] = true, - [ts_external_token__fenced_div_end] = true, [ts_external_token_ref_id_specifier] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, @@ -179918,7 +186148,6 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, [ts_external_token__block_close] = true, - [ts_external_token_block_continuation] = true, [ts_external_token__block_quote_start] = true, [ts_external_token_atx_h1_marker] = true, [ts_external_token_atx_h2_marker] = true, @@ -179943,6 +186172,7 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_minus_metadata] = true, [ts_external_token__pipe_table_start] = true, [ts_external_token__fenced_div_start] = true, + [ts_external_token__fenced_div_end] = true, [ts_external_token_ref_id_specifier] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, @@ -180090,8 +186320,35 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { }, [10] = { [ts_external_token__line_ending] = true, - [ts_external_token__eof] = true, - [ts_external_token__pipe_table_line_ending] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token_minus_metadata] = true, + [ts_external_token__pipe_table_start] = true, + [ts_external_token__fenced_div_start] = true, + [ts_external_token__fenced_div_end] = true, + [ts_external_token_ref_id_specifier] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -180120,37 +186377,9 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__pandoc_line_break] = true, }, [11] = { - [ts_external_token__code_span_start] = true, - [ts_external_token__html_comment] = true, - [ts_external_token__autolink] = true, - [ts_external_token__highlight_span_start] = true, - [ts_external_token__insert_span_start] = true, - [ts_external_token__delete_span_start] = true, - [ts_external_token__edit_comment_span_start] = true, - [ts_external_token__single_quote_span_open] = true, - [ts_external_token__double_quote_span_open] = true, - [ts_external_token__shortcode_open_escaped] = true, - [ts_external_token__shortcode_open] = 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, - [ts_external_token__cite_suppress_author] = true, - [ts_external_token__strikeout_open] = true, - [ts_external_token__subscript_open] = true, - [ts_external_token__superscript_open] = true, - [ts_external_token__inline_note_start_token] = true, - [ts_external_token__strong_emphasis_open_star] = true, - [ts_external_token__strong_emphasis_open_underscore] = true, - [ts_external_token__emphasis_open_star] = true, - [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token_inline_note_reference] = true, - [ts_external_token_html_element] = true, - [ts_external_token__pipe_table_delimiter] = true, - [ts_external_token__pandoc_line_break] = true, - }, - [12] = { [ts_external_token__line_ending] = true, [ts_external_token__eof] = true, + [ts_external_token__pipe_table_line_ending] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -180178,65 +186407,7 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, }, - [13] = { - [ts_external_token__line_ending] = true, - [ts_external_token__soft_line_ending] = true, - [ts_external_token__block_close] = true, - [ts_external_token_block_continuation] = true, - [ts_external_token__block_quote_start] = true, - [ts_external_token_atx_h1_marker] = true, - [ts_external_token_atx_h2_marker] = true, - [ts_external_token_atx_h3_marker] = true, - [ts_external_token_atx_h4_marker] = true, - [ts_external_token_atx_h5_marker] = true, - [ts_external_token_atx_h6_marker] = true, - [ts_external_token__thematic_break] = true, - [ts_external_token__list_marker_minus] = true, - [ts_external_token__list_marker_plus] = true, - [ts_external_token__list_marker_star] = true, - [ts_external_token__list_marker_parenthesis] = true, - [ts_external_token__list_marker_dot] = true, - [ts_external_token__list_marker_minus_dont_interrupt] = true, - [ts_external_token__list_marker_plus_dont_interrupt] = true, - [ts_external_token__list_marker_star_dont_interrupt] = true, - [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, - [ts_external_token__list_marker_dot_dont_interrupt] = true, - [ts_external_token__list_marker_example] = true, - [ts_external_token__list_marker_example_dont_interrupt] = true, - [ts_external_token__fenced_code_block_start_backtick] = true, - [ts_external_token_minus_metadata] = true, - [ts_external_token__pipe_table_start] = true, - [ts_external_token__fenced_div_start] = true, - [ts_external_token__fenced_div_end] = true, - [ts_external_token_ref_id_specifier] = true, - [ts_external_token__code_span_start] = true, - [ts_external_token__html_comment] = true, - [ts_external_token__autolink] = true, - [ts_external_token__highlight_span_start] = true, - [ts_external_token__insert_span_start] = true, - [ts_external_token__delete_span_start] = true, - [ts_external_token__edit_comment_span_start] = true, - [ts_external_token__single_quote_span_open] = true, - [ts_external_token__double_quote_span_open] = true, - [ts_external_token__shortcode_open_escaped] = true, - [ts_external_token__shortcode_open] = 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, - [ts_external_token__cite_suppress_author] = true, - [ts_external_token__strikeout_open] = true, - [ts_external_token__subscript_open] = true, - [ts_external_token__superscript_open] = true, - [ts_external_token__inline_note_start_token] = true, - [ts_external_token__strong_emphasis_open_star] = true, - [ts_external_token__strong_emphasis_open_underscore] = true, - [ts_external_token__emphasis_open_star] = true, - [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token_inline_note_reference] = true, - [ts_external_token_html_element] = true, - [ts_external_token__pandoc_line_break] = true, - }, - [14] = { + [12] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, @@ -180292,8 +186463,7 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, }, - [15] = { - [ts_external_token__line_ending] = true, + [13] = { [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -180322,8 +186492,9 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__pipe_table_delimiter] = true, [ts_external_token__pandoc_line_break] = true, }, - [16] = { + [14] = { [ts_external_token__line_ending] = true, + [ts_external_token__eof] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -180351,7 +186522,8 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, }, - [17] = { + [15] = { + [ts_external_token__line_ending] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -180377,12 +186549,11 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = true, [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, + [ts_external_token__pipe_table_delimiter] = true, [ts_external_token__pandoc_line_break] = true, }, - [18] = { + [16] = { [ts_external_token__line_ending] = true, - [ts_external_token__soft_line_ending] = true, - [ts_external_token__eof] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -180410,8 +186581,7 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, }, - [19] = { - [ts_external_token__soft_line_ending] = true, + [17] = { [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -180432,7 +186602,6 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__superscript_open] = true, [ts_external_token__inline_note_start_token] = true, [ts_external_token__strong_emphasis_open_star] = true, - [ts_external_token__strong_emphasis_close_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, @@ -180440,8 +186609,10 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, }, - [20] = { + [18] = { + [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, + [ts_external_token__eof] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -180463,14 +186634,13 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__inline_note_start_token] = true, [ts_external_token__strong_emphasis_open_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, - [ts_external_token__strong_emphasis_close_underscore] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, }, - [21] = { + [19] = { [ts_external_token__soft_line_ending] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, @@ -180500,7 +186670,7 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, }, - [22] = { + [20] = { [ts_external_token__soft_line_ending] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, @@ -180530,6 +186700,66 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, }, + [21] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__code_span_start] = true, + [ts_external_token__html_comment] = true, + [ts_external_token__autolink] = true, + [ts_external_token__highlight_span_start] = true, + [ts_external_token__insert_span_start] = true, + [ts_external_token__delete_span_start] = true, + [ts_external_token__edit_comment_span_start] = true, + [ts_external_token__single_quote_span_open] = true, + [ts_external_token__double_quote_span_open] = true, + [ts_external_token__double_quote_span_close] = true, + [ts_external_token__shortcode_open_escaped] = true, + [ts_external_token__shortcode_open] = 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, + [ts_external_token__cite_suppress_author] = true, + [ts_external_token__strikeout_open] = true, + [ts_external_token__subscript_open] = true, + [ts_external_token__superscript_open] = true, + [ts_external_token__inline_note_start_token] = true, + [ts_external_token__strong_emphasis_open_star] = true, + [ts_external_token__strong_emphasis_open_underscore] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token_inline_note_reference] = true, + [ts_external_token_html_element] = true, + [ts_external_token__pandoc_line_break] = true, + }, + [22] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__code_span_start] = true, + [ts_external_token__html_comment] = true, + [ts_external_token__autolink] = true, + [ts_external_token__highlight_span_start] = true, + [ts_external_token__insert_span_start] = true, + [ts_external_token__delete_span_start] = true, + [ts_external_token__edit_comment_span_start] = true, + [ts_external_token__single_quote_span_open] = true, + [ts_external_token__double_quote_span_open] = true, + [ts_external_token__shortcode_open_escaped] = true, + [ts_external_token__shortcode_open] = 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, + [ts_external_token__cite_suppress_author] = true, + [ts_external_token__strikeout_open] = true, + [ts_external_token__strikeout_close] = true, + [ts_external_token__subscript_open] = true, + [ts_external_token__superscript_open] = true, + [ts_external_token__inline_note_start_token] = true, + [ts_external_token__strong_emphasis_open_star] = true, + [ts_external_token__strong_emphasis_open_underscore] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token_inline_note_reference] = true, + [ts_external_token_html_element] = true, + [ts_external_token__pandoc_line_break] = true, + }, [23] = { [ts_external_token__soft_line_ending] = true, [ts_external_token__code_span_start] = true, @@ -180549,13 +186779,13 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__cite_suppress_author] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__subscript_open] = true, + [ts_external_token__subscript_close] = true, [ts_external_token__superscript_open] = true, [ts_external_token__inline_note_start_token] = true, [ts_external_token__strong_emphasis_open_star] = true, [ts_external_token__strong_emphasis_open_underscore] = 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_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, @@ -180571,7 +186801,6 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__edit_comment_span_start] = true, [ts_external_token__single_quote_span_open] = true, [ts_external_token__double_quote_span_open] = true, - [ts_external_token__double_quote_span_close] = true, [ts_external_token__shortcode_open_escaped] = true, [ts_external_token__shortcode_open] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, @@ -180581,6 +186810,7 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__strikeout_open] = true, [ts_external_token__subscript_open] = true, [ts_external_token__superscript_open] = true, + [ts_external_token__superscript_close] = true, [ts_external_token__inline_note_start_token] = true, [ts_external_token__strong_emphasis_open_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, @@ -180608,7 +186838,6 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__cite_author_in_text] = true, [ts_external_token__cite_suppress_author] = true, [ts_external_token__strikeout_open] = true, - [ts_external_token__strikeout_close] = true, [ts_external_token__subscript_open] = true, [ts_external_token__superscript_open] = true, [ts_external_token__inline_note_start_token] = true, @@ -180616,6 +186845,7 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__strong_emphasis_open_underscore] = 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_inline_note_reference] = true, [ts_external_token_html_element] = true, [ts_external_token__pandoc_line_break] = true, @@ -180639,10 +186869,10 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__cite_suppress_author] = true, [ts_external_token__strikeout_open] = true, [ts_external_token__subscript_open] = true, - [ts_external_token__subscript_close] = true, [ts_external_token__superscript_open] = true, [ts_external_token__inline_note_start_token] = true, [ts_external_token__strong_emphasis_open_star] = true, + [ts_external_token__strong_emphasis_close_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, @@ -180670,10 +186900,10 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__strikeout_open] = true, [ts_external_token__subscript_open] = true, [ts_external_token__superscript_open] = true, - [ts_external_token__superscript_close] = true, [ts_external_token__inline_note_start_token] = true, [ts_external_token__strong_emphasis_open_star] = true, [ts_external_token__strong_emphasis_open_underscore] = true, + [ts_external_token__strong_emphasis_close_underscore] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, [ts_external_token_inline_note_reference] = true, @@ -180689,8 +186919,8 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__delete_span_start] = true, [ts_external_token__edit_comment_span_start] = true, [ts_external_token__single_quote_span_open] = true, - [ts_external_token__single_quote_span_close] = true, [ts_external_token__double_quote_span_open] = true, + [ts_external_token__double_quote_span_close] = true, [ts_external_token__shortcode_open_escaped] = true, [ts_external_token__shortcode_open] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, @@ -180718,8 +186948,8 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__delete_span_start] = true, [ts_external_token__edit_comment_span_start] = true, [ts_external_token__single_quote_span_open] = true, + [ts_external_token__single_quote_span_close] = true, [ts_external_token__double_quote_span_open] = true, - [ts_external_token__double_quote_span_close] = true, [ts_external_token__shortcode_open_escaped] = true, [ts_external_token__shortcode_open] = true, [ts_external_token__cite_author_in_text_with_open_bracket] = true, @@ -180840,203 +187070,252 @@ static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__shortcode_open] = true, }, [39] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token__value_specifier_token] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__language_specifier_token] = true, + [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_close_escaped] = true, + [ts_external_token__shortcode_open] = true, }, [40] = { - [ts_external_token__soft_line_ending] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__language_specifier_token] = true, + [ts_external_token__key_specifier_token] = true, [ts_external_token__shortcode_open] = true, + [ts_external_token__shortcode_close] = true, }, [41] = { - [ts_external_token__line_ending] = true, - [ts_external_token__eof] = true, - [ts_external_token__pipe_table_line_ending] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__language_specifier_token] = true, + [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_open] = true, + [ts_external_token__shortcode_close] = true, }, [42] = { - [ts_external_token_block_continuation] = true, + [ts_external_token__soft_line_ending] = true, [ts_external_token__language_specifier_token] = true, + [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_close_escaped] = true, [ts_external_token__shortcode_open] = true, }, [43] = { - [ts_external_token__line_ending] = true, - [ts_external_token__eof] = true, - [ts_external_token__pipe_table_line_ending] = true, - [ts_external_token__pipe_table_delimiter] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__shortcode_open] = true, }, [44] = { - [ts_external_token__pipe_table_delimiter] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__value_specifier_token] = true, }, [45] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__language_specifier_token] = true, + [ts_external_token__shortcode_open] = true, }, [46] = { - [ts_external_token__value_specifier_token] = true, + [ts_external_token__line_ending] = true, + [ts_external_token__eof] = true, + [ts_external_token__pipe_table_line_ending] = true, }, [47] = { - [ts_external_token_block_continuation] = true, + [ts_external_token__pipe_table_delimiter] = true, }, [48] = { [ts_external_token__line_ending] = true, + [ts_external_token__eof] = true, + [ts_external_token__pipe_table_line_ending] = true, + [ts_external_token__pipe_table_delimiter] = true, }, [49] = { - [ts_external_token__shortcode_open] = true, + [ts_external_token_block_continuation] = true, }, [50] = { - [ts_external_token_block_continuation] = true, - [ts_external_token__value_specifier_token] = true, + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, }, [51] = { - [ts_external_token__soft_line_ending] = true, + [ts_external_token__value_specifier_token] = true, }, [52] = { - [ts_external_token__key_specifier_token] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__shortcode_open] = true, }, [53] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, - [ts_external_token__key_specifier_token] = true, }, [54] = { - [ts_external_token__line_ending] = true, - [ts_external_token__soft_line_ending] = true, - [ts_external_token__eof] = true, + [ts_external_token__shortcode_open] = true, }, [55] = { - [ts_external_token_block_continuation] = true, - [ts_external_token__pipe_table_delimiter] = true, + [ts_external_token__line_ending] = true, }, [56] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__value_specifier_token] = true, }, [57] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token__strong_emphasis_close_star] = true, + [ts_external_token__key_specifier_token] = true, }, [58] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__double_quote_span_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__key_specifier_token] = true, }, [59] = { - [ts_external_token__code_span_close] = true, + [ts_external_token__line_ending] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__eof] = true, }, [60] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token__subscript_close] = true, + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, }, [61] = { - [ts_external_token_fenced_div_note_id] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__key_specifier_token] = true, }, [62] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token__emphasis_close_underscore] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__pipe_table_delimiter] = true, }, [63] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token__strong_emphasis_close_underscore] = true, + [ts_external_token__code_span_close] = true, }, [64] = { - [ts_external_token_block_continuation] = true, - [ts_external_token__key_specifier_token] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__emphasis_close_underscore] = true, }, [65] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__emphasis_close_star] = true, + [ts_external_token__superscript_close] = true, }, [66] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__superscript_close] = true, + [ts_external_token__subscript_close] = true, }, [67] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__strikeout_close] = true, + [ts_external_token__single_quote_span_close] = true, }, [68] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__single_quote_span_close] = true, + [ts_external_token__strong_emphasis_close_star] = true, }, [69] = { - [ts_external_token__line_ending] = true, - [ts_external_token__eof] = true, - }, - [70] = { + [ts_external_token__soft_line_ending] = true, [ts_external_token__key_specifier_token] = true, [ts_external_token__shortcode_close_escaped] = true, }, - [71] = { + [70] = { + [ts_external_token_block_continuation] = true, [ts_external_token__key_specifier_token] = true, [ts_external_token__shortcode_close] = true, }, + [71] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__strikeout_close] = true, + }, [72] = { - [ts_external_token__line_ending] = true, - [ts_external_token__pipe_table_delimiter] = true, + [ts_external_token_fenced_div_note_id] = true, }, [73] = { - [ts_external_token__language_specifier_token] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__emphasis_close_star] = true, }, [74] = { - [ts_external_token_block_continuation] = true, - [ts_external_token__shortcode_open] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__strong_emphasis_close_underscore] = true, }, [75] = { - [ts_external_token__line_ending] = true, [ts_external_token_block_continuation] = true, - [ts_external_token__eof] = true, + [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_close_escaped] = true, }, [76] = { - [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__double_quote_span_close] = true, }, [77] = { - [ts_external_token_block_continuation] = true, - [ts_external_token__blank_line_start] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_close] = true, }, [78] = { - [ts_external_token__blank_line_start] = true, + [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_close] = true, }, [79] = { - [ts_external_token__block_close] = true, - [ts_external_token_block_continuation] = true, + [ts_external_token__line_ending] = true, + [ts_external_token__eof] = true, }, [80] = { - [ts_external_token_block_continuation] = true, - [ts_external_token__close_block] = true, + [ts_external_token__key_specifier_token] = true, + [ts_external_token__shortcode_close_escaped] = true, }, [81] = { - [ts_external_token__double_quote_span_close] = true, + [ts_external_token__line_ending] = true, + [ts_external_token__pipe_table_delimiter] = true, }, [82] = { - [ts_external_token__block_close] = true, + [ts_external_token__line_ending] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__eof] = true, }, [83] = { - [ts_external_token__single_quote_span_close] = true, + [ts_external_token__language_specifier_token] = true, }, [84] = { - [ts_external_token__strikeout_close] = true, + [ts_external_token__block_close] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, }, [85] = { - [ts_external_token__subscript_close] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, }, [86] = { - [ts_external_token__superscript_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__blank_line_start] = true, }, [87] = { - [ts_external_token__strong_emphasis_close_star] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__close_block] = true, }, [88] = { - [ts_external_token__strong_emphasis_close_underscore] = true, + [ts_external_token__blank_line_start] = true, }, [89] = { - [ts_external_token__emphasis_close_star] = true, + [ts_external_token__single_quote_span_close] = true, }, [90] = { - [ts_external_token__emphasis_close_underscore] = true, + [ts_external_token__double_quote_span_close] = true, }, [91] = { + [ts_external_token__strikeout_close] = true, + }, + [92] = { + [ts_external_token__subscript_close] = true, + }, + [93] = { + [ts_external_token__superscript_close] = true, + }, + [94] = { + [ts_external_token__strong_emphasis_close_star] = true, + }, + [95] = { + [ts_external_token__strong_emphasis_close_underscore] = true, + }, + [96] = { + [ts_external_token__emphasis_close_star] = true, + }, + [97] = { + [ts_external_token__emphasis_close_underscore] = true, + }, + [98] = { + [ts_external_token__block_close] = true, + }, + [99] = { [ts_external_token__close_block] = true, }, }; diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c b/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c index 8925d0e..8efeffc 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c @@ -124,6 +124,8 @@ typedef enum { PIPE_TABLE_DELIMITER, // to allow naked '|' in markdown PANDOC_LINE_BREAK, + + TRIPLE_STAR, // simply for good error reporting } TokenType; #ifdef SCAN_DEBUG @@ -222,6 +224,10 @@ static char* token_names[] = { "HTML_ELEMENT", // simply for good error reporting "PIPE_TABLE_DELIMITER", + + "PANDOC_LINE_BREAK", + + "TRIPLE_STAR", // simply for good error reporting }; #endif @@ -682,6 +688,7 @@ static bool parse_star(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { EMIT_TOKEN(EMPHASIS_CLOSE_STAR); } bool could_be_close_strong_emphasis = valid_symbols[STRONG_EMPHASIS_CLOSE_STAR]; + bool no_spaces = true; for (;;) { if (lexer->lookahead == '*') { if (star_count == 1 && extra_indentation >= 1 && @@ -698,6 +705,7 @@ static bool parse_star(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { EMIT_TOKEN(STRONG_EMPHASIS_CLOSE_STAR); } } else if (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + no_spaces = false; could_be_close_strong_emphasis = false; if (star_count == 1) { extra_indentation += advance(s, lexer); @@ -715,6 +723,10 @@ static bool parse_star(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { // line is empty so don't interrupt paragraphs if this is a list marker dont_interrupt = s->matched == s->open_blocks.size; } + if (star_count == 3 && !line_end && no_spaces) { + mark_end(s, lexer); + EMIT_TOKEN(TRIPLE_STAR); + } // If there were at least 3 stars then this could be a thematic break bool thematic_break = star_count >= 3 && line_end; // If there was a star and at least one space after that star then this @@ -2315,6 +2327,7 @@ static bool scan(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { EMIT_TOKEN(LINE_ENDING); } } + DEBUG_PRINT("Fell through external scanner => return false;\n"); return false; } diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/new-spec.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/new-spec.txt index e47cc0c..e5a5885 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/new-spec.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/new-spec.txt @@ -72,6 +72,8 @@ Example 14 - https://github.github.com/gfm/#example-14 (document (section (pandoc_paragraph + (pandoc_str) + (pandoc_str) (pandoc_str)))) ================================================================================ Example 17 - https://github.github.com/gfm/#example-17 diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/punctuation-vs-image.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/punctuation-vs-image.txt index bdfdecf..984620a 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/punctuation-vs-image.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/punctuation-vs-image.txt @@ -65,6 +65,8 @@ Hello! (document (section (pandoc_paragraph + (pandoc_str) + (pandoc_str) (pandoc_str)))) ================================================================================ diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt index 10abfaa..7b25818 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt @@ -758,6 +758,35 @@ Emojis (pandoc_space) (pandoc_str)))) ================================================================================ +Keycap Emojis +================================================================================ +0️⃣ 1️⃣ 2️⃣ 3️⃣ 4️⃣ 5️⃣ 6️⃣ 7️⃣ 8️⃣ 9️⃣ #️⃣ +-------------------------------------------------------------------------------- + (document + (section + (pandoc_paragraph + (pandoc_str) + (pandoc_space) + (pandoc_str) + (pandoc_space) + (pandoc_str) + (pandoc_space) + (pandoc_str) + (pandoc_space) + (pandoc_str) + (pandoc_space) + (pandoc_str) + (pandoc_space) + (pandoc_str) + (pandoc_space) + (pandoc_str) + (pandoc_space) + (pandoc_str) + (pandoc_space) + (pandoc_str) + (pandoc_space) + (pandoc_str)))) +================================================================================ Footnotes with surrounding spaces ================================================================================ footnote^[ space ] @@ -796,4 +825,88 @@ unnumbered section specifier (pandoc_str) (pandoc_space) (attribute_specifier - (unnumbered_specifier))))) \ No newline at end of file + (unnumbered_specifier))))) +================================================================================ +empty link +================================================================================ +[hello]() +-------------------------------------------------------------------------------- + (document + (section + (pandoc_paragraph + (pandoc_span + (content + (pandoc_str)) + (target))))) +================================================================================ +Don't false-alarm triple-star +================================================================================ +* **foo** +-------------------------------------------------------------------------------- + (document + (section + (pandoc_list + (list_item + (list_marker_star) + (pandoc_paragraph + (pandoc_strong + (strong_emphasis_delimiter) + (pandoc_str) + (strong_emphasis_delimiter))))))) +================================================================================ +Quotes around symbols 1 +================================================================================ +key='value' +-------------------------------------------------------------------------------- + (document + (section + (pandoc_paragraph + (pandoc_str) + (pandoc_str) + (pandoc_single_quote + (single_quote) + (content + (pandoc_str)) + (single_quote))))) +================================================================================ +Quotes around symbols 2 +================================================================================ +"(key='value')." +-------------------------------------------------------------------------------- + (document + (section + (pandoc_paragraph + (pandoc_double_quote + (double_quote) + (content + (pandoc_str) + (pandoc_str) + (pandoc_str) + (pandoc_single_quote + (single_quote) + (content + (pandoc_str)) + (single_quote)) + (pandoc_str) + (pandoc_str)) + (double_quote))))) +================================================================================ +Spaces in para beginning +================================================================================ + hello. +-------------------------------------------------------------------------------- + (document + (section + (pandoc_paragraph + (pandoc_str)))) +================================================================================ +Spaces in para start in blockquote +================================================================================ +> hello. +-------------------------------------------------------------------------------- + (document + (section + (pandoc_block_quote + (block_quote_marker) + (pandoc_paragraph + (pandoc_str))))) \ No newline at end of file diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/shortcode.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/shortcode.txt index 94e474a..4227ec5 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/shortcode.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/shortcode.txt @@ -1,5 +1,5 @@ ================================================================================ -1 +shortcode.txt 1 ================================================================================ {{< hello >}} -------------------------------------------------------------------------------- @@ -11,7 +11,7 @@ (shortcode_name) (shortcode_delimiter))))) ================================================================================ -2 +shortcode.txt 2 ================================================================================ {{< meta 'ke"y' >}} -------------------------------------------------------------------------------- @@ -24,7 +24,7 @@ (shortcode_string) (shortcode_delimiter))))) ================================================================================ -3 +shortcode.txt 3 ================================================================================ {{< meta 'ke"y' >}} -------------------------------------------------------------------------------- @@ -37,7 +37,7 @@ (shortcode_string) (shortcode_delimiter))))) ================================================================================ -4 +shortcode.txt 4 ================================================================================ {{< meta key >}} -------------------------------------------------------------------------------- @@ -50,7 +50,7 @@ (shortcode_naked_string) (shortcode_delimiter))))) ================================================================================ -5 +shortcode.txt 5 ================================================================================ {{< meta 12 >}} -------------------------------------------------------------------------------- @@ -63,7 +63,7 @@ (shortcode_number) (shortcode_delimiter))))) ================================================================================ -6 (NB booleans become strings) +shortcode.txt 6 (NB booleans become strings) ================================================================================ {{< meta true >}} -------------------------------------------------------------------------------- @@ -76,7 +76,7 @@ (shortcode_naked_string) (shortcode_delimiter))))) ================================================================================ -7 +shortcode.txt 7 ================================================================================ {{{< meta 12 >}}} -------------------------------------------------------------------------------- @@ -89,7 +89,7 @@ (shortcode_number) (shortcode_delimiter))))) ================================================================================ -8 +shortcode.txt 8 ================================================================================ {{< meta {{< meta which_key >}} >}} -------------------------------------------------------------------------------- @@ -106,7 +106,7 @@ (shortcode_delimiter)) (shortcode_delimiter))))) ================================================================================ -9 +shortcode.txt 9 ================================================================================ {{< meta key = {{< meta which_key >}} >}} -------------------------------------------------------------------------------- @@ -125,3 +125,22 @@ (shortcode_naked_string) (shortcode_delimiter)))) (shortcode_delimiter))))) +================================================================================ +shortcode.txt 10: shortcodes can have line breaks (except in space before '>}}') +================================================================================ +{{< hello + param1 + key=value >}} +-------------------------------------------------------------------------------- + (document + (section + (pandoc_paragraph + (shortcode + (shortcode_delimiter) + (shortcode_name) + (shortcode_name) + (key_value_specifier + (key_value_key) + (key_value_value + (shortcode_naked_string))) + (shortcode_delimiter))))) \ No newline at end of file diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/spec.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/spec.txt index b8b778f..a47d1ad 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/spec.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/spec.txt @@ -84,6 +84,8 @@ Example 14 - https://github.github.com/gfm/#example-14 (document (section (pandoc_paragraph + (pandoc_str) + (pandoc_str) (pandoc_str)))) ================================================================================ Example 20 - https://github.github.com/gfm/#example-20